/**
**Theme Slider Styles
** This file contains the styles for all slider components unless revered to another file.
*/
.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;

}

.spectra-image-gallery.spectra-image-gallery__layout--carousel {
    margin: 0 !important;
}

.slick-slide>div {
    display: flex;
}

.slick-dotted.slick-slider {
    margin-bottom: 0 !important
}

/**arrows*/
button.slick-arrow {
    padding: 0 !important;
    bottom: calc(var(--gap-m) + var(--gap-s)) !important;
    top: unset !important;
    z-index: 99;
    opacity: 1;
    width: auto !important;
    height: auto !important;
}

button.slick-arrow:before {
    display: none;
}

button.slick-arrow.slick-prev {
    right: unset !important;
    left: 50% !important;
    transform: translateX(calc(-100% - 10px)) !important;
}

button.slick-arrow.slick-next {
    left: unset !important;
    right: 50% !important;
    transform: translateX(calc(100% + 10px)) !important;
}

button.slick-arrow svg {
    display: none;
}

button.slick-arrow:after {
    content: '';
    display: block;
    --my-size: 2rem;
    height: var(--my-size);
    width: var(--my-size);
    background-image: var(--wpr-bg-402bab40-37bf-4937-8f0d-e3583d5b549b);
    filter: brightness(13);
    background-size: contain;
    background-position: center center;
}

button.slick-arrow.slick-prev:after {
    rotate: 180deg;
}

@media screen and (max-width:576px) {

    button.slick-arrow {
        bottom: var(--gap-s) !important;
    }

    button.slick-arrow.slick-next {
        transform: translateX(calc(100% + 5px)) !important;
    }

    button.slick-arrow.slick-prev {
        transform: translateX(calc(-100% - 5px)) !important;
    }

    button.slick-arrow:after {
        --my-size: 1.4rem;
    }

}