.wizard,.tabcontrol
{
	display: block;
	width: 100%;
}

.wizard a,.tabcontrol a
{
	outline: 0;
}

.wizard ul,.tabcontrol ul
{
	list-style-type: none;
	text-align: center;
}

.wizard ul>li,.tabcontrol ul>li
{
	display: block;
	padding: 0;
}

/* step navigation area ("panel") containing the step text, disks, and numbers*/
.wizard>.steps
{
	display: block;
  margin-left: -2rem;
  margin-right: -2rem;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
	position: relative;
  text-transform:uppercase;
}

.wizard>.steps .current-info,.tabcontrol>.steps .current-info
{
	left: -999em;
	position: absolute;
}

/* disk containing step numbers */
.wizard>.steps .number
{
	background: #48AADC;
	color: #fff;
	cursor: pointer;
	display: inline-block;
  font-family: 'Interstate BoldCompressed', serif;
	font-size: 1.563rem;
  font-weight: 700;
	line-height: 38px;
  margin: auto;
	position: relative;
	text-align: center;
	width: 23px;
}

/* check mark indicates a visited step and replaces step number 
.wizard>.steps .done .number:before
{
	content: '\2713';
	display: block;
	font-family: 'responsive';
	font-style: normal;
	font-weight: normal;
	speak: none;
	text-align: center;
	text-decoration: inherit;
}
*/

/* color the background disk of valid step numbers */
.wizard>.steps .done .number
{
	background: #1F1646;
}

/* color the background disk of the current step number */
.wizard>.steps .current .number
{
	background: #48AADC;
}

.wizard>.steps>ul
{
  margin: auto 0;
  padding-left: 0;
}

.wizard>.steps>ul>li
{
  display: inline-block;
	width: 33%;
  border-bottom: 4px solid rgba(31, 22, 70, 0.5);
  opacity: 0.3;
}

.wizard>.steps>ul>li.done
{
  opacity: 1;
}

.wizard>.steps>ul>li:first-child {
	width: 20%;
}
.wizard>.steps>ul>li:last-child {
	width: 14%;
}
.wizard>.steps>ul>li:first-child a {
	text-align: left;
}
.wizard>.steps>ul>li:last-child a {
	text-align: right;
}

.wizard>.steps>ul>li.current
{
	border-bottom: 4px solid rgba(31, 22, 70, 1);
  opacity: 1;
}

.wizard>.steps>ul>li,.wizard>.actions>ul>li
{
	float: left;
}

.wizard>.steps a,.wizard>.steps a:hover,.wizard>.steps a:active
{
	display: block;	
  font-family: 'Interstate BoldCompressed', serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.563rem;
  line-height: 1.563rem;
  letter-spacing: 1px;
  color: #1F1646;  
	padding: 0 0 1em 0;
	position: relative;
	text-decoration: none;
	width: auto;
}

.wizard>.steps .disabled a,.wizard>.steps .disabled a:hover,.wizard>.steps .disabled a:active
{
	cursor: default;
}

.wizard>.steps .current a,.wizard>.steps .current a:hover,.wizard>.steps .current a:active
{
	cursor: default;
}

.wizard>.steps .done a,.wizard>.steps .done a:hover,.wizard>.steps .done a:active
{
}

.wizard>.steps .error a,.wizard>.steps .error a:hover,.wizard>.steps .error a:active
{
}

/* color the background disk of invalid step numbers */
.wizard > .steps .error a .number
{
  background: #ff0000;
}

/* "x" indicates an invalid step and replaces the step number */
.wizard>.steps .error .number:before
{
  content: '\2716';
  display: block;
  font-family: 'responsive';
  font-style: normal;
  font-weight: normal;
  speak: none;
  text-align: center;
  text-decoration: inherit;
	position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ff0000;  
}

.wizard.vertical>.steps
{
	display: inline;
	float: left;
	width: 30%;
}

.wizard.vertical>.steps>ul>li
{
	float: none;
	width: 100%;
}

/* body contents area - contains form elements */
.wizard>.content
{
	display: block;
	position: relative;
	width: auto;
}

.wizard>.content>.title,.tabcontrol>.content>.title
{
	left: -999em;
	position: absolute;
}

.wizard.vertical>.content
{
	display: inline;
	float: left;
	margin: 0 2.5% 0.5em 2.5%;
	width: 65%;
}

.wizard>.content>.body
{
	float: left;
	position: absolute;
	/*width: 95%;*/
}

.wizard>.content>.body ul
{
	list-style: disc!important;
  text-align: left;
  padding-left: 7px;
}

.wizard>.content>.body ul>li
{
	display: list-item;
}

.wizard>.content>.body>iframe
{
	border: 0 none;
	height: 100%;
	width: 100%;
}

.wizard>.content>.body input
{
	display: block;
}

.wizard>.content>.body input[type="checkbox"]
{
	display: inline-block;
}

.wizard>.content>.body input.error
{
	background: rgb(251,227,228);
	border: 1px solid #fbc2c4;
	color: #8a1f11;
}

.wizard>.content>.body label.error
{
	color: #8a1f11;
	display: inline-block;
	margin-left: 1.5em;
  font-size: 0.8rem;
}

/* actions area - contains buttons for next step, etc. */
.wizard>.actions
{
	display: block;
  margin-top: 2rem;
	position: relative;
	text-align: right;
	width: 100%;
}

.wizard>.actions>ul
{
  padding-left: 0;
      display: flex;
    justify-content: space-between;
}

.wizard>.actions>ul>li
{
	margin: 0 0.5em;
}

/* active button and text in the "actions" area*/
.wizard>.actions a,.wizard>.actions a:hover,.wizard>.actions a:active
{
	background-color: #48AADC;
	border: 0;
	/* color: #fff; */
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-family: 'Interstate BoldCompressed', serif;
  font-size: 1.25rem;
	letter-spacing: 1px;
	line-height: 20px;
	margin-bottom: 0;
	margin-top: 10px;
	min-height: 43px;
	padding: 12px 15px;
	text-transform: uppercase;
	vertical-align: 0;
	white-space: normal;
}

.wizard>.actions .disabled a,.wizard>.actions .disabled a:hover,.wizard>.actions .disabled a:active
{
	background: rgba(203, 212, 230, 0.3);
  border: 1px solid #7C8DB0;
	color: #838EAC;
}

.wizard.vertical>.actions
{
	display: inline;
	float: right;
	margin: 0 2.5%;
	width: 95%;
}

.wizard.vertical>.actions>ul>li
{
	margin: 0 0 0 1em;
}

.wizard .help-block
{
  color: #CC0000;
}

.wizard>.loading
{
}

.wizard>.loading .spinner
{
}

.tabcontrol>.steps
{
	display: block;
	position: relative;
	width: 100%;
}

.tabcontrol>.steps>ul
{
	margin: 6px 0 0 0;
	position: relative;
	top: 1px;
	z-index: 1;
}

.tabcontrol>.steps>ul>li
{
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	float: left;
	margin: 5px 2px 0 0;
	padding: 1px;
}

.tabcontrol>.steps>ul>li:hover
{
	background: #edecec;
	border: 1px solid #bbb;
	padding: 0;
}

.tabcontrol>.steps>ul>li.current
{
	background: #fff;
	border: 1px solid #bbb;
	border-bottom: 0 none;
	margin-top: 0;
	padding: 0 0 1px 0;
}

.tabcontrol>.steps>ul>li>a
{
	border: 0 none;
	color: #5f5f5f;
	display: inline-block;
	margin: 0;
	padding: 10px 30px;
	text-decoration: none;
}

.tabcontrol>.steps>ul>li>a:hover
{
	text-decoration: none;
}

.tabcontrol>.steps>ul>li.current>a
{
	padding: 15px 30px 10px 30px;
}

.tabcontrol>.content
{
	border-top: 1px solid #bbb;
	display: inline-block;
	height: 35em;
	overflow: hidden;
	padding-top: 20px;
	position: relative;
	width: 100%;
}

.tabcontrol>.content>.body
{
	float: left;
	height: 95%;
	padding: 2.5%;
	position: absolute;
	width: 95%;
}

.tabcontrol>.content>.body ul
{
	list-style: disc!important;
}

.tabcontrol>.content>.body ul>li
{
	display: list-item;
}