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

.slick-arrow {
    left: 50%;
    position: absolute;
    bottom: 25px;
    transform: translate(-50% , 0);
    width: 50px;
    height: 50px;
    border: none;
    font-size: 0px;
    z-index: 1;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 44px rgba(0,0,0,0.15);
}

.slick-prev {
    background: url(../img/prev-arrow.svg) center center no-repeat #fff;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: -35px;
}   

.slick-next {
    background: url(../img/next-arrow.svg) center center no-repeat #fff;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 35px;
}

.slick-arrow:focus,
.slick-arrow:hover {
    border-color: #C02626;
}

.slick-prev:focus,
.slick-prev:hover {
    background: url(../img/prev-arrow-h.svg) center center no-repeat #10AA7A;
}

.slick-next:focus,
.slick-next:hover {
    background: url(../img/next-arrow-h.svg) center center no-repeat #10AA7A;
}