﻿#globalLoader {
    position: fixed;
    z-index: 999999;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.washer-container {
/*    text-align: center;*/
    position: relative;
}

.washer {
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center; margin:auto;
}

.drum {
    width: 90px;
    height: 90px;
    border: 8px solid #4fc3f7;
    border-top: 8px solid #0288d1;
    border-radius: 50%;
    animation: washSpin 1s linear infinite;
    background: radial-gradient(circle, #81d4fa, #0288d1);
}

@keyframes washSpin {
    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    margin-top: 25px;
    color: white;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

.bubble {
    position: absolute;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    animation: floatBubble 3s infinite ease-in-out;
}

.bubble1 {
    width: 20px;
    height: 20px;
    left: -20px;
    top: 40px;
}

.bubble2 {
    width: 15px;
    height: 15px;
    right: -10px;
    top: 20px;
    animation-delay: 1s;
}

.bubble3 {
    width: 10px;
    height: 10px;
    left: 50%;
    top: -10px;
    animation-delay: 2s;
}

@keyframes floatBubble {
    0% {
        transform: translateY(0px);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-25px);
        opacity: 1;
    }

    100% {
        transform: translateY(-50px);
        opacity: 0;
    }
}
