/* Estilos del modal */
#myModal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index:999;
}

#modalContent {
  padding: 20px;
  min-width: 300px;
  width: 100%;
  text-align: center;
  height: 100%;
  overflow: auto;
}

button.close {
    cursor: hidden;
    position: absolute;
    z-index: 1000;
    right: 2.5rem;
    top: 1.5rem;
    background: #fff;
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 3px;
}

.slide {
  display: none;
}

.active {
  display: block;
}

/* Estilos de botones */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 24px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px;
  transform: translateY(-50%);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}