/* Largura da scrollbar */
::-webkit-scrollbar {
  width: 15px;
}

/* Track (trilha da scrollbar) */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px #fff;
  border-radius: 0;
}

/* Thumb (alça da scrollbar) */
::-webkit-scrollbar-thumb {
  background: #D3DAD8;
  border-radius: 0px 6px 0px 0px;
  border-bottom: 1px solid #9D8B47;
  height: 29px;
}

/* Hover no thumb */
::-webkit-scrollbar-thumb:hover {
  background: #9D8B47;
}

@media (max-width: 768px) {
    ::-webkit-scrollbar-thumb {
	  height: 44px;
    }
}