@media only screen and (max-width: 768px) {
	.btn-primary {
		font-size:1.1em
	}

	.btn-primary.survey-submit {
		width: 100%
	}
}

.svg-size-h1 {
	height: 3em;
	width: 3em;
	vertical-align: text-top
}

.svg-size-h2 {
	height: 2.5em;
	width: 2.5em;
	vertical-align: text-top
}

.svg-size-h3 {
	height: 2em;
	width: 2em;
	vertical-align: text-top
}

.svg-size-h4 {
	height: 1.5em;
	width: 1.5em;
	vertical-align: text-top
}

.svg-size-h5 {
	height: 1em;
	width: 1em;
	vertical-align: text-top
}

.svg-size-h6 {
	height: 0.75em;
	width: 0.75em;
	vertical-align: text-top
}

svg.up {
	transform: rotate(-90deg)
}

svg.down {
	transform: rotate(90deg)
}

svg.left {
	transform: rotate(180deg)
}

svg.plus {
	transform: rotate(45deg)
}

@keyframes radio_select_small {
	0% {
		width: 1em;
		height: 1em;
		opacity: .75
	}

	100% {
		width: 2em;
		height: 2em;
		opacity: 0;
		top: calc(-.5em - 2px);
		left: calc(-.5em - 2px)
	}
}

@keyframes radio_select_medium {
	0% {
		width: 1.25em;
		height: 1.25em;
		opacity: .75
	}

	100% {
		width: 2.5em;
		height: 2.5em;
		opacity: 0;
		top: calc(-.625em - 2px);
		left: calc(-.625em - 2px)
	}
}

@keyframes radio_select_large {
	0% {
		width: 1.45em;
		height: 1.45em;
		opacity: .75
	}

	100% {
		width: 2.9em;
		height: 2.9em;
		opacity: 0;
		top: calc(-.725em - 2px);
		left: calc(-.725em - 2px)
	}
}

.page-animated {
	animation-duration: 1s;
	animation-fill-mode: both
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

.fadeIn {
	animation-name: fadeIn;
	animation-duration: 0.6s
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

.fadeOut {
	animation-name: fadeOut;
	animation-duration: 0.6s
}

@keyframes rotate {
	to {
		transform: rotate(360deg)
	}
}

.loading-page {
	top: 50vh;
	position: relative;
	transform: translateY(-50%)
}

.loading {
	width: 200px;
	height: 200px;
	margin: 0 auto
}

.loading__ring {
	position: absolute;
	width: 200px;
	height: 200px
}

.loading__ring:first-child {
	transform: skew(30deg, 20deg)
}

.loading__ring:last-child {
	transform: skew(-30deg, -20deg) scale(-1, 1)
}

.loading__ring:last-child svg {
	animation-delay: -0.5s
}

.loading__ring svg {
	animation: rotate 1s linear infinite;
	fill: rgba(0, 0, 0, 0.2)
}

.i18n-dropdown {
	margin: 8px 0px
}

form.take-survey .survey-nav {
	text-align: center;
	clear: both
}

form.take-survey .survey-nav h4 {
	margin: 0;
	color: #697076
}

form.take-survey .survey-nav svg {
	vertical-align: middle;
	fill: #697076
}

form.take-survey .error-message {
	clear: both
}

form.take-survey .form-section {
	display: none
}

form.take-survey .form-section:first-of-type {
	display: block
}

form.take-survey .form-section p {
	color: #697076
}

form.take-survey .form-section .form-group {
	padding: 1em 2em 2em;
	border-bottom: 2px solid #B6B8C1
}

form.take-survey .form-section .form-group:last-of-type {
	border-bottom: 0
}

form.take-survey input[type="checkbox"] {
	position: relative;
	margin-left: 0
}

form.take-survey input[type="submit"] {
	display: block;
	margin: 0 auto 1em
}

form.take-survey input[type="radio"] {
	transition: all 0.4s ease;
	background-color: transparent;
	border: 2px solid #f39c12;
	border-radius: 50%;
	box-shadow: inset 0 0 0 0 white;
	cursor: pointer;
	font: inherit;
	height: 1.25em;
	width: 1.25em;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	vertical-align: middle;
	margin: .5em .5em .5em 0;
	position: relative
}

form.take-survey input[type="radio"].likert {
	margin: .5em .25em
}

form.take-survey input[type="radio"]:checked {
	background-color: #f39c12;
	box-shadow: inset 0 0 0 .2em white;
	transition: background .15s, box-shadow .1s
}

form.take-survey input[type="radio"]:checked:before {
	content: '\00a0';
	display: inline-block;
	border: 2px solid #f39c12;
	opacity: 0;
	width: 1.25em;
	height: 1.25em;
	border-radius: 50%;
	position: relative;
	top: -2px;
	left: -2px;
	animation-name: radio_select_medium;
	-webkit-animation-duration: .75s;
	-webkit-animation-iteration-count: 1;
	animation-duration: .75s;
	animation-iteration-count: 1
}

form.take-survey .question-inputs {
	display: inline-block;
	width: 50%;
	float: left
}

form.take-survey label {
	width: 100%;
	color: #243B4F;
	font-size: 1.25em;
	font-weight: 300
}

form.take-survey label span {
	font-weight: 500
}

form.take-survey .likert_scale.question-options {
	text-align: center;
	float: left;
	width: 100%
}

form.take-survey .likert_scale.question-options .likert_label {
	display: inline-block;
	color: #243B4F;
	line-height: 3.93333em;
	margin: 0;
	width: 25%;
	float: left
}

form.take-survey .likert_scale.question-options .likert-holder {
	display: inline-block
}

form.take-survey .likert_scale.question-options label {
	width: auto
}

form.take-survey .likert_scale.question-options label .likert-1,form.take-survey .likert_scale.question-options label .likert-5 {
	width: 1.4em;
	height: 1.4em
}

form.take-survey .likert_scale.question-options label .likert-1:before,form.take-survey .likert_scale.question-options label .likert-5:before {
	width: 1.4em;
	height: 1.4em;
	animation-name: radio_select_large
}

form.take-survey .likert_scale.question-options label .likert-2,form.take-survey .likert_scale.question-options label .likert-4 {
	width: 1.25em;
	height: 1.25em
}

form.take-survey .likert_scale.question-options label .likert-2:before,form.take-survey .likert_scale.question-options label .likert-4:before {
	width: 1.25em;
	height: 1.25em
}

form.take-survey .likert_scale.question-options label .likert-3 {
	width: 1em;
	height: 1em
}

form.take-survey .likert_scale.question-options label .likert-3:before {
	width: 1em;
	height: 1em;
	animation-name: radio_select_small
}

form.take-survey .likert_scale.question-options label .likert-4,form.take-survey .likert_scale.question-options label .likert-5 {
	border-color: #18bc9c
}

form.take-survey .likert_scale.question-options label .likert-3 {
	border-right-color: #18bc9c;
	border-bottom-color: #18bc9c
}

form.take-survey .likert_scale.question-options label .likert-1,form.take-survey .likert_scale.question-options label .likert-2 {
	border-color: #f39c12
}

header {
	text-align: center
}

header nav.navbar {
	margin-bottom: 0
}

header .site-title {
	display: inline-block;
	text-align: center;
	margin: 0;
	font-weight: 300;
	color: #577792
}

header .site-title img {
	width: 3.75em
}

.header-holder {
	display: inline-block;
	width: 100%;
	float: left;
	height: 4.2em;
	position: relative
}

.header-holder header {
	background: #FFFFFF;
	display: inline-block;
	width: 100%;
	padding: 1em;
	position: fixed;
	float: left;
	box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.08);
	z-index: 1
}

.header-holder header a.toggle-sidebar,.header-holder header svg {
	height: 2em;
	width: 2em;
	cursor: pointer
}

.header-holder header a.pull-left {
	position: absolute;
	left: 1em
}

.header-holder header svg {
	fill: #577792
}

.card {
	background: #FFFFFF;
	display: inline-block;
	width: 100%
}

.card-content {
	display: inline-block;
	padding: 3em 7em
}

.progressbar {
	height: 1.2em;
	background: #B6B8C1;
	width: 100%;
	z-index: 1;
	padding: 0;
	width: 67.1%;
	position: fixed
}

.progressbar p {
	display: inline-block;
	margin: 0;
	color: #FFF;
	vertical-align: top;
	position: relative;
	z-index: 1;
	line-height: 1.2em;
	font-weight: 300
}

.progressbar-length {
	background: #18bc9c;
	width: 0;
	height: 1.2em;
	position: absolute;
	top: 0
}

.progressbar-half {
	background-color: #95BA00;
	background-image: linear-gradient(to right,#95BA00 50%, #B6B8C1 50%)
}

.assessment-content .progressbar {
	height: .75em
}

.assessment-content .progressbar-length {
	background: #18bc9c;
	width: 0;
	height: .75em;
	position: absolute;
	top: 0
}

.metric {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	display: inline-block;
	width: 48%;
	float: left;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
	background: transparent;
	text-align: center
}

.metric:first-of-type {
	margin-right: 4%
}

.metric.low-3 .metric-top {
	background: #f39c12
}

.metric.low-3 .metric-top h4 {
	color: #ffffff;
	margin: 0;
	margin-bottom: 0;
	font-weight: 400
}

.metric-top {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	padding: .5em;
	background: #2586A1;
	color: #2c3e50;
	float: left;
	width: 100%
}

.metric-top h4 {
	color: #ffffff;
	margin: 0;
	margin-bottom: 0;
	font-weight: 400
}

.metric-content {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	display: inline-block;
	background-color: #FFFFFF;
	width: 100%;
	float: left;
	width: 100%;
	overflow: hidden
}

.metric-content h5 {
	color: #f39c12
}

.metric-content h2 {
	margin: .5em 0;
	color: #243B4F
}

.metric-content margin-vert-1 {
	margin-bottom: 1em
}

.metric .lowest-three {
	width: 100%
}

.metric .lowest-three tr:last-of-type td {
	border-bottom: none
}

.metric .lowest-three tr th {
	text-align: center
}

.metric .lowest-three tr td:first-of-type,.metric .lowest-three tr th:first-of-type {
	border-left: none
}

.metric .lowest-three tr td:last-of-type,.metric .lowest-three tr th:last-of-type {
	border-right: none
}

@media only screen and (max-width: 1245px) {
	.metrics {
		padding:1em
	}
}

@media only screen and (max-width: 1120px) {
	.metric {
		width:70%;
		margin: 1em 15%
	}

	.metric:first-of-type {
		margin-right: 0
	}
}

.assessment-nav {
	position: fixed;
	height: 100%;
	overflow: auto
}

.assessment-nav .nav-holder {
	overflow: hidden;
	padding-bottom: 6em
}

.assessment-nav .nav-holder h2 {
	font-size: 2em
}

.assessment-content {
	margin-left: 33.33333%;
	min-height: 0
}

#assessment-results {
	padding: 5em 5em 5em;
	display: inline-block;
	width: 100%;
	min-height: calc(100vh - 7.667em)
}

#assessment-results h1 {
	font-size: 1.75em
}

#assessment-results h2 {
	font-size: 1.5em
}

#assessment-results h3 {
	font-size: 2em
}

#assessment-results h4 {
	font-size: 1.5em
}

#assessment-results h5 {
	font-size: 1em
}

#assessment-results h6 {
	font-size: 0.75em
}

#assessment-results img {
	float: left;
	width: 100%
}

#assessment-results .center-image {
	text-align: center
}

#assessment-results .center-image img {
	margin: 0 auto;
	float: none
}

#assessment-results .mli-image-introduction img {
	max-width: 500px
}

#assessment-results .mli-image-introduction-graph img {
	max-width: 700px
}

#assessment-results .mli-image-introduction-tree img,#assessment-results .mli-image-introduction-tree-bright img {
	max-width: 700px
}

#assessment-results h1 {
	color: #f39c12;
	text-transform: uppercase;
	border-left: 3px solid;
	line-height: 1.5em;
	padding-left: .5em;
	font-weight: 400
}

#assessment-results h2 {
	color: #243B4F
}

#assessment-results .metrics {
	margin-top: 1em
}

#assessment-results .metric-overviews {
	text-align: center;
	float: left;
	width: 100%
}

#assessment-results .metric-overviews .metric-overview {
	width: 40%;
	float: left;
	margin: 0 5% 2em;
	border-radius: 10px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px
}

#assessment-results .metric-overviews .metric-overview h4.metric-title {
	color: #FFFFFF;
	background: #577792;
	padding: 8px;
	margin-bottom: 0px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px
}

#assessment-results .metric-overviews .metric-overview div {
	border-left: 1px solid #B6B8C1;
	border-right: 1px solid #B6B8C1;
	border-bottom: 1px solid #B6B8C1
}

#assessment-results .metric-overviews .metric-overview div span {
	padding-bottom: 8px;
	padding-top: 4px;
	display: block
}

#assessment-results .metric-overviews .metric-overview div table {
	width: 100%
}

#assessment-results .metric-overviews .metric-overview div table td:first-of-type {
	border-left: none
}

#assessment-results .metric-overviews .metric-overview div table td:last-of-type {
	border-right: none
}

#assessment-results .metric-overviews .metric-overview div table tr:last-of-type td {
	border-bottom: none
}

#assessment-results .scripture-ref-title {
	margin-left: 2em;
	padding: 0 1em;
	display: inline-block;
	background: #FFFFFF;
	position: relative;
	top: 1.4em;
	color: #B6B8C1;
	text-transform: uppercase;
	font-weight: 300
}

#assessment-results .scripture-ref {
	border: 2px solid #B6B8C1;
	padding: 2em;
	color: #243B4F;
	text-align: center;
	font-family: Source Serif Pro, serif
}

#assessment-results .text-ref {
	border: 1px solid #B6B8C1;
	padding: 2em;
	color: #FFFFFF;
	background: #243B4F;
	text-align: center;
	font-family: Source Serif Pro, serif
}

#assessment-results .resources {
	list-style: none;
	padding: 0
}

#assessment-results .resources li {
	margin-bottom: 20px;
	border-bottom: 1px solid #B6B8C1;
	padding-bottom: 10px;
	float: left
}

#assessment-results .resources li:last-of-type {
	border-bottom: none
}

#assessment-results .resources li .left-side {
	width: 142px;
	float: left
}

#assessment-results .resources li .left-side a {
	float: left;
	cursor: pointer
}

#assessment-results .resources li .left-side a.btn {
	width: 100%;
	font-size: 1.1em;
	margin: 10px 0
}

#assessment-results .resources li .left-side img {
	float: left;
	width: 100%
}

#assessment-results .resources li .resource-content {
	float: left;
	width: calc(100% - 162px);
	margin-left: 20px
}

@media only screen and (max-width: 470px) {
	.assessment-content #assessment-results .resources li .left-side {
		width:100%;
		text-align: center;
		margin-bottom: 10px
	}

	.assessment-content #assessment-results .resources li .left-side a {
		float: none
	}

	.assessment-content #assessment-results .resources li .left-side a.btn {
		width: 200px;
		margin: 10px 0
	}

	.assessment-content #assessment-results .resources li .left-side img {
		float: none;
		width: 200px
	}

	.assessment-content #assessment-results .resources li .resource-content {
		width: 100%;
		margin: 0;
		padding: 0 20px
	}
}

@media only screen and (max-width: 768px) {
	.assessment-content {
		width:calc(100% - 40px);
		margin: 0 20px
	}

	.assessment-content .progressbar {
		width: calc(100% - 40px)
	}

	.assessment-content #assessment-results {
		padding: 3em 1em
	}

	.assessment-content #assessment-results .margin-hori-4 {
		margin: 0
	}

	.assessment-content #assessment-results .category-section h1 {
		font-size: 1.5em;
		margin: 1em 0
	}

	.assessment-content #assessment-results .category-section h2 {
		font-size: 1.4em;
		margin: 1em 0
	}

	.assessment-content #assessment-results #chart {
		display: none
	}

	.assessment-content #assessment-results .metrics {
		margin: 1em 0 3em;
		padding: 0 1em;
		float: left
	}

	.assessment-content #assessment-results .metrics .metric-content h2 {
		font-size: 2em;
		margin: .5em 0
	}
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
	.results-overall-page .assessment-nav {
		padding:3em 1.5em !important
	}

	.results-overall-page .assessment-nav .sidebar-title {
		font-size: 2em
	}

	.results-overall-page .assessment-nav .nav-metrics li {
		padding: 0 .5em
	}

	.results-overall-page .assessment-nav .nav-metrics li a {
		font-size: 1.1em
	}

	.assessment-content #assessment-results {
		padding: 3em 2em
	}

	.assessment-content #assessment-results .margin-hori-4 {
		margin: 0
	}

	.assessment-content #assessment-results .category-section h1 {
		margin: 1em 0
	}

	.assessment-content #assessment-results .category-section h2 {
		margin: 1em 0
	}

	.assessment-content #assessment-results .metrics {
		margin: 1em 0 3em;
		padding: 0 1em;
		float: left
	}
}

#chart .c3-bars-Behavior {
	fill: green;
	line-height: green
}

#chart .c3-chart-texts .c3-chart-text .c3-text {
	transform: translateY(20px);
	fill: #fff !important
}

@media screen and (max-width: 1211px) {
	#chart {
		display:none
	}
}

.modal h4 {
	text-align: center;
	color: #f39c12;
	font-weight: 300
}

#sidebar {
	transition: all 0.4s ease;
	background: #455A6C;
	height: 100vh;
	float: left;
	position: fixed;
	z-index: 2;
	width: 250px
}

#sidebar.collapsed {
	width: 85px
}

#sidebar.collapsed .crown-words,#sidebar.collapsed .welcome-message,#sidebar.collapsed .menu-text {
	display: none
}

#sidebar.collapsed .main-nav li {
	text-align: center
}

#sidebar.collapsed+#main-content,#sidebar.collapsed+#main-content header {
	padding-left: 85px
}

#sidebar.expanded {
	left: 0px
}

#sidebar.expanded .crown-only {
	display: none
}

#sidebar.expanded+#main-content,#sidebar.expanded.full-page+#main-content header.fixed-header {
	padding-left: 250px
}

#sidebar.expanded.full-page+#main-content header {
	padding-left: 0px
}

#sidebar.expanded .toggle-sidebar svg {
	transform: rotate(180deg)
}

#sidebar.closed {
	width: 250px;
	left: -250px
}

#sidebar.closed .crown-only {
	display: none
}

#sidebar .crown-only {
	margin: 12px 20%;
	width: 60%
}

#sidebar .crown-words {
	margin: 9.5px 85px;
	width: 80px
}

#sidebar .sidebar-top {
	background: #49657E;
	height: 4.2em;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.09)
}

#sidebar .sidebar-top .toggle-sidebar {
	position: absolute;
	margin-left: 1em;
	margin-top: 1em
}

#sidebar .sidebar-main {
	height: 100%;
	overflow: auto
}

#sidebar .sidebar-inner {
	padding-bottom: 100px;
	padding-bottom: 140px
}

#sidebar .profile-image {
	border-radius: 999999px;
	width: 40%;
	margin: 1.5em 30%
}

#sidebar .welcome-message {
	text-transform: uppercase;
	text-align: center;
	color: #D8D8D8;
	font-weight: 300
}

#sidebar .main-nav {
	margin: 0px 2em
}

#sidebar .main-nav ul {
	padding: 1em 0
}

#sidebar .main-nav ul li {
	list-style: none;
	padding-bottom: .5em;
	width: 100%;
	text-transform: uppercase
}

#sidebar .main-nav ul li a {
	font-size: 1.1em;
	color: #FFFFFF;
	letter-spacing: 0.5px;
	line-height: 2em;
	font-weight: 300
}

#sidebar .main-nav ul li a.sidebar-categories {
	font-size: 1em
}

#sidebar .main-nav ul li a svg {
	transition: all 0.4s ease;
	fill: #FFFFFF;
	height: 20px;
	width: 20px;
	vertical-align: text-bottom
}

#sidebar .main-nav ul li a span {
	transition: all 0.3s ease
}

#sidebar .main-nav ul li a:hover {
	text-decoration: none
}

#sidebar .main-nav ul li a:hover svg {
	fill: #f39c12
}

#sidebar .main-nav ul li a:hover span {
	border-width: 0 0 4px 0;
	-o-border-image: linear-gradient(to left, #455A6C 8%, #f39c12 8%, #f39c12 92%, #455A6C 92%) 100% 1;
	border-image: linear-gradient(to left, #455A6C 8%, #f39c12 8%, #f39c12 92%, #455A6C 92%) 100% 1;
	border-style: solid;
	padding-bottom: 4px
}

#sidebar .main-nav ul li.active a {
	font-weight: 500
}

#sidebar .main-nav ul li.active a svg {
	fill: #f39c12
}

#sidebar .main-nav ul li.active a span {
	border-width: 0 0 4px 0;
	-o-border-image: linear-gradient(to left, #455A6C 5%, #f39c12 5%, #f39c12 95%, #455A6C 95%) 100% 1;
	border-image: linear-gradient(to left, #455A6C 5%, #f39c12 5%, #f39c12 95%, #455A6C 95%) 100% 1;
	border-style: solid;
	padding-bottom: 4px
}

#sidebar .sidebar-bottom {
	background: #49657E;
	position: absolute;
	bottom: 50px;
	width: 100%;
	text-align: center;
	box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.09);
	bottom: 0
}

#sidebar .logout {
	cursor: pointer
}

#sidebar .toggle-sidebar {
	display: inline-block;
	height: 30px;
	width: 30px;
	margin-top: 2.5px;
	cursor: pointer
}

#sidebar .toggle-sidebar svg {
	transition: all 0.4s ease;
	fill: #D8D8D8;
	height: 30px;
	width: 30px
}

#sidebar .toggle-sidebar svg:hover {
	fill: #FFFFFF
}

footer {
	display: inline-block;
	width: 100%;
	background: #577792;
	z-index: 3;
	box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.09);
	left: 0;
	bottom: 0;
	padding: 1em;
	position: relative;
	z-index: 2
}

footer img {
	height: 20px;
	margin: 0 3em;
	float: left;
	width: auto
}

footer .copyright {
	font-size: .85em;
	height: 100%;
	vertical-align: middle;
	line-height: 1.8em;
	margin: 0px;
	color: #D8D8D8;
	display: block;
	font-family: Source Serif Pro, serif
}

footer .copyright span {
	margin-right: 1em
}

footer .copyright a {
	transition: all 0.4s ease;
	color: #D8D8D8
}

footer .copyright a:hover {
	color: #FFFFFF
}

footer .copyright a:first-of-type {
	margin: 0 1em
}

footer .copyright a:nth-of-type(2) {
	margin-left: 1em
}

@media only screen and (max-width: 559px) {
	#footer {
		text-align:center;
		padding: .5em .25em .25em
	}

	#footer footer img {
		margin: 0 auto 1em;
		float: none
	}

	#footer .copyright {
		width: 100%
	}

	#footer .copyright span {
		margin-right: .2em
	}

	#footer .copyright a:first-of-type {
		margin: 0 .2em
	}

	#footer .copyright a:nth-of-type(2) {
		margin-left: .2em
	}
}

@media only screen and (max-width: 768px) {
	#footer footer {
		padding:2% 0
	}

	#footer footer img {
		margin-bottom: 0.2em
	}
}

.score-chart {
	display: inline-block;
	width: 100%;
	margin-bottom: 2em
}

.score-chart .inc-10 {
	width: 10%;
	float: left;
	text-align: center
}

.score-chart .inc-10:first-of-type {
	width: 5%;
	text-align: left
}

.score-chart .inc-10:last-of-type {
	width: 5%;
	text-align: right
}

.score-chart .section-title {
	float: left;
	text-align: center;
	width: 33.3%
}

.score-chart .bar {
	display: inline-block;
	height: 1em;
	width: 100%;
	border-radius: 1em;
	background: linear-gradient(to right, #f00, #ffa500, #008000)
}

.score-chart .score-holder {
	width: 100%;
	padding-bottom: 1em
}

.score-chart .score-holder .score {
	display: inline-block;
	width: 7em;
	border-radius: 1em;
	verticaly-align: center;
	line-height: .75em;
	text-align: center;
	padding: .5em 0
}

.score-chart .score-holder .score p.score-text {
	margin: .5em 0
}

.score-chart .score-section {
	display: inline-block;
	float: left;
	width: 33.3%
}

.score-chart .score-section p {
	text-align: center
}

.score-chart .score-section span {
	left: -.55em;
	position: relative
}

.score-chart .score-section span.label-0,.score-chart .score-section span.label-100 {
	left: 0
}

.score {
	color: #FFF;
	position: relative;
	background: #f39c12;
	border: 4px solid #49657E
}

.score:after,.score:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none
}

.score:after {
	border-color: rgba(136, 183, 213, 0);
	border-top-color: #f39c12;
	border-width: 14px;
	margin-left: -14px
}

.score:before {
	border-color: rgba(194, 225, 245, 0);
	border-top-color: #49657E;
	border-width: 20px;
	margin-left: -20px
}

.static-resources {
	padding-left: 0;
	margin-bottom: 2em;
	display: inline-block;
	width: 100%;
	position: relative
}

.static-resources li {
	list-style: none;
	width: 33.3%;
	float: left;
	background-repeat: no-repeat;
	background-size: cover;
	height: 250px;
	position: relative;
	transition: all .8s ease;
	background-position: center
}

.static-resources li:hover {
	background-position: left
}

.static-resources li:hover:before {
	background-color: transparent;
	background-image: radial-gradient( transparent, #000)
}

.static-resources li:before {
	content: '';
	background: #000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: .5
}

.static-resources li:nth-of-type(1) {
	background-image: url("images/Death_to_stock_communicate_hands_4-300x200.jpg")
}

.static-resources li:nth-of-type(2) {
	background-image: url("images/Cloudy-Outlook-300x200.jpeg")
}

.static-resources li:nth-of-type(3) {
	background-image: url("images/picjumbo.com_IMG_9975-300x200.jpg")
}

.static-resources li h5 {
	color: #FFFFFF;
	top: 50%;
	position: relative;
	display: inline-block;
	text-align: center;
	transform: translateY(-50%);
	width: 100%;
	padding: .5em;
	margin-bottom: 0;
	text-shadow: #333 0px 0px 5px
}

.static-resources li a {
	display: inline-block;
	width: 100%;
	height: 100%;
	position: relative
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
	.static-resources li {
		width:100%;
		height: 100px
	}
}

@media only screen and (max-width: 768px) {
	.static-resources li {
		width:100%;
		height: 100px
	}
}

.toast-success {
	background-color: #f39c12
}

.toast-error {
	background-color: #ff0
}

.toast-info {
	background-color: #95BA00
}

.toast-warning {
	background-color: #f00
}

#toast-container>div {
	border-radius: 3px;
	background-position: 15px center;
	background-repeat: no-repeat;
	box-shadow: none;
	opacity: 1
}

#toast-container>:hover {
	box-shadow: none
}

.toast-top-right {
	top: 5em;
	right: 1em
}

#survey-page {
	background-position: -99999em center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-image: url("/images/pexels-photo-164560.jpeg");
	width: 100%;
	min-height: 100vh;
	margin: 0;
	display: inline-block;
	overflow: hidden;
	display: block
}

#survey-page.login {
	min-height: 100vh;
}

#survey-page:before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: inherit;
	content: "";
	filter: blur(4px);
	left: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	display: block;
	width: 100%;
	z-index: -1;
	transform: scale(1.02)
}

#survey-page .card {
	transition: all 0.4s ease;
	max-width: 650px;
	margin: 2em auto;
	text-align: left;
	display: block
}

#survey-page .card h3 {
	padding-bottom: 1.5em;
	margin-bottom: 1.5em;
	border-bottom: 2px solid #CECECE;
	color: #243B4F;
	font-weight: 300
}

#survey-page .card h2 {
	color: #243B4F
}

#survey-page .card h2:first-of-type {
	margin-bottom: .5em
}

#survey-page .card .progressbar {
	z-index: 0;
	width: 100%;
	position: relative;
	max-width: 650px
}

#survey-page .card .card-content {
	padding: 3em 5em;
	width: 100%
}

#survey-page .card .card-content .question-section {
	display: none;
	width: 100%
}

#survey-page .card .card-content .question-section.current-section {
	display: inline-block;
	width: 100%
}

#survey-page .card .card-content .question-section .single-question {
	display: inline-block;
	width: 100%
}

#survey-page .card .card-content .question-section .single-question .question-title {
	padding: 0
}

@media only screen and (max-width: 768px) {
	#survey-page .card .card-content {
		padding:2em 3em
	}

	#survey-page form.take-survey .question-inputs {
		display: block;
		text-align: center;
		width: 100%
	}

	#survey-page form.take-survey .likert_label {
		width: 40%
	}

	#survey-page form.take-survey .likert_label.mobile-live {
		float: right
	}

	#survey-page form.take-survey label.question-title {
		font-size: 1.4em;
		margin-bottom: 20px
	}

	#survey-page form.take-survey label.question-title input[type="radio"] {
		margin: .25em .5em .5em 0
	}

	#survey-page #save-answers {
		bottom: .5em;
		right: .5em
	}
}

.results-overall-page {
	position: relative;
	overflow: hidden
}

.results-overall-page:before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: inherit;
	content: "";
	filter: blur(5px);
	left: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	display: inline-block;
	transform: scale(1.1)
}

.results-overall-page .disclaimer {
	text-transform: uppercase
}

.results-overall-page .assessment-nav {
	padding: 4em 3em;
	text-align: center;
	background: #efefef
}

.results-overall-page .assessment-nav .sidebar-title {
	color: #2c3e50
}

.results-overall-page .assessment-nav .sidebar-title span {
	color: #f39c12
}

.results-overall-page .nav-metrics {
	display: inline-block;
	width: 100%;
	text-align: left;
	list-style: none;
	margin: 2em 0;
	padding: 0 0 2em
}

.results-overall-page .nav-metrics li {
	padding: .5em
}

.results-overall-page .nav-metrics li a {
	color: #18bc9c;
	line-height: 2em;
	font-weight: 500;
	font-size: 1.25em
}

.results-overall-page .nav-metrics li a:hover {
	color: #e6e6e6
}

.results-overall-page .nav-metrics li.active {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	background: #f39c12
}

.results-overall-page .nav-metrics li.active a {
	color: #fff;
	font-weight: bold
}

.results-overall-page .assessment-content {
	background: #FFFFFF;
	padding: 0;
	color: #2c3e50
}

.results-overall-page .assessment-content .section .image-holder {
	width: 50%;
	margin: 0 auto 1em
}

.results-overall-page .assessment-content .section p {
	line-height: 1.5em;
	margin-bottom: 2em
}

@media screen and (max-width: 550px) {
	.results-overall-page .assessment-content .section .image-holder {
		width:80%
	}
}

@media screen and (max-width: 550px) {
	.results-overall-page .assessment-content .section .image-holder {
		width:80%
	}
}

.results-overall-page .panel-heading.mli-report-section-heading {
	background-color: #2586A1
}

.results-overall-page .panel-heading.mli-report-section-heading h4 {
	color: #ffffff;
	text-align: center;
	font-weight: 500
}

.panel-heading {
	background: #efefef
}

.panel-heading h4 {
	color: #243B4F;
	text-align: center;
	margin: 0
}
