.d_stickyBottom {
	position: fixed;
	bottom: -75px;
	left: 0;
	opacity: 0;
	width: 100%;
	background: rgba(0,0,0,0.9);
	color: white;
	z-index: 99999;
	transform: translate3d(0, 0, 0);
	transition: transform .75s ease, opacity .75s ease;
	line-height: 1.5;
}

.d_stickyBottom.animated {
	transform: translateY(-75px);
	opacity: 1;
}

.d_stickyBottom_inner {
	padding: 12px 17px;
	position: relative;
	z-index: 999;
}

.d_stickyBottom_getAll {
	letter-spacing: 1px;
	font-size: 14px;
	white-space: nowrap;
	align-self: center;
	font-weight: 600;
	margin: 0 auto;
	padding: 13px 21px;
	display: block;
	max-width: 330px;
}

.d_stickyBottom_singleCourse {
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	font-size: 13px;
	margin-top: 8px;
}

.d_stickyBottom_singleCourse svg, .d_stickyBottom_singleCourse img {
	width: 24px;
	height: 24px;
	margin-right: 7px;
}

@media (min-width: 768px) {
	.d_stickyBottom_inner {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.d_stickyBottom_singleCourse {
		margin-top: 0;
	}

	.d_stickyBottom_getAll {
		margin: 0 20px 0 0;
	}
}