#loader-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Nuvola */
.cloud {
    position: relative;
    width: 85px; /* 142px * 0.6 */
    height: 22px; /* 36px * 0.6 */
    background: #ecf0f1;
    border-radius: 11px; /* 19px * 0.6 */
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: #ecf0f1;
    border-radius: 50%;
}

.cloud::before {
    width: 45px; /* 75px * 0.6 */
    height: 37px; /* 62px * 0.6 */
    top: -18px; /* -30px * 0.6 */
    left: 13px; /* 21px * 0.6 */
}

.cloud::after {
    width: 41px; /* 69px * 0.6 */
    height: 32px; /* 53px * 0.6 */
    top: -13px; /* -22px * 0.6 */
    right: -7px; /* -12px * 0.6 */
    rotate: 44deg;
}

/* Pacchetti dati */
.data-packet {
    position: absolute;
    top: 50%;
    width: 19px; /* 31px * 0.6 */
    height: 3px; /* 5px * 0.6 */
    background: #3498db;
}

@keyframes moveData {
    0% {
        left: -37px; /* -62px * 0.6 */
    }

    100% {
        left: 137px; /* 229px * 0.6 */
    }
}

/* Clonare i pacchetti dati */


/* Testo */
#loadingOverlay p {
    margin-top: 10px;
    color: #ecf0f1;
    font-size: 13px;
    text-align: center;
    font-weight: 100;

}
