﻿/* General Styles */
.amount-display, .amount-display-inline {
	margin-bottom: 0;
	background-color: transparent;
	color: rgb(var(--color-primary));
	font-size: 18px;
	font-weight: bold;
}
.amount-display {
	display: block;
}
.amount-display-inline {
	display: inline-block;
}
.img-powered-by {
	max-height: 32px;
}
.iframe-hpf {
	border: none;
	width: 100%;
	height: 400px;
}

/* Progress Indicator / Step Pagination */
.step-pagination {
	display: table;
	position: relative;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	border: 1px solid rgba(77, 77, 79, 0.80);
	border-width: 1px 0;
	padding: 10px 15px;
	text-align: center;
}
.step-pagination > ul {
	display: inline-block;
	width: 600px;
	margin: 0;
	padding: 0;
	counter-reset: step;
}
.step-pagination > ul > li {
	list-style-type: none;
	width: 25%;
	float: left;
	font-size: 12px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	color: rgba(77, 77, 79, 0.80);
	z-index: 1;
}
	.step-pagination > ul > li.active {
		color: rgb(var(--color-primary));
	}
.step-pagination > ul > li:before {
	width: 30px;
	height: 30px;
	content: counter(step);
	counter-increment: step;
	line-height: 30px;
	border: 2px solid #7d7d7d;
	display: block;
	text-align: center;
	margin: 0 auto 10px auto;
	border-radius: 50%;
	background-color: white;
}
.step-pagination > ul > li:after {
	width: 90%;
	height: 2px;
	content: '';
	position: absolute;
	background-color: #7d7d7d;
	top: 15px;
	left: -40%;
	z-index: -1;
}
.step-pagination > ul > li.active:before {
	/*border-color: #62a70f;*/
	background-color: #62a70f;
	color: #fff;
}
.step-pagination > ul > li.active:after {
	background-color: #62a70f;
}
.step-pagination > ul > li:first-child:after {
	content: none;
}
