


.contenedor {
    position: relative;
    /* width: 700px; */
    height: 600px;
    /* background-color: black; */
    border-radius: 15px;
}

.imagen {
    position: absolute;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
}

.imagen img {
    height: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.texto {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 85%;
    color: white;
    font-weight: bold;
}

.contenedor a{
    position: absolute;
    text-decoration: none;
    color: white;
    font-size: 36px;
    top : 50%;
    transform: translateY(-50%);
}
.siguiente {
    left: 98%;
}

.boton {
    position: absolute;
    top: 5%;
    left: 95%;
}

.puntos {
    position: absolute;
    top: 93%;
    width: 100%;
    text-align: center;
}
.punto {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    margin-right: 5px;
}
.punto:hover {
    cursor: pointer;
    background-color: gray;
}
.contenedor a:hover {
    color: gray;
}

.actual {
    visibility: visible;
    opacity: 1;
    transition: visibility 1s, opacity 1s;
}
.activo {
    background-color: gray;
}

/* .scroller {
    width: 100%;
    max-height: 400px;
    overflow-y: scroll;
    scrollbar-color: rebeccapurple green;
    scrollbar-width: 10px;
  } */

  .scroller {
    margin: 2rem auto;
    max-height: 300px;
    width:100%;
    max-width: 400px;
    overflow:auto;
    box-sizing: border-box;
    padding:0 1rem;
    /*Estilos estándar experimentales (Principalmente Firefox)*/
    scrollbar-color: rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
    scrollbar-width: thin;
}

/* Estilos para motores Webkit y blink (Chrome, Safari, Opera... )*/

.scroller::-webkit-scrollbar {
    -webkit-appearance: none;
}

.scroller::-webkit-scrollbar:vertical {
    width:10px;
}

.scroller::-webkit-scrollbar-button:increment,.contenedor::-webkit-scrollbar-button {
    display: none;
} 

.scroller::-webkit-scrollbar:horizontal {
    height: 10px;
}

.scroller::-webkit-scrollbar-thumb {
    background-color: #1F2122;
    border-radius: 20px;
    border: 2px solid #1F2122;
    /* border: 2px solid #f1f2f3; */
}

.scroller::-webkit-scrollbar-track {
    border-radius: 10px;  
}


/* LOADER */
@keyframes theme-halloween-loader-image {
    from {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
    to {
      transform: translateY(0);
    }
  }
  @keyframes theme-halloween-loader-thumb {
    from {
      transform: translateX(-21px);
    }
    50% {
      transform: translateX(54px);
    }
    to {
      transform: translateX(-21px);
    }
  }
  body {
    background-color: #201223;
  }
  .halloween-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .halloween-loader-image {
    margin-bottom: 26px;
    animation: theme-halloween-loader-image 2.8s ease-in-out infinite;
  }
  .halloween-loader-track {
    display: block;
    width: 66px;
    height: 2px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    overflow: hidden;
  }
  .halloween-loader-track::after {
    content: "";
    height: 2px;
    width: 33px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: white;
    animation: theme-halloween-loader-thumb 2.8s ease-in-out infinite;
  }
  
/* FIN LOADER */

.div-center{
  display: flex;
  justify-content: center;
}

