.cx-wizard-body-panel {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	overflow: hidden;
	background: #dfdfdf;
}
.cx-wizard-container {
	width: 700px;
	background: #fff;
	text-align: center;
	font-family: 'Quicksand', sans-serif;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 5px 5px 26px -6px rgba(0, 0, 0, 0.18);
}
.cx-wizard-container h1 {
	margin: 0;
}
.cx-wizard-container h1 a {
	color: #29485C;
	text-decoration: none;
	font-size: 22px;
}
.cx-wizard-container .cx-wizard-content{
  width: 100%;
  overflow: hidden;
}
.cx-wizard-container .cx-wizard-content form {
  display: flex;
  width: 400%;
}
.cx-wizard-content form .cx-wizard-page{
  width: 25%;
  transition: margin-left 0.3s ease-in-out;
}
.cx-wizard-content form .cx-wizard-page .title{
  text-align: left;
  font-size: 25px;
  font-weight: 500;
}
.cx-wizard-content form .cx-wizard-page .field {
	width: 100%;
	position: relative;
	height: auto;
	margin: 30px 0 auto;
	display: inline-flex;
}
.cx-wizard-container form .cx-wizard-page .field .label{
  position: absolute;
  top: -30px;
  font-weight: 500;
}
.cx-wizard-container form .cx-wizard-page .field input {
  height: 100%;
  width: 100%;
  border: 1px solid lightgrey;
  border-radius: 5px;
  padding-left: 15px;
  font-size: 18px;
}
.cx-wizard-container form .cx-wizard-page .field select {
  width: 100%;
  padding-left: 10px;
  font-size: 17px;
  font-weight: 500;
}
.cx-wizard-container form .cx-wizard-page input,
.cx-wizard-container form .cx-wizard-page select {
	color: #29485C;
	padding: 8px 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.cx-wizard-container form .cx-wizard-page label {
	color: #29485C;
}
.cx-wizard-container .cx-wizard-btn {
	width: 100%;
	height: 42px;
	border: none;
	background: #29485C;
	margin-top: -20px;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: 0.5s ease;
	text-decoration: none;
	line-height: 45px;
	margin-right: 15px;
	font-weight: bold;
	font-family: inherit;
}
.cx-wizard-container .cx-wizard-btn:hover {
	background: #1F3644;
}
.cx-wizard-container .cx-wizard-btn:last-child {
	margin-right: 0;
}
.cx-wizard-btn.prev.disabled {
	display: none;
}
.cx-wizard-container .cx-wizard-progress-bar{
  display: flex;
  margin: 40px 0;}
.cx-wizard-container .cx-wizard-progress-bar .step {
  text-align: center;
  width: 100%;
  position: relative;
}
.cx-wizard-container .cx-wizard-progress-bar .step p a {
	font-size: 14px;
	color: #29485C;
	text-decoration: none;
}
.cx-wizard-progress-bar .step .bullet {
	height: 35px;
	width: 35px;
	border: 2px solid #ced1fb;
	display: inline-block;
	border-radius: 50%;
	position: relative;
	transition: 0.2s;
	font-weight: 500;
	font-size: 17px;
	line-height: 35px;
	color: #ced1fb;
}
.cx-wizard-progress-bar .step.passed-step .bullet {
	color: #5284FB;
	border-color: #5284FB;
}
.cx-wizard-progress-bar .step:last-child .bullet:before,
.cx-wizard-progress-bar .step:last-child .bullet:after{
  display: none;
}
.cx-wizard-progress-bar .step .bullet::after {
	position: absolute;
	content: '';
	bottom: 15px;
	right: -135px;
	height: 3px;
	width: 130px;
	background: #7d7d7d;
}
.cx-wizard-progress-bar .step.passed-step .bullet::after {
	background: #5284FB;
}
.cx-wizard-progress-bar .step.current-step.passed-step .bullet::after {
	background: #ced1fb;
}