/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #000000 #DFE9EB;
}

    /* Chrome, Edge and Safari */
    *::-webkit-scrollbar {
        width: 6px;
        width: 6px;
    }

    *::-webkit-scrollbar-track {
        border-radius: 5px;
        background-color: #DFE9EB;
    }

        *::-webkit-scrollbar-track:hover {
            background-color: #B8C0C2;
        }

        *::-webkit-scrollbar-track:active {
            background-color: #B8C0C2;
        }

    *::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background-color: #000000;
    }

        *::-webkit-scrollbar-thumb:hover {
            background-color: #62A34B;
        }

        *::-webkit-scrollbar-thumb:active {
            background-color: #62A34B;
        }
