﻿/* Scrollbar */
::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background: #2b303a;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: #244141;
    border: 0px none #2b303a;
    border-radius: 18px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #2b303a;
    }

    ::-webkit-scrollbar-thumb:active {
        background: #000000;
    }

::-webkit-scrollbar-track {
    background: transparent;
    border: 0px none #2b303a;
    border-radius: 18px;
}

    ::-webkit-scrollbar-track:hover {
        background: #2b303a;
    }

    ::-webkit-scrollbar-track:active {
        background: #2b303a;
    }

::-webkit-scrollbar-corner {
    background: #2b303a;
}
/* End scrollbar*/
