.pop-blue-background-lightest {
    background-color: #f3faff;
}

.pop-blue-background-lighter {
    background-color: #d4efff;
}

.pop-blue-background {
    background-color: #a9e0ff;
}

.teal-background {
    background-color: #3aa6bd;
}

.deep-blue {
    background-color: #387cc3;
}

.vibrant-green {
	background-color: #78d9af;
}

.semi-transparent {
    color: #7c7c7c;
    background-color: rgba(0,0,0,.25);
}

body {
	font-family: 'quicksand',Arial,sans-serif!important;
	color: #3b4351;
}

p {
	font-weight: 500;
	font-size: 1rem;
	width: 100%;
}

header {
	height: 80px;
	width: 100%;
	padding: 0 .4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: rgba(243, 250, 255, .5);
}

.logo-container {
	display: block;
}

.logo-container img {
	height: 68px;
	padding: 7px;
	margin-left: 20px;
}

.link-container {
	margin-right: 20px;
}

.link-container a {
	font-size: 22px;
	font-weight: 500;
	color: #3b4351;
	padding: 4px 0;
	margin-left: 1rem;
}

.link-container a:hover {
	color: #387cc3;
}

.link-container a.active {
	color: #387cc3;
	border-bottom: 2px solid #387cc3;
}


.top-content {
	padding-top: 80px;
	background-color: #f3faff;
	position: relative;
    z-index: 991;
}

.top-content a{
	font-weight: 500;
}

.apply-button {
	color: #fff;
	background-color: #387cc3;
	border-radius: 25px;
	font-weight: 500;
	font-size: 1rem;
	text-align: center;
	padding: .25rem 2rem;
	box-shadow: 0 0 4px rgba(0, 0, 0, .4);
	text-shadow: 1px 1px 8px rgba(0, 0, 0, .25);
	display: block;
	float: left;
	margin: 1rem 0;
	transition: background-color .3s, box-shadow .3s;
}

.apply-button:hover {
	color: #fff;
	background-color: #1b5592;
	box-shadow: 0 0 2px rgba(0, 0, 0, .4);
}

.section-headline {
	min-width: 50%;
	font-size: 1.75rem;
	font-weight: 500;
	padding-bottom: .5rem;
	border-bottom: 2px solid #387cc3;
	margin-bottom: 1.2rem;
}

.section-subheadline {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.2rem;
}

.spacer {
	width: 100%;
	display: block;
	border-bottom: 1px solid #e1e1e1;
	padding-top: 1em;
	margin-bottom: 1.5em;
}

.info-container {
	display: block;
	width: 100%;
}

.info-container p{
	margin-bottom: .4rem;
}

footer {
	background-color: #387cc3;
	height: 50px;
	float: left;
	width: 100%;
}

footer * {
	color: white;
	font-weight: 500;
}

.inner-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 25px;
	height: 50px;
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
}

.outer-container {
	width: 100%;
	position: relative;
}

.progress-container {
	width: 330px;
	height: calc(100vh - 80px);
	background: #EEF2F5;
	position: relative;
	float: left;
	z-index: 990;
	box-shadow: 0 0 6px rgba(0, 0, 0, .25);
	transition: all .3s;
}

.progress-container.scrolled-bottom {
	height: calc(100vh - 130px);
}

.progress-container.active {
	position: fixed;
	float: none;
	left: 0;
	top: 80px;
}

.form-container {
	width: calc(100% - 330px);
	height: auto;
	float: right;
	padding: 25px;
	transition: width .3s;
}

.form-container.expanded {
	width: calc(100% - 36px);
}

.progress-header {
	background-color: #387cc3;
	color: white;
	padding: .5rem;
	text-shadow: 1px 1px 8px rgba(0, 0, 0, .25);
	display: flex;
	align-items: center;
}

.menu-trigger {
	cursor: pointer;
}

.progress-header span {
	font-weight: 500;
	margin: 0 .75rem;
	line-height: 1rem;
}

.progress-header progress {
	box-shadow: 0px 0px 6px rgba(0, 0, 0, .125);
}

.question-list {
	margin-top: 0;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
	transition: all .3s;
}

.scrolled-bottom .question-list {
	max-height: calc(100vh - 170px);
}

.question-list li {
	list-style-type: none;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #C0C5C9;
	padding: .5rem .25rem;
	font-size: .7rem;
	margin: 0;
	color: #C0C5C9;
}

.question-list li:last-of-type {
	border-bottom: none;
}

.question-list li.finished {
	color: #3b4351;
	font-weight: 500;
}

.question-list li span {
	flex: 1;
}

.question-progress {
	height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #C0C5C9;
    color: #C0C5C9;
    font-size: .5rem;
    margin-right: .5rem; 
}

.finished .question-progress {
	background-color: #78d9af;
    color: #fff;
}

.form-row {
	width: 100%;
	position: relative;
	background-color: #387cc3;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 0 6px rgba(0, 0, 0, .25);
	margin-bottom: 2rem;
}

.form-row label{
	display: block;
	font-size: 1.5rem;
	font-weight: 500;
	color: white;
	border-bottom: 2px solid #78d9af;
	padding-bottom: .2rem;
	margin-bottom: 1.5rem;
}

.form-row label.req:after {
	content: "*";
	color: #78d9af;
	margin-left: .25rem;
	font-size: 2rem;
	line-height: 0;
}

.form-row input[type=text],
.form-row input[type=date],
.form-row input[type=file],
.form-row textarea{
	border-radius: 10px;
	border: none;
	background-color: #6696C8;
	color: #fff;
	display: block;
	width: 100%;
	min-height: 50px;
	padding: .5rem 1rem;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: .6rem;
}

.form-row input::placeholder, .form-row textarea::placeholder { color: #A7C5E5 !important; opacity: 1; font-weight: 500;}     
.form-row input:-ms-input-placeholder, .form-row textarea::placeholder { color: #A7C5E5 !important; font-weight: 500; }
.form-row input::-ms-input-placeholder, .form-row textarea::placeholder { color: #A7C5E5 !important; font-weight: 500; }

.completion-status {
	height: 44px;
	width: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	color: #387cc3;
	box-shadow: 0 0 6px rgba(0, 0, 0, .25);
	position: absolute;
	bottom: -22px;
    left: 50%;
    transform: translate(-50%,0);
    font-size: 1.25rem;
}

.completion-status.active {
	color: #fff;
	background-color: #78d9af;
}

.form-container button {
	background-color: #78d9af;
	border: none;
	border-radius: 25px;
	padding: .5rem 2rem;
	color: white;
	font-weight: 500;
	box-shadow: 0 0 6px rgba(0, 0, 0, .25);
	text-shadow: 1px 1px 8px rgba(0, 0, 0, .25);
	cursor: pointer;
	font-size: 1rem;
	margin: 1.75rem auto 1rem;
}

.form-container button:disabled {
	background-color: #C0C5C9;
	color: white;
	box-shadow: none;
	text-shadow: none;
	cursor: initial;
	opacity: .6;
}

.progress-container.collapsed {
	width: 36px;
}

.collapsed span,
.collapsed progress{
	display: none;
}

.collapsed .question-list {
	margin: 0;
	overflow-y: hidden;
}

.collapsed .question-progress {
	margin: auto;
}

@media (max-width: 840px) {
	p {
		font-size: .9rem;
		margin: 0 0 .9rem;
	}

	header {
		height: 74px;
	}

	.logo-container img {
		height: 60px;
	}

	.link-container a {
		font-size: 18px;
	}

	.top-content {
		padding-top: 74px;
	}

	h1 {
		font-size: 2.2rem;
		margin-bottom: .2em;
	}

	h2 {
		font-size: 1.6em;
	}

	h3 {
		font-size: 1.1rem;
	}

	.apply-button,
	.form-container button {
		font-size: .8rem;
		padding: .4rem 1.5rem;
	}

	.section-headline {
		font-size: 1.6rem;
		margin-bottom: 1rem;
	}

	.section-subheadline {
		font-size: 1.15rem;
		margin-bottom: 1rem;
	}

	footer {
		height: 40px;
	}

	footer *{
		font-size: .55rem;
	}

	.inner-footer {
		padding: 0 20px;
		height: 40px;
	}
	.progress-container {
		display: none;
	}
	.form-container,
	.form-container.expanded {
		width: 100%;
	}
	.form-row label {
	    font-size: 1rem;
	    margin-bottom: 1rem;
	}
	.form-row label.req:after {
	    margin-left: .125rem;
	    font-size: 1.5rem;
	}
	.form-row input[type=text],
	.form-row input[type=date],
	.form-row input[type=file],
	.form-row textarea {
	    min-height: 40px;
	    padding: .4rem .8rem;
	    font-size: .8rem;
	    margin-bottom: .6rem;
	}
	.form-checkbox, .form-radio, .form-switch {
	    font-size: .9rem !important;
	    margin: .3rem 0 !important;
	}
}

@media (max-width: 600px) { 
	.link-container  {
		display: none;
	}
	.link-container.back-home-link {
		display: block;
	}
}