.stepform .btn, .stepform input[type=button].btn {
	border: 1px solid #808080;
	display: inline-block;
	padding: 5px 10px;
	position: relative;
	text-align: left;
	border-radius: 3px;
	-webkit-transition: background 600ms ease, color 600ms ease;
	transition: background 600ms ease, color 600ms ease;
}
.stepform input[type=button].btn {
	color: black;
	font-size: 1.7rem;
	font-weight: 400;
	margin-top: 10px;
}
.stepform input[type=button].btn:hover {
	text-decoration-line: none;
}
.stepform .btn span {
	border: 1px solid #808080;
	display: inline-block;
	padding: 1px 6px;
	font-size: 12px;
	border-radius: 5px;
	vertical-align: middle;
	text-align: center;
	margin-top: -5px;
}
.stepform input[type="checkbox"] {
	width: 2.2rem;
	min-width: 2.2rem;
	height: 2.2rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	top: 2px;
	display: inline-block;
	margin: 0;
	background: #fff;
	border-radius: 0;
	border-style: solid;
	border-width: 0.1rem;
	border-color: #dcd7ca;
	box-shadow: none;
	cursor: pointer;
}
.stepform input[type="checkbox"]:checked::before {
	content: url(data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23000000%27%2F%3E%3C%2Fsvg%3E);
	position: absolute;
	display: inline-block;
	margin: -0.1rem 0 0 -0.12rem;
	width: 2.2rem;
	height: 2.2rem;
}
.stepform .input-block.select label {
	font-size: 2.2rem;
}
	
.stepform input[type="radio"].toggle {
	display: none;
}
.stepform input[type="radio"].toggle + label {
	cursor: pointer;
	min-width: 80px;
}
.stepform input[type="radio"].toggle + label:hover {
	background: none;
	color: #000;
}
.stepform input[type="radio"].toggle + label:after {
	content: "";
	height: 100%;
	position: absolute;
	top: 0;
	-webkit-transition: left 100ms cubic-bezier(0.77, 0, 0.175, 1);
	transition: left 100ms cubic-bezier(0.77, 0, 0.175, 1);
	width: 100%;
	z-index: -1;
}
.stepform input[type="radio"].toggle.toggle-left + label {}
.stepform input[type="radio"].toggle.toggle-left + label:after {
	left: 100%;
}
.stepform input[type="radio"].toggle.toggle-right + label {
	margin-left: 10px;
}
.stepform input[type="radio"].toggle.toggle-right + label:after {
	left: -100%;
}
.stepform input[type="radio"].toggle:checked + label {
	background: #FFF;
	cursor: default;
	color: #000;
}
.stepform input[type="radio"].toggle:checked + label:after {
	left: 0;
}

.stepform input:focus, select:focus, textarea:focus, button:focus {
	outline: none;
	border-color: blue !important;
}
.stepform input, select, textarea, .stepform input[type="text"] {
	background-color: transparent !important;
	color: #000;
}
.stepform {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	max-width: 100%;
	overflow: hidden;
}

.stepform .stepform-main .input-block {
	opacity: 0.25;
	cursor: default;
}
.stepform .stepform-main .input-block .label {
	display: block;
	font-size: 1.1em;
	line-height: 30px;
}
.stepform .stepform-main .input-block .input-control {
	margin: 20px 0;
}
.stepform .stepform-main .input-block .input-control input[type=text] {
	border: none;
	outline-width: 0;
	border-bottom: 2px solid #CCC;
	width: 100%;
	font-size: 35px;
	padding-bottom: 10px;
}
.stepform.individual .stepform-main .input-block {
	display: none;
}
.stepform .stepform-main .input-block.active {
	opacity: 1;
	display: block;
}
.stepform .stepform-footer {
	margin-top: 20px;
}
.stepform .stepform-footer .btn {
	font-size: 24px;
	font-weight: bold;
	padding: 5px 20px;
}
.stepform .input-block.disabled {
	display: none !important;
}