.wrapper {
	width: 100%;
}

.content {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	max-width: 100%;
	margin: 0;
	padding: 0;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;

	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;

	height: 100vh;
}

.content .left-panel {
	display: block;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;

	position: relative;

	padding: 50px 50px;

	background-color: #fff;

	overflow: hidden;
	overflow-anchor: none;
	-ms-overflow-style: none;
	touch-action: auto;
	-ms-touch-action: auto;

	min-width: 500px;
}
@media screen and (max-width: 767px){
	.content .right-panel {
		display: none!important;
	}
}

#wizard .wizard-content .content-form {
	min-height: 25vh;
/*	display: flex;
	align-items: center;*/
}

#wizard .wizard-content .content-form .md-form {
	/*width: 100%;*/

/*	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);*/
}

#wizard .wizard-content:not(:first-of-type) {
	display: none;
}