.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: 7rem;
    max-height: 7rem;
    width: 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;
    }
}

.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;
}

.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);
    }

    .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: calc(100% - 14px);
        flex: auto;
    }

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

    .main-img{
        max-height: 420px;
    }
}

@media (max-width: 500px) {
    .product-page__buy-buttons {
        flex-direction: column;
    }
    .images__link{
        height: auto;
    }
    .main-img{
        max-height: 300px;
    }
}