* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: var(--primary-font);
    /* user-select: none; */
}

html::-webkit-scrollbar {
    width: 12px;
    cursor: pointer;
}

html::-webkit-scrollbar-track {
    background: var(--bg);
}

html::-webkit-scrollbar-thumb {
    background-color: var(--light);
    border-radius: 10px;
    border: 3px solid var(--bg);
}

html::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary);
}

body {
    background: var(--bg);
    position: relative;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

label span {
    color: var(--mandatory) !important;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-ms-clear {
    display: none;
}

.body-container {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
    scroll-snap-align: start;
}

.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--primary);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

#svg {
    height: 400px;
    width: 400px;
    /* stroke: var(--text-primary);
    stroke-width: 0.5px;
    stroke-dasharray: 500;
    animation: draw 8s ease; */
}

.logo-draw path {
    fill: none;
    stroke: var(--secondary);
    stroke-width: 1;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 2s ease forwards;
    opacity: 0;
}

.logo-draw path:nth-child(1) {
    animation-delay: 0s;
}

.logo-draw path:nth-child(2) {
    animation-delay: 0.3s;
}

.logo-draw path:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes draw {
    to {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}