/*------------------------------------*\
    
    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;
}

.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;
    bottom: 0;
    display: block;
	width: 50px;
	height: 50px;
	padding: 0;
	cursor: pointer;
	border: none;
	outline: none;
	z-index: 9;
	text-align: center;
	color: #FFFFFF;
	/*     background-color: rgba(0,147,178,0.5); */
	background-color: rgba(25, 72, 134, 0.9);
    border-radius: 50%;
    box-shadow: 0 0px 99px rgba(0,57,125,0.30);
}

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

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

.slick-arrow::before {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 22px;
    line-height: 1em;
    font-family: 'fluid-conservation-icomoon';
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
    content: "\e906";
}

.slick-prev::before {
    left: 0;
    padding-right: 2px;
    content: "\e905";
    
}

.slick-next::before {
    right: 0;
    padding-left: 2px;
}

.slick-arrow:hover {
/*     color: #0093B2; */
	color: #194886;
    background-color: #FFFFFF;
/*     border: 1px solid #0093B2; */
	border: 1px solid #194886;
}


@media (min-width: 768px) {
    .slick-arrow {
        top: 50%;
        margin-top: -25px;
    }

    .slick-next {
        right: 52px;
        margin-right: 0;
    }
    
    .slick-prev {
        left: 52px;
        margin-left: 0;
    }
}

@media (min-width: 1200px) {

    .slick-next {
        right: 60px;
    }
    
    .slick-prev {
        left: 60px;
    }

    
}


/* slick-dots */
.slick-dots {
    padding: 0 0;
    margin: 0;
    list-style: none;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
}

.slick-dots li {
    display: inline-block;
    cursor: pointer;
    margin: 0 3px;
    padding: 0;
    border-radius: 0%;
    line-height: 1em;
    text-align: left;
}

.slick-dots li:only-child {
    display: none;
}

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

.slick-dots li button {
    display: block;
    cursor: pointer;
    outline: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
/*     background: rgba(0,147,178,0.2); */
	background-color: rgba(25, 72, 134, 0.3);
    border: none;
    padding: 0;
    text-indent: -99999px;
}

.slick-dots li.slick-active button {
/*     background: rgba(0,147,178,1); */
	background-color: var(--primary-color);
}

