@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i,700,700i');

/* reset */  html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { 	margin: 0; 	padding: 0; 	border: 0; 	outline: 0; 	font-size: 100%; 	vertical-align: baseline; 	background: transparent; } body { 	line-height: 1; } ol, ul { 	list-style: none; } blockquote, q { 	quotes: none; } blockquote:before, blockquote:after, q:before, q:after { 	content: ''; 	content: none; }  /* remember to define focus styles! */ :focus { 	outline: 0; }  /* remember to highlight inserts somehow! */ ins { 	text-decoration: none; } del { 	text-decoration: line-through; }  /* tables still need 'cellspacing="0"' in the markup */ table { 	border-collapse: collapse; 	border-spacing: 0; }
/* clearfix  */   .cf:before, .cf:after {     content: " "; /* 1 */     display: table; /* 2 */ }  .cf:after {     clear: both; }  /**  * For IE 6/7 only  * Include this rule to trigger hasLayout and contain floats.  */ .cf {     *zoom: 1; }

html,
body {
	margin:0;
	padding:0;
	height: 100%;
}
body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1em;
    line-height: 1.7;
    background: #666;
	color: #000;
    overflow-x: hidden;
    overflow-y: scroll;
}


/* centerize class */
.center {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}


/* slider */
#slider {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#slider img {
	display: block;
	min-height: 100%;
	min-width: 100%;
}


/* sidebar */
#side {
    width: 100px;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: #282828;
    z-index: 9000;
}
#side #side_logo {
    width: 100px; 
    height: 100px; 
    position: absolute; 
    right: 0px; 
    top: 0;
    background-image: url('../images/side-logo.png');
    background-position: 0px -100px ; background-repeat: no-repeat;
    background-position: 0 0;
}
#side #pagetitle {
	font-size: 1.5em;
	font-weight: 400;
	position: absolute;
	left: 0px;
	bottom: -50px;
	color: #999;
	line-height: 1;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	transform-origin: 0% 0%;
	z-index: 9;
	line-height: 100px;
	white-space: nowrap;
}




/* questionnaire container */
#container {
	width: 90%;
	max-width: 835px;
	padding: 0em;
	background: #fff;
	box-shadow: 2px 2px 0px rgba(0,0,0,0.05);
	min-height: 400px;
	z-index: 3;
}
/* specific steps layout mods, rest in jquery.steps.css */
#container h3 {
	font-weight: 500;
	font-size: 1.3em;
	line-height: 1.2;
	padding-bottom: 1em;
	max-width: 100%;
}
#container h3 span {
	color: #999;
	display: block;
	font-size: 0.7em;
	margin-top: .2em;
}
#container h3 em {
	font-style: normal;
	font-weight: 700;
	color: #0b6635;
}
#container .count {
	position: absolute;
	right: 20px;
	bottom: 20px;
	padding: 0px;
}
#container .count span.currentq {
	font-size: 1.2em;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	border: 3px solid #000;
	color: #000;
	display: inline-block;
	line-height: 29px;
	text-align: center;
	font-weight: 700;
}
#container .count span.slash {
	color: #d5d5d5;
	font-weight: 600;
	padding-right: 5px;
	padding-left: 5px;
}
#container .count span.totalq {
	font-weight: 600;
	color: #666;
}


/* error reporting in form */
.field {
	position: relative;
}
label.error {
	position: absolute;
	left: -10px;
	bottom: -20px;
	background: #ef3634;
	color: #fff!important;
	text-align: center;
	width: auto!important;
	border-radius: 3px;
	padding: 5px 15px;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	box-shadow: 2px 2px 0px rgba(0,0,0,0.03);
	text-transform: uppercase;
	font-size: .7em; 
	font-weight: bold;
}
label.error:before {
	content: "";
	width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #ef3634;
	position: absolute;
	left: 10px;
	top: -4px;
}

/* override - steps nav tabs */
.wizard .steps {
	display: none!important;
}

/* specific form css */
/* specific form css */
/* specific form css */
/* specific form css */
/* specific form css */


/* specific form css > SET OF RADIOBUTTONS question */
.wizard .question-body.radio label,
.wizard .question-body.checkboxes label {
	width: 50%;
	float: left;
}
.wizard .question-body label input[type=text],
.wizard .question-body.radio label input[type=text],
.wizard .question-body.checkboxes label input[type=text] {
	width: 180px;
	margin-left: 15px;
	display: inline;
	padding: 2px;
}
@media screen and (max-width: 900px) {
	.wizard .question-body.radio label,
	.wizard .question-body.checkboxes label {
			width: 100%;
		}
	.wizard .question-body label input[type=text],
	.wizard .question-body.radio label input[type=text],
	.wizard .question-body.checkboxes label input[type=text] { 
			margin-left: 25px;
			font-size: .8em;
			width: 100px;
		}
	/* radio and checkboxes in resp.css */
}



/* specific form css > SINGLE TEXT INPUT question */
.wizard .question-body.single-text-input input[type=text] {
	width: 100%;
	margin: 0em 0;
}



/* specific form css > SINGLE TEXTAREA question */
.wizard textarea {
	width: 100%;
	display: block;
	min-height: 200px;
	max-height: 400px;
	border: 1px solid #f00;
}



/* specific form css > RATINGSET question */
.wizard .question-body.ratingset .fieldset {
	position: relative;
	padding-bottom: 5px;
	padding-top: px;
	width: 100%;
}
.wizard .question-body.ratingset .fieldset.first {
	padding-top: 0;
	margin-top: 3em;
}
.wizard .question-body.ratingset .tag {
	width: 280px;
	font-size: 0.8em;
	float: left;
	line-height: 1.3;
} 
.wizard .question-body.ratingset .labels {
	width: calc(100% - 280px);
	float: left;
}
.wizard .question-body.ratingset label input[type=radio] {
	-webkit-transform: translateY(-4px);
	transform: translateY(-4px);
}
.wizard .question-body.ratingset label {
	width: 9.09%;
	float: left;
	text-align: center;
	margin: 0;
	position: relative;
}
.wizard .question-body.ratingset .fieldset.first label:before {
	content: "";
	position: absolute;
	left: 50%;
	top: -40px;
	margin-left: -15px;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	line-height: 28px;
	font-size: .7em;
	font-weight: 800;
	text-align: center;
}
.wizard .question-body.ratingset .fieldset.first label:nth-of-type(1):before { content: "1"; }
.wizard .question-body.ratingset .fieldset.first label:nth-of-type(2):before { content: "2"; }
.wizard .question-body.ratingset .fieldset.first label:nth-of-type(3):before { content: "3"; }
.wizard .question-body.ratingset .fieldset.first label:nth-of-type(4):before { content: "4"; }
.wizard .question-body.ratingset .fieldset.first label:nth-of-type(5):before { content: "5"; }
.wizard .question-body.ratingset .fieldset.first label:nth-of-type(6):before { content: "6"; }
.wizard .question-body.ratingset .fieldset.first label:nth-of-type(7):before { content: "7"; }
.wizard .question-body.ratingset .fieldset.first label:nth-of-type(8):before { content: "8"; }
.wizard .question-body.ratingset .fieldset.first label:nth-of-type(9):before { content: "9"; }
.wizard .question-body.ratingset .fieldset.first label:nth-of-type(10):before { content: "10"; }
.wizard .question-body.ratingset .fieldset.first label:nth-of-type(11):before { content: "nvt"; }

.wizard .question-body.ratingset .fieldset.first.net label:nth-of-type(1):before { content: "0" !important; }
.wizard .question-body.ratingset .fieldset.first.net label:nth-of-type(2):before { content: "1" !important; }
.wizard .question-body.ratingset .fieldset.first.net label:nth-of-type(3):before { content: "2" !important; }
.wizard .question-body.ratingset .fieldset.first.net label:nth-of-type(4):before { content: "3" !important; }
.wizard .question-body.ratingset .fieldset.first.net label:nth-of-type(5):before { content: "4" !important; }
.wizard .question-body.ratingset .fieldset.first.net label:nth-of-type(6):before { content: "5" !important; }
.wizard .question-body.ratingset .fieldset.first.net label:nth-of-type(7):before { content: "6" !important; }
.wizard .question-body.ratingset .fieldset.first.net label:nth-of-type(8):before { content: "7" !important; }
.wizard .question-body.ratingset .fieldset.first.net label:nth-of-type(9):before { content: "8" !important; }
.wizard .question-body.ratingset .fieldset.first.net label:nth-of-type(10):before { content: "9" !important; }
.wizard .question-body.ratingset .fieldset.first.net label:nth-of-type(11):before { content: "10" !important; }

/* error in ratingset */
.wizard .question-body.ratingset .fieldset label label.error {
	width: 80px!important;
	float: none;
	left: -100px!important;
	bottom: auto;
	top: 50%!important;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-top: -7px;
	right: 0;
	z-index: 99;
	position: absolute!important;
	padding: 5px 0px;
}
.wizard .question-body.ratingset .fieldset label label.error:before {
	content: ""!important;
	width: 0; 
	height: 0; 
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent; 
	border-right: 0;
	border-left: 5px solid #ef3634; 
	margin-left: 0;
	left: auto;
	right: -4px!important;
	top: 50%;
	margin-top: -5px;
}



@media screen and (max-width: 900px) {

	.wizard .question-body.ratingset .overflow {
		background: #ddd;
		padding: 1em 1em;
		box-sizing: border-box;
		width: 100%;
		max-height: 190px;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
	}
	.wizard .question-body.ratingset .overflow .fieldset{
		width: 700px;
		padding: 0;
	}

	.wizard .question-body.ratingset .overflow .fieldset.first {
		margin-top: 1em;
	}
	.wizard .question-body.ratingset .fieldset.first label:before {
		top: -20px;
	}

}




/* specific form css */
/* specific form css */
/* specific form css */
/* specific form css */
/* specific form css */
/* specific form css */



/* disable selection */
.wizard > .actions
{
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

/* scrollbar chrome  for overflow divs */
::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}
::-webkit-scrollbar-track {
    -webkit-border-radius: 10px;
    border-radius: 10px;padding: 5px;
}
::-webkit-scrollbar-thumb {
    opacity:0.2;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: rgba(0,0,0,0.4);
}





/* colorbar */
.colorbar {
    height: 20px; width: 100%; background: #8c7c63; z-index: 9;
    position: absolute; left: 0; top: -20px;
    white-space:nowrap;
}
.colorbar div {
    float: left;
    height: 20px;
    transition: width 5000ms cubic-bezier(.1,.41,.47,1);
}
.colorbar div.bar1 { width: 10%; }
.colorbar div.bar2 { width: 5%; }
.colorbar div.bar3 { width: 20%; }
.colorbar div.bar4 { width: 5%; }
.colorbar div.bar5 { width: 60%;}

.colorbar.active.a1 div.bar1 { width: 60%; }
.colorbar.active.a1 div.bar2 { width: 5%; }
.colorbar.active.a1 div.bar3 { width: 5%; }
.colorbar.active.a1 div.bar4 { width: 20%; }
.colorbar.active.a1 div.bar5 { width: 10%; }

.colorbar.active.a2 div.bar1 { width: 30%; }
.colorbar.active.a2 div.bar2 { width: 20%; }
.colorbar.active.a2 div.bar3 { width: 10%; }
.colorbar.active.a2 div.bar4 { width: 15%; }
.colorbar.active.a2 div.bar5 { width: 25%; }

.colorbar.active.a3 div.bar1 { width: 45%; }
.colorbar.active.a3 div.bar2 { width: 15%; }
.colorbar.active.a3 div.bar3 { width: 10%; }
.colorbar.active.a3 div.bar4 { width: 15%; }
.colorbar.active.a3 div.bar5 { width: 15%; }

.colorbar.active.a4 div.bar1 { width: 15%; }
.colorbar.active.a4 div.bar2 { width: 25%; }
.colorbar.active.a4 div.bar3 { width: 25%; }
.colorbar.active.a4 div.bar4 { width: 25%; }
.colorbar.active.a4 div.bar5 { width: 10%; }

.colorbar.active.a5 div.bar1 { width: 10%; }
.colorbar.active.a5 div.bar2 { width: 5%; }
.colorbar.active.a5 div.bar3 { width: 20%; }
.colorbar.active.a5 div.bar4 { width: 5%; }
.colorbar.active.a5 div.bar5 { width: 60%; }
