.ctln-ticker {
    position: relative;
    z-index: 44;
    width: 100%;
    height: 38px;
    overflow: hidden;
    color: #111;
    background: #ffe500;
    font-family: inherit;
}

.ctln-ticker__inner {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    direction: rtl;
    width: 100%;
    max-width: 1500px;
    height: 38px;
    margin: 0 auto;
    overflow: hidden;
}

.ctln-ticker__label {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    margin: 0;
    padding: 0 16px;
    color: #fff;
    background: #171717;
    font: inherit;
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.ctln-ticker__viewport {
    min-width: 0;
    height: 38px;
    overflow: hidden;
    direction: ltr;
}

.ctln-ticker__track {
    display: flex;
    width: max-content;
    height: 38px;
    animation: ctln-ticker-scroll var(--ctln-duration, 210s) linear infinite;
    will-change: transform;
}

.ctln-ticker__viewport:hover .ctln-ticker__track,
.ctln-ticker__viewport:focus-within .ctln-ticker__track {
    animation-play-state: paused;
}

.ctln-ticker__group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    height: 38px;
    direction: rtl;
}

.ctln-ticker__link {
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 18px;
    color: #111 !important;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 38px;
    text-decoration: none !important;
    white-space: nowrap;
}

.ctln-ticker__link:hover,
.ctln-ticker__link:focus-visible {
    color: #a40000 !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.ctln-ticker__link:focus-visible {
    outline: 2px solid #111;
    outline-offset: -4px;
}

.ctln-ticker__separator {
    flex: 0 0 auto;
    color: rgba(17, 17, 17, 0.58);
    font-size: 8px;
    line-height: 1;
}

@keyframes ctln-ticker-scroll {
    from { transform: translate3d(-50%, 0, 0); }
    to { transform: translate3d(0, 0, 0); }
}

@media (max-width: 760px) {
    .ctln-ticker__inner {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .ctln-ticker__label {
        padding-inline: 8px;
        font-size: 12px;
    }

    .ctln-ticker__link {
        padding-inline: 13px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ctln-ticker__viewport {
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .ctln-ticker__track {
        animation: none;
        transform: none;
        will-change: auto;
    }

    .ctln-ticker__group[aria-hidden="true"] {
        display: none;
    }
}
