/* START Carousel Styles */

body.hide-scrollbar {
    overflow: hidden;
}

.gallery-base {
    display: flex;
    gap: 20px;
    width: 100%;
    user-select: none;
}

.gallery-base .list-images {
    display: block;
}

.gallery-base .list-images .image-cont {
    width: 80px;
    height: 80px;
    cursor: pointer;
    display: flex;
    justify-content: center;
}

.gallery-base .list-images .image-cont .image {
    max-width: 100%;
    max-height: 100%;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
}

.gallery-base .list-images .image-cont .image:hover {
    transform: none;
}

.gallery-base .list-images .image-cont .image.active {
    border-color: #222222;
}

.gallery-base .list-images .image-cont+.image-cont {
    margin-top: 20px;
}

.gallery-base .full-view {
    display: block;
    position: static;
    width: 100%;
    /* transition: .5s all ease; */
    cursor: zoom-in;
    overflow: hidden;
    /*min-height: 450px;*/
}

.gallery-base .full-view.fullscreen {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100vh;
    animation: .25s animateViewOut;
}

@keyframes animateSlider {
    0% {
        display: block;
        position: static;
        width: 100%;
        /* transition: .5s all ease; */
        cursor: zoom-in;
        overflow: hidden;
        min-height: 450px;
        max-height: 450px;
    }

    100% {
        display: block;
        position: static;
        width: 100%;
        /* transition: .5s all ease; */
        cursor: zoom-in;
        overflow: hidden;
        min-height: 450px;
        max-height: 450px;
    }
}

.gallery-base .full-view.hidefullscreen {
    animation: .25s animateViewOut;
}

@keyframes animateView {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes animateViewOut {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.gallery-base .full-view .main-image {
    position: relative;
    background-color: #fefcfc;
    /* border: 1px solid #dedede; */
    animation: .25s animateView;
}

.gallery-base .full-view .main-image.fullscreen {
    position: relative;
    min-height: 100%;
    animation: .25s animateViewOut;
}

@keyframes animateImage {
    0% {
        position: static;
        min-height: 200px;
    }

    100% {
        position: static;
        min-height: 200px;
    }
}

.gallery-base .full-view .main-image .images {
    display: flex;
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translateX(0);
    min-width: 100%;
}

.gallery-base .full-view .main-image .images .image-cont {
    min-width: 100%;
}

.gallery-base .full-view .main-image .images .image-cont img {
    width: 100%;
}

.gallery-base .full-view .main-image .images .image-cont .image {
    max-width: 100%;
    width: fit-content;
    max-height: 100%;
    min-height: 100%;
}

.fullview-buttons {
    position: fixed;
    align-items: center;
    gap: 20px;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    visibility: hidden;
}

.fullview-buttons.show {
    visibility: visible;
    bottom: 40px;
    z-index: 1;
}

.fullview-buttons.close {
    visibility: hidden;
}

.fullview-buttons .button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background-color: #ffffff;
}

.fullview-buttons .button.move {
    height: 50px;
    width: 50px;
    min-width: 35px;
}

.fullview-buttons .button.close {
    height: 60px;
    width: 60px;
    min-width: 35px;
}


.swiper-container {
    width: 100%;
    max-width: 600px;
    /* height: 400px; */
    margin: 0 auto;
}

.swiper-container.fullscreen {
    max-width: fit-content;
    height: 100%;
    cursor: zoom-in;
    /* animation: 3s animateZoomIn */
    position: absolute;
    top: 0px;
    left: 0px;
}

@keyframes animateZoomIn {
    0% {
        left: 0px;
        height: auto;
        max-width: 600px;
    }

    100% {
        left: 200px;
        height: 100%;
        max-width: 600px;
    }
}

.swiper-slide.fullscreen {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide.zoomin {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
    max-height: 100vh;
    max-width: 100vw;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.swiper-slide img.fullscreen {
    width: fit-content;
    height: 100%;
    border-radius: 0px;
    cursor: zoom-in;
}

.swiper-slide img.zoomin {
    width: fit-content;
    height: 120%;
    border-radius: 0px;
    cursor: grab;
}

.swiper-pagination {
    position: static;
    margin-top: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 25px;
}

.hide {
    display: none !important;
}

.swiper-pagination .swiper-pagination-bullet {
    background-color: #ff5943;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: .25s all ease;
    cursor: pointer;
    margin: 0px !important;
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet:hover {
    width: 12px;
    height: 12px;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid #ff5943;
    background-color: #ffffff;
    width: 16px;
    height: 16px;
}

.swiper-button-prev {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background-color: #ff5943;
    color: #fff;
    top: 50%;
    width: 50px;
    height: 50px;
    /* transform: translateY(-50%); */
    z-index: 2;
    transition: .25s all ease;
    visibility: hidden;
    opacity: 0;
}

.swiper-button-prev::after {
    content: "";
}

.swiper-button-next {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background-color: #ff5943;
    color: #fff;
    top: 50%;
    width: 50px;
    height: 50px;
    /* transform: translateY(-50%); */
    z-index: 2;
    transition: .25s all ease;
    visibility: hidden;
    opacity: 0;
}

.swiper-button-next::after {
    content: "";
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    width: 55px;
    height: 55px;
}

.swiper-container:hover .swiper-button-prev {
    visibility: visible;
    opacity: 1;
}

.swiper-container:hover .swiper-button-next {
    visibility: visible;
    opacity: 1;
}

.zoom-btn {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: .25s all ease;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 22px;
    background-color: #ff5943;
    color: #ffffff;
    z-index: 2;
    visibility: visible;
    opacity: 1;
}


@media screen and (max-width: 1000px) {
    .gallery-base .full-view .main-image {
        height: fit-content;
    }
}

@media screen and (max-width: 575px) {
    .no-padding {
        padding-left: 0;
        padding-right: 0;
    }

    .gallery-base .list-images {
        display: none;
    }

    .gallery-base .full-view .main-image.fullscreen {
        min-height: 100%;
        height: 100%;
    }

    .product-page .image-cont {
        width: 100%;
    }

    .gallery-base .full-view .main-image .images .image-cont {
        background-position: center;
    }

    .swiper-pagination {
        display: flex;
    }

    .swiper-container {
        position: static;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    .swiper-slide img.fullscreen {
        width: 100%;
        height: fit-content;
        border-radius: 0px;
        cursor: zoom-in;
    }

    .swiper-slide img.zoomin {
        width: 120%;
        height: fit-content;
        border-radius: 0px;
        cursor: grab;
    }
}

/* END Carousel Styles */