/* custom scrollbar */
/*width*/
.body::-webkit-scrollbar {
width:14px;
}
/*track*/
.body::-webkit-scrollbar-track {
background:#e6e1d6;
}
/*thumb*/
.body::-webkit-scrollbar-thumb {
background:#ccc5b9;
border:3px solid #e6e1d6;
border-radius:8px;
}
/*thumb hover*/
.body::-webkit-scrollbar-thumb:hover {
background:#a9a399;
}
/*thumb pressed*/
.body::-webkit-scrollbar-thumb:active {
background:#868179;
}
/*scrollbar for firefox*/
@-moz-document url-prefix() {
:root {
scrollbar-width: thin;
scrollbar-color: $gray--lighter transparent;
}
}