﻿/******************************
    .modal-overlay [OVERRIDE] Pour pulsating logo index.html
    ******************************/
/*[20230109-Maurice] Spinner settings (cf. index.html)*/
.modal-overlay {
    position: center;
    margin-top: 300px;
    background-color: white;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*--sk-color: #0c2a8e*/
}


/******************************
    PULSATING LOGO
    ******************************/
.DGTpulsar {
    animation: pulse 1s infinite;
    margin: 0 auto;
    display: table;
    margin-top: 50px;
    animation-direction: alternate;
}
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
/****/