/* Swiper */

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

.swiper-button-prev.flechas,
.swiper-button-next.flechas {
  background-color: var(--color-blanco);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  visibility: hidden;
}

@media (min-width: 750px) {
  .swiper-button-prev.flechas,
  .swiper-button-next.flechas {
    background-color: var(--color-blanco);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    visibility: visible;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 30px !important;
  color: var(--color-oscuro);
}
.swiper-pagination-bullet-active {
  background-color: var(--color-oscuro) !important;
}
