.swiper-simple__btn:after {
  line-height: 1;
  font-size: 36px;
}

.swiper-simple__btn {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  height: 100%;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  padding: 0;
  border: 0;
}
.swiper-simple__btn--next {
  left: auto;
  right: 0;
}
.swiper-simple__btn--prev {
  right: auto;
  left: 0;
}
.swiper-simple__btn:after {
  text-shadow: 0px -2px 13px rgb(149 149 149);
}

.swiper-simple__pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: #fff;
  opacity: 0.7;
}
.swiper-simple__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #fff;
}

.swiper-simple__controls-wrapper {
  text-align: center;
  margin-top: 20px;
}
.swiper-simple__controls {
  display: inline-flex;
  justify-content: space-between;
  gap: 20px;
  justify-items: center;
}
.swiper-simple__controls .swiper-simple__btn {
  position: static;
  opacity: 1;
}

.swiper-simple__controls .swiper-simple__pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1200px) {
  .swiper-simple__btn {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .swiper-simple:hover .swiper-simple__btn {
    opacity: 0.8;
  }
  .swiper-simple__btn:hover {
    opacity: 1;
  }
}

@media (max-width: 575.98px) {
  .swiper-simple__btn {
    opacity: 0.8;
  }
  .swiper-simple__btn:after {
    font-size: 16px;
  }
}

.swiper-simple__controls .swiper-simple__btn.swiper-button-disabled {
  opacity: 0.35 !important;
}
