/*------------------------------------*\
    
    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
NOTE: .your-slider should be the class that is holding your entire slider.
NOTE: .slide is the class you have on each slide before any js classes are added.
Guru: https://app.getguru.com/card/ixR67EpT/Slick-Slider
*/

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

.slick-dots li {
    display: inline-block;
    cursor: pointer;
    margin: 0 6px;
    padding: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    line-height: 16px;
    text-align: center;
    background: #E3E3E3;
}
    
.slick-dots li::before {
    display: none;
}

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

.slick-dots li button {
    display: block;
    cursor: pointer;
    outline: none;
    border-radius: 50%;
    background-color: transparent;
    width: 16px;
    height: 16px;
    border: none;
    padding: 0;
    text-indent: -99999px;
}

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

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


/* slick-prev,
slick-next */

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

.slick-prev {
    left: -5px;
}

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

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

.slick-prev:hover,
.slick-prev:focus {
    color: #D34100;
}

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

.slick-next:hover,
.slick-next:focus {
    color: #D34100;
}

/* Slick Inner Style */

.meet-customer .slick-initialized .slick-slide {
    margin: 0 8px;
}

.meet-customer .slick-list {
    margin: 0 20px;
}


@media (min-width: 768px) {
    .slick-prev::before,
    .slick-next::before  {
        font-size: 24px;
    }

    .slick-prev,
    .slick-next {
        margin-top: -16px;
}
}








