﻿::-webkit-scrollbar {
    
    border-color: #08163E;
}

    ::-webkit-scrollbar:vertical {
        width: 9px;
    }
    ::-webkit-scrollbar:horizontal {
        height: 9px;
    }



::-webkit-scrollbar-track {
    background: white;
}

::-webkit-scrollbar-thumb {
    background: #B7BEC4;
}

::-webkit-scrollbar-button {
    background: white;
}

    ::-webkit-scrollbar-button:single-button:vertical:decrement {
        height: 8px;
        width: 8px;
        background-position: center;
        background-image: url('../images/scrollbar/scrollbar-up.svg');
        background-repeat: no-repeat;
    }

    ::-webkit-scrollbar-button:single-button:vertical:increment {
        height: 8px;
        width: 8px;
        background-position: center;
        background-image: url('../images/scrollbar/scrollbar-down.svg');
        background-repeat: no-repeat;
    }

    ::-webkit-scrollbar-button:single-button:horizontal:decrement {
        height: 8px;
        width: 8px;
        background-position: center;
        background-image: url('../images/scrollbar/scrollbar-left.svg');
        background-repeat: no-repeat;
    }

    ::-webkit-scrollbar-button:single-button:horizontal:increment {
        height: 8px;
        width: 8px;
        background-position: center;
        background-image: url('../images/scrollbar/scrollbar-right.svg');
        background-repeat: no-repeat;
    }
