.shop-container .release-date{
    text-align: center;
    margin: 20px 0;
    font-size: 24pt;
    font-family: 'BigNoodle';
    text-shadow: 0 0 5px black;
}

.shop-container iframe{
    margin: auto;
    display: block;
}

.shop-container .other-shops{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.shop-container .other-shops svg{
    fill: rgb(var(--txt-color));
    height: 25px;
    width: 25px;
}

.shop-container .other-shops a{
    padding: 10px;
    margin: 0 5px;
    border: solid 1px rgb(var(--txt-color));
    border-radius: 50px;
    display: block;
    transition: border-color .25s ease-in-out;
}

.shop-container .other-shops a:hover{
    border-color: rgb(var(--main-color));
}

.shop-container .other-shops .primary{
    display: none;
}

.shop-container .other-shops .brck{
    display: none;
}

.shop-container .other-shops svg.socialmedia{
    transform: scale(1.5);
}

@media screen and (max-width: 825px) {
    .shop-container iframe{
        display: none;
    }

    .shop-container .other-shops .primary{
        display: block;
    }
}