@charset 'UTF-8';

/* Slider */

.slick-loading .slick-list {
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Arrows */

.slick-prev,
.slick-next {
	position: absolute;
    top: 50%;  
    cursor: pointer;
}
.slick-prev {
    left: 30px;
}
.slick-next {
    right: 30px;
}

/* Dots */

.slick-dots {
    width: 100%;
    display: block;
    position: absolute;
    bottom: 30px;
    text-align: center;
}
.slick-dots li {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin: 0 5px;
}
.slick-dots li button {
   	width: 10px;
    height: 10px;
	background: #dedede;
    color: transparent;
	-webkit-border-radius: 		5px;
	-moz-border-radius: 		5px;
	border-radius: 				5px;
    -webkit-transition: 		all 0.20s ease;
    -ms-transition: 			all 0.20s ease;
    transition: 				all 0.20s ease;
}
.slick-dots li button:hover,
.slick-dots li.slick-active button {
	background: #ff7e00;
}
