/* =====================================================
   ATS Marquee — infinite-image-scrolling.css
   ===================================================== */

.ats-marquee {
    overflow: hidden;
    width: 100%;
    padding: 30px 0;
    position: relative;
}

.ats-marquee.ats-marquee--fade {
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
}

.ats-marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.ats-marquee.ats-marquee--pause .ats-marquee__track:hover {
    /* intentionally empty */
}

.ats-marquee__item {
    flex: 0 0 auto;
    padding: 0 25px;
    line-height: 0;
    backface-visibility: hidden;
}

.ats-marquee__item a {
    display: block;
    line-height: 0;
    text-decoration: none;
    color: inherit;
}

.ats-marquee__track img {
    height: 80px;
    width: auto;
    display: block;
    flex-shrink: 0;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    transition: opacity 0.25s ease;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.ats-marquee__item a img {
    pointer-events: auto;
    cursor: pointer;
}

/* Text + Icon mode */
.ats-marquee__item--text {
    line-height: 1;
}

.ats-marquee__textwrap {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
    line-height: 1;
}

.ats-marquee__label {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.ats-marquee__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: inherit;
}

.ats-marquee__icon i {
    display: block;
    font-size: 24px;
    line-height: 1;
}

.ats-marquee__icon svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: currentColor;
    stroke: currentColor;
}