﻿.tinyscroll {
    scrollbar-width: thin;
}
.tinyscroll::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.tinyscroll::-webkit-scrollbar-button {
    width: 0px;
    height:0px;
    display:none;
}
.tinyscroll::-webkit-scrollbar-track {
    background:transparent;
    border: none;
    /*box-shadow: 0px 0px 1px #dfdfdf inset;*/
    border-radius:10px;
}
.tinyscroll::-webkit-scrollbar-thumb {
    background:#cdcdcd;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,0);
    border-radius:4px;
}
.tinyscroll::-webkit-scrollbar-thumb:hover {
    background:#bdbdbd;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,0);
    border-radius:4px;
}