.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_btns {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
}

.d_stickyBottom_trial {
	font-size: 13px;
}

.d_stickyBottom_btn, .d_stickyBottom_btnPaid {
	letter-spacing: 1px;
	font-size: 13px;
	white-space: nowrap;
	align-self: center;
	font-weight: 600;
	margin-left: 20px;
	padding: 14px 21px;
}

.d_stickyBottom_btnPaid {
	display: flex;
	justify-content: center;
	font-size: 16px;
	margin-left: 0;
}

.d_stickyBottom_btnPaid svg {
	width: 25px;
	height: 25px;
	fill: #fff;
	margin-right: 8px;
	transition: all .3s ease-in-out;
}

.d_stickyBottom_trial img {
	filter: invert(40%) sepia(49%) saturate(3611%) hue-rotate(330deg) brightness(87%) contrast(105%);
	width: 18px;
	height: 18px;
	margin: 0 2px -3px 2px;
}

@media (min-width: 390px) {
	.d_stickyBottom_trial {
		font-size: 14px;
	}
}

@media (min-width: 579px) {
	.d_stickyBottom_btn {
		padding: 14px 28px;
		margin-left: 25px;
	}

	.d_stickyBottom_trial {
		font-size: inherit;
	}
}

@media (min-width: 992px) {
	.d_stickyBottom_btns {
		max-width: calc(100% - 20px);
		justify-content: flex-end;
	}

	.d_stickyBottom_btnPaid {
		margin: 0 auto;
		max-width: 550px;
	}

	.d_stickyBottom_trial img {
		width: 20px;
		height: 20px;
		margin: 0 3px -3px 3px;
	}
}