/* * Works on Firefox */ */
.selectr-options {
  scrollbar-width: thin;
  scrollbar-color: rgb(186, 186, 190) rgb(92, 91, 90);
}

/* Works on Chrome, Edge, and Safari */
.selectr-options::-webkit-scrollbar {
  width: 12px;
}

.selectr-options::-webkit-scrollbar-track {
  background: white;
  border-radius: 25px;
}

.selectr-options::-webkit-scrollbar-thumb {
  background-color: rgb(92, 91, 90);
  border-radius: 20px;
  border: 3px solid rgb(186, 186, 190);
}