/******************************

slick_progressbar.css
https://codepen.io/fjacobi/pen/mVJpma

*****************************/
#slick-1{
	padding: 0 0 40px 0;
}

#slick-1 .slick-dots{
	position: absolute;
	bottom: -35px;
	left: 0;
	right: 0;
	text-align: center;
}

#slick-1 .slick-dots li {
	display: inline-block;
	width: 40px;
	height: 2px;
	background: #999;
	margin: 0 5px;
}
#slick-1 .slick-dots li button {
  width: 40px;
  height: 5px;
}
#slick-1 .slick-dots li.slick-active,
#slick-1 .slick-dots li:hover {
  background: #ff6600;
}
#slick-1 .slick-dots li button, 
#slick-1 .slick-dots li button:before {
  color: transparent;
  opacity: 0;
}

/* progress bar */
.slider-progress {
  width: 100%;
  height: 3px;
  background: #999;
}
.slider-progress .progress {
  width: 0%;
  height: 3px;
  background: #ff6600;
}


.image {
	position: relative;  
}
.image img{
	width: 100%;
	height: auto;
}

.slick-arrow {
  position: absolute;
  bottom: 0;
  /*top: 50%;*/
  z-index: 10; /*100*/
  padding: 0; /*4px 8px*/
 /* background: #000;*/
  border: none;
  /*transform: translateY(-50%);*/
  color: #333;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  cursor: pointer;
}
.slick-arrow:hover {
  color: #fff;
  opacity: .6;
}
.slick-prev {
	bottom: 0;
	left: 0;
	width: 50px;
	height: 50px;
	text-indent: -99999px;
	background: rgba(0,0,0,0.8) url("../img/btn_arrow_fff_reverse.svg") center center no-repeat;
	background-size: 25px 10px;
}
.slick-next {
	bottom: 0;
	right: 0;
	width: 50px;
	height: 50px;
	text-indent: -99999px;
	background: rgba(0,0,0,0.8) url("../img/btn_arrow_fff.svg") center center no-repeat;
	background-size: 25px 10px;
}


@media screen and (max-width: 767px) {
.slick-arrow{
	display: none !important;
}
}