/**
**Theme Slider Styles
** This file contains the styles for all slider components unless revered to another file.
*/
.spectra-image-gallery.spectra-image-gallery__layout--carousel {
    margin-bottom: 0 !important;
}

.slick-slide>div {
    display: flex;
}



/**arrows*/
button.slick-arrow {
    bottom: 0 !important;
    top: unset !important;
    height: 50px;
    width: 50px !important;
    background-color: #fff !important;
    z-index: 9 !important;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center !important;
    padding: 0 !important;
    bottom: var(--gap-m) !important;
    background-size: 56% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

button.slick-arrow:before {
    display: none;
}

button.slick-arrow.slick-prev {
    left: 50% !important;
    transform: translateX(calc(-100% - 5px));
    background-image: url(../../img/arrow-prev);
}

button.slick-arrow.slick-next {
    right: 50% !important;
    transform: translateX(calc(100% + 5px));
    background-image: url(../../img/arrow-next);
}

.spectra-image-gallery__control-arrows svg {
    display: none !important;
}


/**dots*/
.spectra-image-gallery__layout--carousel ul.slick-dots {
    top: unset !important;
    bottom: -30px;
    position: absolute !important;
}

.uagb-slick-carousel ul.slick-dots li button {
    position: relative !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

ul.slick-dots button::before {
    height: 12px !important;
    width: 12px !important;
    background-color: var(--color-1) !important;
    color: transparent !important;
    opacity: 1 !important;
    border-radius: 50% !important;
    left: unset !important;
    top: unset !important;
}

ul.slick-dots button[aria-selected="true"]:before {
    color: transparent !important;

}

/** SWIPER*/
.swiper-button-next {
    right: 35px !important;
}

.swiper-button-prev {
    left: 35px !important;
}

button.spectra-image-gallery__control-lightbox--close {
    top: 25px !important;
    right: 36px !important;
    width: 21px;
    height: 21px;
}
.swiper-lazy-preloader.swiper-lazy-preloader-white {
  display: none !important;
}
@media screen and (max-width:768px) {
    button.slick-arrow {
        height: 37px;
        width: 37px !important;
        background-size: 58% !important;
    }

    button.slick-arrow.slick-prev {
        left: 50% !important;
        transform: translateX(calc(-100% - 5px));
        background-image: url(../../img/arrow-prev-mobile);
    }

    button.slick-arrow.slick-next {
        right: 50% !important;
        transform: translateX(calc(100% + 5px));
        background-image: url(../../img/arrow-next-mobile);
    }
}