/* Base color: #f8f1e6 */

::-webkit-scrollbar {
 width:12px;
 height: 8px;
}

::-webkit-scrollbar-track {
 background: none;
 background: #e3c89c;
 border-radius: 2px;
}

::-webkit-scrollbar-track-piece {
 background: #e3c89c;
 border-radius: 2px;
}

::-webkit-scrollbar-thumb {
 background: #b3b2b3;
 border-radius: 2px;
 border: 2px solid #b3b2b3;
}

::-webkit-scrollbar-thumb:hover {
 background: #8d8b8d;
}

@-moz-document url-prefix() {
 html {
  /* For Firefox */
  overflow-y: scroll;
  scrollbar-color: #b3b2b3 #e3c89c;
  scrollbar-width: thin;
 }
}
