/* Chudenice – vlastní loading místo Lizmap loading.svg */

#loading {
    background-image: none !important;
    background-color: rgba(255, 255, 255, 0.88) !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
}

#loading p {
    display: none !important;
}

#loading::before {
    content: ;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    margin-left: -27px;
    margin-top: -27px;
    border: 5px solid rgba(0, 0, 0, 0.15);
    border-top-color: rgba(0, 0, 0, 0.75);
    border-radius: 50%;
    animation: chudenice-loading-spin 0.8s linear infinite;
}

#loading::after {
    content: Načítám mapu…;
    position: absolute;
    left: 0;
    top: calc(50% + 45px);
    width: 100%;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

@keyframes chudenice-loading-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
