/**
Copyright © 2025 Celadon Development LLC, All rights reserved.
*/
body {
    margin: 0;
}

#loading-app {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1;
    background: #2A3C60;
    height: 100vh;
    opacity: 1;
    animation: show_loading_main_loader 1s;
}

.loading-title {
    color: white;
    font-size: 44px;
    font-family: sans-serif;
    text-align: center;
}

.loading-text {
    color: white;
    margin-top: 12px;
    font-size: 32px;
    font-family: sans-serif;
    text-align: center;
    /*animation: fade_loading_main_loader 1.7s infinite;*/
    animation: 1s linear 3s infinite alternate fade_loading_main_loader;
}

@keyframes fade_loading_main_loader {
    0%   { opacity:1; }
    50%  { opacity:0.2; }
    100% { opacity:1; }
}
@keyframes show_loading_main_loader {
    0%   { opacity:0; }
    50%  { opacity:0.2; }
    80%  { opacity:0.4; }
    100% { opacity:1; }
}

