/*------------------------------------*\
    
    WebFX Slick Customizations - Global styling for all slider/carousels

    Add custom slider styling to this file if it should be applied to all slick sliders on the site
    Otherwise, put your slider-specific styles in individual block stylesheets

\*------------------------------------*/


/* Preloader affect for your slider */

/* Add class 'slider-has-preloader' to slider to show  */
.slider-has-preloader:not(.slick-initialized) {
    position: relative;
}

.slider-has-preloader:not(.slick-initialized)>.fx-slide {
    opacity: 0;
}

.slider-has-preloader:not(.slick-initialized):before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid;
    border-color: transparent #AF231C;
    animation: 1s sliderLoad infinite linear;
}

@keyframes sliderLoad {
    0% {
        transform: translate3d(-50%, -50%, 0) rotateZ(0);
    }

    100% {
        transform: translate3d(-50%, -50%, 0) rotateZ(360deg);
    }
}



/* Only show the 1st slide while your slider is loading - Utility Classes
NOTE: Add the .fx-slider class to the wrapper that is holding your entire slider.
NOTE: Add the .fx-slide class to the wrapper of each individual slide.
Guru: https://app.getguru.com/card/ixR67EpT/Slick-Slider
*/

.fx-slider .fx-slide {
    display: none;
}

.no-js-image-card.fx-slider .fx-slide {
    display: block;
}

.fx-slider .fx-slide:first-child {
    display: block;
}

.fx-slider.slick-initialized .fx-slide {
    display: block;
}


.slick-arrow {
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    cursor: pointer;
    outline: none;
    z-index: 8;
    text-align: center;
    color: #00AEEF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in 0.3s;
    background: transparent;
    bottom: 0;
    border: none;
    border-radius: 50%;
    opacity: 0.5;
}

.slick-arrow:focus,
.slick-arrow:hover {
    color: #00AEEF !important;
    opacity: 1;
}

.slick-next {
    right: 50%;
    margin-right: -11px;
}

.slick-prev {
    left: 50%;
    margin-left: -30px;
}

.slick-arrow::before {
    position: absolute;
    width: 100%;
    font-size: 18px;
    line-height: 1em;
    font-family: 'icomoon';
    font-weight: normal;
}

.slick-prev::before {
    content: '\e908';
}

.slick-next::before {
    content: '\e916';
}


.slick-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 1em;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0 16px;
}

.slick-dots li {
    margin: 0 0 0 0;
    padding: 0;
}

.slick-dots li:before {
    display: none;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    background-color: #fff;
    border: none;
    font-size: 0;
    border-radius: 50%;
}

.slick-dots li.slick-active button {
    background-color: #00AEEF;
}