/* App initial loader styles — externalized from index.html for CSP compliance (no unsafe-inline). */
body,
html {
    height: 100%;
    position: relative;
}

.app-loading-new span {
    padding-top: 15px;
    width: 100%;
    float: left;
    font-size: 12px;
}

.app-loading-new .logo img {
    width: 50%;
}

@media screen and (max-width: 767px) {
    .app-loading-new .logo img {
        width: auto;
    }
}

.app-loading .logo {
    position: absolute;
    top: 47%;
    left: 46%;
    border-radius: 50%;
    background-size: 70%;
    box-shadow: 0 0 30px #0000000d;
    background-color: #fff;
}

@media screen and (max-width: 600px) {
    .app-loading .logo {
        left: 37%;
    }
}

.app-loading .spinner {
    animation: rotate 1s linear infinite;
    transform-origin: center center;
    position: absolute;
    inset: 0;
    margin: auto;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border: 4px solid #3857FF;
    border-bottom: none;
    border-left: none;
}
