@keyframes topBarBg {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.d_topBar {
	position: sticky;
	top: 0;
	width: 100%;
	background: #ffe799; /* #000 */
	color: #ffffff;
	z-index: 9999;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	overflow: hidden;
	padding: 0;
	text-transform: uppercase;
}

.d_topBar.delay_view {
	position: absolute;
	visibility: hidden;
	top: -100%;
	transition: top 2s ease-in-out;
}

.d_topBar.delay_view_animated {
	position: sticky;
	top: 0;
	visibility: visible;
}

.d_topBar_container {
	display: block;
	position: relative;
	color: inherit;
}

.d_topBar > a {
	display: block;
	color: inherit;
}

.d_topBar_text {
	line-height: 1;
	padding: 19px 0;
	color: #3d3c0a;
}

.d_topBar_close {
	display: none;
}

.d_topBar_offerCounter {
	display: inline-block;
	white-space: nowrap;
}

.d_topBar_countdown {
	display: inline-block;
	margin-top: 2px;
	font-weight: 700;
	color: #ffc800; /* KS #0a0a0a */ 
}

.d_topBar.landing svg {
	width: 18px;
	height: 18px;
	margin-bottom: -2px;
}

.d_topBar.hidden {
	display: none;
}

@media screen and (min-width: 992px) {
	.d_topBar {
		font-size: 16px;
	}

	.d_topBar_text {
		line-height: 1.7;
	}

	.d_topBar_countdown {
		display: inline;
		margin-top: 0;
	}

	.d_topBar.landing svg {
		width: 26px;
		height: 26px;
		margin-bottom: -5px;
	}

}