/*
*/

#loadatron {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4e73df;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.3s ease;
    z-index: 9999;
    backdrop-filter: blur(6px);
}

#loadatron.active {
    top: 0;
}

#loadatron.fade {
    opacity: 0;
    transition: opacity 0.4s ease, top 0.8s ease;
}

#loadatron-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #ffffff22;
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}