
/*Status Active Empieza*/
.header .logo .statusCont{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.header .logo .statusCont .online,
.header .logo .statusCont .offline{
    display:none;
    align-items: center;
    gap: .5rem;
    flex-direction: column;
    font-size: 9px;
    text-align: center;
    border-radius: 0 0 3px 3px;
    color: #fff;
    padding: .5rem;
}

.header .logo .statusCont p .greenOnline{
    width: 15px;
    height: 15px;
    display: block;
    border-radius:50%;
    position: relative;
    background: #10a729;
}
.header .logo .statusCont .online.active,
.header .logo .statusCont .offline.active{
    display: flex;
}



.header .logo .statusCont p .greenOnline::before{
    content: '';
    position: absolute;
    left: -5px;
    top: -5px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    animation: pulse 2s infinite ease-in;
    background: #10a729;
}


.header .logo .statusCont p .redOffline{
    width: 15px;
    height: 15px;
    display: block;
    border-radius:50%;
    position: relative;
    background: #ff1900;
}
.header .logo .statusCont p .redOffline::before{
    content: '';
    position: absolute;
    left: -5px;
    top: -5px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    animation: pulse 2s infinite ease-in;
    background: #ff1900;
}

@keyframes pulse{
    from{
        transform: scale(0.5);
        opacity: 1;
    }to{
        scale: (1.5);
        opacity: 0;
    }
}
/*Status Active Termina*/