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

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

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

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

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

.slick-dots li {
    display: inline-block;
    cursor: pointer;
    margin: 0 8px;
    padding: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    line-height: 1.1em;
    text-align: center;

}

.slick-dots li::before {
    width: 17px;
    height: 17px;
    border: 1px solid #D1362A;
    border-radius: 50%;
    background: #ffffff;
    top: 0;
    z-index: -1;
    opacity: 0;
}

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

.slick-dots li button {
    display: block;
    cursor: pointer;
    outline: none;
    border-radius: 50%;
    background: #B4B4B5;
    width: 11px;
    height: 11px;
    border: none;
    padding: 0;
    text-indent: -99999px;
    margin: 4px 4px;
}

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

.slick-dots li.slick-active::before {
    opacity: 1;
}

@media (min-width: 1200px) {
    .slick-dots {
        text-align: left;
        left: 16px;
    }
}


@media (min-width: 1366px) {
    .slick-dots {
        left: 50%;
        max-width: 1354px;
        margin-left: -662px;
        text-align: left;
    }
}

/* slick-prev,
slick-next */

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: 0;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    cursor: pointer;
    border: none;
    outline: none;
    background: #fff;
    z-index: 9;
    text-align: center;
    border-radius: 8px;
    color: #C9CED3;
    border: 1px solid #C9CED3;
    transition: all .4s ease-in-out;
}

.slick-prev::before,
.slick-next::before {
    color: #00BCE4;
}

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

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

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

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

@media (min-width: 1200px) {
    .slick-prev,
    .slick-next {
        width: 56px;
        height: 56px;
    }

    .slick-prev::before,
    .slick-next::before {
        line-height: 2.8em;
    }
}