* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

:root {
    --navbar-height: 56px;
}

html, body {
    overscroll-behavior: none;
    touch-action: pan-x pan-y;
}

html {
    touch-action: pan-x pan-y;
    scroll-behavior: smooth;
    scrollbar-color: transparent;
    scrollbar-width: none;
}

    html::-webkit-scrollbar {
        width: 0;
        scrollbar-width: none;
    }

    html::-webkit-scrollbar-thumb {
        background-color: transparent;
        scrollbar-width: none;
    }


body, *, #panel_no_touch {
    -ms-touch-action: pan-x pan-y;
    touch-action: pan-x pan-y;
}

/* Media Queries (MEDIUM DEVICES) */
@media screen and (max-width: 1024px) {
}

/* Media Queries (SMALL DEVICES) */

@media screen and (max-width: 600px) {
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (hover: hover) and (pointer: fine) {
    .hover\:underline:hover {
        text-decoration-line: underline;
    }
}
