.wk-carousel-wrap{
  position: relative;
  overflow: visible;
}

.wk-carousel-wrap::before,
.wk-carousel-wrap::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34px;
  pointer-events: none;
  z-index: 5;
}

.wk-carousel-wrap::before{
  left: 0;
  background: linear-gradient(to right, rgba(11,15,23,.90), rgba(11,15,23,0));
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.wk-carousel-wrap::after{
  right: 0;
  background: linear-gradient(to left, rgba(11,15,23,.90), rgba(11,15,23,0));
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.wk-car-btn{
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  cursor: pointer;
  z-index: 10;
  background: transparent;
  transform: translateY(-50%);
}

.wk-car-btn-left{
  left: -56px;
}

.wk-car-btn-right{
  right: -56px;
}

.wk-car-btn::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.38);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

.wk-car-btn:hover::after{
  background: rgba(0,0,0,.55);
}

.wk-car-btn::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 3px solid rgba(255,255,255,.95);
  border-bottom: 3px solid rgba(255,255,255,.95);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.wk-car-btn-left::before{
  transform: translate(-50%, -50%) rotate(135deg);
}

@media (max-width: 900px){
  .wk-car-btn{
    display: none;
  }

  .wk-carousel-wrap::before,
  .wk-carousel-wrap::after{
    width: 18px;
  }
}
