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

::-webkit-scrollbar {
    width: 0;
    /* Remove scrollbar space */
    background: transparent;
    /* Optional: just make scrollbar invisible */
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    border: 0 none;
    background: hsla(0, 0%, 45%, 0.4);
    background-clip: content-box;
}

::-webkit-scrollbar-track {
    background: hsla(0, 0%, 100%, 0);
}

@keyframes dots {
    0% {
        background-position: 0px;
    }

    100% {
        background-position: 16px;
    }
}

input[type="number"] {
    box-sizing: border-box;
    -moz-appearance: textfield;
}

input["number"]::-webkit-outer-spin-button,
input["number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

body {
    font-family: "Montserrat", sans-serif;
}

@supports (font-variation-settings: normal) {
    body {
        font-family: "Montserrat VF", sans-serif;
    }
}