 .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 {
    position: absolute;
    border: none;
    font-size: 0px;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* .slick-prev {
    background: url(../img/left-arrow.png) center center no-repeat;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: -35px;
    background-size: 64px;
}   

.slick-next {
    background: url(../img/right-arrow.png) center center no-repeat;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 35px;
    background-size: 64px;
} */

.slick-arrow:focus,
.slick-arrow:hover {
    opacity: 0.6;
}
/* 
.slick-next::after {
	content: "\e91a";
	position: absolute;
	top: 0px;
	left: 0;
	color: #48443F;
	font-size: 19px;
	font-family: 'icomoon' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
}

.slick-prev::after {
    content: "\e919";
    position: absolute;
    top: 0px;
    left: 0;
    color: #48443F;
    font-size: 19px;
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
} */

@media(min-width: 1200px) {
    .slick-arrow {
        width: 21x;
        height: 31px;
        bottom: unset;
        top: 50%;
        right: 16px;
        left: unset;
    }

    .slick-prev {
        background: url(../img/left-arrow.png)center center no-repeat;
        left: 0;
        width: 21px;
        height: 31px;
    }   
    
    .slick-next {
        background: url(../img/right-arrow.png) center center no-repeat;
        right: 0;
        width: 21px;
        height: 31px;
    }
}