#marquee {
    background: #E4157E;
    padding: 0.3rem 0;
    font-size: 0.75rem;
    line-height: 0.75rem;
    display: block;
    position: relative;
    height: 26px;
    text-transform: uppercase;
    overflow: hidden;
    width: 100%;
}
#marquee div {
    position: absolute;
    display: inline-block;
    line-height: 19px;
    white-space: nowrap;
    overflow: visible; /* Permite que el contenido del <div> se muestre completo */
}
#marquee div span {
    margin: 0 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-family: 'Century Gothic', sans-serif; /* Usamos la fuente definida en style.css */
    font-weight: normal; /* Versión normal de Century Gothic */
    white-space: nowrap; /* Evita que el texto se divida */
    overflow: visible;
}
#marquee div span img {
    float: right;
    margin: 0 0 0 5px;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    opacity: 1 !important;
}
@media all and (max-width: 767px) {
    #marquee div span img {
        float: none !important;
        display: inline-block;
        transform: translateY(3px);
        margin-top: -3px !important;
    }
}