#compra_minima_encabezado
{
    display: block !important;
}

#compra_minima_encabezado {
    background-color: black;
    white-space: nowrap;
    position: relative;
    width: 100%;
    overflow: hidden;
}

#compra_minima_encabezado div {
    display: flex;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    flex-flow: row nowrap;
    gap: 30px;
    animation: slide-left-right 30s linear infinite;
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
    will-change: transform;
}

#compra_minima_encabezado h1 {
    font-size: 16px;
    font-weight: bold;
    color: white;
    font-family: Arial;
    white-space: nowrap;
    flex-shrink: 0;
}


@keyframes slide-left-right {
    from {
        transform: translate3d(0,0,0);
    }
    to {
        transform: translate3d(-100%,0,0);
    }
}