.snt-ticker {
    --snt-yellow-strong: #FEB800;
    --snt-dark: #222222;
    width: 100%;
    font-family: inherit;
}
@media (max-width: 850px) {
	.snt-ticker {
		min-height: 6.5em;
	}
}

.snt-ticker-inner {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    color: var(--snt-dark);
    background: #fff8df;
    border: 1px solid rgba(34, 34, 34, 0.08);
    border-radius: 0;
    box-shadow: none;
}

.snt-accent {
    width: 7px;
    align-self: stretch;
    background: var(--snt-yellow-strong);
    flex: 0 0 auto;
}

.snt-items {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.78rem 1.1rem;
}

.snt-item {
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 360ms ease, transform 360ms ease;
    pointer-events: none;
    font-size: clamp(0.98rem, 1.5vw, 1.12rem);
    font-weight: 700;
    line-height: 1.35;
}

.snt-item:not(.is-active) {
    position: absolute;
    top: 0.78rem;
    right: 1.1rem;
    left: 1.1rem;
}

.snt-item.is-active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.snt-item-link {
    color: var(--snt-dark);
    text-decoration: none;
}

.snt-item-link:hover,
.snt-item-link:focus {
    text-decoration: underline;
}

.snt-controls {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.7rem 0.65rem 0.3rem;
    white-space: nowrap;
    flex: 0 0 auto;
}

.snt-counter {
    font-size: 0.86rem;
    font-weight: 700;
    color: rgba(34, 34, 34, 0.58);
	margin-top:-2px;
}

.snt-next {
    appearance: none;
    -webkit-appearance: none;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none;
    padding: 0;
    margin: 0;
    color: #FEB800;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.snt-next:hover,
.snt-next:focus,
.snt-next:active {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none;
    color: #222222;
    outline: none;
}

.snt-next i {
    pointer-events: none;
}

@media (max-width: 560px) {
    .snt-items {
        padding: 0.7rem 0.8rem;
    }

    .snt-item {
        font-size: 0.96rem;
    }

    .snt-item:not(.is-active) {
        top: 0.7rem;
        right: 0.8rem;
        left: 0.8rem;
    }

    .snt-controls {
        gap: 0.35rem;
        padding-right: 0.55rem;
    }

    .snt-counter {
        font-size: 0.8rem;
    }

    .snt-next {
        width: 26px;
        height: 26px;
    }
}
