.btn-primary {
	background: -moz-linear-gradient(90deg, rgba(25,86,255) 0%, rgba(25,86,255) 100%); /* ff3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(25,86,255)), color-stop(100%, rgba(25,86,255))); /* safari4+,chrome */
	background: -webkit-linear-gradient(90deg, rgba(25,86,255) 0%, rgba(25,86,255) 100%); /* safari5.1+,chrome10+ */
	background: -o-linear-gradient(90deg, rgba(25,86,255) 0%, rgba(25,86,255) 100%); /* opera 11.10+ */
	background: -ms-linear-gradient(90deg, rgba(25,86,255) 0%, rgba(25,86,255) 100%); /* ie10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff4d3d', endColorstr='#e64637',GradientType=0 ); /* ie6-9 */
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:active:focus {
	color: #DDDDDD;
	background: #ff4d3d !important;
}

.btn-secondary {
	background: -moz-linear-gradient(90deg, rgba(179,179,179,1) 0%, rgba(203,204,203,1) 100%); /* ff3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(203,204,203,1)), color-stop(100%, rgba(179,179,179,1))); /* safari4+,chrome */
	background: -webkit-linear-gradient(90deg, rgba(179,179,179,1) 0%, rgba(203,204,203,1) 100%); /* safari5.1+,chrome10+ */
	background: -o-linear-gradient(90deg, rgba(179,179,179,1) 0%, rgba(203,204,203,1) 100%); /* opera 11.10+ */
	background: -ms-linear-gradient(90deg, rgba(179,179,179,1) 0%, rgba(203,204,203,1) 100%); /* ie10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cbcccb', endColorstr='#B3B3B3',GradientType=0 ); /* ie6-9 */
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:visited {
	color: #F18000;
	background: #AAA;
}

.btn span.arrow {
	transform: scale(1.8,1.5);
    display: inline-block;
    margin: 0 10px;
}

.navbar-default {
	background-color: rgba(255,255,255,1);
	border-bottom: none;
}

.navbar-default.navbar-expanded {
	background-color: rgba(255,255,255,0);
}

.navbar-header {
	float: none;
	text-align: center;
}
.navbar-header img {
	height: 10vh;
    margin: 0vh 0 0vh 35px;
    transition: all linear 350ms;
    float: left;
}

.navbar-default.navbar-expanded .navbar-header img {
	height: 10vh;
    margin: 4vh auto 2vh;
    float: none;
}

.user-details {
	float: right;
    font-family: 'TruenoLight';
    font-size: 18px;
    background: url('/img/user.png') right no-repeat;
    line-height: 10vh;
    padding-right: 45px;
    color: #777;
    background-size: 35px;
    margin-right: 10px;
    opacity: 1;
    transition: all 350ms linear;
    display: block;
}

.navbar-default.navbar-expanded .user-details {
	opacity: 0;
	display: none;
}

.navbar-timeline {
	align-content: flex-start;
    display: flex;
    flex-flow: row wrap;
    height: 5px;
    justify-content: space-around;
    margin: 0 -15px;
    opacity: 1;
}

.timeline-nugget {
	background-color: #D9D9D9;
    flex-grow: 1;
    height: 5px;
    margin-right: 2px;
    transition: all 500ms linear;
}

.timeline-nugget.answered {
	background-color: #A7A7A7;
}

.timeline-nugget.active {
	background-color: #FA4C3C !important;
}

.timeline-nugget:last-child {
	margin-right: 0px;
}

.navbar-expanded .navbar-timeline {
	opacity: 0;
}

.body-content {
	margin-top: 10vh;
	padding-top: 5vh;
	padding-bottom: 100px;
	transition: all 250ms linear;
}

.body-content.remove-padding {
	margin-top: 2vh;
	padding-top: 0vh;
}

.question-box {
	text-align: center;
	margin: 0 auto 0;
	background: #FFFFFF;
	border-radius: 12px;
	box-shadow: 0 5px 40px rgba(0,0,0,0.15);
	max-width: 900px;
    width: 100%;
    padding: 0 25px;
    position: relative;
    left: 0;
    border-bottom: 1px solid #CCCCCC;
}

.question-box h3 {
	margin: 0px;
	padding: 5vh 0 2vh;
	font-size: 17px;
	color: #e54636;
	font-family: 'TruenoBold';
}

.question-text {
	font-size: 34px;
	line-height: 42px;
	font-family: 'TruenoLight';
	margin-bottom: 3vh;
}

.question-text big {
	font-family: 'TruenoRegular';
}
.question-box p.question-text {
	padding: 0 75px;
}

.rating-slider {
    margin: 0px 50px 20px;
    height: 40px;
    position: relative;
    white-space: nowrap;
}
.rating-slider:before {
    content: " ";
    position: absolute;
    top: 0px;
    height: 100%;
    left: 20px;
    right: 20px;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 34%, rgba(255,255,255,1) 67%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 34%,rgba(255,255,255,1) 67%,rgba(255,255,255,1) 100%);
    background: linear-gradient(45deg, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 34%,rgba(255,255,255,1) 67%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6c25c', endColorstr='#e5573c',GradientType=1 );
    opacity: 0.3;
}

.rating-slider .rating:last-of-type{
	border-radius: 0 7px 7px 0;
}

.rating-label {
	margin-bottom: 2vh;
	font-family: 'TruenoLight';
	color: #777777;
	padding: 0 25px;
	font-size: 16px;
	width: 50%;
	text-align: right;
}

.rating-label > span {
	font-size: 16px;
	padding: 0 5px;
}

.rating-label.pull-right {
	text-align: left;
}

.rating-category {
	font-family: 'TruenoLight';
	font-size: 16px;
	color: #777777;
}

.legal-link,
.legal-link a {
	color: #ccc !important;
    font-size: 12px;
    font-family: 'Helvetica Neue', 'Helvetica', arial, sans-serif;
    font-weight: 300;
}

.rating-category strong {
	font-family: 'TruenoBold';
}

.rating-category span {
	padding: 0px;
	position: relative;
	display: inline-block;
	color: #AAAAAA;
	font-size: 16px;
	transition: all 150ms linear;
}

.rating-category span:before {
	content: "*";
    font-size: 50px;
    line-height: 18px;
    position: relative;
    top: 22px;
    left: -5px;
    color: #f96a36;
}

.category-level {
	margin: 2vh 0 2vh;
}
.category-level h4 {
	color: #000;
	margin: 3.5vh 0 2.5vh;
	font-size: 20px;
}
.category-level > div {
	display: inline-block;
    display: inline-block;
    margin: 0 10px;
    text-transform: uppercase;
    font-family: 'TruenoBold';
    opacity: 1;
    cursor: pointer;
    color: #AAA;
    transition: all 150ms linear;
}
.category-level > div:hover,
.category-level > div.active {
	color: #000;
}
.category-level > div img {
	width: 4.5em;
	padding: 1em 15px;
	margin-top: -3px;
    filter: hue-rotate(-80deg) brightness(55%) grayscale(100%);
    -webkit-filter: hue-rotate(-80deg) brightness(55%) grayscale(100%);
    opacity: 0.3;
}
.category-level > div:hover img,
.category-level > div.active img {
	filter: hue-rotate(-80deg) brightness(55%) grayscale(0%);
    -webkit-filter: hue-rotate(-80deg) brightness(55%) grayscale(0%);
    opacity: 1;
}
.question-box .rating-category.no-category span {
	font-size: 0px;
	color: transparent;
}

.question-box .rating-category {
	margin: 2vh 70px 5vh;
}

.rating-slider .rating {
	display: block;
	float: left;
	height: 100%;
	width: calc(25% - 3px);
	margin: 0px 3px 0 0;
	font-family: 'TruenoBold';
	font-size: 16px;
	line-height: 40px;
	color: #FFF;
	text-shadow: 0 1px 2px rgba(0,0,0,0.5);
	background: rgba(243,165,27,1);
	background: -moz-linear-gradient(90deg, rgb(192, 0, 0) 0%, rgb(192, 0, 0) 100%); /* ff3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(192, 0, 0)), color-stop(100%, rgb(192, 0, 0) 100%))); /* safari4+,chrome */
	background: -webkit-linear-gradient(90deg, rgb(192, 0, 0) 0%, rgb(192, 0, 0) 100%); /* safari5.1+,chrome10+ */
	background: -o-linear-gradient(90deg, rgb(192, 0, 0) 0%, rgb(192, 0, 0) 100%); /* opera 11.10+ */
	background: -ms-linear-gradient(90deg, rgb(192, 0, 0) 0%, rgb(192, 0, 0) 100%); /* ie10+ */
	background: linear-gradient(0deg, #C00000 0%, #C00000 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgb(192, 0, 0)', endColorstr='rgb(192, 0, 0)',GradientType=0 ); /* ie6-9 */
	transition: all 150ms linear;
	border-radius: 0px;
	position: relative;
	top: 0px;
}

.rating-slider .rating::after {
	content: " ";
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 10px solid transparent;
	position: absolute;
	bottom: 10px;
    right: 50%;
    margin-right: -12px;
    transition: all 150ms linear;
    opacity: 0;
}

.rating-slider .rating div {
	padding-top: 0px;
	transition: all 150ms linear;
}

.rating-slider .rating:hover {
	cursor: pointer;
	height: 150%;
	border-radius: 5px !important;
	position: relative;
	top: -25%;
}

.rating-slider .rating:hover div {
	font-size: 22px;
	padding-top: 7px;
}

.rating-slider .rating.active {
	cursor: pointer;
	height: 150%;
	border-radius: 8px !important;
	position: relative;
	top: -25%;
	background: linear-gradient(0deg, #55395D 0%, #734d7d 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F18000', endColorstr='#e64637',GradientType=0 );
}

.rating-slider .rating.active div {
	font-size: 25px;
	padding-top: 7px;
}

.rating-slider .rating.active::after {
	bottom: -10px;
	opacity: 1;
	border-top-color: #5a3c62 !important;
}

.rating-slider .rating:nth-child(1){
    border-radius: 7px 0 0 7px;
}
.rating-slider .rating:nth-child(2) {
	background: -moz-linear-gradient(90deg, rgba(239,132,5,1) 0%, rgba(239,155,5,1) 100%); /* ff3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(239,155,5,1)), color-stop(100%, rgba(239,132,5,1))); /* safari4+,chrome */
	background: -webkit-linear-gradient(90deg, rgba(239,132,5,1) 0%, rgba(239,155,5,1) 100%); /* safari5.1+,chrome10+ */
	background: -o-linear-gradient(90deg, rgba(239,132,5,1) 0%, rgba(239,155,5,1) 100%); /* opera 11.10+ */
	background: -ms-linear-gradient(90deg, rgba(239,132,5,1) 0%, rgba(239,155,5,1) 100%); /* ie10+ */
	background: linear-gradient(0deg, #FFFF00 0%, #FFFF00 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef9b05', endColorstr='#ef8405',GradientType=0 ); /* ie6-9 */
}

.rating-slider .rating:nth-child(3) {
	background: -moz-linear-gradient(90deg, rgba(146,208,80,1) 0%, rgba(146,208,80,1) 100%); /* ff3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(146,208,80,1)), color-stop(100%, rgba(146,208,80,1))); /* safari4+,chrome */
	background: -webkit-linear-gradient(90deg, rgba(146,208,80,1) 0%, rgba(146,208,80,1) 100%); /* safari5.1+,chrome10+ */
	background: -o-linear-gradient(90deg, rgba(146,208,80,1) 0%, rgba(146,208,80,1) 100%); /* opera 11.10+ */
	background: -ms-linear-gradient(90deg, rgba(146,208,80,1) 0%, rgba(146,208,80,1) 100%); /* ie10+ */
	background: linear-gradient(0deg, #92D050 0%, #92D050 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef8306', endColorstr='#e56134',GradientType=0 ); /* ie6-9 */
}

.rating-slider .rating:nth-child(7)::after,
.rating-slider .rating:nth-child(8)::after,
.rating-slider .rating:nth-child(9)::after {
	/*border-top-color: #f96731;*/
}

.rating-slider .rating:nth-child(4) {
	background: -moz-linear-gradient(90deg, rgba(25,86,255) 0%, rgba(25,86,255) 100%); /* ff3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(25,86,255)), color-stop(100%, rgba(25,86,255))); /* safari4+,chrome */
	background: -webkit-linear-gradient(90deg, rgba(25,86,255) 0%, rgba(25,86,255) 100%); /* safari5.1+,chrome10+ */
	background: -o-linear-gradient(90deg, rgba(25,86,255) 0%, rgba(25,86,255) 100%); /* opera 11.10+ */
	background: -ms-linear-gradient(90deg, rgba(25,86,255) 0%, rgba(25,86,255) 100%); /* ie10+ */
	background: linear-gradient(0deg, #00B050 0%, #00B050 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F18000', endColorstr='#e64637',GradientType=0 ); /* ie6-9 */
}

.rating-slider .rating:nth-child(10)::after,
.rating-slider .rating:nth-child(11)::after,
.rating-slider .rating:nth-child(12)::after {
	/*border-top-color: #e84737;*/
}

.question-btns {
	text-align: center;
	margin: 6vh 0 0;
}

footer.footer {
	position: fixed;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin-bottom: 20px;
}

form label {
	text-transform: uppercase;
	color: #000;
}

form .form-control {
	font-family: 'TruenoLight';
    font-size: 20px;
    padding: 10px 18px;
    height: 50px;
}

form select.form-control {
	text-indent: 10px;
}

.social-banner {
	background: #FA4C3C;
	margin: 10rem 0;
	padding: 40px 0 35px;
	color: #FFFFFF;
	font-size: 20px;
	font-family: 'TruenoRegular';
	text-shadow: 0 1px 1px rgba(0,0,0,0.5);
}

.social-banner p {
	margin: 0;
}
.social-banner img {
	margin-top: -5px;
}
.scorecard {
	text-align: center;
	position: relative;
    padding-top: 75px;
}

.scorecard .title,
.scorecard .cta {
	font-size: 18px;
	font-family: 'TruenoLight';
}

.scorecard .value {color: #ed4839;font-size: 96px;line-height: 79px;font-family: 'TruenoBold';margin-bottom: 15px;}

.scorecard .cta {
	color: #ea4738;
	text-decoration: underline;
}

.score-description {
	font-size: 18px;
    line-height: 30px;
    color: #888;
    font-family: 'TruenoLight';
}

#piechart {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
}

.birthday-selector > div {
	padding: 2px;
}

.birthday-selector > div:first-child {
	padding-left: 15px;
}

.birthday-selector > div:last-child {
	padding-right: 15px;
}

#rating-chart {
}

#rating-chart .row {
	margin: 20px auto;
    border-left: 3px solid #000;
    border-radius: 6px;
    position: relative;
    left: 15px;
}

#rating-chart .rating-range {
	font-size: 28px;
    white-space: nowrap;
    font-family: TruenoBold;
    letter-spacing: -1px;
    text-align: center;
    margin-top: 10px;
}

#rating-chart .score-description {
	font-size: 17px;
    line-height: 25px;
}

#rating-chart .score-description big {
	font-family: TruenoBold;
}


#rating-chart div.row:nth-child(1) {
	border-color: #f7c264;
}
#rating-chart div.row:nth-child(1) .rating-range,
#rating-chart div.row:nth-child(1) .score-description big {
	color: #f7c264;
}


#rating-chart div.row:nth-child(2) {
	border-color: #ef8405;
}
#rating-chart div.row:nth-child(2) .rating-range,
#rating-chart div.row:nth-child(2) .score-description big {
	color: #ef8405;
}

#rating-chart div.row:nth-child(3) {
	border-color: #e56035;
}
#rating-chart div.row:nth-child(3) .rating-range,
#rating-chart div.row:nth-child(3) .score-description big {
	color: #e56035;
}

#rating-chart div.row:nth-child(4) {
	border-color: #e54636;
}
#rating-chart div.row:nth-child(4) .rating-range,
#rating-chart div.row:nth-child(4) .score-description big {
	color: #e54636;
}

.question-text.bucket-text {
	font-size: 24px;
	line-height: 28px;
}

.bucket-question {
	max-width: 550px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.bucket-question li {
	margin: 10px;
	text-align: left;
	font-weight: 100;
	font-family: 'TruenoLight';
	font-size: 13px;
	background: #FFFFFF;
	border: 2px solid #EDEDED;
	padding: 17px 20px;
	border-radius: 4px;
	transition: all 300ms linear;
	cursor: pointer;
	opacity: 0.7;
}

.bucket-question li:hover {
	border-color: #CB513B;
}
.bucket-question li b {
	font-family: 'TruenoRegular';
	font-size: 14px;
	/*display: block;*/
}

.bucket-question li.active {
	border-color: #734d7d;
	opacity: 1;
}
.bucket-question li.active b {
	color: #734d7d;
}

@media screen and (max-width: 989px) {
	.question-text {
		font-size: 34px;
		line-height: 40px;
	}
	.btn {
		line-height: 60px;
    	font-size: 18px;
	}
    .scorecard {
		margin: 50px auto 0;
		padding-top: 55px;
	}
	.scorecard .title, .scorecard .cta {
		font-size: 16px;
	}
	.scorecard .value {
		font-size: 70px;
		line-height: 70%;
	}
}

@media (max-width:767px) {
	
	body > .ember-view {
		background: -moz-linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.05) 100%); /* ff3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(0,0,0,0.05))); /* safari4+,chrome */
		background: -webkit-linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.05) 100%); /* safari5.1+,chrome10+ */
		background: -o-linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.05) 100%); /* opera 11.10+ */
		background: -ms-linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.05) 100%); /* ie10+ */
		background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.05) 100%); /* w3c */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 ); /* ie6-9 */
		min-height: 100vh;
	}
	#rating-chart .row {
	    left: 0px;
	}
	#rating-chart .rating-range {
		text-align: left;
	}
	.navbar {
		min-height: 30px;
	}
	.navbar-default.navbar-expanded .navbar-header img {
		height: 10vh;
	}
	.navbar-header img {
		margin: 1vh 0 1vh 30px;
    	height: 6vh;
	}
	.user-details {
	    height: 8vh;
	    margin-right: 20px;
	    font-size: 0px;
	}
	.body-content {
		padding-top: 0vh;
		margin-top: 8vh;
		padding-bottom: 100px;
	}
	.body-content.remove-padding {
		margin-top: 0vh;
	}
	.question-box {
		padding-top: 0vh;
		background-color: transparent;
	    padding: 0 15px;
	    box-shadow: none;
	    border-bottom: none;
	}
	.question-box h3 {
		font-size: 14px;
		padding-top: 25px;
	}
	.question-text {
		font-size: 24px;
		line-height: 33px;
		text-align: center;
	}
	.question-box p.question-text {
		padding: 0px;
	    font-size: 22px;
	    line-height: 33px;
	    margin-bottom: 10px;
	}
	.rating-category {
		text-align: center;
		font-size: 18px;
	}
	footer.footer {
		margin: 0 0;
	}
	footer.footer .container {
		padding: 0px;
	}
	.btn {
		margin: 10px 0 0;
    	padding: 0 30px;
	}
	.rating-label {
		padding: 0 15px;
		margin-top: 10px;
		font-size: 14px;
	}
	.question-box .rating-category {
		margin: 0;
		font-size: 16px;
	}
	footer.footer.question-footer {
		position: fixed;
		bottom: 0px;
		margin-bottom: 5px;
		height: 9vh;
	}
	.question-footer .btn {
		width: 45%;
		padding: 0 0;
	}
	.btn span.arrow {
		transform: scale(1.3,1.5);
		margin: 0 5px;
	}
	#scrolling {
		height: 15vh;
		position: relative;
		margin: 0 -15px;
		overflow: hidden;
	}
	#scrolling:before {
		left: -20px;
	    right: -20px;
	    top: calc(13px + 0.5vh);
	    height: 9vh;
	    opacity: 0.35;
	}

	.rating-slider.item-slide {
		height: 15vh;
   	 	overflow: auto;
   	 	margin: 0;
	    padding: 0 0vw;
	    list-style-type: none;
	    position: absolute;
	    -webkit-transform-style: preserve-3d;
	    -ms-transform-style: preserve-3d;
	    transform-style: preserve-3d;
	}
	.rating-slider.item-slide li {
		float: left;
		margin: 0 1vw 0 5vw;
		width: 60vw;
	}

	.rating-slider.item-slide li .rating {
		color: rgba(255,255,255,0.7);
		text-shadow: none;
	}

	.rating-slider.item-slide li.itemslide-active .rating{
		color: #FFFFFF;
	}

	.rating-slider.item-slide li .rating {
		border: 1px solid rgba(178, 120, 27, 0.5);
		border-top: none;
		border-bottom: none;
	}

	.rating-slider.item-slide li:nth-child(2) .rating {
		border-color: rgba(129, 44, 25, 0.45);
		background: -moz-linear-gradient(90deg, rgba(239,132,5,1) 0%, rgba(239,155,5,1) 100%); /* ff3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(239,155,5,1)), color-stop(100%, rgba(239,132,5,1))); /* safari4+,chrome */
		background: -webkit-linear-gradient(90deg, rgba(239,132,5,1) 0%, rgba(239,155,5,1) 100%); /* safari5.1+,chrome10+ */
		background: -o-linear-gradient(90deg, rgba(239,132,5,1) 0%, rgba(239,155,5,1) 100%); /* opera 11.10+ */
		background: -ms-linear-gradient(90deg, rgba(239,132,5,1) 0%, rgba(239,155,5,1) 100%); /* ie10+ */
		background: linear-gradient(0deg, #f38e34 0%, #f7ac69 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef9b05', endColorstr='#ef8405',GradientType=0 ); /* ie6-9 */
	}

	.rating-slider.item-slide li:nth-child(2) .rating::after {
		border-top-color: #f38f35;
	}

	.rating-slider.item-slide li:nth-child(3) .rating {
		border-color: rgba(129, 44, 25, 0.6);
		background: -moz-linear-gradient(90deg, rgba(146,208,80,1) 0%, rgba(146,208,80,1) 100%); /* ff3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(146,208,80,1)), color-stop(100%, rgba(146,208,80,1))); /* safari4+,chrome */
		background: -webkit-linear-gradient(90deg, rgba(146,208,80,1) 0%, rgba(146,208,80,1) 100%); /* safari5.1+,chrome10+ */
		background: -o-linear-gradient(90deg, rgba(146,208,80,1) 0%, rgba(146,208,80,1) 100%); /* opera 11.10+ */
		background: -ms-linear-gradient(90deg, rgba(146,208,80,1) 0%, rgba(146,208,80,1) 100%); /* ie10+ */
		background: linear-gradient(0deg, #f9652e 0%, #f78d66 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef8306', endColorstr='#e56134',GradientType=0 ); /* ie6-9 */
	}

	.rating-slider.item-slide li:nth-child(3) .rating::after {
		border-top-color: #f96731;
	}

	.rating-slider.item-slide li:nth-child(4) .rating {
		border-color: rgba(129, 44, 25, 0.7);
		background: -moz-linear-gradient(90deg, rgba(25,86,255) 0%, rgba(25,86,255) 100%); /* ff3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(25,86,255)), color-stop(100%, rgba(25,86,255))); /* safari4+,chrome */
		background: -webkit-linear-gradient(90deg, rgba(25,86,255) 0%, rgba(25,86,255) 100%); /* safari5.1+,chrome10+ */
		background: -o-linear-gradient(90deg, rgba(25,86,255) 0%, rgba(25,86,255) 100%); /* opera 11.10+ */
		background: -ms-linear-gradient(90deg, rgba(25,86,255) 0%, rgba(25,86,255) 100%); /* ie10+ */
		background: linear-gradient(0deg, #DD4E2E 0%, #f57255 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F18000', endColorstr='#e64637',GradientType=0 ); /* ie6-9 */
	}

	.rating-slider.item-slide li:nth-child(4) .rating::after {
		border-top-color: #e84737;
	}
	.rating-slider.item-slide:before {
		display: none;
	}
	.rating-slider {
		margin: 0px -18px 20px -15px;
		height: 9vh;
	}
	.rating-slider .rating {
		flex-shrink: 0;
		box-shadow: 0 3px 10px rgba(0,0,0,0.25);
		line-height: 9vh;
	}
	.rating-slider .rating:hover,
	.rating-slider .rating.active {
		height: 130%;
		top: -15%;
		border-radius: inherit;
		line-height: 12vh;
	}
	.rating-slider .rating.active::after {
		bottom: -9px;
	}
	.rating-slider.item-slide .rating div {
		line-height: 10vh;
		font-size: 2.5vh;
		transition: all 150ms linear;
	}

	.rating-slider.item-slide li.itemslide-active .rating div {
		font-size: 4vh;
	}

	.rating-slider .rating:hover div {
		padding-top: 0px;
	}
	.rating-slider .rating.active:hover div {
		padding-top: 0px;
	}
	.rating-slider .rating.active {
		height: 12vh;
		line-height: 12vh
	}
	.rating-slider .rating div,
	.rating-slider .rating.active div {
		padding-top: 0px;
	}
	.rating-slider .rating:first-of-type {
		margin-left: 0%;
		border-radius: 2px 0 0 2px;
		border-left: none !important;
	}
	.rating-slider .rating:last-of-type {
		margin-right: 0%;
		border-radius: 0px 2px 2px 0px;
		border-right: none !important;
	}
	footer .btn.btn-primary,
	footer .btn.btn-secondary {
		position: fixed;
	    bottom: 0px;
	    left: 0px;
	    right: 0px;
	    height: 75px;
	    border-radius: 0;
	    line-height: 75px;
	    font-size: 20px;
	}
	footer.question-footer .btn {
		width: 50%;
	}
	footer.question-footer .btn.btn-primary {
		left: auto;
	}
	footer.question-footer .btn.btn-secondary {
		right: auto;
	}
	#piechart {
		width: 50vw;
		margin: 0 auto;
	}
	.scorecard {
		width: 60vw;
		max-width: 380px;
		margin: 0 auto;
		padding-top: 13vw;
		height: 65vw !important;
		max-height: 410px;
	}
	.scorecard .title, .scorecard .cta {
		font-size: 3.4vw;
	}
	.scorecard .value {
		font-size: 13vw;
		line-height: 8vw;
	}
	form .form-control {
		font-size: 16px;
		padding: 0 12px;
	}
	form select.form-control {
		text-indent: 3px;
	}
	.category-level > div {
		display: block;
		float: left;
		width: 33%;
		margin: 0px;
		line-height: 20px;
	}
	.category-level > div img {
		margin: 10px auto 13px;
    	display: block;
	}
}