/* Copied from Launch page */
*, ::before, ::after {
	box-sizing: inherit;
}
::selection {
	background: #00c389;
	color: #fff;
}
body {
	font-family: muli,sans-serif;
	color: #333;
	font-size: 15px;
	line-height: 1.4em;
	margin: 0;
}
#site-wrap {
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
}
#site-wrap #site-content {
	flex-grow: 1;
}
.page-title {
	background: url("/wizard_start/images/header-bg.jpg") no-repeat right top;
	background-size: cover;
}
@media(min-width:600px) {
 .container {
  max-width:540px
 }
}
@media(min-width:768px) {
 .container {
  max-width:720px
 }
}
@media(min-width:1024px) {
 .container {
  max-width:960px
 }
}
@media(min-width:1280px) {
 .container {
  max-width:1140px
 }
}
.container {
	margin: 0 auto;
	max-width: 1420px;
	padding: 0 15px;
}
h1, .h1 {
	font-size: 30px;
	line-height: 1.1em;
	margin: 0 0 1em;
	color: #333;
	font-family: neuton,serif;
	font-weight: 400;
}
h1, .h1 {
	font-size: 100px;
}
/* End of copied rules */
#banner{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	height: 210px;
	align-items: flex-end;
}
#site-logo{
	display:inline-block;
	width: auto;
	height: 80%;
}
#banner h1{
	margin: 0;
	text-align: right;
}
@media(max-width:915px)
{
	#banner h1{
		font-size: 60px;
	}
}
.header{
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
	background: #004285;
	color: #fff;
	font-size: 18pt;
	padding: 0 20px;
	margin-top: 30px;
	height: auto;
}
#progress{
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	padding-top: 5px;
}
#progress-items{
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: flex-start;
}
.progress-part{
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
}
.progress-item{
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #fff;
	border-radius: 50%;
	color: #fff;
	margin-left: 5px;
	margin-right: 5px;
	width: 36px;
	height: 36px;
	text-align: center;
}
#progress .done{
	border-color: transparent;
	background-color: #fff;
	color: #004285;
}
#text-size{
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
}
.text-size{
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: #fff;
	border-radius: 50%;
	border: 2px solid transparent;
	text-align: center;
	color: #004285;
	height: 44px;
	width: 44px;
	margin-left: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
}
.text-size:hover
{
	border-color: #fff;
	background-color: #004285;
	color: #fff;
}
.text-size:active
{
	border-color: #fff;
	background-color: #004285;
	color: #fff;
}
#page-change{
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
}
.page-change{
	cursor: pointer;
	background: #002d72;
	border-radius: 5px;
	color: #fff;
	border: 2px solid transparent;
	margin: 10px 20px;
	padding: 10px;
	display: inline-block;
	text-decoration: none;
}
.page-change:hover{
	border-color: #002d72;
	background-color: #fff;
	color: #002d72;
}
.page-change.disabled
{
	color: #cccccc;
	background-color: #33568a;
	border-color: transparent;
	cursor: default;
}
#page-content{
	padding: 20px;
	line-height: 1em;
}
#page-content input[type="radio"]{
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin: 10px;
	border: 5px solid #002d72;
	color: #fff;
}
#page-content input[type="radio"]:checked{
	color: #002d72;
}
#page-content h2,h3{
	text-align: center;
}
#page-content img{
	max-width: 100%;
}
#page-content .center-two-column{
	display: grid;
	grid-template-columns: 50% 50%;
	grid-column-gap: 10px;
}
#page-content .right-two-column{
	display: grid;
	grid-template-columns: 67% 33%;
	grid-column-gap: 10px;
}
#page-content .left-two-column{
	display: grid;
	grid-template-columns: 33% 67%;
	grid-column-gap: 10px;
}
#page-content .center{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-around;
	align-items: center;
}
#invalid-message{
	text-align:center;
	background-color: #FFFFB1;
	font-size: 20px;
	padding: 5px;
}

.min-width-500px {
	min-width: 500px;
}

.width-85 {
	width: 85%;
}

.options-grid {
	grid-template-columns:50px auto;
	grid-row-gap: 10px;
}

.align-items-center {
	align-items: center;
}

.height-400px {
	height: 400px;
}

.font-size-18-pt {
	font-size:18pt;
}