.cursor-pointer {
  cursor: pointer;
}

/* Nascondi la scrollbar su Chrome/Safari */
body::-webkit-scrollbar {
  display: none;
}

/* Personalizza l'aspetto della scrollbar su Chrome/Safari */
body::-webkit-scrollbar {
  width: 0px; /* Larghezza della scrollbar */
}

body::-webkit-scrollbar-thumb {
  background-color: transparent !important; /* Colore del "pollice" della scrollbar */
}

body::-webkit-scrollbar-track {
  background-color: transparent !important; /* Colore della traccia della scrollbar */
}
input[type="time"]::-webkit-calendar-picker-indicator {
  display: none;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hide-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

input::placeholder
{
  opacity: 1 !important;
}

input::-webkit-input-placeholder, input::placeholder{
  opacity: 1 !important;
 }

.scale-60
{
  transform: scale(0.60);
}