.site-header-row.site-header-row-only-center-column {
  width: 100vw;
  padding-top: 8px;
  padding-bottom: 8px;
}
.rotating-container {
	overflow: hidden;
	width: 100vw;
	position: relative;
	white-space: nowrap;
	display: flex;
	align-items: center;
	height: 1.7em; /* Approximate a single line of text */
	line-height: 1.7;
}
/* Override if `lh` is supported */
@supports (height: 1lh) {
	.rotating-container {
		height: 1lh; /* exactly the Line height used - but supported by all browsers */
	}
}

.ticker-wrapper {
	position: relative;
	width: 100vw;
	height: 100%;
	overflow: hidden;
}

.ticker {
	line-height: 1.4;
	left: 100%;
	white-space: nowrap;
	will-change: transform;
	color: #ddd;
}

/* Ticker button */
.ticker a {
	font-size: .9em;
	font-weight: 300;
	color: #303030;
	text-decoration: none !important;
	margin-left: 6px;
	padding: 3.5px 16px;
	background: #eee;
	border-radius: 12px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	top: -2px:
}

/* Wrap for centering the text+icon together */
.ticker a .inner {
	display: inline-flex;
	align-items: center;
	transition: transform 0.3s ease;
}
.ticker a .text {
	transition: transform 0.3s ease;
	position: relative;
	left: 10px;
}
/* Icon span collapsed by default */
.ticker a .icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	overflow: hidden;
	transition: width 0.3s ease, opacity 0.3s ease;
	margin-left: 1px;
	height: 18px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 24 24'><path d='M12 5c-7.633 0-11 7-11 7s3.367 7 11 7 11-7 11-7-3.367-7-11-7zm0 12c-2.761 0-5-2.239-5-5s2.239-5 5-5 5 2.239 5 5-2.239 5-5 5zm0-8a3 3 0 100 6 3 3 0 000-6z'/></svg>");
	opacity: 0;
}
.ticker a:hover {
	background: #fff;
	color: #202020;
}
/* Nudge inner container slightly right */
.ticker a:hover .inner {
	transform: translateX(6px);
}
.ticker a:hover .text {
	transform: translateX(-18px); /* existing left nudge */
}
.ticker a:hover .icon {
	opacity: 1;
}