﻿.circular-loader-container {
    display: flex;
    justify-content: center;
    flex-direction:column;
    align-items: center;
    position: fixed; /* Fixed position to cover the entire viewport */
    top: 0;
    left: 0;
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    background: rgba(255, 255, 255, 0.5); /* Semi-transparent background */
    backdrop-filter: blur(5px); /* Blurry background */
    z-index: 1000; /* High z-index to ensure it overlays all content */
}

.blurred-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Adjust for additional blur effect */
    backdrop-filter: blur(5px); /* Blurring effect */
}

.circular-loader {
    transform: rotate(-90deg); /* Rotate to start from the top */
}

.loader-bg {
    fill: none;
    stroke: #e6e6e6; /* Light grey background circle */
    stroke-width: 2.5;
}

.loader-progress {
    fill: none;
    stroke: #d9ae3b; /* Custom color for the loader */
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.3s ease;
}

/*-------------------------------------------------------------------------------*/

.in-progress-text {
    margin-right: 5px; /* Space between text and dots */
    font-size: 14px; /* Adjust font size if needed */
    color: white; /* Adjust color to fit your design */
}

.typing-indicator {
    display: flex;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    margin: 0 2px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.6;
    animation: blink 1.4s infinite both;
}

    .dot:nth-child(1) {
        animation-delay: 0s;
    }

    .dot:nth-child(2) {
        animation-delay: 0.2s;
    }

    .dot:nth-child(3) {
        animation-delay: 0.4s;
    }

    .dot:nth-child(4) {
        animation-delay: 0.6s;
    }

@keyframes blink {
    0% {
        opacity: 0.6;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}
.circular-loader {
    animation: rotate 2s linear infinite;
    transform-origin: center;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}