.ui-slider_next, .ui-slider_prev {
  cursor: pointer;
  width: 30px;
  height: 100%;
  background: none;
  position: absolute;
  top: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ui-slider_next span, .ui-slider_prev span {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #15181F;
  background: rgba(255, 255, 255, 0.60);
  transition: all 0.3s ease;
  border: 1px solid #FFF;
}






.ui-slider_next {
  right: -20px;
}

.ui-slider_prev {
  left: -20px;
}

.ui-slider_next:hover span, .ui-slider_prev:hover span {
  background: #fff;
}

.ui-slider_next:disabled, .ui-slider_prev:disabled {
  display: none;
}

@media only screen and (max-width: 1440px) {
  .ui-slider_next {
    right: -8px;
  }

  .ui-slider_prev {
    left: -8px;
  }

}

