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

.js-slider-has-preloader {
    /* Add class to slider to show  */
    min-height: 50px;
    position: relative;
}

.js-slider-has-preloader:before {
    content: url('../img/loading.gif');
    /* Create and upload a loading gif to your image directory */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    /* Update width based on gif size */
    height: 50px;
    /* Update height based on gif size */
    transition: all .5s ease;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.js-slider-has-preloader-init:before {
    -webkit-transform: scale(0);
    transform: scale(0);
}



/* 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-dots {
    position: absolute;
    width: 100%;
    bottom: 15px;
    padding-left: 19px;
}

.slick-dots li {
    padding: 0 3px;
    margin: 0;
}
.slick-dots li::before {
    display: none;
}

.slick-dots li button {
    display: block;
    cursor: pointer;
    outline: none;
    border: none;
    padding: 0;
    text-indent: -99999px;
    width: 10px;
    height: 10px;
    background-color: #fff;

}

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

@media( min-width: 1200px ) {
    .slick-dots li button {
        width: 15px;
        height: 15px;    
    }
}


@media( min-width: 1366px ) {
    .slick-dots {
        width: 1366px;
        left: 50%;
        margin-left: -683px;
        padding-left: 22px;
    }
}



/* slick-prev,
slick-next */

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: 0%;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    color: #fff;
    border: none;
    outline: none;
    background: #517891;
    z-index: 9;
    text-align: center;
    border-radius: 0;
    margin-top: -0;
}

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

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

.slick-prev::before {
    content: "\e905";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 16px;
    line-height: 2.5em;
    font-family: 'icomoon' !important;
}

.slick-next::before {
    content: "\e906";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 16px;
    line-height: 2.5em;
    font-family: 'icomoon' !important;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background: #214B6A;
}



@media (min-width: 768px) {
    .slick-prev {
        left: auto;
        right: 66px;
        margin-left: 0;
    }

    .slick-next {
        right: 16px;
        margin-right: 0
    }
}

@media (min-width: 1200px) {
    .slick-prev {
        right: 64px;
    }

    .slick-next {
        right: 16px;
    }
}