/* The Spinner Started here.... */

.progress-container {
    width: 100px;
    height: 100px;
    position: relative;
    margin: 0 auto;
    animation: rotate 2s linear infinite; /* Continuous rotation */
    display: none; /* Initially hidden */
}

.rotate {
    display: block; /* Show the container */
}

.progress-container * {
    text-align: left; /* Align text to the left */
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 65%;
    clip: rect(0, 50px, 100px, 0);
    background-color: #4CAF50;
}

.progress-bar::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    top: 10px;
    left: 10px;
}
