.merch {
    background: url(../images/merch-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
}

.merch:before {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 22, 22, 0.98);
    content: '';
}

.merch--basket {
    background: #161616;
}

.merch--basket:before {
    display: none;
}

.merch-page__content {
    padding-top: 145px;
    padding-bottom: 100px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.merch-page {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}

.merch-page__content {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.merch-page__title {
    font-family: 'AGLettericaUltraCompressed', 'Arial', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 80px;
    line-height: 1;
    color: #fff;
}

.merch-page__sub-title {
    font-family: 'AGLettericaUltraCompressed', 'Arial', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 64px;
    line-height: 1;
    color: #fff;
    margin-top: 40px;
}

.merch--basket .merch-page__title {
    font-size: 64px;
}

.merch__grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -20px;
    width: -webkit-calc(100% + 40px);
    width: calc(100% + 40px);
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.merch__el {
    padding: 60px 20px 0;
    width: 25%;
}

.merch__image-container {
    -webkit-border-radius: 16px;
    border-radius: 16px;
    width: 100%;
    background: #1E1E22;
    position: relative;
    padding: 27px 25px;
    overflow: hidden;
    border: 1px solid transparent;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    display: block;
    position: relative;
}

.merch__item-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
}

.merch__image-container:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 71%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    background: url(../images/merch-image-bg.png) center center no-repeat;
    background-size: contain;
}

.merch__item {
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

.merch__item:hover .merch__image-container {
    background: #22222C;
    border-color: #3C3C54;
}

.merch__image-container img {
    width: 100%;
    height: auto;
    opacity: 0;
}

.merch__image {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 82%;
    height: 82%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.merch__item-title {
    font-family: 'AGLettericaUltraCompressed', 'Arial', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    font-size: 20px;
    margin-top: 14px;
    letter-spacing: 0.2px;
}

.merch__item-price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: 'AGLettericaUltraCompressed', 'Arial', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #6F6F88;
    line-height: 1;
    font-size: 24px;
    margin-top: 11px;
    letter-spacing: 0.2px;
}

.merch__item-price svg {
    margin-left: 3px;
    height: 17px;
    width: 12px;
}

.merch__item-button {
    width: 100%;
    padding-top: 22px;
    margin-top: auto;
}

.merch__item-button .btn {
    outline: none;
    width: 100%;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.merch__item-button .btn:before {
    position: absolute;
    content: '';
    z-index: 1;
    left: -1px;
    top: -1px;
    width: -webkit-calc(100% + 2px);
    width: calc(100% + 2px);
    height: -webkit-calc(100% + 2px);
    height: calc(100% + 2px);
    background: -webkit-gradient(linear, left top, right top, color-stop(17.72%, #8000FF), color-stop(81.53%, #005EFF));
    background: -webkit-linear-gradient(left, #8000FF 17.72%, #005EFF 81.53%);
    background: -o-linear-gradient(left, #8000FF 17.72%, #005EFF 81.53%);
    background: linear-gradient(90deg, #8000FF 17.72%, #005EFF 81.53%);
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

.merch__item-button .btn span {
    padding: 15px 20px 11px;
    font-size: 16px;
    display: inline-block;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Geometria', 'Arial', sans-serif;
    font-weight: 500;
    text-align: center;
    width: 100%;
    position: relative;
    background: #171719;
    z-index: 2;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.merch__item-button .btn:hover span {
    background: transparent;
}

.merch__item-price svg path {
    fill: #6F6F88;
    stroke: #6F6F88;
}

.footer {
    position: relative;
    color: white;
}

.footer__bottom {
    border-top: 1px solid #282828;
    padding: 32px 0;
}

.footer__bottom-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__logo {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    color: #454545;
    font-size: 0;
}

.footer__logo img {
    font-size: 32px;
}

.footer__copyright {
    padding-left: 10px;
    text-align: right;
    margin-left: auto;
    font-size: 12px;
    line-height: 15px;
    color: #8A8A8A;
    font-family: 'Geometria', 'Arial', sans-serif;
}

.merch__popup-links {
    padding-top: 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.merch__popup-links a {
    font-size: 20px;
    font-family: 'Geometria', 'Arial', sans-serif;
    color: #fff;
    text-decoration: none;
    margin-top: 25px;
}

.merch__popup-link-container {
    margin-top: 30px;
}

@media screen and (max-width: 992px) {
    .merch-page__content {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .merch-page__title {
        font-size: 60px;
    }

    .merch-page__sub-title {
        font-size: 44px;
    }

    .merch--basket .merch-page__title {
        font-size: 44px;
    }

    .footer__bottom {
        padding: 20px 0;
    }

    .merch__el {
        padding: 45px 20px 0;
        width: 33.33333%;
    }
}

@media screen and (max-width: 768px) {
    .merch {
        background: #161616;
    }

    .merch-page__content {
        padding-top: 92px;
        padding-bottom: 50px;
    }

    .merch-page__title {
        font-size: 44px;
    }

    .merch-page__sub-title {
        font-size: 30px;
    }

    .footer__bottom {
        padding: 15px 0;
    }

    .merch__el {
        padding: 40px 20px 0;
        width: 50%;
    }
}

.merch__item-link-desktop {
    display: none;
}

@media screen and (max-width: 568px) {

    .merch__grid {
        margin: 0;
        width: 100%;
        padding-top: 15px;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .merch__el {
        padding: 30px 0 0;
        width: 100%;
        max-width: 300px;
    }

    .merch__item-button {
        display: none;
    }

    .merch__item {
        position: relative;
    }

    .merch__image-container {
        position: relative;
    }

    .merch__image-container .merch__item-link {
        display: none;
    }

    .merch__item-link-desktop {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 2;
    }
}


@media only screen and (max-width: 414px) {
    .footer__copyright {
        max-width: 130px;
    }
}

.store__item:hover .swiper-pagination {
    opacity: 1;
}

.store__image-background {
    width: 100%;
    font-size: 0;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.store__image-background img {
    width: 100%;
    height: auto;
}

.store__image-background .swiper-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.store__image-background .swiper-pagination {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 15px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    z-index: 2;
}

.store__image-background .swiper-pagination-bullet {
    width: 16px;
    height: 2px;
    -webkit-border-radius: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 4px;
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    position: relative;
}

.store__image-background .swiper-pagination-bullet:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    left: 0;
    top: 0;
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    opacity: 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(17.72%, #8000FF), color-stop(81.53%, #005EFF));
    background: -webkit-linear-gradient(left, #8000FF 17.72%, #005EFF 81.53%);
    background: -o-linear-gradient(left, #8000FF 17.72%, #005EFF 81.53%);
    background: linear-gradient(90deg, #8000FF 17.72%, #005EFF 81.53%);
}

.store__image-background .swiper-pagination-bullet-active:after {
    opacity: 1;
}

.store__image {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    cursor: pointer;
}

.help-list {
    padding-top: 40px;
}

.help-list__item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.help-list__item p {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-family: 'Geometria', 'Arial', sans-serif;
    font-weight: 400;
}

.help-list__image {
    font-size: 0;
    min-width: 78px;
    width: 78px;
    margin-right: 40px;
}

.help-list__item:last-child {
    border-bottom: none;
}

.help-list__image img.help-1-img {
    width: 57px;
    height: 41px;
}

.help-list__image img.help-2-img {
    width: 64px;
    height: 64px;
}

.help-list__image img.help-3-img {
    width: 77px;
    height: 27px;
}

@media only screen and (max-width: 768px) {
    .help-list {
        padding-top: 15px;
    }

    .help-list__image {
        min-width: 54px;
        width: 54px;
        margin-right: 15px;
    }

    .help-list__item p {
        font-size: 12px;
        line-height: 16px;
    }

    .help-list__image img.help-1-img {
        width: 43px;
        height: 32px;
    }

    .help-list__image img.help-2-img {
        width: 45px;
        height: 45px;
    }

    .help-list__image img.help-3-img {
        width: 54px;
        height: 19px;
    }

    .help-list__item {
        padding: 15px 0;
    }
}

@media only screen and (max-width: 576px) {

    .store__image-background .swiper-pagination {
        opacity: 1;
    }
}

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3043;
    position: fixed;
    outline: none !important;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        -ms-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        -ms-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        -ms-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.mfp-wrap {}

html.mfp-helper {
    height: 100%;
}

html.mfp-helper body {
    overflow: hidden;
    height: 100%;
}

.popup-buble .popup-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.popup-buble.mfp-ready .popup-dialog {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.popup-buble.mfp-removing .popup-dialog {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}

.popup-buble.mfp-bg {
    background: -webkit-gradient(linear, left top, left bottom, from(#161616), to(#000000));
    background: -webkit-linear-gradient(top, #161616 0%, #000000 100%);
    background: -o-linear-gradient(top, #161616 0%, #000000 100%);
    background: linear-gradient(180deg, #161616 0%, #000000 100%);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.popup-buble.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.popup-buble.mfp-removing.mfp-bg {
    opacity: 0;
}

.popup-dialog {
    position: relative;
    display: block;
    background: #22222C;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    color: white;
    padding: 0px 0px;
    text-align: left;
    max-width: 815px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.popup-dialog-small {
    max-width: 600px;
}

.popup-dialog-big {
    max-width: 1240px;
}

@media only screen and (max-width: 576px) {
    .popup-dialog {
        margin-top: 0;
        margin-bottom: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
        background: #2a2a3a;
    }

    .popup-dialog-small {
        -webkit-border-radius: 12px;
        border-radius: 12px;
    }
}

.popup-dialog .mfp-close {
    color: white;
    top: 30px;
    width: 48px;
    height: 48px;
    right: 30px;
    opacity: 1;
    font-size: 48px;
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

@media only screen and (max-width: 820px) {
    .popup-dialog .mfp-close {
        right: 15px;
        top: 15px;
    }
}

@media only screen and (max-width: 576px) {
    .popup-dialog .mfp-close {
        top: 12px;
        right: 12px;
        font-size: 24px;
        width: 32px;
        height: 32px;
    }
}

.popup-dialog .mfp-close:focus,
.popup-dialog .mfp-close:active {
    top: 30px;
}

.popup-dialog .mfp-close:hover {
    opacity: 0.75;
}

.ui-group {
    position: relative;
    margin-bottom: 30px;
}

.ui-group label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    font-family: 'Geometria', 'Arial', sans-serif;
}

.ico-mono-arrow-bottom {
    width: 1.69em;
    height: 1em;
    fill: #fff;
}

.ico-mono-ccard {
    width: 1.33em;
    height: 1em;
    fill: #fff;
}

.ico-mono-check {
    width: 1.17em;
    height: 1em;
    fill: #fff;
}

.ico-mono-cloud-download {
    width: 1em;
    height: 1em;
    fill: #fff;
}

.ico-mono-device {
    width: 1.5em;
    height: 1em;
    fill: #fff;
}

.ico-mono-devices-desktop {
    width: 1.1em;
    height: 1em;
    fill: #fff;
}

.ico-mono-devices-eyes {
    width: 1.52em;
    height: 1em;
    fill: #fff;
}

.ico-mono-devices-phone {
    width: 0.58em;
    height: 1em;
    fill: #fff;
}

.ico-mono-email {
    width: 1.4em;
    height: 1em;
    fill: #FFF;
}

.ico-mono-logo-small {
    width: 2.75em;
    height: 1em;
    fill: #454545;
}

.ico-mono-map-pin-location {
    width: 1em;
    height: 1em;
    fill: #fff;
}

.ico-mono-modal-user {
    width: 1em;
    height: 1em;
    fill: #fff;
}

.ico-mono-play {
    width: 0.81em;
    height: 1em;
    fill: #fff;
}

.ico-mono-question-circle {
    width: 1em;
    height: 1em;
    fill: #fff;
}

.ico-mono-rub {
    width: 0.71em;
    height: 1em;
    fill: #fff;
}

.ico-mono-social-facebook {
    width: 0.5em;
    height: 1em;
    fill: #fff;
}

.ico-mono-social-google {
    width: 1em;
    height: 1em;
    fill: #fff;
}

.ico-mono-social-instagram {
    width: 1em;
    height: 1em;
    fill: #fff;
}

.ico-mono-social-messenger {
    width: 1em;
    height: 1em;
    fill: #fff;
}

.ico-mono-social-telegram {
    width: 1.25em;
    height: 1em;
    fill: #fff;
}

.ico-mono-social-tiktok {
    width: 0.88em;
    height: 1em;
    fill: #fff;
}

.ico-mono-social-twitter {
    width: 1em;
    height: 1em;
    fill: #fff;
}

.ico-mono-social-vk {
    width: 1.67em;
    height: 1em;
    fill: #fff;
}

.ico-mono-social-whatsapp {
    width: 1em;
    height: 1em;
    fill: #fff;
}

.ico-mono-social-youtube {
    width: 1.43em;
    height: 1em;
    fill: #fff;
}

.ico-mono-stack {
    width: 1em;
    height: 1em;
    fill: #fff;
}

.ico-mono-arrow-down {
    width: 1.71em;
    height: 1em;
    fill: #fff;
}

.ico-mono-clear {
    width: 1em;
    height: 1em;
    fill: #63636F;
}

.ico-mono-close {
    width: 1em;
    height: 1em;
    fill: #fff;
}

.ico-mono-heart-fill {
    width: 1.16em;
    height: 1em;
    fill: #fff;
}

.ico-mono-heart {
    width: 1.12em;
    height: 1em;
    fill: #fff;
}

.ico-mono-search {
    width: 1em;
    height: 1em;
    fill: #fff;
}

.ico-mono-camera {
    width: 1em;
    height: 1em;
    fill: #fff;
}

.ico-color-alert {
    width: 0.95em;
    height: 1em;
}

.ico-color-h-check {
    width: 1em;
    height: 1em;
}

.ico-color-mastercard {
    width: 1.22em;
    height: 1em;
}

.ico-color-mir {
    width: 3.57em;
    height: 1em;
}

.ico-color-pay-master-gray {
    width: 1.25em;
    height: 1em;
}

.ico-color-pay-mir-color {
    width: 3.47em;
    height: 1em;
}

.ico-color-pay-visa-gray {
    width: 3em;
    height: 1em;
}

.ico-color-pay-visa-white {
    width: 3em;
    height: 1em;
}

.ico-color-social-google {
    width: 1em;
    height: 1em;
}

.ico-color-visa {
    width: 3em;
    height: 1em;
}

.modal__head {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 60px;
}

.modal__title {
    font-family: "AGLettericaUltraCompressed", sans-serif;
    font-size: 62px;
    line-height: 1.1;
    text-transform: uppercase;
}

.modal__title--small {
    margin-top: 40px;
    font-size: 28px;
}

.modal__content {
    margin-top: 60px;
    padding: 0 60px 40px;
}

.modal__cta button {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    width: 100%;
    position: relative;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.15;
    text-transform: uppercase;
    color: white;
    padding: 30px;
    -webkit-border-bottom-left-radius: 18px;
    border-bottom-left-radius: 18px;
    -webkit-border-bottom-right-radius: 18px;
    border-bottom-right-radius: 18px;
    background: transparent;
    position: relative;
    overflow: hidden;
    font-family: 'Geometria', 'Arial', sans-serif;
    font-weight: 500;
}

.modal__cta button:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, color-stop(17.72%, #8000FF), color-stop(81.53%, #005EFF));
    background: -webkit-linear-gradient(left, #8000FF 17.72%, #005EFF 81.53%);
    background: -o-linear-gradient(left, #8000FF 17.72%, #005EFF 81.53%);
    background: linear-gradient(90deg, #8000FF 17.72%, #005EFF 81.53%);
    z-index: 1;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.modal__cta button:after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, color-stop(17.72%, #8000FF), color-stop(81.53%, #005EFF));
    background: -webkit-linear-gradient(right, #8000FF 17.72%, #005EFF 81.53%);
    background: -o-linear-gradient(right, #8000FF 17.72%, #005EFF 81.53%);
    background: linear-gradient(-90deg, #8000FF 17.72%, #005EFF 81.53%);
    z-index: 2;
    opacity: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.modal__cta button span {
    position: relative;
    z-index: 3;
}

.modal__cta button:hover:after {
    opacity: 1;
}

.modal__cta button.white {
    background: #fff;
    color: #000;
}

.modal__cta button:focus {
    outline: none;
}

.modal__cta .ico {
    font-size: 15px;
}

.modal__enter-grid {
    margin-top: 30px;
}

.modal__note {
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    color: #8A8A8A;
    padding-top: 40px;
    font-family: 'Geometria', 'Arial', sans-serif;
}

.modal__note a {
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    color: #fff;
    font-family: 'Geometria', 'Arial', sans-serif;
    font-weight: 700;
}

.modal__note--white {
    color: #fff;
}

.modal__note--mt20 {
    padding-top: 20px;
}

.modal__store-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 30px;
}

.modal__store-left {
    max-width: 540px;
    width: 49%;
}

.modal__store-left .store__image-background .swiper-pagination {
    opacity: 1;
}

.modal__store-left .modal__store-title {
    display: none;
}

.modal__store-about {
    max-width: 560px;
    width: 51%;
    padding-left: 40px;
    padding-top: 10px;
}

.modal__store-title {
    font-family: "AGLettericaUltraCompressed", sans-serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0;
}

.modal__store-info {
    font-size: 16px;
    color: white;
    line-height: 1.3;
    font-family: "Geometria", sans-serif;
    margin-top: 20px;
}

.modal__store-row {
    padding-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.modal__store-size {
    max-width: 180px;
    width: 100%;
}

.modal__store-button {
    margin-top: 15px;
    width: 100%;
}

.modal__store-button .btn {
    display: inline-block;
    position: relative;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    min-width: 180px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    line-height: 1;
    font-size: 22px;
    padding: 17px 25px 15px;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 0;
    text-transform: uppercase;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    font-family: "Geometria", sans-serif;
    margin-left: 30px;
    width: 70%;
}

.modal__store-button .btn:active,
.modal__store-button .btn:focus {
    outline: none;
    border: none;
}

.modal__store-button .btn span {
    position: relative;
    z-index: 2;
}

.modal__store-button .btn:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, color-stop(17.72%, #8000FF), color-stop(81.53%, #005EFF));
    background: -webkit-linear-gradient(left, #8000FF 17.72%, #005EFF 81.53%);
    background: -o-linear-gradient(left, #8000FF 17.72%, #005EFF 81.53%);
    background: linear-gradient(90deg, #8000FF 17.72%, #005EFF 81.53%);
    z-index: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.modal__store-button .btn:after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, color-stop(17.72%, #8000FF), color-stop(81.53%, #005EFF));
    background: -webkit-linear-gradient(right, #8000FF 17.72%, #005EFF 81.53%);
    background: -o-linear-gradient(right, #8000FF 17.72%, #005EFF 81.53%);
    background: linear-gradient(-90deg, #8000FF 17.72%, #005EFF 81.53%);
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.modal__store-button .btn:hover:after {
    opacity: 1;
}

.modal__store-price {
    font-size: 44px;
    line-height: 33px;
    font-family: "AGLettericaUltraCompressed", sans-serif;
    white-space: nowrap;
    margin-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal__store-price svg {
    height: 31px;
    width: 22px;
    margin-left: 6px;
}

.modal__store-price svg path {
    fill: #FFFFFF;
    stroke: #FFFFFF;
}

.modal__store-size p {
    font-size: 16px;
    color: white;
    font-weight: 500;
    font-family: "Geometria", sans-serif;
    margin-bottom: 10px;
}

.popup-dialog--about {
    max-width: 894px;
}

.modal__content-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    /*-webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;*/
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin: 0 -20px 0;
    width: -webkit-calc(100% + 40px);
    width: calc(100% + 40px)
}

.modal__content-row .modal__note {
    margin-top: 32px;
}

.modal__content-row-left {
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    box-sizing: border-box;
}

.modal__content-logos {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 50%;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*-webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;*/
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.modal__content-logos img {
    max-height: 57px;
    width: 100%;
    height: auto;
}

.modal__content-logo {
    font-size: 0;
}

.modal__content-logos span {
    margin: 0 20px;
    width: 24px;
    min-width: 24px;
    height: 24px;
    position: relative;
}

.modal__content-logos span:before {
    position: absolute;
    content: '';
    width: 24px;
    height: 1px;
    background: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal__content-logos span:after {
    position: absolute;
    content: '';
    width: 24px;
    height: 1px;
    background: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__content-separator {
    margin: 40px 0 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.modal__content-partners {
    padding-bottom: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: -webkit-calc(100% + 40px);
    width: calc(100% + 40px);
    padding-top: 30px;
    margin: 0 -20px;
}

.modal__content-partners p {
    width: 50%;
    /*min-height: 40px;*/
    margin-bottom: 10px;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Geometria', 'Arial', sans-serif;
    font-weight: 400;
    color: #fff;
}

.modal__content-partners p.full {
    width: 100%;
}

.modal__content-partners p.mb {
    margin-bottom: 35px;
}

/*.modal__content-partners-item p {
    font-size: 14px;
    line-height: 20px;
    font-family: 'Geometria', 'Arial', sans-serif;
    font-weight: 400;
    color: #fff;
}*/

.modal__separator {
    margin: 60px -60px 0;
    width: calc(100% + 120px);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.modal__separator:before,
.modal__separator:after {
    position: static;
    width: 100%;
    height: 1px;
    background: #424253;
    content: '';
    margin: 0;
    padding: 0;
    display: block;
}

.modal__separator p {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    margin: 0 10px;
    font-family: 'Geometria', 'Arial', sans-serif;
    text-transform: lowercase;
}

.modal__socials-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 50px -20px 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: calc(100% + 40px);
}

.modal__socials-list li {
    padding: 0 20px;
}

.modal__socials-list a {
    min-width: 60px;
    min-height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.modal__socials-list a.fb {
    background: #3B5998;
}

.modal__socials-list a.fb .ico {
    font-size: 32px;
}

.modal__socials-list a.vk {
    background: #4C6C91;
}

.modal__socials-list a.vk .ico {
    font-size: 18px;
}

.modal__socials-list a.inst {
    background: url(../img/instagram-gradient.png) center center no-repeat;
}

.modal__socials-list a.inst .ico {
    font-size: 32px;
}

.modal__socials-list a.google {
    background: #fff;
}

.modal__socials-list a.google .ico {
    font-size: 26px;
}

.modal__socials-list--white {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.modal__socials-list--white a {
    border: 2px solid #fff;
    background: none;
}

.modal__socials-list--white a.fb {
    background: none;
}

.modal__socials-list--white a.vk {
    background: none;
}

.modal__socials-list--white a.inst {
    background: none;
}

.modal__socials-list--white a.google {
    background: none;
}

.modal__restore-pass {
    text-align: center;
    margin: 0 auto;
    padding: 30px 0 0;
}

.modal__restore-pass a {
    display: inline-block;
    border-bottom: 1px solid #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    font-family: 'Geometria', 'Arial', sans-serif;
    text-decoration: none;
    outline: none;
}

.modal__restore-pass a:hover {
    border-bottom-color: transparent;
}

.modal__buying-info {
    font-size: 15px;
    line-height: 1.45;
    color: white;
    margin: 0;
    font-family: 'Geometria', 'Arial', sans-serif;
}

.modal__companies {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 60px 0 30px;
}

.modal__companies-item {
    padding: 0 18px;
    font-size: 24px;
}

.modal__companies-item .ico-color-mastercard {
    font-size: 50px;
}

.modal__ticket-checkbox {
    width: 44px;
    min-width: 44px;
    -ms-flex-item-align: center;
    align-self: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 33px;
    min-height: 33px;
    position: relative;
    z-index: 2;
}

.modal__ticket-checkbox input {
    opacity: 0;
    display: none;
    position: absolute;
}

.modal__ticket-checkbox input:checked+.checkbox {
    background: #005EFF;
}

.modal__ticket-checkbox input:checked+.checkbox .ico {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.modal__ticket-checkbox .checkbox {
    width: 24px;
    height: 24px;
    background: #282834;
    border-radius: 4px;
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    position: relative;
    font-size: 12px;
    color: #fff;
}

.modal__ticket-checkbox .checkbox .ico {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    opacity: 0;
}

.modal__ticket-checkbox--buying {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    min-width: 1px;
    height: auto;
    min-height: 1px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 35px;
}

.modal__ticket-checkbox--buying .checkbox {
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    margin-right: 15px;
}

.modal__ticket-checkbox--buying span {
    font-size: 16px;
    line-height: 1.2;
    color: white;
    cursor: pointer;
    margin-top: 5px;
    font-weight: 500;
    font-family: 'Geometria', 'Arial', sans-serif;
}

.modal__ticket-checkbox--buying span a {
    color: #005EFF;
    margin-left: 5px;
    border-bottom: 1px solid #005EFF;
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    text-decoration: none;
}

.modal__ticket-checkbox--buying span a:hover {
    border-bottom-color: transparent;
}

.merch__shop-more {
    display: inline-block;
    margin-top: 60px;
    font-size: 18px;
    font-family: 'Geometria', 'Arial', sans-serif;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.4;
    margin: 60px auto 0;
    text-align: center;
}

.merch__shop-more span {
    border-bottom: 1px solid #fff;
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    color: #fff;
}

.merch__shop-more span:hover {
    border-color: transparent;
}

.modal__store-left .modal__store-title,
.modal__store-left .modal__store-sub-title {
    display: none;
}

.modal__store-sub-title {
    margin-top: 10px;
    font-size: 24px;
    color: #828282;
    text-transform: uppercase;
    font-family: "Geometria", sans-serif;
}

@media only screen and (max-width: 992px) {

    .modal__store-title {
        font-size: 44px;
    }

    .modal__store-info {
        margin-top: 20px;
        font-size: 15px;
    }

    .modal__store-row {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .modal__store-button .btn {
        width: 100%;
        margin-left: 0;
    }

    .modal__store-sub-title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 820px) {

    .modal__content {
        margin-top: 60px;
        padding: 0 30px 30px;
    }

    .modal__head {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 50px;
    }

    .modal__title {
        font-size: 48px;
        line-height: 52px;
    }

    .modal__title--editable {
        padding-left: 0;
    }

    .modal__cta button {
        padding: 25px;
    }

    .modal__separator {
        margin: 30px -30px 0;
        width: calc(100% + 60px);
    }

    .modal__socials-list {
        margin-top: 30px;
    }

    .modal__restore-pass {
        padding: 0;
    }

    .modal__restore-pass a {
        font-size: 13px;
        line-height: 16px;
    }
}

@media only screen and (max-width: 576px) {

    .merch__shop-more {
        font-size: 16px;
    }

    .modal__content {
        margin-top: 30px;
        padding: 0 20px 30px;
    }

    .modal__head {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 30px;
    }

    .modal__title {
        font-size: 32px;
        line-height: 36px;
    }

    .modal__title--small {
        font-size: 24px;
        margin-top: 20px;
        line-height: 1.15;
    }

    .modal__cta button {
        font-size: 18px;
        line-height: 23px;
        padding: 15px;
        -webkit-border-bottom-left-radius: 12px;
        border-bottom-left-radius: 12px;
        -webkit-border-bottom-right-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    .modal__note {
        font-size: 13px;
        line-height: 20px;
        padding-top: 20px;
    }

    .modal__note--white {
        line-height: 16px;
    }

    .modal__store-grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-bottom: 0;
        padding-top: 0;
    }

    .modal__store-title {
        display: none;
    }

    .modal__store-left {
        max-width: 100%;
        width: 100%;
    }

    .modal__store-title,
    .modal__store-sub-title {
        display: none;
    }

    .modal__store-left {
        max-width: 100%;
        width: 100%;
    }

    .modal__store-left .modal__store-title,
    .modal__store-left .modal__store-sub-title {
        display: block;
    }

    .modal__store-sub-title {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .modal__store-info {
        font-size: 14px;
        margin-top: 20px;
    }

    .modal__store-about {
        max-width: 100%;
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
        position: relative;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-bottom: 64px;
    }

    .modal__store-row {
        padding-top: 15px;
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
        width: 100%;
    }

    .modal__store-size {
        width: 100%;
        max-width: 100%;
    }

    .modal__store-size p {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .modal__store-select {
        width: 100%;
    }

    .modal__companies {
        padding: 25px 0 0;
    }

    .modal__companies-item {
        padding: 0 15px;
        font-size: 20px;
    }

    .modal__companies-item .ico-color-mastercard {
        font-size: 42px;
    }

    .modal__ticket-checkbox {
        width: 35px;
        min-width: 35px;
        height: 26px;
        min-height: 26px;
    }

    .modal__ticket-checkbox .checkbox {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .modal__ticket-checkbox--buying {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: auto;
        min-width: 1px;
        height: auto;
        min-height: 1px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-top: 25px;
    }

    .modal__ticket-checkbox--buying .checkbox {
        width: 20px;
        min-width: 20px;
        height: 20px;
        min-height: 20px;
        margin-right: 12px;
    }


    .select2-container {
        max-width: 100% !important;
        width: 100% !important;
    }

    .modal__store-button {
        margin-top: 0;
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .modal__store-button .btn {
        font-size: 16px;
        padding: 15px 25px 13px;
    }

    .modal__store-price {
        font-size: 24px;
        margin-right: 0;
        margin-top: 20px;
    }

    .modal__store-price svg {
        width: 12px;
        height: 17px;
    }

    .modal__content-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin: 20px 0 0;
        width: 100%;
    }

    .modal__content-row .modal__note {
        width: 100%;
        padding: 0;
    }

    .modal__content-logos {
        width: 100%;
        padding: 20px 0 0;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .modal__content-row-left {
        padding: 0;
    }

    .modal__content-logos span {
        margin: 0 15px;
        width: 20px;
        min-width: 20px;
        height: 20px;
    }

    .modal__content-logos span:before,
    .modal__content-logos span:after {
        width: 20px;
    }

    .modal__content-logos img {
        max-height: 45px;
    }

    .modal__content-separator {
        margin-top: 20px;
    }

    .modal__content-partners {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0;
        width: 100%;
        padding: 0;
    }

    .modal__content-partners-item {
        width: 100%;
        padding: 20px 0 0;
        min-height: 1px;
        margin-bottom: 0;
    }

    .popup-dialog--about {
        -webkit-border-radius: 12px;
        border-radius: 12px;
    }

    .modal__socials-list {
        margin-left: -10px;
        margin-right: -10px;
        width: calc(100% + 20px);
    }

    .modal__socials-list li {
        padding: 0 10px;
    }

    .modal__socials-list a {
        min-width: 40px;
        min-height: 40px;
    }

    .modal__socials-list a.fb .ico {
        font-size: 24px;
    }

    .modal__socials-list a.vk .ico {
        font-size: 14px;
    }

    .modal__socials-list a.inst .ico {
        font-size: 24px;
    }

    .modal__socials-list a.google .ico {
        font-size: 20px;
    }

    .modal__socials-list--white {
        margin-bottom: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.merch-page__basket-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 60px;
}

.merch-page__basket-items {
    width: 67%;
}

.merch-page__basket-total {
    max-width: 387px;
    width: 33%;
    background: #1E1E22;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    padding: 35px 30px 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 40px;
}

.merch-page__basket-total-title {
    font-size: 32px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'AGLettericaUltraCompressed', 'Arial', sans-serif;
    font-weight: 400;
    line-height: 1;
    padding-bottom: 10px;
}

.merch-page__basket-total-row {
    padding-top: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.merch-page__basket-total-row p {
    font-size: 24px;
    font-family: 'AGLettericaUltraCompressed', 'Arial', sans-serif;
    font-weight: 400;
    line-height: 1;
    color: #6F6F88;
    letter-spacing: 0.2px;
}

.merch-page__basket-total-row p.price {
    padding-left: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.merch-page__basket-total-row p.price {
    white-space: nowrap;
}

.merch-page__basket-total-row p.white {
    color: #fff;
}

.merch-page__basket-total-row p.price img {
    margin-left: 4px;
    height: 19px;
    width: 13px;
    margin-top: -1px;
}

.merch-page__basket-total-button {
    margin-top: 30px;
}

.merch-page__basket-total-button .btn {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    width: 100%;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    font-size: 18px;
    line-height: 1.15;
    text-transform: uppercase;
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    background: transparent;
    position: relative;
    overflow: hidden;
    font-family: 'Geometria', 'Arial', sans-serif;
    font-weight: 500;
    text-decoration: none;
}

.merch-page__basket-total-button .btn:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, color-stop(17.72%, #8000FF), color-stop(81.53%, #005EFF));
    background: -webkit-linear-gradient(left, #8000FF 17.72%, #005EFF 81.53%);
    background: -o-linear-gradient(left, #8000FF 17.72%, #005EFF 81.53%);
    background: linear-gradient(90deg, #8000FF 17.72%, #005EFF 81.53%);
    z-index: 1;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.merch-page__basket-total-button .btn:after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, color-stop(17.72%, #8000FF), color-stop(81.53%, #005EFF));
    background: -webkit-linear-gradient(right, #8000FF 17.72%, #005EFF 81.53%);
    background: -o-linear-gradient(right, #8000FF 17.72%, #005EFF 81.53%);
    background: linear-gradient(-90deg, #8000FF 17.72%, #005EFF 81.53%);
    z-index: 2;
    opacity: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.merch-page__basket-total-button .btn span {
    position: relative;
    z-index: 3;
}

.merch-page__basket-total-button .btn:hover:after {
    opacity: 1;
}

.merch-page__basket-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid #424253;
    margin-bottom: 20px;
}

.merch-page__basket-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.merch-page__basket-item .merch__image-container {
    max-width: 173px;
    width: 25%;
    margin-right: 40px;
}

.merch-page__basket-item:hover .merch__image-container {
    background: #22222C;
    border-color: #3C3C54;
}

.merch-page__basket-item:hover .merch-page__basket-item-remove {
    opacity: 1;
}

.merch-page__basket-info {
    width: 75%;
    padding-right: 35px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.merch-page__basket-item-remove {
    padding: 10px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    display: block;
    opacity: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.merch-page__basket-item-remove img {
    width: 24px;
    height: 24px;
}

.merch-page__basket-item-title {
    font-size: 32px;
    font-family: 'AGLettericaUltraCompressed', 'Arial', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}

.merch-page__basket-item-size {
    margin-top: 8px;
    font-size: 16px;
    line-height: 20px;
    color: #8A8A8A;
    font-family: 'Geometria', 'Arial', sans-serif;
    font-weight: 400;
}

.merch-page__basket-item-price {
    padding-left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 24px;
    font-family: 'AGLettericaUltraCompressed', 'Arial', sans-serif;
    font-weight: 400;
    line-height: 1;
    color: #6F6F88;
    letter-spacing: 0.2px;
    margin-top: 8px;
}

.merch-page__basket-item-price img {
    margin-left: 4px;
    height: 19px;
    width: 13px;
    margin-top: -1px;
}

.merch-page__basket-quantity {
    display: inline-block;
    margin-top: 30px;
}

.merch-page__basket-quantity .number {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    background: #1E1E22;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

.merch-page__basket-quantity span {
    min-width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px;
    color: #8A8A8A;
    font-family: 'Geometria', 'Arial', sans-serif;
    cursor: pointer;
}

.merch-page__basket-quantity input {
    outline: none;
    background: none;
    border: none;
    font-family: 'Geometria', 'Arial', sans-serif;
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 1;
    display: inline-block;
    padding: 0;
    min-width: 40px;
    width: 40px;
}

.merch-page__basket-quantity input:focus {
    border: none !important;
}

@media screen and (max-width: 992px) {
    .merch-page__basket-grid {
        padding-top: 40px;
    }

    .merch-page__basket-item-title {
        font-size: 26px;
    }
}

@media screen and (max-width: 768px) {
    .merch-page__basket-grid {
        padding-top: 40px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .merch-page__basket-items {
        width: 100%;
    }

    .merch-page__basket-total {
        width: 100%;
        margin-left: 0;
        max-width: 100%;
        margin-top: 20px;
        padding: 20px 10px 10px;
    }

    .merch-page__basket-total-button .btn {
        font-size: 14px;
        padding: 15px 10px;
    }

    .merch-page__basket-total-title {
        font-size: 24px;
        padding-bottom: 4px;
    }

    .merch-page__basket-total-row {
        padding-top: 14px;
    }

    .merch-page__basket-total-button {
        margin-top: 20px;
    }

    .merch-page__basket-total-row p {
        font-size: 20px;
        letter-spacing: 0;
    }

    .merch-page__basket-total-row p.price img {
        margin-top: 0;
        width: 12px;
        height: 16px;
    }

    .merch-page__basket-info {
        padding-right: 0;
    }

    .merch-page__basket-item-remove {
        top: auto;
        bottom: 20px;
        right: 0;
        transform: translateY(0);
        opacity: 1;
    }

    .merch-page__basket-item {
        padding-bottom: 76px;
    }

    .merch-page__basket-item:last-child {
        margin-bottom: 0;
        padding-bottom: 76px;
        border-bottom: none;
    }

    .merch-page__basket-item-remove img {
        width: 20px;
        height: 20px;
    }

    .merch-page__basket-item-title {
        font-size: 20px;
    }

    .merch-page__basket-item .merch__image-container {
        margin-right: 20px;
        min-width: 130px;
        width: 130px;
        max-width: 130px;
    }

    .merch-page__basket-item-size {
        margin-top: 6px;
        font-size: 14px;
    }

    .merch-page__basket-quantity {
        margin-top: 0;
        position: absolute;
        left: 0;
        bottom: 16px;
    }

    .merch-page__basket-quantity .number {
        max-width: 130px;
        width: 100%;
    }

    .merch-page__basket-quantity span {
        min-width: 40px;
        width: 40px;
        height: 44px;
        font-size: 20px;
    }

    .merch-page__basket-quantity input {
        font-size: 16px;
        min-width: 40px;
        width: 100%;
    }
}

.merch-page__order-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 60px;
}

.merch-page__order-form {
    width: 63%;
    max-width: 707px;
    background: #1E1E22;
    border-radius: 16px;
    padding: 0 30px 30px;
}

.merch-page__order-form-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
    width: calc(100% + 30px)
}

.merch-page__order-form-separator {
    width: 100%;
    height: 1px;
    background: #161616;
    margin-top: 30px;
}

.merch-page__order-form-grid .modal__store-size {
    width: 50%;
    padding: 0 15px;
    padding-top: 30px;
    max-width: 100%;
}

.merch-page__order-form-grid .modal__store-size.full-width {
    width: 100%;
}

.merch-page__order-info {
    padding-left: 60px;
    box-sizing: border-box;
    width: 37%;
}

.merch-page__order-info p {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-family: 'Geometria', 'Arial', sans-serif;
    font-weight: 400;
}

.merch-page__order-info p.title {
    font-size: 24px;
    font-family: 'AGLettericaUltraCompressed', 'Arial', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
}

.merch-page__order-btn {
    margin: 60px -30px -30px;
    width: calc(100% + 60px);
}

.merch-page__order-btn .btn {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    width: 100%;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    font-size: 18px;
    line-height: 1.15;
    text-transform: uppercase;
    color: #fff;
    padding: 22px 15px;
    border-radius: 0 0 16px 16px;
    background: transparent;
    position: relative;
    overflow: hidden;
    font-family: 'Geometria', 'Arial', sans-serif;
    font-weight: 500;
    text-decoration: none;
}

.merch-page__order-btn .btn:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, color-stop(17.72%, #8000FF), color-stop(81.53%, #005EFF));
    background: -webkit-linear-gradient(left, #8000FF 17.72%, #005EFF 81.53%);
    background: -o-linear-gradient(left, #8000FF 17.72%, #005EFF 81.53%);
    background: linear-gradient(90deg, #8000FF 17.72%, #005EFF 81.53%);
    z-index: 1;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.merch-page__order-btn .btn:after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, color-stop(17.72%, #8000FF), color-stop(81.53%, #005EFF));
    background: -webkit-linear-gradient(right, #8000FF 17.72%, #005EFF 81.53%);
    background: -o-linear-gradient(right, #8000FF 17.72%, #005EFF 81.53%);
    background: linear-gradient(-90deg, #8000FF 17.72%, #005EFF 81.53%);
    z-index: 2;
    opacity: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.merch-page__order-btn .btn span {
    position: relative;
    z-index: 3;
}

.merch-page__order-btn .btn:hover:after {
    opacity: 1;
}

@media screen and (max-width: 992px) {
    .merch-page__order-grid {
        padding-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .merch-page__order-grid {
        padding-top: 40px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .merch-page__order-form {
        width: calc(100% + 20px);
        margin: 0 -10px;
        padding: 0;
    }

    .merch-page__order-form-grid {
        margin: 0;
        width: 100%;
    }

    .merch-page__order-form-separator {
        margin-top: 20px;
    }

    .merch-page__order-form-grid .modal__store-size {
        width: 100%;
        padding: 20px 10px 0
    }

    .merch-page__order-info {
        width: 100%;
        margin-left: 0;
        max-width: 100%;
        margin-top: 40px;
        padding: 0;
    }

    .merch-page__order-info p {
        font-size: 14px;
        line-height: 18px;
    }

    .merch-page__order-info p.title {
        margin-bottom: 20px;
    }

    .merch-page__order-btn {
        margin: 30px 0 0;
        width: 100%;
    }

    .merch-page__order-btn .btn {
        padding: 17px 15px;
    }
}
