%thin-scroll::-webkit-scrollbar {
    width: 7px
}

%thin-scroll::-webkit-scrollbar-track {
    background-color: #d9d9d9;
    border-left: 2px solid transparent
}

%thin-scroll::-webkit-scrollbar-thumb {
    background-color: #a6a6a6;
    border-left: 2px solid transparent;
    border-radius: 7px;
}

%thin-scroll::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(0, 0, 0, .1)
}

%transparent-scroll::-webkit-scrollbar {
    //width: 8px;
    width:0;
}

%transparent-scroll::-webkit-scrollbar-track {
    background: 0 0
}

%transparent-scroll::-webkit-scrollbar-thumb {
    //background: rgba(0, 0, 0, .25);
    background: transparent;
    @include border-radius(8px);
}