.running-text {
	position: absolute;
	bottom: 0;
	width: 100%;
	overflow: hidden;
	flex-shrink: 0;
}

.ticker {
	display: flex;
	width: 100%;
	overflow: hidden;
}

.ticker__list {
	display: inline-flex;
	gap: 1px;
	white-space: nowrap;
	animation: ticker 60s linear infinite;
	will-change: transform;
}

.ticker__item {
	font-weight: 400;
	font-size: 20px;
	line-height: 1;
	color: #fff;
	padding: 10px 24px;
	background-color: #272727;
}

.run-circle {
	font-size: 20px;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 110%;
	color: #fff;
	align-self: center;
}

@keyframes ticker {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media screen and (max-width: 1540px) {
	.ticker__item {
		font-size: 14px;
	}
}

@media screen and (max-width: 992px) {
	.ticker__item {
		color: #fff;
		padding: 11px 8px;
		background-color: #4b4b4e;
	}
}
