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

/* Arrows */
.slick-next{
	/*display:none !important;*/
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom:7%;
	margin-bottom:-8px;
    width: 43px;
    height: 43px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background-image: url(../../imgs/elem/dir.png);
	background-size:contain;
	background-position:center;
	background-repeat:no-repeat;
	right: calc(50% - 80px);

}
.slick-next:hover{
    background-image: url(../../imgs/elem/dir_.png);
}

.slick-prev{
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom:7%;
	margin-bottom:-8px;
    width: 43px;
    height: 43px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
	background-image: url(../../imgs/elem/esq.png);
	background-size:contain;
	background-position:center;
	background-repeat:no-repeat;
	left:calc(50% - 80px);
	z-index:99;

}
.slick-prev:hover{
    background-image: url(../../imgs/elem/esq_.png);
}
@media only screen and (max-width: 500px) {
	.slick-prev{
		left: 30px;
	}
	.slick-next{
		right: 30px;
	}
}

/* Dots */
.slick-dots{
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
	left:0px;
    list-style: none;
    text-align: center;
}
.slick-dots li{
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
	background:#fff;
	border-radius:50%;
	
    margin:0 3px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li:hover,
.slick-dots li:focus,
.slick-dots li.slick-active{
	background:#009FC4;
}

.gallery .slick-dots{
    top:auto;
	bottom:10px;
    width: 100%;
	height:15px;
    padding: 0;
	right:auto;
}
.gallery .slick-dots li{
    margin-bottom: 0;
	margin-right: 6px;
	float:none;
	display:inline-block;
	width: 7px;
	height: 7px;
}

.slick-dots li button{
	display:none;
    font-size: 0;
    line-height: 0;
    width: 100%;
    height: 100%;
    padding:0px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
/*@media only screen and (max-width: 650px) {
	.slick-dots{
		width: 15px;
		right:10px;
	}
	.slick-dots li{
		width: 15px;
		height: 15px;
		padding-bottom:5px;
	}
}
*/


.slick_arrows{
 width:60px;
 height:60px;
 position:absolute;
 bottom:0%;
 left:60px;
 background:url(../../imgs/elem/next.png) no-repeat center;
 background-size:cover;
 z-index:20;
 cursor: pointer;
 
 -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.slick_arrows.next{
  right:0px;
  background:url(../../imgs/elem/next.png) no-repeat center;
  background-size:cover;
}
.slick_arrows.prev{
  left:0px;
  background:url(../../imgs/elem/prev.png) no-repeat center;
  background-size:cover;
}

.slick_arrows:hover, .slick_arrows.disabled{opacity:0.5}

@media only screen and (max-width: 800px) {
	.slick_arrows.next{
		left:auto;
		right:0;
	}
}
@media only screen and (max-width: 600px) {
	.slick_arrows{
	 width:30px;
	 height:30px;
	}
}