.output {
    display: inline-block;
    font-size: 12px;
    margin-bottom: 2px;
    padding-left: 10px;
    vertical-align: bottom;
}

.questionSlider {
	width: 280px;
    display: inline-block;
	vertical-align: top;
	text-align: left;
}

.questionText {
	display: inline-block;
	width: 60%;
	text-align: left;
	padding-right: 20px;
	padding-bottom: 10px;
}

@media (max-width: 767px) {
	.questionText {
		width: 100%;
		text-align: center;
		padding-right: 0;
	}
}
.question {
	vertical-align: top;
	padding-bottom: 20px;
}

.slider {
	width: 200px;
    display: inline-block;
}

.slider > .dragger {
  background: #1db0ef;
  background: -webkit-linear-gradient(top, #1db0ef, #1ba3dd);
  background: -moz-linear-gradient(top, #1db0ef, #1ba3dd);
  background: linear-gradient(top, #1db0ef, #1ba3dd);

  -webkit-box-shadow: inset 0 1px 1px rgba(255,255,255,0.5), 0 1px 4px rgba(0,0,0,0.2);
  -moz-box-shadow: inset 0 1px 1px rgba(255,255,255,0.5), 0 1px 4px rgba(0,0,0,0.2);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.5), 0 1px 4px rgba(0,0,0,0.2);

  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;

  border: 1px solid #0975b3;
  width: 20px;
  height: 20px;
}

.slider > .dragger:hover {
  background: -webkit-linear-gradient(top, #1db0ef, #1db0ef);
}


.slider > .track, .slider > .highlight-track {
  background: #ddd;
  height: 2px;
}

.slider > .highlight-track {
	background-color: #1db0ef;
	background: -webkit-linear-gradient(top, #1db0ef, #1ba3dd);
	background: -moz-linear-gradient(top, #1db0ef, #1ba3dd);
	background: linear-gradient(top, #1db0ef, #1ba3dd);
	
	border-color: #0975b3;
}


#roiForm {
	width: 100%;
	margin: 20px auto;
	text-align: center;
	position: relative;
}

#roiForm {
	min-height: 660px;
}

#roiForm fieldset {
	background: #fff;
	border: 0 none;
	padding: 20px 5px;
	
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	
	position: absolute;
}

#roiForm fieldset:not(:first-of-type) {
	display: none;
}

.fs-title {
	color: #1ba3dd;
	padding-bottom: 30px;
}

.fs-subtitle {
	color: #666;
}

#progressbar {
	margin-bottom: 20px;
	overflow: hidden;
	counter-reset: step;
}

@media (max-width: 500px) {
	#roiForm {
		min-height: 645px;
	}
	
	#roiForm fieldset {
		padding: 5px 5px 20px;
	}
	
	#progressbar {
		margin-bottom: 10px;
	}
}

@media (min-width: 768px) {
	#roiForm {
		min-height: 550px;
	}
}

#progressbar li {
	list-style-type: none;
	text-transform: uppercase;
	font-size: 9px;
	width: 25%;
	float: left;
	position: relative;
}

#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 25px;
	line-height: 25px;
	display: block;
	font-size: 12px;
	color: #333;
	background: #f9f9f9;
	border-radius: 50%;
	margin: 0 auto 5px auto;
    -webkit-transition: all ease-in 0.25s;
            transition: all ease-in 0.25s;
}

#progressbar li:after {
	content: '';
	width: 100%;
	height: 1px;
	background: #f0f0f0;
	position: absolute;
	left: -50%;
	top: 13px;
	z-index: -1;
    -webkit-transition: all ease-in 0.25s;
            transition: all ease-in 0.25s;
}

#progressbar li:first-child:after {
	content: none; 
}

#progressbar li.active:before,  
#progressbar li.active:after {
	background: #1ba3dd;
	color: #fff;
	-webkit-transition: all ease-in 0.25s;
		transition: all ease-in 0.25s;
}
