/* Dots */
.slick-dots{
    position: absolute;
    bottom: -45px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li{
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 8px;
    padding: 0;
    cursor: pointer;
	list-style:none;
}
.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 18px;
    height: 18px;   
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #e9e1f5;
	border-radius:50px;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before{
    opacity: 1;
}
.slick-dots li button:before{
    position: absolute;
    top: 0;
    left: 0;
     width: 18px;
    height: 18px;
    content: 'â€¢';
    opacity: 1;
	background:#cacaca;
	border-radius:50px;
}
.slick-dots li.slick-active button:before{
    outline: none;
	background:#0080cb;
	height:18px;
	width:18px;	
	padding:0;
}
@media only screen and (max-width: 767px){
.slick-dots li{margin: 0 4px;}
}