/****************
Oferta cabecera
*******************/
.alert-content {
    display: inline-flex;
    align-items: center;
    white-space: pre-wrap; /* Por defecto */
}

.alert-content.animated {
    white-space: nowrap; /* Cuando tiene animación */
}

.alert {
    color: var(--primary-contrast);
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 4px 16px; 
    position: relative;
    display: flex;
    align-items: center; 
    justify-content: center; 
    white-space: nowrap;
}
.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0rem 1.25rem;
    color: inherit;
}
.animated {
    animation: marquee var(--animation-speed) linear infinite;
}
.animated:hover {
    animation-play-state: paused;
}
@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}