/* scroll bar */
*::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #38383842;
}

*::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
    background-color: transparent;
}

*::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
}

*::-webkit-scrollbar-thumb:horizontal:hover
{
    background-color: rgb(248, 120, 0);
}

*::-webkit-scrollbar-thumb:vertical:hover
{
    background-color: rgb(248, 120, 0);
}
