:root{
  /*Para Navbar Empieza*/
  --backgroundNavbar:linear-gradient(45deg, #0A2930, #0A2930);
  --activeBtnNav:#28616e;
  --colorActive:#c0b519;
  --colorNoActive:#64969e;
  --colorHover:#4ad5eb;
  --bgNavbar:#011f25;
  
  /*Para Navbar Termina*/    
}


/*Status Active Empieza*/
.header .logoContainer a .logo{
    margin-right: auto;
    width: min-content;
    cursor: default;
}

.header .logoContainer a .logo .online,
.header .logoContainer a .logo .offline{
    display:none;
    align-items: center;
    gap: .5rem;
    flex-direction: column;
    font-size: clamp(.5rem, 2vw, .7rem);
    text-align: center;
    color: var(--colorHover);
    padding: .5rem 2rem;
    width: max-content;
    border-radius: 7px;
    background: var(--bgNavbar);
}

.header .logoContainer a .logo p .greenOnline{
    width: 15px;
    height: 15px;
    display: block;
    border-radius:50%;
    position: relative;
    background: #10a729;
}
.header .logoContainer a .logo .online.active,
.header .logoContainer a .logo .offline.active{
    display: flex;
}



.header .logoContainer a .logo 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 .logoContainer a .logo p .redOffline{
    width: 15px;
    height: 15px;
    display: block;
    border-radius:50%;
    position: relative;
    background: #ff1900;
}
.header .logoContainer a .logo 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*/