html, body::-webkit-scrollbar {
    width:1%;     /* Tamaño del scroll en vertical */
    height: auto;    /* Tamaño del scroll en horizontal */
  padding-top: 1%;
    border:1px #999999;
  /*display: none;   Ocultar scroll */

}
/* Ponemos un color de fondo y redondeamos las esquinas del thumb */
html, body::-webkit-scrollbar-thumb {
  background: rgb(0, 0, 0);
  border-radius: 0px;
}

/* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
html, body::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

/* Cambiamos el fondo cuando esté en active */
html, body::-webkit-scrollbar-thumb:active {
  background-color: #999999;
}
/* Ponemos un color de fondo y redondeamos las esquinas del track */
html, body::-webkit-scrollbar-track {
  background: #797878;
  border-radius: 0px;
  
}

/* Cambiamos el fondo cuando esté en active o hover */
html, body::-webkit-scrollbar-track:hover,
html, body::-webkit-scrollbar-track:active {
background: white;

}



