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

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

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

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

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

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

.d_topBar_text {
	line-height: 2;
	padding: 30px 0 15px;
	color: #3d3c0a;
}

.d_topBar_icon {
	color: black;
}

.d_topBar_icon svg {
	width: 26px;
	height: 26px;
	margin-bottom: -5px;
	margin-right: 6px;
}

.d_topBar_btn {
	display: flex;
	justify-content: center;
	margin-top: 5px; /* Darko margin-top: 15px; */
	padding-bottom:30px;
}

/* Original
.d_topBar_go {
   color: #0064df; 
   background:white;
   letter-spacing: 0.5px;
   display: block;
   border-radius:8px;
   border:2px solid white;
   padding:7px 15px;
   cursor:pointer;
   transition: all .2s ease-in-out;
} 
.d_topBar_go:hover {
   color;#e2b100;
   transform: scale(1.05);
   box-shadow:0px 0px 1px 1px white;
}
*/

.d_topBar_go {
	color: #ffffff;
	background: #3755c1;
	letter-spacing: 0.5px;
	/* display: block; */
	border-radius: 3px;
	padding: 10px 18px;
	cursor: pointer;
	transition: all .2s ease-in-out;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 14px;
	margin-left: 15px;
}

.d_topBar_go:hover {
	background: #333;
	color: #ee7105;
	transform: scale(1.05);
	box-shadow: 0 0 1px 1px #333;
}

.d_topBar_close {
	cursor: pointer;
	position: absolute;
	top: 7px;
	right: -10px;
	font-size: 1.5rem;
}

.d_topBar_close img {
	width: 20px;
	height: 20px;
	/* filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(59deg) brightness(101%) contrast(101%); */
	display: block;
}

.d_topBar_coupon {
	color: #e33a46;
	padding: 4px 12px;
	font-size: 20px;
	letter-spacing: 1px;
	margin-left: 8px;
	border-radius: 12px;
	display: inline-block;
	background: #fff;
}

.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_countdown .fa {
	margin-right: 6px;
	margin-left: 4px;
	font-size: 1.2em;
	font-weight: 700;
}

.d_topBar_offer {
	font-weight: bold;
	font-size: 20px;
	margin-right: 10px;
}

.d_topBar.landing {
	font-size: 16px !important;
}

.d_topBar.landing .d_topBar_text {
	line-height: 2;
	padding: 15px 20px;
}

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

.d_topBar.landing .d_topBar_close img  {
	width: 20px;
	height: 20px;
	margin-bottom: -2px;
}

.d_topBar.hidden {
	display: none;
}

@keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

.d_topBar_icon.animated svg {
	animation: fa-spin 2s linear infinite;
}

@media screen and (min-width: 992px) {
	.d_topBar_text {
		padding: 20px 0;
		line-height: 1.7;
	}

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

	.d_topBar_close {
		top: 50%;
		right: 50px;
		transform: translateY(-50%);
		padding: 10px;
		border-radius: 50%;
		transition: all 167ms cubic-bezier(.4, 0, .2, 1);
	}

	.d_topBar_close:hover {
		background: rgba(255,255,255,.35);
	}

	.d_topBar.landing .d_topBar_text {
		padding: 15px 0;
		line-height: 1.7;
	}

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

	.d_topBar.landing .d_topBar_close img  {
		margin-bottom: 0;
	}

}