html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* HTML: <div class="loader"></div> */
/*.loader {
    width: fit-content;
    font-size: 40px;
    font-family: system-ui,sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #0000;
    -webkit-text-stroke: 1px #000;
    background: conic-gradient(#000 0 0) 0/0% 100% no-repeat text;
    animation: l1 1s linear infinite;
    z-index: 1000001;
}

    .loader:before {
        content: "Loading";
    }

@keyframes l1 {
    to {
        background-size: 120% 100%
    }
}*/

/*.loader-animation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.8);
    z-index: 1000001;
    opacity: 1;
    transition: all 0.5s;
}

.display-none {
    display: none !important;
}

.lds-dual-ring {
    display: inline-block;
}

    .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 64px;
        height: 64px;
        margin: 16% auto;
        border-radius: 50%;
        border: 6px dotted #fff;
        border-color: red yellow green hsla(30, 30%, 20%, .8);
        animation: lds-dual-ring 1.2s linear infinite;
    }


@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/

/* Full-Screen Overlay */
.loader-animation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1000001;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hidden State */
.display-none {
    display: none !important;
}

/* Loader Text Animation */
.loader {
    font-size: 40px;
    font-family: system-ui, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #0000;
    -webkit-text-stroke: 1px #fff;
    background: conic-gradient(#fff 0 0) 0/0% 100% no-repeat text;
    animation: text-loading 1s linear infinite;
}

    .loader:before {
        content: "Loading";
    }

@keyframes text-loading {
    to {
        background-size: 120% 100%;
    }
}
