a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
html, body {
	height: 100%;
}
body {
	background: #fafafa;
	/*
		url("../images/bg.png") bottom right no-repeat */
	background-attachment: fixed;
	font: 15px/1.25 "Rubik", arial, "sans-serif";
	color: #0e0c23;
}
body.popuped #main-content {
	filter: blur(3px);
	-webkit-filter: blur(3px);
	-moz-filter: blur(3px);
	-o-filter: blur(3px);
	-ms-filter: blur(3px);
}
strong {
	font-weight: 500;
}
a {
	text-decoration: none;
}
img, svg {
	vertical-align: middle;
}
.container {
	margin-right: auto; margin-left: auto;
	left: 0; right: 0;
	width: 1000px;
}
.overlay {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(18,15,50,.6);
}
#popup {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 12;
}
#popup .overlay {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(96,125,139,0.5);
}
#popup .wrapper {
	padding: 10px;
	position: absolute;
	top: 175px; left: 0; right: 0;
	margin: 0 auto;
	width: 300px;
	background: #fff;
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
#popup .wrapper h3 {
	font-size: 18px;
	padding-bottom: 5px;
}
#popup .wrapper p {
	padding-bottom: 5px;
}
#popup .wrapper input[type="password"] {
	padding: 8px 13px;
	width: 100%;
	display: block;
	font: inherit;
	background-color: #f8f8f8;
	border-radius: 3px;
	border: 1px solid #eee;
	outline: none;
}
#popup .wrapper .error {
	margin: 5px 0 0;
	padding: 0;
	font-size: 85%;
	color: #f44336;
	display: none;
}
#popup .wrapper a {
	margin-top: 10px;
}
/*
	COMPONENTS
****** */
/* header */
#header {
	width: 100%;
	height: auto;
	background: #fff;
	padding: 30px 0 30px 0;
}
.logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 142px;
}
#questions_insijam {
	width: 100%;
	height: auto;
	text-align: center;
	padding: 40px 0 40px 0;
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 38px;
	line-height: 50px;
	background: url('../images/bg_questions.png') no-repeat left 60px center #b9d861;
}
#questions_insijam h2 {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 700px;
}
/* cover */
#cover {
	position: relative;
	height: auto;
}
#cover .img {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	overflow: hidden;
}
#cover .img img {
	position: absolute;
	right: 50%; top: 50%;
	height: 120%;
	transform: translate(-35%, -35%);
}
#cover .overlay {
	background: rgba(9,107,178,0.6);
}
#cover .container {
	position: relative;
	z-index: 10;
}
#cover .main-title {
	text-align: center;
	color: #fff;
	font-size: 55px;
	font-weight: 400;
	text-shadow: 0 2px 3px rgba(0,0,0,0.25);
	line-height: 1;
	z-index: 11;
}
#cover #timer {
	position: absolute;
	top: 50%; left: 50%;
	margin: -60px;
	width: 120px; height: 120px;
	background: #fff;
	border-radius: 100%;
	opacity: 0;
	transform: scale(1.42);
	transition: all 0.25s ease-in-out;
}
#cover #timer.active {
	opacity: 1;
	transform: scale(1);
}
#cover #timer svg {
	margin: 3px;
	fill: #333;
}
#cover #timer .counter {
	position: absolute;
	top: 0; width: inherit;
	line-height: 120px;
	font-size: 34px;
	text-align: center;
}
/* main content */
#main-content {
	padding: 70px 0;
}
/* answers */
.answers {
	margin: 0 auto 60px;
}
.answers .items {
	font-size: 22px;
	line-height: 1.4;
}
.answers .items li {
	position: relative;
	margin: 5px 0;
	background: rgba(0,158,227,0.1);
}
.answers .items li .count {
	margin-left: 6px;
	display: inline-block;
	font-size: 60%;
	color: #444;
	vertical-align: 3px;
	font-weight: 300;
}
.answers .items li .color {
	margin: -3px 10px 0 0;
	display: inline-block;
	width: 15px; height: 15px;
	background: royalblue;
	vertical-align: middle;
	border-radius: 15px;
}
.answers .items li:nth-child(2n) {
	background: rgba(0,158,227,0.05);
}
.answers .items li, .answers .items .results {
	padding: 5px 10px;
}
.answers .items li.correct {
	background: #0e0c23;
	color: #fff;
	transform: scale(1.1);
	border: 0 none;
}
.answers .items li.correct .results {
	position: absolute;
	padding-top: 13px;
	top: 0; right: 0;
	font-size: 60%;
}
.answers .items li.wrong {
	text-decoration: line-through;
	border-color: #333;
	transform: scale(0.9);
}
/*
	*/
.program-list {
	display: none;
}
.program-list.active {
	display: block;
}
.program-list p + p {
	margin-top: 3px;
}
.program-list .program-element {
	position: relative;
	margin: 1px 0;
	display: block;
	padding: 15px 10px;
	background: #fff;
	cursor: pointer;
}
.program-list .program-element .count {
	position: absolute;
	top: 50%; right: 0;
	margin: -10px 20px 0;
	width: 20px; height: 20px;
	background-color: #e53935;
	color: #fff;
	line-height: 21px; font-size: 12px; text-align: center;
	text-shadow: 0 1px 1px rgba(0,0,0,0.2);
	border-radius: 20px;
}
.program-list .program-element .count.zero {
	background-color: #607d8b;
	opacity: 0.3;
}
.program-list .program-element.active + .sub-level {
	display: block;
}
.program-list .sub-level {
	padding: 0 0 0 20px;
	font-size: 90%;
	display: none;
}
.program-list .sub-level a {
	color: #333;
}
.program-list .sub-level a:hover {
	text-decoration: underline;
}
.program-list .sub-level .program-element {
	margin: 0;
	padding-top: 8px;
	padding-bottom: 8px;
	background-color: rgba(40,40,40,0.04);
}
.program-list .sub-level .program-element + .program-element {
	margin-top: 1px;
}
.program-list .questions-list {
	margin-top: 15px;
	padding: 10px 5px;
	background: #eee;
}
.program-list .speaker {
	font-size: 85%;
}
/* chart */
#chart {
	position: relative;
	margin: 0 auto;
	padding-bottom: 25px;
	display: none;
	width: 290px;
}
#chart .count {
	position: absolute;
	top: 50%;
	margin-top: -35px;
	width: 100%;
	text-align: center;
	line-height: 1;
	opacity: 0;
}
#chart .count p {
  font-size: 36px;
}
#chart canvas {
	display: block;
	width: 100%!important;
	opacity: 0;
}
/* buttons */
.btn {
	padding: 5px 12px 4px;
	display: inline-block;
	background-color: #f44336;
	color: #fff;
	border-radius: 5px;
	transition: all 0.2s ease-in-out;
	font-size: 14px;
	border-radius: 4px;
}
.btn.disable {
	background: #ddd;
	color: #888;
	cursor: not-allowed;
	opacity: 0.6;
}
.btn:not(.disable):hover {
	background: #c72f23;
}
.btn.large {
	padding: 0 20px;
	line-height: 50px;
	font-size: 25px;
}
/*
	tabs */
.tabs {
	float: right;
}
[class^="tab-for-"]{
	display: inline-block;
	float: left;
	padding: 10px 25px;
	font-size: 20px;
	color: #b9d861;
	background: #fff;
}
[class^="tab-for-"].active {
	background: #b9d861;
	color: #000;
}
/*
	helpers */
.uppercase {
	text-transform: uppercase;
}
.text-center {
	text-align: center;
}
.light {
	font-weight: 300;
}
.color-gray {
	color: #666;
}
.color-red {
	color: #f44336;
}
.clear {
	clear: both;
}
#questions_insijam h2 {
	position: relative ;
}
#questions_insijam h2 span {
	position: absolute;
    color: #fff;
    bottom: -56%;
    font-size: 16px;
    left: 68%;
}