/*
* Copyright 2012-2024 Université de Lille, CHU de Lille, Caroen Kevin, Coadou Hervé, Zitouni Djamel
*
* Ce code est soumis aux droits d'auteur et ne peut être reproduit, distribué ou utilisé sans autorisation.
*/
#loading {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2000;
}


.loading {
	/* border: 16px solid #f3f3f3;
	border-top: 16px solid #A5A5A5;
	border-radius: 50%; */
	width: 120px !important;
	height: 120px !important;
	animation: spin 3s linear infinite;
	text-align: center;
    /* margin: auto; */
}

.loading-text {
    color: white;
    margin-top: 1em;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}