/*
 * © Bugaev Ivan
 * This code is protected by copyright.
*/

.biv-slider {
  position: relative;
}
.biv-slider-bg {
  position: relative;
  overflow: hidden;
}
.biv-slider-item {
  background-position: center top;
  background-size: cover;
  z-index: 9;
  position: absolute;
  top: 0px;
  left: 0px;
}
.biv-slider-content {
  width: 100%;
  z-index: 999;
  position: absolute;
  top: 0px;
  left: 0px;
}
.biv-slider-btn-left {
  position: absolute;
  left: 50px;
  z-index: 99999;
  margin-top: 15px;
  display: inline-block;
  background-color: #01edc9;
  color: #fff;
  font-size: 24px;
  line-height: 24px;
  width: 100px;
  height: 48px;
  padding-top: 12px;
  text-align: center;
  cursor: pointer;
}
.biv-slider-btn-left:hover {
  background-color: #0dd0b3;
  color: #fff;
}
.biv-slider-btn-right {
  position: absolute;
  right: 50px;
  z-index: 99999;
  margin-top: 15px;
  display: inline-block;
  background-color: #01edc9;
  color: #fff;
  font-size: 24px;
  line-height: 24px;
  width: 100px;
  height: 48px;
  padding-top: 12px;
  text-align: center;
  cursor: pointer;
}
.biv-slider-btn-right:hover {
  background-color: #0dd0b3;
  color: #fff;
}
@media (max-width:1499px){
  .biv-slider-btn-left {
    bottom: 50px;
  }
  .biv-slider-btn-right {
    bottom: 50px;
  }
}
@media (max-width:991px){
  .biv-slider-btn-left {
    display: none;
  }
  .biv-slider-btn-right {
    display: none;
  }
}
@media (min-width:1500px){
  .biv-slider-btn-left {
    top: 50%;
  }
  .biv-slider-btn-right {
    top: 50%;
  }
}