@charset 'UTF-8';
/* Slider */
.slick-slider{overflow:hidden}
.slick-loading .slick-list{background: #fff url('ajax-loader.gif') center center no-repeat}

/* Icons */
@font-face{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url('fonts/slick.eot');
    src: url('fonts/slick.eot?#iefix') format('embedded-opentype'),
         url('fonts/slick.woff') format('woff'),
         url('fonts/slick.ttf') format('truetype'),
         url('fonts/slick.svg#slick') format('svg');
}

/* Arrows */
span.slick-arrow{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;background:#000;text-indent:-999px;overflow:hidden}
span.slick-arrow.slick-prev{left:0}
span.slick-arrow.slick-next{right:0}

button.slick-prev,
button.slick-next{
	position: absolute;
	z-index:15;
	top: 50%;
	font-size: 0;
	line-height: 0;
	display: block;
	width: 120px;
	height: 140px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: 0;
	border-radius: 0;
	outline: none;
	background:rgba(52,62,71,0.8);
	transition: all .3s;
	opacity:1;
}
button.slick-prev:hover,
button.slick-prev:focus,
button.slick-next:hover,
button.slick-next:focus{
	color: transparent;
	outline: none;
	background: #a03334;
	opacity:1
}
button.slick-prev.slick-disabled:before,
button.slick-next.slick-disabled:before{
  opacity: .25;
}
button.slick-prev:before,
button.slick-next:before{
	position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
	font-family:icomoon;
	font-size: 36px;
	line-height: 1;
	color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
button.slick-prev{left:0}
[dir='rtl'] button.slick-prev{right:0;left:auto}
button.slick-prev:before{content:"\e901"}
[dir='rtl'] button.slick-prev:before{content:"\e902"}
button.slick-next{right:0}
[dir='rtl'] button.slick-next{right:auto;left:0}
button.slick-next:before{content:"\e902"}
[dir='rtl'] button.slick-next:before{content:"\e901"}


/* Dots */
.slick-dots{
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li{
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    cursor: pointer;
    border: 0;
	box-shadow: none;
    outline: none;
    background: #aaa;
	border-radius:12px;
}
.slick-dots li button:hover,
.slick-dots li button:focus{outline:none}
.slick-dots li.slick-active button{
    opacity:1;
    background:#000;
}
