﻿.scroll-container::-webkit-scrollbar {
    width: 24px;
}

.scroll-container::-webkit-scrollbar-track {
    border-style: solid;
    border-width: 6px 0;
    border-image-slice: 30% 0 fill;
    border-image-source: url('../Img/UI_Scrollbox_Track.png');
}

.scroll-container::-webkit-scrollbar-thumb {
    border-style: solid;
    border-width: 6px;
    border-image-slice: 40% fill;
    border-image-source: url('../Img/UI_Scrollbox_Handle_Normal.png');
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    border-style: solid;
    border-width: 6px;
    border-image-slice: 40% fill;
    border-image-source: url('../Img/UI_Scrollbox_Handle_Hovered.png');
}

.scroll-container::-webkit-scrollbar-button:single-button:vertical:decrement {
    height: 24px;
    width: 24px;
    background-image: url('../Img/UI_Scrollbox_ArrowButton_Up_Normal.png');
    background-size: contain;
}

.scroll-container::-webkit-scrollbar-button:single-button:vertical:increment {
    height: 24px;
    width: 24px;
    background-image: url('../Img/UI_Scrollbox_ArrowButton_Down_Normal.png');
    background-size: contain;
}
