﻿html {
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
}

::-webkit-scrollbar {
    width: 5px;
    height: 10px;
    position: absolute;
    z-index: -10;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: #63c2ff;
    border: 0px none #fff;
    /* border-radius: 0px; */
}

    ::-webkit-scrollbar-thumb:hover {
        background: #63ceff;
    }

    ::-webkit-scrollbar-thumb:active {
        background: #63ccff;
    }

::-webkit-scrollbar-track {
    background: #21394f;
    border: 0px none #fff;
}

    ::-webkit-scrollbar-track:hover {
        background: #35597a;
    }

    ::-webkit-scrollbar-track:active {
        background: #35597a;
    }

::-webkit-scrollbar-corner {
    background: transparent;
}

