html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.overlay {
    background-color: rgb(120 120 120);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 500;
    top: 0px;
    left: 0px;
    opacity: .65;
    /*  filter: alpha(opacity=70); */
    /* display: none; */
}
/*spiner*/
/* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    z-index: 1001;
    position: fixed;
    top: 40%;
    left: 50%;
}

.loader_text {
    position: fixed;
    top: 46%;
    left: 48%;
    margin-top: 5% !important;
    font-weight:600;
}

.loader:before,
.loader:after {
    content: "";
    grid-area: 1/1;
    --c: #0000 calc(100%/3),#046D8B 0 calc(2*100%/3),#0000 0;
    --c1: linear-gradient(90deg,var(--c));
    --c2: linear-gradient( 0deg,var(--c));
    background: var(--c1),var(--c2),var(--c1),var(--c2);
    background-size: 300% 4px,4px 300%;
    background-repeat: no-repeat;
    animation: l11 1s infinite linear;
}

.loader:after {
    margin: 10px;
    transform: scaleX(-1);
    animation-delay: -.25s;
}

@keyframes l11 {
    0% {
        background-position: 50% 0,100% 100%,0 100%,0 0
    }

    25% {
        background-position: 0 0,100% 50%,0 100%,0 0
    }

    50% {
        background-position: 0 0,100% 0,50% 100%,0 0
    }

    75% {
        background-position: 0 0,100% 0,100% 100%,0 50%
    }

    75.01% {
        background-position: 100% 0,100% 0,100% 100%,0 50%
    }

    100% {
        background-position: 50% 0,100% 0,100% 100%,0 100%
    }
}
