@charset "utf-8";
/* Estilo general de la barra */
::-webkit-scrollbar {
  width: 12px;
}

/* Fondo de la barra */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Pulgar (la parte que se mueve) */
::-webkit-scrollbar-thumb {
  background: #9E0507;
  border-radius: 6px;
}

/* Pulgar al pasar el mouse */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
