/**
 * Define some neutral defaults. These can be overridden in a theme
 * specific submission_theme css file. 
 */
:root {
	--wiz-title-font: Nexa, sans-serif;
	--wiz-text-font: Roboto, sans-serif;
	--wiz-title-color: #1c524a;
	--wiz-text-color: #1c524a;
	--wiz-question-color: #80b281;
	--wiz-lightgray: #faf7f3;
	--wiz-border-color: #e1ded9;
}

.struct, .struct li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#wizard_blackout {
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: auto;
	text-align: center;
	z-index: 10;
}

#wizard_content {
	background: var(--wiz-lightgray);
	width: 100%;
	max-width: 920px;
	height: 600px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -300px 0 0 -460px;
}
@media (max-width: 920px) {
	#wizard_content {
		margin-left: 0;
		left: 0;
	}
}
@media (max-height: 600px) {
	#wizard_content {
		margin-top: 0;
		top: 0;
		
	}
}
@media (max-width: 600px) {
	#wizard_content {
		margin-top: 0;
		top: 0;
		margin-left: 0;
		left: 0;
		height: auto;
		
	}
}


#wizard_content header {
	background: #FFF;
	border-bottom: 1px solid var(--wiz-border-color);
	font-size: 16px;
	padding: 30px 20px;
}
#wizard_content header h1,
#wizard_content header p {
	margin: 0 auto;
	max-width: 600px;	
}
#wizard_content h1 {
	font: var(--wiz-title-font);
	color: var(--wiz-title-color);
	font-size: 32px;
	line-height: 40px;
	font-weight: bold;
	margin: 0;
	padding: 0;
}
#wizard_content .main {
	padding: 30px;
	margin-bottom: 50px;	
}
#wizard_content h2 {
	font: var(--wiz-title-font);
	color: var(--wiz-question-color);
	font-size: 20px;
	margin: 0;
	padding: 0 0 40px 0;
}
#wizard_content .bar {
	height: 4px;
	background: var(--wiz-border-color);
	margin: 0 auto;
	width: 280px;
	border-radius: 2px;
	position: relative;
	top: -20px;
}
#wizard_content .bar span {
	min-width: 8px;
	display: block;
	background: var(--wiz-title-color);
	border-radius: 2px;
	height: 4px;
}
#wizard_content ul {
	display: flex;
	margin: 0 10px;
	justify-content: center;
}
#wizard_content li a {
	display: block;
	text-decoration: none;
	color: #1C524A;
}
#wizard_content li a:hover {
	color: #E85B51;
}
#wizard_content li {
	margin: 0 10px;
	width: 200px;
}
#wizard_content li .img {
	overflow: hidden;
	background: var(--wiz-border-color);;
	position: relative;
}
#wizard_content li span.ph {
	display: block;
	float: left;
	padding-top: 100%;
	
}
#wizard_content li img {
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	left: 0;
}
#wizard_content .oplink strong {
	font-weight: normal;
	display: block;
	padding: 5px 0;	
}

@media (max-width: 600px) {
	#wizard_content h1 { 
		font-size: 26px;	
	}
	#wizard_content .main {
		padding: 30px 10px;
	}
	#wizard_content ul {
		flex-wrap: wrap;
	}
	#wizard_content li {
		width: 140px;
		margin: 10px;
	}
}

#wizard_content footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50px;
	line-height: 50px;
	font-size: 85%;
	padding: 0;
	background: var(--wiz-title-color);
	color: #FFF;
}
#wizard_content footer a {
	color: #FFF;
}
#wizard_content footer a:hover {
	text-decoration: underline;	
}


#wizard_succes {
	padding: 80px 0 0 0;
}	

.wizard_succes_inner {
	margin: 0 auto;
	max-width: 1160px;
}

#wizard_succes .items .struct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#wizard_succes .items li {
	width: 360px;
	margin-bottom: 40px;
}

#wizard_succes .items article {
	border: 1px solid var(--wiz-border-color);
	border-radius: 2px;
	overflow: hidden;
	background: #FFF;
}
#wizard_succes .items article p {
	font-size: 17px;
	line-height: 24px;
	min-height: 24px;	
}
#wizard_succes .items article p .icon {
	margin-left: 10px;	
}
#wizard_succes .items article p .icon:first-child {
	margin-left: 0;
}
.oplink .img,
.wz_banner {
	position: relative;	
}
.oplink .img:before, .oplink .img:after,
.wz_banner:before, .wz_banner:after {
	content: "";
	display: block;
	position: absolute;
	top: 10px;
	left: 10px;
	bottom: 10px;
	right: 10px;
	opacity: 0;
	transition: opacity .35s,-webkit-transform .35s;
	transition: opacity .35s,transform .35s;
	transition: opacity .35s,transform .35s,-webkit-transform .35s;
	border: 1px solid #fff;
	z-index: 10;
}
.oplink .img:before,
.wz_banner:before {
	border-width: 0 1px 0 1px;
	transform: scaleY(0)
}
.oplink .img:after,
.wz_banner:after {
	border-width: 1px 0 1px 0;
	transform: scaleX(0)
}
.oplink:hover .img:before,
a:hover .wz_banner:before {
	opacity: 1;
	transform: scaleY(1)
}
.oplink:hover .img:after,
a:hover .wz_banner:after {
	opacity: 1;	
	transform: scaleX(1)
}
#wizard_succes .items img {
	width: 100%;
	height: auto;	
}
#wizard_succes .wz_body {
	padding: 20px;	
}
#wizard_succes .wz_body svg {
	
	fill: #1C524A
}
#wizard_succes .wz_body img:first-child {
	margin-left: 0;	
}
#wizard_succes .wz_body h3 {
	padding: 0 0 10px 0;
	font-family: var(--wiz-text-font);
	color: var(--wiz-text-color);
	font-weight: 500;
	font-size: 17px;	
}
#wizard_succes a:hover .wz_body h3 {
	color: var(--wiz-question-color);
}
#wizard_succes .wz_body p {
	border-top: 1px solid var(--wiz-border-color);
	padding: 10px 0 0 0 ;
	font-weight: normal;
}
#wizard_succes .morebutton {
	text-align: center;
	padding: 20px 0;
	position: relative;
	top: -20px;
}

#wizard_succes footer {
	text-align: center;
	padding-bottom: 50px;
}
@media (max-width: 1200px) {
	.wizard_succes_inner {
		width: 760px;	
	}
}
@media (max-width: 800px) {
	.wizard_succes_inner {
		width: 540px;	
	}
	
	#wizard_succes .items li {
		width: 260px;
		margin-bottom: 20px;
	}
}
@media (max-width: 600px) {
	.wizard_succes_inner {
		width: auto;
		max-width: 400px;
	}
	#wizard_succes .items {
		width: auto;
		max-width: 360px;
		margin: 0 auto;	
	}
	#wizard_succes .items li {
		width: auto;	
	}
	#wizard_succes header {
		padding: 40px 0;	
	}
}