/* Define animation */
@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loading-popup{
    top:25%;
}

.loader-wrapper{
    display: flex;
    justify-content: center;
    padding: 5%;
}

.message {
    animation: pulse 1s infinite;
}

.loader {
    border: 16px solid #f3f3f3; 
    border-top: 16px solid #e1e1e1; 
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}