.absc-rolling-bar {
    --absc-roll-duration: 26s;
    --absc-item-gap: 150px;
    --absc-edge-fade: 24px;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    background: #f7f7f7;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    box-sizing: border-box;
    isolation: isolate;
}

.absc-rolling-bar,
.absc-rolling-bar * {
    box-sizing: border-box;
}

.absc-rolling-viewport {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.absc-rolling-track {
    display: flex;
    align-items: center;
    width: max-content;
    min-width: max-content;
    flex: 0 0 auto;
    will-change: transform;
    animation-duration: var(--absc-roll-duration);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.absc-direction-left .absc-rolling-track {
    animation-name: absc-roll-left;
}

.absc-direction-right .absc-rolling-track {
    animation-name: absc-roll-right;
}

.absc-rolling-group {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    width: max-content;
    min-width: max-content;
    gap: var(--absc-item-gap);
    padding-right: var(--absc-item-gap);
}

.absc-rolling-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    color: #202020;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.absc-rolling-item > span,
.absc-rolling-item > a {
    display: inline-block;
    margin: 0;
    padding: 0;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    text-transform: inherit;
    text-decoration: none;
    background: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
    transition: color 180ms ease, opacity 180ms ease;
}

.absc-rolling-item > a:hover,
.absc-rolling-item > a:focus,
.absc-rolling-item > a:active {
    color: #000;
    background: transparent;
    text-decoration: none;
    box-shadow: none;
}

.absc-pause-hover:hover .absc-rolling-track,
.absc-pause-hover:focus-within .absc-rolling-track {
    animation-play-state: paused;
}

.absc-edge-fade .absc-rolling-viewport {
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0,
        #000 var(--absc-edge-fade),
        #000 calc(100% - var(--absc-edge-fade)),
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0,
        #000 var(--absc-edge-fade),
        #000 calc(100% - var(--absc-edge-fade)),
        transparent 100%
    );
}

@keyframes absc-roll-left {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

@keyframes absc-roll-right {
    from { transform: translate3d(-50%, 0, 0); }
    to { transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .absc-rolling-track {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .absc-rolling-viewport {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .absc-rolling-viewport::-webkit-scrollbar {
        display: none;
    }
}
