    /*Hide the scrollbar when printing in a div:*/
    @media print {
        div.hide-scrollbar-print::-webkit-scrollbar {
            display: none;
        }
    }


    /* Firefox only (other properties do not work on Firefox)  */
    @-moz-document url-prefix() {
        div.page, div.page-scrollbar {
            scrollbar-width: thin;
            scrollbar-color: #2A64C2 #F6F6F6;
        }
    }

    /* Chrome, Edge and Safari */

    div.page::-webkit-scrollbar,
    div.page-scrollbar::-webkit-scrollbar {
        height: 8px;
        width: 8px;
    }

    div.page::-webkit-scrollbar-track,
    div.page-scrollbar::-webkit-scrollbar-track {
        border-radius: 4px;
        background-color: #F6F6F6;
    }

    div.page::-webkit-scrollbar-track:hover,
    div.page-scrollbar::-webkit-scrollbar-track:hover {
        background-color: #F1F1F1;
    }

    div.page::-webkit-scrollbar-track:active,
    div.page-scrollbar::-webkit-scrollbar-track:active {
        background-color: #E9E9E9;
    }

    div.page::-webkit-scrollbar-thumb,
    div.page-scrollbar::-webkit-scrollbar-thumb {
        border-radius: 4px;
        background-color: #2A64C2;
    }

    div.page::-webkit-scrollbar-thumb:hover,
    div.page-scrollbar::-webkit-scrollbar-thumb:hover {
        background-color: #3073DF;
    }

    div.page::-webkit-scrollbar-thumb:active,
    div.page-scrollbar::-webkit-scrollbar-thumb:active {
        background-color: #275EB6;
    }

    /*Firefox only*/
    @-moz-document url-prefix() {
        ul.sidebar {
            scrollbar-width: thin;
            scrollbar-color: #F6F6F6 #2A64C2;
        }
    }

    /* Chrome, Edge and Safari */

    ul.sidebar::-webkit-scrollbar {
        height: 2px;
        width: 2px;
    }

    ul.sidebar::-webkit-scrollbar-track {
        border-radius: 1px;
        background-color: #3073df;
        /*background-color: #c22a2f;*/
    }

    ul.sidebar::-webkit-scrollbar-track:hover {
        background-color: #3073df;
    }

    ul.sidebar::-webkit-scrollbar-track:active {
        background-color: #3073df;
    }

    ul.sidebar::-webkit-scrollbar-thumb {
        border-radius: 1px;
        background-color: #bebebf;
    }

    ul.sidebar::-webkit-scrollbar-thumb:hover {
        background-color: #dddee0;
    }

    ul.sidebar::-webkit-scrollbar-thumb:active {
        background-color: #b1b5bb;
    }