
/* hiding DIVs on small screens */

@media (max-width: 1025px) {
    .hidden-mobile {
        display: none;
    }
}

/* hiding DIVs on large screens */

@media (min-width: 1025px) {
    .hidden-desktop {
        display: none;
    }
}

/* end */



/* SCROLLBARS */

/* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #555555 #292929;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: #292929;
}

*::-webkit-scrollbar-thumb {
    background-color: #555555;
    border-radius: 20px;
    border: 3px solid #292929;
}
