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

/* Arrows */
.slick-prev, .slick-next {
	display: block;
	position: absolute;
    top: 50%;
	margin-top: -43px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5) url(/images/slick_button_right.png) no-repeat center center;
	font-size: 0px;
	line-height: 0px;
	border: none;
    outline: none;
}

.slick-next {
	right: 15px;
}

.slick-prev {
    left: 19px;
	background: rgba(255, 255, 255, 0.5) url(/images/slick_button_left.png) no-repeat center center;
	z-index: 10;
}

/* Dots */
.slick-dotted.slick-slider
{

}

.slick-dots
{
    position: absolute;
    bottom: -60px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
	background-image: none;
}
.slick-dots li button
{
    display: block;
	height: 13px;
    width: 13px;
	cursor: pointer;
	padding: 0px;
	outline: none;
	background: #e7e7f1;
	border-radius: 6px;
	font-size: 0px;
	border: 0px;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li.slick-active button
{
    background: #ee2c51;
}

@media screen and (max-width: 1010px) {
	.slick-dots {
		bottom: -40px;
	}
}

@media screen and (max-width: 760px) {
	.slick-prev, .slick-next {
		margin-top: -58px;
	}
	
	.slick-next {
		right: 9px;
	}

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