.carousel-contenedor {
  position: relative;
}

.carousel-anterior,
.carousel-siguiente {
  position: absolute;
  display: block;
  //width: 20px;
  //height: 20px;
  border: none;
  top: calc(50% - 25px);
  cursor: pointer;
  line-height: 20px;
  text-align: center;
  background: none;
  color: #444;
  opacity: 100%;
  font-size: 2rem;
  z-index: 5000;
}

.carousel-anterior:hover,
.carousel-siguiente:hover {
  opacity: 20%;
  transition: all 0.5s ease;
}

.carousel-anterior {
  left: 10px;
}

.carousel-siguiente {
  right: 10px;
}

.carousel-elemento img {
  //width: 300px;
}

.carousel-lista {
  overflow: hidden;
  justify-content: center;
}

.carousel-indicadores .glider-dot {
  width: 7px;
  height: 7px;
  background: #444;
  opacity: 20%;
  transition: all 0.5s ease;
}

.carousel-indicadores .glider-dot:hover {
  opacity: 50%;
}

.carousel-indicadores .glider-dot.active {
  opacity: 100%;
}
