* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: var(--main-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;
}

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;
}

.container1 {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}

.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    /* background: linear-gradient(to right, #2c5364, #203a43, #0f2027); */
    background-color: var(--bg);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    color: #191654;
    z-index: 999;
}

#svg {
    height: 150px;
    width: 150px;
    stroke: var(--text-primary);
    stroke-width: 0.5px;
    stroke-dasharray: 500;
    animation: draw 8s ease;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 500;
        fill-opacity: 0;
    }

    100% {
        stroke-dashoffset: 0;
        fill-opacity: 1;
        stroke: transparent;
    }
}

.name-container {
    height: 30px;
    overflow: hidden;
}

.logo-name {
    color: var(--text-primary);
    font-size: 20px;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-left: 20px;
    font-weight: var(--fw-xxl);
    font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 767px) {

    .logo-name {
        font-size: 15px;
        letter-spacing: 7px;
    }
}

.card {
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 10px auto 0 auto;
    text-align: center;
    background-color: transparent;
}

.loader {
    box-sizing: content-box;
    height: 60px;
    overflow: hidden;
}

.card h6 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: var(--fw-xxl);
    letter-spacing: 5px;
}

.words {
    overflow: hidden;
    position: relative;
    margin-top: 10px;
}

.words::after {
    content: "";
    /* position: absolute; */
    inset: 0;
    background: linear-gradient(var(--bg-color) 10%,
            transparent 30%,
            transparent 70%,
            var(--bg-color) 90%);
    z-index: 20;
}

.word {
    display: block;
    height: 100%;
    /* padding-left: 5px; */
    color: var(--main);
    animation: spin 5s infinite;
}

@keyframes spin {
    10% {
        -webkit-transform: translateY(-102%);
        transform: translateY(-102%);
    }

    25% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    35% {
        -webkit-transform: translateY(-202%);
        transform: translateY(-202%);
    }

    50% {
        -webkit-transform: translateY(-200%);
        transform: translateY(-200%);
    }

    60% {
        -webkit-transform: translateY(-302%);
        transform: translateY(-302%);
    }

    75% {
        -webkit-transform: translateY(-300%);
        transform: translateY(-300%);
    }

    85% {
        -webkit-transform: translateY(-402%);
        transform: translateY(-402%);
    }

    100% {
        -webkit-transform: translateY(-400%);
        transform: translateY(-400%);
    }
}

/* Floating Button */
.icon-container {
    display: inline-block;
    z-index: 90;
    position: relative;
    cursor: pointer;
}

.icon {
    position: fixed;
    bottom: 5%;
    right: 2%;
    cursor: pointer;
    animation: rotate 10s infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media screen and (min-width: 767px) {

    .icon {
        height: 100px;
    }

}

@media screen and (max-width: 767px) {

    .icon {
        height: 75px;
    }
}