@keyframes pulse {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        transform: scaleX(1);
    }
}
.pulse {
    animation-name: pulse;
}


.app-loading {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 10em;
}

.app-loading > .loader {
    background-image: url("/content/images/ELAZUR_LOGO_Couleur.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 450px;
    height: 180px;
    animation: pulse 1.5s infinite;
    animation-direction: alternate;
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.app-loading p {
    display: block;
    font-size: 1.17em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: normal;
}

.tooltip > .tooltip-inner {
    color: rgb(0, 0, 0);
    font-size: 12px;
}
