html body .app-content
{
	display: flex;
	/* align-items: center; */
	flex-direction: column;
	justify-content: center;
	min-height: 100vh;

	/* background: url('images/email-pattern.png') repeat; */
}

html body .app-content.has-background
{
	position: relative;
	z-index: 5;
	/* background: #000; */
}

html body .app-content.has-background:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	opacity: 0.4;

	background: url('images/registration-bg.jpeg');
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
}

html body .app-content .content-body-wrapper
{
	position: relative;
	z-index: 11;
	max-width: 700px;
	width: 100%;
	margin: auto;
}

html body .app-content .content-body-inner
{
	padding: 20px;
}

html body .app-content .card
{
	border-radius: 0;
	box-shadow: 12px 12px 0 #efefef;
}

html body .app-content.has-background .card
{
	/* box-shadow: 0 0 6px #efefef; */
	box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px;

	border: 2px solid #efefef;
}

html body .app-content .card .card-head
{
	display: flex;
	text-align: center;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	
	padding: 20px 20px;
	margin-bottom: 20px;
	border-bottom: 2px solid #efefef;
}

html body .app-content .card .card-head .content-header-title
{
	font-style: 20px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

html body .app-content .card .card-body
{
	padding: 15px 20px;
}

html body .app-content .card label
{
	display: block;
	margin: 0;
	padding-bottom: 6px;
	cursor: pointer;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

html body .app-content .card .row.row-sm
{
	margin-left: -5px;
	margin-right: -5px;
}

html body .app-content .card .row.row-sm > .cs-col
{
	padding-left: 5px;
	padding-right: 5px;
}

html body .app-content .card .card-body .form-group 
{
	margin-bottom: 4rem;
}

html body .app-content .card .card-body .form-group label
{
	padding-bottom: 0;
}

html body .app-content .card .card-body .form-group label.error
{
	color: red;
}

html body .app-content .card .form-control
{
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-width: 3px;

	padding-left: 0;
	padding-right: 0;
	border-radius: 0px;
	box-shadow: none !important;
}

html body .app-content .card .card-body
{
	padding: 20px;
}

html body .app-content .card select.form-control
{
	appearance: none;
}

html body .app-content .card .form-actions
{
	padding: 0;
	margin: -5px -20px;
	margin-top: 20px;
	padding-top: 20px;
	border-color: #efefef;
}

html body .app-content .card .form-actions .btn
{
	margin: 5px 0;
	font-size: 20px;
	font-weight: 700;
	border-radius: 0;
	padding-left: 23px;
	padding-right: 23px;
	letter-spacing: 0.5px;
	border-color: transparent;
	text-transform: uppercase;

	position: relative;
	z-index: 5;
}

html body .app-content .card hr
{
	margin: 20px -20px;
	border-color: #efefef;
}

html body .app-content .card .btn.btn-sm
{
	margin: 0;
	padding: 8px;
	border-radius: 0;
}

html body .app-content .card h3
{
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

html body .app-content .card .card-text h3
{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

html body .app-content .card .card-text h3 .btn
{
	margin-right: 7px;
}

html body .app-content .card .form-actions .btn:before
{
	content: '';
	width: 100%;
	height: 100%;
	background: #1065ba;

	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;

	max-height: 0;
	transition: all ease-in-out 0.15s;
}

html body .app-content .card .form-actions .btn.btn-warning:before
{
	background: #dd7733;
}

html body .app-content .card .form-actions .btn:hover:before,
html body .app-content .card .form-actions .btn:focus:before,
html body .app-content .card .form-actions .btn:active:before
{
	max-height: 100%;
}

html body .app-content .card .cnt-confirm
{
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	/* min-height: 100vh; */
}

html body .app-content .card .cnt-confirm.wizard-step {
	display: none;
}

html body .app-content .card .cnt-confirm.active {
	display: flex;
}

html body .app-content .card .cnt-confirm h3
{
	margin: 0;
	font-weight: 700;
}

@media (max-width: 767px)
{
	html body .app-content
	{
		justify-content: normal;
	}
}

.wizard-step {
	display: none;
}

.wizard-step.active {
	display: block;
}

