@charset "utf-8";

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

/* Arrows */
.slick-prev,
.slick-next
{
	z-index: 10;
    position: absolute;
    top: 50%;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    margin-top: -31px;
	border: none;
	background: rgba(0,0,0,0.7);
	text-align: center;
	text-indent: -9999px;
	line-height: 49px;
    font-size: 10px;
    color: #ffffff;
	color: rgba(23,255,44,1);
    cursor: pointer;
    outline: none;
	-webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);	
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
	transition: all 0.2s;
}

.slick-prev {
    left: 1px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	background-image: url('../../images/icon-arrow-left-white.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 10px 19px;
}

.slick-next {
    right: 1px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	background-image: url('../../images/icon-arrow-right-white.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 10px 19px;
}

.slick-prev:hover {
	background: rgba(0,0,0,1);
	background-image: url('../../images/icon-arrow-left-white.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 10px 19px;
}

.slick-next:hover {
	background: rgba(0,0,0,1);
	background-image: url('../../images/icon-arrow-right-white.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 10px 19px;
}

/* Dots */
.slick-slider
{
    margin-bottom: 0;
}

.slick-dots
{
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 15px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}

.slick-dots li button:before
{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
	border-radius: 50%;
	background: #ffffff;
	background: rgba(255,255,255,0.5);
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before
{
	background: rgb(159,38,255);
	background: -moz-linear-gradient(90deg, rgba(159,38,255,1) 0%, rgba(255,134,79,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(159,38,255,1) 0%, rgba(255,134,79,1) 100%);
	background: linear-gradient(90deg, rgba(159,38,255,1) 0%, rgba(255,134,79,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9f26ff",endColorstr="#ff864f",GradientType=1);
}
