.popup.fullPage {
    position: fixed;
    left: 0;
    top: 100%;
    height: 100vh;
    width: 100%;
    background-color: #fff;
    z-index: 1;
}

.popup.fullPage.active {
    top: 170px;
}

.fullPage__container {
    max-width: 1360px;
    /* padding: 0 230px; */
    padding-top: 24px;
    margin: 0 auto;
    position: relative;
}

.fullPage__container .popup__close {
    top: 24px;
}

.fullPage__container .popup__close span {
    font-size: 14px;
}

.fullPage .productSlider {
    display: flex;
    gap: 158px !important;
}

.fullPage .productSlider__container--for {
    width: 50%;
}

@media (max-width: 1199px) {
    .popup.fullPage.active {
        top: 135px;
    }

    .fullPage .productSlider {
        gap: 16px !important;
    }

    .fullPage__container .popup__close {
        top: 10px;
    }
}

@media (max-width: 767px) {
    .popup.fullPage.active {
        top: 105px;
    }

    .fullPage .productSlider {
        flex-direction: column;
    }

    .fullPage .productSlider__nav {
        width: 100%;
        gap: 40px;
    }
}

/* Слайдер изображений при полном просмотре */
.fullPage .productSlider__nav,
.fullPage .productImage--preview img,
.fullPage .productImage--preview {
    width: 130px;
    cursor: pointer;
}

.fullPage .productSlider__nav .slick-track {
    transform: none !important;
}

.fullPage .productImage img {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.fullPage .productSlider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fullPage .productSlider__arrow:hover {
    color: #FD6241;
    transition: all 0.2s ease;
}

.productSlider__container--for {
    position: relative;
}

.fullPage .productSlider__arrow--prev {
    left: 20px;
}

.fullPage .productSlider__arrow--next {
    right: 20px;
}

.fullPage .productSlider__for img {
    width: 800px;
}

@media (max-width: 767px) {
    .fullPage .productSlider__nav {
        width: 100%;
    }
}