.d_stickyTop {
	background: #000;
	color: #fff;
	font-size: 12px;
	padding: 12px 17px;
	z-index: 999;
	position: fixed;
	top: 0;
	transform: translateY(-75px);
	left: 0;
	width: 100%;
	transition: transform .75s ease, opacity .75s ease;
	line-height: 1.35;
	font-weight: 600;
}

.d_stickyTop.animated {
	transform: translateY(0);
	opacity: 1;
}

.d_stickyTop_inner {
	max-width: 380px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

@media (min-width: 576px) {
	.d_stickyTop_inner {
		max-width: 620px;
	}
}

@media (min-width: 768px) {
	.d_stickyTop {
		display: none;
	}
}