﻿.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
    animation: fadeIn 0.5s ease-in;
}

.loader-logo {
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.loader-progress {
    margin: 1.5rem 0;
}

.loader-text {
    margin-top: 1rem;
    animation: fadeInUp 0.5s ease-out;
}

.custom-progress-circular {
    position: relative;
}

.progress-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}
