@media (min-width: 1200px) {
    ::-webkit-scrollbar {
        width: 10px;
        height: 0;
        background: transparent;
    }
    ::-webkit-scrollbar-thumb {
        background-color: rgb(36 36 36 / 50%);
        background-clip: padding-box;
        border: 2px solid transparent;
        border-radius: 10px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background-color: #242424;
        border-width: 1px;
    }
}