.unslider {
	overflow: inherit;
	margin: 0 auto;
	padding: 0;
	position: relative;
	width: 90%;
}
.unslider-wrap {
	position: relative;
}
.unslider-wrap.unslider-carousel>li {
	float: left;
}
.unslider-vertical>ul {
	height: 100%;
}
.unslider-vertical li {
	float: none;
	width: 100%;
}
.unslider-fade {
	position: relative;
}
.unslider-fade .unslider-wrap li {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 8;
}
.unslider-fade .unslider-wrap li.unslider-active {
	z-index: 10;
}
.unslider ul {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	border: none;
}
.unslider li, .unslider ol {
	list-style: none;
	margin: 0;
	padding: 0;
	border: none;
}

/*Navigation Arrows
----------------------------------------------*/
.unslider-arrow {
	position: absolute;
	left: 20px;
	z-index: 50;
	cursor: pointer;
	height: 50px;
	width: 50px;
	background-color: #eb3300;
	top: 42%;
	border-radius: 3px;
}
.unslider-arrow:hover {
	-webkit-transform: scale(1.1);
	   -moz-transform: scale(1.1);
	     -o-transform: scale(1.1);
	        transform: scale(1.1);
}
.unslider-arrow.next {
	left: auto;
	right: -25px;
	background: #eb3300 url(../images/icons//i-arrow-right_white.svg) no-repeat;
	background-size: 20px 20px;
	background-position: center center;
}
.unslider-arrow.prev {
	left: -25px;
	background: #eb3300 url(../images/icons/i-arrow-left_white.svg) no-repeat;
	background-size: 20px 20px;
	background-position: center center;
}

@media only screen and (max-width:768px) {
	.unslider-arrow.next {
		right: -10px;
	}
	.unslider-arrow.prev {
		left: -10px;
	}
}

/*Navigation Dots
----------------------------------------------*/
.unslider-nav ol {
  list-style: none;
  text-align: center;
  position: relative;
  top: -30px;
  z-index: 60;
}
.unslider-nav ol li {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  text-indent: -999em;
  border: 2px solid #fff;
  cursor: pointer;
}
.unslider-nav ol li.unslider-active {
  background: #fff;
  cursor: default;
}

