.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;
}
.slider__item {
  height: 100%;
  float: left;
  clear: none;
}
.slider__arrows-item {
  position: absolute;
  display: block;
  margin-bottom: -20px;
  padding: 20px !important;
  width: 44px;
  height: 44px;
}
.slider__arrows-item--right {
  background: url(../image/arrows-right-small.png) no-repeat center center;
  bottom: 50%;
  right: 30px;
  text-indent: -9999px;
}
.slider__arrows-item--right:hover{
  background-color: #ccc;
}

.slider__arrows-item--left {
  background: url(../image/arrows-left-small.png) no-repeat center center;
  bottom: 50%;
  left: 30px;
  text-indent: -9999px;
}
.slider__arrows-item--left:hover{
  background-color: #ccc;
}

.slider__nav {
  width: 70px !important;
  position: absolute;
  bottom: 30px;
  margin-left: 45px !important;
}
.slider__nav-item {
  width: 12px;
  height: 12px;
  float: left;
  clear: none;
  display: block;
  margin: 0 5px;
  
  background: #fff;
  -webkit-border-radius: 100% 100%;
          border-radius: 100% 100%;
}
.slider__nav-item--current {
  background: #ff9a03;
}
.slider__nav-item:hover {
  background: #ccc;
}
