::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 3px solid transparent;
    background-clip: content-box;
    transition: all 0.2s;
}

html[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border: 3px solid transparent;
    background-clip: content-box;
    transition: all 0.2s;
}

::-webkit-scrollbar-thumb:hover {
    cursor: url("../Img/Cursor/Point.svg"), auto;
    transition: all 0.2s;
    border: 0px solid transparent;
}

body {
    background-color: #ffffff00;
}


@media screen and (max-width: 719px) {
    .ModalRight::-webkit-scrollbar-thumb {
        background: rgb(44, 111, 255);
        border-radius: 10px;
        border: 3px solid transparent;
        background-clip: content-box;
        transition: all 0.2s;
    }
}