.drop {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--grey);
}

.single-drops main {
    z-index: 2;
}

.drop .stickers {
    width: calc(100vw * 1300 / var(--page-width));
    /*height: calc(100vw * 865 / var(--page-width));*/
    height: calc(100vw * 864 / var(--page-width));
    position: absolute;
    top: 45%;
    left: calc(100vw * 140 / var(--page-width));
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    background-image: url(../../images/drops-stickers.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 2;
    pointer-events: none;
}

.stickers.mobile {
    display: none;
}

.drop .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: calc(100vw * 86 / var(--page-width))
        calc(100vw * 47 / var(--page-width));
    display: flex;
}

.drop .images {
    width: calc(100vw * 640 / var(--page-width));
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.drop .thumbnails {
    width: calc(100vw * 118 / var(--page-width));
    height: auto;
    margin: 0;
    position: relative;
}

.drop .images .swiper-main {
    width: calc(100vw * 460 / var(--page-width));
    height: auto;
    margin: 0;
    overflow: visible;
}

.drop .images .thumb,
.drop .images .selector {
    width: 100%;
    height: calc(100vw * 118 / var(--page-width)) !important;
    position: relative;
}

.drop .images .thumb {
    margin-bottom: calc(100vw * 20 / var(--page-width));
    cursor: pointer;
}

.drop .images .selector {
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid var(--black);
    pointer-events: none;
    z-index: 1;
    transition: top 0.4s ease;
}

.drop .images .selector[data-position="2"] {
    top: calc(100vw * 118 / var(--page-width) + 100vw * 20 / var(--page-width));
}

.drop .images .selector[data-position="3"] {
    top: calc(100vw * 236 / var(--page-width) + 100vw * 40 / var(--page-width));
}

.drop .images picture {
    position: absolute;
    left: 10%;
    top: 10%;
    width: 80%;
    height: 80%;
}

.drop .images picture img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-information {
    width: calc(100vw * 520 / var(--page-width));
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.product-information > img {
    filter: invert(100%);
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: calc(100vw * 25 / var(--page-width));
}

.product-information h1 {
    display: block;
    margin-bottom: calc(100vw * 18 / var(--page-width));
}

.product-information .text {
    display: flex;
}

.product-information .price {
    font-size: calc(28rem / 13);
    flex: none;
}

.product-information .text > div {
    width: 100%;
    padding-left: calc(100vw * 20 / var(--page-width));
}

.product-information .red-button a {
    width: calc(100vw * 250 / var(--page-width));
    border-color: var(--black);
}

.product-information .red-button a:hover {
    color: var(--black);
}

.drop .swiper-pagination {
    display: none;
}

@media only screen and (max-width: 768px) {
    .drop {
        position: relative;
        height: auto;
        display: block;
    }

    .drop .thumbnails {
        display: none;
    }

    .drop .content {
        position: relative;
        display: block;
        padding: 0;
    }

    .drop .images,
    .product-information .text {
        display: block;
        width: 100%;
        height: auto;
    }

    .drop .images .swiper-main {
        width: 100%;
        height: 123vw;
        overflow: hidden;
    }

    .drop .images picture {
        top: 20%;
    }

    .product-information {
        display: block;
        width: 100%;
        text-align: center;
        padding: calc(100vw * 27 / var(--page-width));
    }

    .product-information > img,
    .product-information h1,
    .product-information .price {
        width: 100%;
        display: block;
        margin-bottom: calc(100vw * 17 / var(--page-width));
    }

    .product-information .text {
        font-size: calc(14rem / 15rem);
    }

    .product-information .text > div {
        padding-left: 0;
    }

    .product-information .red-button a {
        margin: calc(100vw * 17 / var(--page-width)) auto;
    }

    .drop .stickers {
        display: none;
    }

    .stickers.mobile {
        width: 100%;
        height: calc(100vw * 174 / var(--page-width));
        overflow: hidden;
        position: absolute;
        bottom: calc(100vw * 10 / var(--page-width));
        left: calc(100vw * -5 / var(--page-width));
        pointer-events: none;
        display: block;
        z-index: 5;
        transform: translateY(100%);
    }

    .stickers.mobile .inner {
        display: block;
        width: calc(100vw * 429 / var(--page-width));
        height: calc(100vw * 214 / var(--page-width));
        position: absolute;
        top: 0;
        left: 0;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        background-image: url(../../images/drops-stickers-mobile.svg);
    }

    .drop .swiper-pagination {
        display: block;
        position: absolute;
        top: calc(100vw * 36 / var(--page-width));
        left: 0;
        right: 0;
        pointer-events: none;
    }

    .drop .swiper-pagination-bullet {
        pointer-events: initial;
        background-color: var(--black);
        opacity: 0.4;
        width: calc(100vw * 8 / var(--page-width));
        height: calc(100vw * 8 / var(--page-width));
        transform: scale(0.64);
        transition: all 0.4s ease;
        margin: 0 calc(100vw * 2 / var(--page-width)) !important;
    }

    .drop .swiper-pagination-bullet-active {
        opacity: 1;
        transform: scale(1);
        margin: 0 calc(100vw * 3 / var(--page-width)) !important;
    }
}
