﻿/* 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;
}

