.loading {
    display: flex;
    left: 0;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #14656d;
    z-index: 9999;
}

.loading.loading--premium {
    background: rgba(15, 52, 56, 0.72);
    backdrop-filter: blur(10px);
}

.loading.loading--premium i {
    display: none;
}

.loading__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 220px;
    padding: 1.65rem 1.75rem 1.45rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 252, 0.96) 100%);
    box-shadow: 0 24px 60px rgba(8, 40, 44, 0.28);
    animation: app-loading-panel-in 0.28s ease-out;
}

.loading__logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
}

.loading__logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 14px;
    animation: app-loading-logo-pulse 1.6s ease-in-out infinite;
}

.loading__ring {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(20, 101, 109, 0.16);
    border-top-color: #14656d;
    border-radius: 50%;
    animation: app-loading-spin 0.9s linear infinite;
}

.loading__text {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #1f3438;
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

@keyframes app-loading-panel-in {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes app-loading-logo-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.94);
        opacity: 0.88;
    }
}
