.wizard,
.tabcontrol {
 display:block;
 width:100%;
 overflow:hidden;
}
.wizard a,
.tabcontrol a {
 outline:0
}
.wizard ul,
.tabcontrol ul {
 list-style:none!important;
 padding:0;
 margin:0
}
.wizard ul[role=tablist] {
 display: grid;
 grid-auto-flow: column;
 grid-auto-columns: 1fr;
 grid-auto-rows: inherit;
}
.wizard ul[role=tablist] li {
	width:auto !important;
	float: none !important;
	font-size: 1rem;
	@media(min-width:75em) { font-size: 0.85rem; }
	@media(min-width:90em) { font-size: 1rem; }
}
.wizard ul>li,
.tabcontrol ul>li {
 display:block;
 padding:0;
 position:relative;
}
.wizard>.steps .current-info,
.tabcontrol>.steps .current-info {
 position:absolute;
 left:-999em
}
.wizard>.content>.title,
.tabcontrol>.content>.title {
 position:absolute;
 left:-999em
}
.wizard>.steps {
 position:relative;
 display:block;
 width:100%;
 margin-bottom: 25px;
}
.wizard.vertical>.steps {
 display:inline;
 float:left;
 width:30%
}
@media(max-width:60em) {
	.wizard>.steps .number {
		text-align: center;
		display: grid;
		font-weight: 700;
	}
	.wizard>.steps .tit {
		display: none;
	}
}
.wizard.vertical>.steps>ul>li {
 float:none;
 width:100%;
}
.wizard>.steps a,
.wizard>.steps a:hover,
.wizard>.steps a:active {
 display:block;
 width:auto;
 padding:10px 15px;
 border-radius:3px 0px 0px 3px;
}
.wizard>.steps .disabled a,
.wizard>.steps .disabled a:hover,
.wizard>.steps .disabled a:active {
 background:#D9D9D9;
 color:#373636;
 cursor:default;
 border-radius: 0px 3px 3px 0px;
}
.wizard>.steps .current a,
.wizard>.steps .current a:hover,
.wizard>.steps .current a:active {
 background:#8A5EA4;
 color:#fff;
 cursor:default
}
.wizard>.steps .done a,
.wizard>.steps .done a:hover,
.wizard>.steps .done a:active {
 background:#000;
 color:#fff
}
.wizard>.steps .error a,
.wizard>.steps .error a:hover,
.wizard>.steps .error a:active {
 background:#c30;
 color:#fff
}
.wizard>.steps li:not(.first) a {
	border-radius: 0px 3px 3px 0px;
	padding-left: 12px;
	@media(min-width:60em) { padding-left: 32px; }
}
.wizard>.steps li {
	clip-path: polygon(0% 0%, 84% 0%, 93% 50%, 84% 100%, 0% 100%);
	@media(min-width:45em) { clip-path: polygon(0% 0%, 90% 0%, 97% 50%, 90% 100%, 0% 100%); }
	@media(min-width:60em) { clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%); }
	&:nth-child(2) {
		@media(max-width:45em) { margin-left: -10px !important; }
	}
}
.wizard>.steps li:not(.first) {
	margin-left: -5px;
  	z-index: -1;
	clip-path: polygon(91% 0%, 98% 50%, 91% 100%, 0% 100%, 7% 50%, 0% 0%);
	@media(min-width:30em) { margin-left: -5px; }
	@media(min-width:45em) { margin-left: -10px; clip-path: polygon(91% 0%, 98% 50%, 91% 100%, 0% 100%, 7% 50%, 0% 0%); }
	@media(min-width:60em) { clip-path: polygon(95% 0%, 100% 50%, 95% 100%, 0% 100%, 7% 50%, 0% 0%); }
}
.wizard>.content {
 display:block;
 margin:15px 0 30px;
 overflow:hidden;
 position:relative;
 width:auto;
}
@media(max-width:45em) {
	.wizard>.content {
		display:block;
		margin:15px 0 0;
	}
}
.wizard.vertical>.content {
 display:inline;
 float:left;
 margin:0 2.5% .5em 2.5%;
 width:65%
}
.wizard>.content>.body {
 width:100%;
 border:0;
 margin:0;
 text-align: left;
}
@media(max-width:48em) {
	.wizard>.content>.body {
		padding:0 0 40px;
	}
}
.wizard>.content>.body legend {
	display: block;
	width: 100%;
	padding: 40px 0 10px;
	line-height: 40px;
	color: #333;
	border: 0;
	font-weight: 700;
	text-align: start;
}
.wizard>.content>.body ul {
 list-style:disc!important
}
.wizard>.content>.body ul>li {
 display:list-item
}
.wizard>.content>.body>iframe {
 border:0 none;
 width:100%;
 height:100%
}
.wizard>.content>.body input[type="checkbox"], .wizard>.content>.body input[type="radio"] {
 display:inline-block
}
.wizard>.content>.body input.error, .wizard>.content>.body textarea.error {
 border:1px solid #fbc2c4;
 color:#F01112
}
.wizard>.content>.body p small {
	line-height: 1.8;
	display: block;
}
.wizard>.content>.body label {
 display:block;
 margin-bottom: 10px;
 font-weight: 700;
}
.wizard>.content>.body label.error {
 color:#F01112;
 margin-top: 10px;
}
.wizard>.content>.body label.error::before {
 color:#F01112;
}
.wizard>.content>.body label.styled-checkbox {
 display:inline-block;
 margin-bottom: 25px;
 cursor: pointer;
}
.wizard>.content>.body label.styled-checkbox span {
	padding: 5px 10px;
	border: 1px solid #D2D2D2;
	border-radius: 3px;
}
.wizard>.content>.body label.styled-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.wizard>.content>.body label.styled-checkbox input:checked ~ span {
	background-color: #8A5EA4;
	color:#fff;
	border-color: #8A5EA4;
}
.wizard>.content>.body .boxes {
	margin-bottom: 40px;
	margin-top: 18px;
	display: flex;
	justify-content: space-between;
}
@media(max-width:90em) {
	.wizard>.content>.body .boxes {
		display: block;
	}
	.wizard > .content > .body .boxes label.styled-checkbox {
		margin-right: 7px;
	}
}
.wizard>.content>.body .boxes.work {
	display: block;
}
.wizard>.content>.body .boxes.work label.styled-checkbox {
	margin-right: 7px;
}
.wizard>.content>.body .jobtype .boxes {
	margin-bottom: 0;
}
@media(min-width:90em) {
	.wizard>.content>.body .jobtype > label {
		margin-left: 33px;
	}
	.wizard>.content>.body .jobtype .boxes {
		display: block;
		text-align: center;
	}
}
.wizard>.content>.body .jobtype .boxes label.styled-checkbox {
	margin-bottom: 24px;
	margin-right: 7px;
}
.wizard>.content>.body .typeswork {
	margin:0 -20px;
}
@media(max-width:90em) {
	.wizard>.content>.body .typeswork {
		margin:0;
	}
}
.wizard>.content>.body .health textarea {
	height: 150px;
}
.wizard>.content>.body .health .provide {
	display: none;
}
@media(max-width:90em) {
	.wizard .yourdetails {
		grid-row-gap: 0;
	}
}
.wizard>.actions {
 position:relative;
 display:block;
 width:100%
}
.wizard.vertical>.actions {
 display:inline;
 float:right;
 margin:0 2.5%;
 width:95%
}
.wizard>.actions>ul {
 display:inline-block;
}
.wizard>.actions>ul>li {
 margin:0 1em 0 0;
 display: inline-block;
}
.wizard.vertical>.actions>ul>li {
 margin:0 0 0 1em
}
.wizard>.actions a,
.wizard>.actions a:active {
 border: 1px solid #8A5EA4;
 color:#8A5EA4;
 display:block;
 padding:8px 20px;
 border-radius:4px;
 text-transform: uppercase;
 font-size: 1rem;
}
@media(max-width:45em) {
	.wizard>.actions ul {
		display:grid;
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 16px;
	}
	.wizard > .actions li {
		width: 100%;
		margin: 0 !important;
	}
	.wizard > .actions a {
		width: 100%;
		text-align: center;
	}
}
.wizard>.actions a:hover{
 color:#fff;
 background: #8A5EA4;
}
.wizard>.actions .disabled a,
.wizard>.actions .disabled a:hover,
.wizard>.actions .disabled a:active {
 background:#fff;
 color:#aaa;
 border: 1px solid #aaa;
 cursor: default;
}
.wizard>.actions a[href='#finish'] {
	background: #8A5EA4;
	color: #fff;
}
.wizard>.loading {
}
.wizard>.loading .spinner {
}
.tabcontrol>.steps {
 position:relative;
 display:block;
 width:100%
}
.tabcontrol>.steps>ul {
 position:relative;
 margin:6px 0 0 0;
 top:1px;
 z-index:1
}
.tabcontrol>.steps>ul>li {
 float:left;
 margin:5px 2px 0 0;
 padding:1px;
 -webkit-border-top-left-radius:5px;
 -webkit-border-top-right-radius:5px;
 -moz-border-radius-topleft:5px;
 -moz-border-radius-topright:5px;
 border-top-left-radius:5px;
 border-top-right-radius:5px
}
.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;
 padding:0 0 1px 0;
 margin-top:0
}
.tabcontrol>.steps>ul>li>a {
 color:#5f5f5f;
 display:inline-block;
 border:0 none;
 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 {
 position:relative;
 display:inline-block;
 width:100%;
 height:35em;
 overflow:hidden;
 border-top:1px solid #bbb;
 padding-top:20px
}
.tabcontrol>.content>.body {
 float:left;
 position:absolute;
 width:95%;
 height:95%;
 padding:2.5%
}
.tabcontrol>.content>.body ul {
 list-style:disc!important
}
.tabcontrol>.content>.body ul>li {
 display:list-item
}
@media(max-width:600px) {
 .wizard>.steps>ul>li {
  width:50%
 }
 .wizard.vertical>.steps,
 .wizard.vertical>.actions {
  display:block;
  float:none;
  width:100%
 }
 .wizard.vertical>.content {
  display:block;
  float:none;
  margin:0 .5em .5em;
  width:auto
 }
}
@media(max-width:480px) {
 .wizard>.steps>ul>li {
  width:100%
 }
}