﻿/* Overlay */
#umbraco-form-loader {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.80); /* White transparent */
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wrapper */
.lotus-loader-wrapper {
    text-align: center;
}

/* Message */
.lotus-message {
    margin-top: 20px;
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

/* Lotus animation */
@keyframes lotusBreathing {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.lotus-petal {
    will-change: opacity;
    animation: lotusBreathing 2.4s ease-in-out infinite;
}

.lotus-petal-left {
    animation-delay: 0s;
}

.lotus-petal-center {
    animation-delay: 0.8s;
}

.lotus-petal-right {
    animation-delay: 1.6s;
}


/*
#umbraco-form-loader {
    display: none; 
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.umb-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #ccc;
    border-top-color: #fff; 
    border-radius: 50%;
    animation: umb-spin 1s linear infinite;
}

@keyframes umb-spin {
    to {
        transform: rotate(360deg);
    }
}
    */