/* reset contra Elementor */
.bausse-marquee-wrap,
.bausse-marquee-wrap * {
    box-sizing: border-box;
}

/* contenedor aislado */
.bausse-marquee-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    background: #E4157E; /* evita flash blanco */
}

/* marquee */
.bausse-marquee-wrap #marquee {
    background: #E4157E;
    padding: 0.3rem 0;
    height: 26px;
    width: 100%;
    position: relative;
    overflow: hidden;

    text-transform: uppercase;
    font-size: 12px;
    line-height: 12px;
    font-family: 'Century Gothic', sans-serif;

    opacity: 0;              /* oculto al cargar */
    transition: opacity .12s linear;
    contain: layout paint;
}

/* pista */
.bausse-marquee-wrap #marquee .marquee-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;

    will-change: transform;
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
    pointer-events: none;
}

/* textos */
.bausse-marquee-wrap #marquee .marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0 10px;
    color: #fff;
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    white-space: nowrap;
}

/* iconos */
.bausse-marquee-wrap #marquee img {
    width: 15px !important;
    height: 15px !important;
    max-width: none !important;
    display: inline-block;
}

/* mobile */
@media (max-width: 767px) {
    .bausse-marquee-wrap #marquee {
        height: 24px;
        font-size: 11px;
        line-height: 11px;
    }
}
