

/*Status Active Empieza*/
.header .socialNav .statusStore{
    margin-right: auto;
    width: min-content;
    cursor: default;
    border-radius: 8px;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.080);
    overflow: hidden;
}

.header .socialNav .statusStore .online,
.header .socialNav .statusStore .offline{
    display:none;
    align-items: center;
    gap: .5rem;
    font-size: clamp(.6rem, 2vw, 1rem);
    text-align: center;
    color: #ccc;
    padding: .5rem;
    width: max-content;
}

.header .socialNav .statusStore p .greenOnline{
    width: 15px;
    height: 15px;
    display: block;
    border-radius:50%;
    position: relative;
    background: #10a729;
}
.header .socialNav .statusStore .online.active,
.header .socialNav .statusStore .offline.active{
    display: flex;
}



.header .socialNav .statusStore p .greenOnline::before{
    content: '';
    position: absolute;
    left: -5px;
    top: -5px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in;
    background: #10a729;
}


.header .socialNav .statusStore p .redOffline{
    width: 15px;
    height: 15px;
    display: block;
    border-radius:50%;
    position: relative;
    background: #ff1900;
}
.header .socialNav .statusStore p .redOffline::before{
    content: '';
    position: absolute;
    left: -5px;
    top: -5px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in;
    background: #ff1900;
}

@keyframes pulse{
    from{
        transform: scale(0.5);
        opacity: 1;
    }to{
        scale: (1.5);
        opacity: 0;
    }
}
/*Status Active Termina*/