/* AFIRM T&C Protected Content - Front-End Styles */
.afirmtc-wrap {
	display: block;
	margin: 2.5rem auto;
	padding: 1.5em;
	border-radius: 0.75rem;
	border: 1px solid #999;
	width: 90%;
}
.afirmtc-title {
	margin-bottom: 0.5em;
}
.afirmtc-content {
	margin-bottom: 2em;
}
.afirmtc-tc-toggle-wrap {
	margin-bottom: 0.75em;
}
.afirmtc-tc-text {
	border: 1px solid #1B71BD;
	padding: 1em 1.25em;
	margin-bottom: 1.25em;
}
.afirmtc-agree-wrap {
	margin-bottom: 1em;
}
.afirmtc-tc-toggle,
.afirmtc-agree-btn,
.afirmtc-download-btn {
	display: inline-block;
	padding: 0.65em 1.5em;
	background-color: #1B71BD;
	color: #FFF;
	border: none;
	cursor: pointer;
	text-decoration: none;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
}
.afirmtc-tc-toggle:hover,
.afirmtc-agree-btn:hover,
.afirmtc-download-btn:hover {
	opacity: 0.85;
	color: #FFF;
	text-decoration: none;
	background-color: #54595F;
}
.afirmtc-download-wrap {
	display: none;
}
/* Spinner */
.afirmtc-spinner {
	display: inline-block;
	width: 0.85em;
	height: 0.85em;
	border: 2px solid rgba( 255, 255, 255, 0.4 );
	border-top-color: #FFF;
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 0.4em;
	animation: afirmtc-spin 0.7s linear infinite;
}
@keyframes afirmtc-spin {
	to { transform: rotate( 360deg ); }
}
.afirmtc-agree-btn.afirmtc-agree-disabled {
	opacity: 0.4;
	cursor: not-allowed;
}