.slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slider__wrapper {
  height: 100%;
  list-style: none;
  overflow: hidden;
  *zoom: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  padding:0;
  margin:0;
}
.slider__item {
  height: 100%;
  float: left;
  clear: none;
  background-size: cover;
  background-position: center
}
.slider__arrows {
	position:absolute;
	bottom: 7px;
	right: 10%;
	height: 56px;
	z-index: 10000;
}
.slider__arrows-item {
  display: block;
  float:left;
  margin: 0 2px;
  cursor: pointer;
  z-index: 100;
  width:56px;
  height: 56px;
  text-indent: -5000px;
  background: #2a3045;
}

.slider__arrows-item--right {
	float:right;
	margin-right: 0;
  text-indent: -5000px;
}
.slider__arrows-item--right:before {
  display:block;
  font-family: Flaticon;
  content: '\e804';
  text-indent: 0;
  font-size: 16px;
  line-height: 56px;
  width:56px;
  text-align: center;
  color:#fff;
}
.slider__arrows-item--left:before {
  display:block;
  font-family: Flaticon;
  content: '\e805';
  text-indent: 0;
  font-size: 16px;
  line-height: 56px;
  width:56px;
  text-align: center;
  color:#fff;
}
.slider__nav {
  position: absolute;
  bottom: 30px;
}
.slider__nav-item {
  width: 12px;
  height: 12px;
  float: left;
  clear: none;
  display: block;
  margin: 0 5px;
  background: #fff;
}
.slider__nav-item--current {
  background: #ccc;
}
.slider__nav-item:hover {
  background: #ccc;
}

