.product-page__images {
    top: 0;
    position: sticky;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid var(--secondary-border-color);
    margin: 0 0 -1px;
    height: 67rem;
}

.product-page__images-sticky {
    position: relative;
    width: 50%;
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 3rem;
}

.image-slider__left {
    position: relative;
    width: 16rem;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-right: 1px solid var(--secondary-border-color);
    padding: 0 0 12rem;
}

.image-slider__main {
    position: relative;
    -ms-flex: 1;
    flex: 1;
    max-width: calc(100% - 16rem);
}

.c-carousel__images {
    width: 100%;
    height: 100%;
    border-radius: 10px 0 0 0;
}

.image-slider__left .swiper-slide {
    border-bottom: 1px solid var(--secondary-border-color);
    cursor: pointer;
    transition: background 0.25s;
}

.images__slider__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 1.5rem;
}

.images__slider__item img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    transition: transform 0.25s;
    mix-blend-mode: multiply;
}

.image-slider__left .swiper-slide-thumb-active {
    background: var(--accent-background-color);
}

.images__big {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 4rem 2rem 7.2rem;
}

.main-product-slider__container {
    width: 100%;
    height: 100%;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    object-position: top;
}

.main-img__wrap {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.images__link {
    width: 100%;
    height: 100%;
}

@media (min-width: 769px) {   
    .main-img__wrap:hover .main-img {
        opacity: 0;
    }
}

.modal-video {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #00000060;
    display: none;
    z-index: 9999099;
}

.modal-video__close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 10px;
    width: 45px;
    height: 45px;
    z-index: 999;
    transition: all 0.2s;
}

.modal-video__close:hover {
    background: #fff;
    color: #000;
}

.modal-video__close svg {
    width: 100%;
    height: 100%;
}

.modal-video__container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%,-50%, 0);
    max-width: calc(100% - 200px);
    max-height: calc(100% - 200px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1920/1024;

}

.modal-video__container iframe {
    width: 100%;
    height: 100%;
}

.main-image__button-video {
    color: var(--link-color);
    transition: opacity 0.25s, color 0.25s;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3.5rem;
    z-index: 100;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
    cursor: pointer;
}

.main-image__button-video:hover {
    opacity: 0.7;
}

.main-image__button-video .icon-video {
    width: 4.4rem;
    height: 3.2rem;
    margin: 0 1.2rem 0 0;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    fill: currentColor;
    fill-rule: evenodd;
}

.image-slider__buttons {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 16rem;
    height: 12.2rem;
    display: -ms-flexbox;
    display: flex;
    z-index: 100;
    border-top: 1px solid var(--secondary-border-color);
    background: #fff;
}

.image-slider__buttons svg {
    width: 1.6rem;
    height: 0.9rem;
    vertical-align: middle;
    position: relative;
    fill: currentColor;
    fill-rule: evenodd;
    display: block;
}

.swiper-button-prev-copy,
.swiper-button-next-copy {
    position: relative;
    -ms-flex: 1;
    flex: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
    height: 100%;
    color: var(--main-text-color);
    border-radius: 0;
    transition: background 0.25s;
    justify-content: center;
    cursor: pointer;
}

.swiper-button-prev-copy:hover,
.swiper-button-next-copy:hover {
    background: var(--accent-background-color);
}

.image-slider__buttons>* {
    border-right: 1px solid var(--secondary-border-color);
}

.swiper-button-prev-copy.disable,
.swiper-button-next-copy.disable {
    pointer-events: none;
}

.swiper-button-prev-copy.disable svg,
.swiper-button-next-copy.disable svg {
    opacity: 0.1;
}

@media (max-width: 1200px) {
    .product-page__images-sticky {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-page__images {
        flex-direction: column-reverse;
        height: calc(100vw + 91px);
        max-height: 67rem;
    }

    .image-slider__left {
        width: 100%;
        padding: 0;
        border: none;
        border-top: 1px solid var(--secondary-border-color);
        height: 91px;
    }

    .image-slider__buttons {
        display: none;
    }

    .image-slider__left .swiper-slide {
        border: none;
        border-left: 1px solid var(--secondary-border-color);
    }

    .image-slider__main {
        max-width: none;
        flex: auto;
        height: calc(100% - 91px);
    }

    .images__big {
        padding: 0;
    }
    .main-image__button-video {
        bottom: 1.5rem;
    }
    .image-slider__main .swiper-slide {
        padding: 5rem;
    }
}

@media (max-width: 768px) {
    .modal-video__container {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate3d(-50%,-50%, 0);
        max-width: calc(100% - 20px);
        max-height: calc(100% - 20px);
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1920/1024;
    
    }
}

@media (max-width: 650px) {
    .product-page__buy-buttons {
        flex-wrap: wrap;
    }
}