.loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #C2D0DB;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.loadingOverlay.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loadingOverlay-cont {
    position: absolute;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 10px;
}

.loadingOverlay-cont-spinner {
    border: 8px solid #095475;
    border-left-color: #FFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

.loadingOverlay-cont-percentage {
    font-weight: 300;
    font-size: 1rem;
    color: #095475;
    width: 100%;
    text-align: center;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}