@import"https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap";
@import"https://cdn.materialdesignicons.com/3.2.89/css/materialdesignicons.min.css";
@import"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css";

@font-face {
    font-family: "helvetica";
    src: url("../font/helvetica-200.ttf");
    font-weight: 200
}

@font-face {
    font-family: "helvetica";
    src: url("../font/helvetica-400.ttf");
    font-weight: 400
}

@font-face {
    font-family: "helvetica";
    src: url("../font/helvetica-600.ttf");
    font-weight: 600
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
b,
small,
strong,
body,
button,
input,
optgroup,
select,
textarea {
    font-family: Lato !important
}

body {
    overflow-x: hidden !important
}

a,
i,
.btn,
div {
    text-decoration: none !important;
    transition: all .3s ease-in-out !important
}

textarea {
    outline: 2px solid rgba(0, 0, 0, 0) !important;
    box-shadow: none !important
}

input,
.navbar-toggler,
button,
input {
    outline: 2px solid rgba(0, 0, 0, 0) !important;
    box-shadow: none !important
}

body {
    scroll-behavior: smooth
}

html {
    --scrollbarBG: #cfd8dc;
    --thumbBG: #90a4ae
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

::-webkit-scrollbar-track {
    background: #fff
}

::-webkit-scrollbar-thumb {
    background: #562cffec
}

.animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both
}

@keyframes up-down {
    0% {
        transform: translateY(10px)
    }

    100% {
        transform: translateY(-10px)
    }
}


.global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    display: flex; /* visible by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.global-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.global-loader .spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.inv-btn {
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.inv-btn i {
    font-size: 12px;
}

@media (max-width: 480px) {

    .inv-btn {
        width: 100%;
        justify-content: center;
    }
}