/* Ocultar scrollbar */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ancho del scrollbar */
::-webkit-scrollbar {
  height: 8px;
}

/* fondo del track */
::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 10px;
}

/* barra que se mueve */
::-webkit-scrollbar-thumb {
  background: #ef4444;
  border-radius: 10px;
}

/* efecto hover */
::-webkit-scrollbar-thumb:hover {
  background: #dc2626;
}


/* cursores */
* {
    cursor: url('/img/cursor/cursor.cur') 0 0, auto;
}
