/* CONTENEDOR GENERAL */
.badge-text-navbar {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    white-space: nowrap;

}

/* TEXTO ARRIBA */
.badge-top-text {
    color: #68A883;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

/* 24/7 */
.badge-247-text {
    color: #68A883;
    font-weight: 900;
    font-size: 2.1rem;

    animation: pulseText247 1.4s infinite;
}

/* TEXTO ABAJO */
.badge-bottom-text {
    color: #68A883;
    font-size: 0.72rem;
    font-weight: 700;
    margin-top: 2px;
    white-space: nowrap;
}

/* ANIMACIÓN */
@keyframes pulseText247 {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(0, 200, 83, 0.7);
    }
    50% {
        transform: scale(1.08);
        text-shadow: 0 0 10px rgba(0, 200, 83, 0.8);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(0, 200, 83, 0.7);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .badge-text-navbar {
        transform: scale(0.75);
        margin-left: 0;
    }

    .badge-247-text {
        font-size: 1.7rem;
    }

    .badge-top-text,
    .badge-bottom-text {
        font-size: 0.7rem;
    }
}