/* Scrollbar in the brand palette: burgundy thumb on the sand ground. */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #8b3a47;
  border: 3px solid #f5e6d3;
  border-radius: 2px;
}

::-webkit-scrollbar-track {
  background: #f5e6d3;
}

/* Firefox */
html {
  scrollbar-color: #8b3a47 #f5e6d3;
  scrollbar-width: thin;
}

.no-scrollbar-8080 {
  -ms-overflow-style: none; /* IE dan Edge */
  scrollbar-width: none; /* Firefox */
}
.no-scrollbar-8080::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
