@font-face {
	font-family: 'mtavruli';
	src: url(../fonts/bpg_nino_mtavruli_normal.ttf) format('truetype');
}

* {
	box-sizing:border-box;
}

body {
	background: #dddddd;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
}

form {
	margin: 0px;
	padding: 0px;
}


br {
	clear: both;
}

fieldset {
	border: 1px solid #999;
	border-radius: 7px;
	margin: auto;
}

legend {
	margin-left: 15px;
	color: #000;
}

a {
	color: #000;
	text-decoration: none;
}

input, textarea {
	font-size: 12px;
	box-sizing: content-box;
}

.topic-title {
	margin: 8px 25px 12px 5px;
	color: #031e27;
	font-family: mtavruli;
	font-size: 20px;
	font-weight: bold;
	text-align: left;
}


.total-tickets {
	margin: 8px 5px;
	color: #a29d0d;
	font-family: mtavruli;
	font-size: 20px;
	font-weight: bold;
}


.topics-menu .topics-title {
	margin: 8px 10px;
	color: #031e27;
	font-family: mtavruli;
	font-size: 18px;
	font-weight: bold;
}

.topics-menu a {
	display: block;
	margin: 8px 5px;
	padding: 10px 10px 10px 30px;
	font-size: 13px;
	text-decoration: none;
	border: 1px solid #c6c6c6;
	background: #eaeaea;
	border-radius: 10px;
}

.topics-menu a .num {
	display: block;
	float: left;
    margin-left: -30px;
    text-align: right;
    width: 25px;
}

.topics-menu a:hover {
	border: 1px solid #b3b3b3;
	background: #dddddd;
	color: #a29d0d;
}

.topics-menu a.active {
	border: 1px solid #b3b3b3;
	background: #15a015;
	color: #000;
}

.start-button {
	padding: 12px 25px 12px 25px;
	background: #0b2b36;
	background-image: linear-gradient(to bottom, #0b2b36, #377689);
	border: none;
	border-radius: 8px;
	font-family: mtavruli;
	color: #FFF;
	font-size: 18px;
	cursor: pointer;
}

.start-button:hover {
	background: #061b22;
	background-image: linear-gradient(to bottom, #061b22, #316c7e);
}

.start-test-page {
	width: 750px;
	margin: auto;
}

.topics-title {
	margin: 8px 5px;
	color: #031e27;
	font-family: mtavruli;
	font-weight: bold;
	font-size: 18px;
}

.topics {
	float: left;
	margin-top: 10px;
	width: 750px;
	border: 5px solid #133845;
	border-radius: 10px;
	background: #377689;
}

.topics-label {
	color: #FFF;
	float: left;
	width: 360px;
	margin: 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 8px 10px; 
}

.topics-input {
	float: left;
	margin-right: 5px;
	overflow: hidden;
}

#test-content {
	width: 1200px;
	margin: 10px auto 0 auto;
}

#test_div {
	transition: all 0.2s ease 0s;
}

#ticket {
	position: relative;
	margin: auto;
	width: 900px;
	padding-top: 2px;
	border: 5px solid #133845;
}

#ticket.big {}

#ticket.small {}

.description-button {
	box-sizing: border-box;
	display: none;
	position: absolute;
	width: 50px; height: 50px;
	top: 10px; right: 10px;
	background: url(../images/question.png) left no-repeat;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all 0.5s ease;
	z-index: 300;
}

.description-button-selected {
	background-position: right;
}


#ticket-description {
	position: absolute;
	width: 90%;
	left: 5%; top: 35px;
	max-height: 80%;
	border-radius: 8px;
	padding: 10px;
	background: #FFF;
	overflow-y: auto;
	z-index: 200;
	display: none;
}

#ticket-description .title {
	color: #124557;
	font-size: 18px;
	font-weight: bold
}

#ticket-description .text {
	font-size: 14px;
	line-height: 20px;
}


.video-button {
	box-sizing: border-box;
	display: none;
	position: absolute;
	width: 50px; height: 50px;
	top: 10px; right: 70px;
	background: url(../images/video.png) left no-repeat;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all 0.5s ease;
	z-index: 300;
}

.video-button-selected {
	background-position: right;
}


#video-description {
	position: absolute;
	width: 90%;
	left: 5%; top: 35px;
	border-radius: 8px;
	padding: 10px;
	background: #FFF;
	z-index: 200;
	display: none;
}

#video-description .title {
	color: #124557;
	font-size: 18px;
	font-weight: bold
}

#video-description #text {
	font-size: 16px;
	line-height: 20px;
}

#video-description #video {
	text-align: center;
}


.ticket-id {
	display: none;
	position: absolute;
	padding: 20px  15px;
	top: 10px; left: 10px;
	background: #377689;
	border-radius: 8px;
	opacity: 0.9;
	border: none;
	transition: all 0.5s ease;
	z-index: 300;
	font-weight: bold;
	font-size: 14px;
	color: #fff;
}


.question-text {
	margin: 0 2px 0 2px;
	padding: 5px 10px;
	min-height: 50px;
	color: #FFF;
	font-size: 16px;
	background: #0b2b36;
	background-image: linear-gradient(to bottom, #0b2b36, #377689);
}

#ticket.small .question-text  {
	padding: 15px 10px;
	line-height: 25px;
}

.question-image img {
	display: block;
	height: auto;
	width: 100%;
	border: none;
}

.answers {
	position: relative;
	border: 2px solid #fff;
	width: 100%;
	height: 180px;
	background: #0b2b36;
	background-image: linear-gradient(to right, #0b2b36, #377689);
}

#ticket.small .answers  {
	height: 330px;
}

.answers.two {
	height: 160px;
}

.answers.two  .t-answer {
	height: 100%;
	border-bottom: none;
}

.answers .t-answer {
	float: left;
	height: 50%;
	width: 50%;
	display: table;
	padding: 5px;
	transition: all 0.5s ease;
	margin: 0;
	font-size: 14px;
	line-height: 1.3;
	color: #FFF;
	cursor: pointer;
	transition: all 0.2s ease 0s;
}

.true-answer {
	background-color: green;
}

.false-answer {
	background: red;
}

.answers .t-answer-1 {
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

.answers .t-answer-2 {
	border-bottom: 2px solid #fff;
}

.answers .t-answer-3 {
	border-right: 2px solid #fff;
}

.t-answer .answer-num {
    display: table-cell;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
	text-align: center;
	transition: all 0.2s ease 0s;
    vertical-align: middle;
    width: 40px;
}

.t-answer .answer-num  span {
    background: #fff;
	color: #042f4f;
    border-radius: 5px;
    display: inline-block;
    padding: 5px 0;
    width: 100%;
}

.answers .t-answer .answer-text {
	display: table-cell;
    font-size: 14px;
    padding-left: 10px;
    vertical-align: middle
}


#ticket.tooltipster #ticket-description {
	position: absolute;
	width: 90%;
	left: 30px; top: 35px;
	border-radius: 8px;
	padding: 10px;
	background: #FFF;
	z-index: 200;
	display: none;
}

#ticket.tooltipster #ticket-description .title {
	color: #124557;
	font-size: 14px;
	font-weight: bold
}

#ticket.tooltipster #ticket-description .text {
	font-size: 12px;
	line-height: 14px;
}

#ticket.tooltipster .question-text {
	font-size: 12px;
}

#ticket.tooltipster .answers {
	height: 160px;
}

#ticket.tooltipster .t-answer .answer-text {
	font-size: 12px;
}



.questions-table tr td {
	background: #CCC;
}

.questions-table tr td.current-bullet {
	background: #e47b00;
	box-shadow: 0 0 10px #fff inset;
	transition: all 0.2s ease 0s;
}

.questions-table tr td.true-bullet {
	background: #21a008;
	box-shadow: 0 0 10px #fff inset;
	transition: all 0.2s ease 0s;
}

.questions-table tr td.false-bullet {
	background: #bf0a17;
	box-shadow: 0 0 10px #fff inset;
	transition: all 0.2s ease 0s;
}


.test-result {
	margin: 20px 10px;
	text-align: center;
}

.test-result .result-text {
	font-size: 26px;
	font-weight: bold;
	font-family: mtavruli;
}

.test-result .false-result {
	font-size: 26px;
	font-weight: bold;
	font-family: mtavruli;
	color: #880505;
}

.test-result .true-result {
	font-size: 26px;
	font-weight: bold;
	font-family: mtavruli;
	color: #009e07;
}



.questions-panel {
	width: 1000px;
	margin: 20px auto 0 auto ;
	display: table;
}

.auto-show {
	float: right;
	margin: 8px auto 0 auto;
}

.auto-show .show-correct {
	float: left;
	overflow: hidden;
	margin: 0 15px 0 5px;
	padding: 0 10px;
}

.auto-show .show-correct input[type=checkbox] {
    float: left;
    margin-right: 5px;
    overflow: hidden;
}


.inputs-panel {
	display: table-cell;
	vertical-align: top;
	text-align: right;
}

.next-ticket {
	padding: 20px 35px 18px 10px;
	border-radius: 8px;
	border: none;
	background: #377689;
	background-image: url(../images/tests/arrow.png);
	background-repeat: no-repeat;
	background-position: 155px 18px;
	color: #FFF;
	font-family: mtavruli;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.5s ease;
}

.next-ticket:hover {
	background-color: #2d6171;
}


.omit-button, .restart-button, .restart-button {
	margin: 0 10px;
	padding: 20px 10px 18px 10px;
	border-radius: 8px;
	border: none;
	background: #377689;
	color: #FFF;
	font-family: mtavruli;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.5s ease;
}

.omit-button:hover, .restart-button:hover, .restart-button:hover {
	background-color: #2d6171;
}


.box-panel {
	display: table-cell;
}

.box {
	float: left;
	margin: 0 10px;
}

.box .box-values {
	display: block;
	border-radius: 10px;
	padding: 12px 0;
	width: 80px;
	font-size: 28px;
	font-weight: bold;
	text-align: center;
}

.box .label {
	display: block;
	margin-top: 5px;
	text-align: center;
}



.box #true {
	background: #b6ff99;
	color: #009e07;
}

.box #false {
	background: #ff7d7d;
	color: #880505;
}

.box #ticket-number {
	display: block;
	background: #e3e3e3;
	border-radius: 10px;
	padding: 12px 0;
	width: 100px;
	text-align: center;
}

.box #ticket-number #ticket-number-now {
	font-size: 28px;
	font-weight: bold;
}

.box #ticket-number #ticket-number-sum {
	font-size: 14px;
	font-weight: bold;
}

.box .timer {
	display: block;
	background: #e3e3e3;
	border-radius: 10px;
	padding: 12px 0;
	width: 120px;
	font-size: 28px;
	font-weight: bold;
	text-align: center;
}


.light-skin  #ticket {
	border-color: #fff;
}

.light-skin .question-text {
	background: #c6c6c6;
	background-image: linear-gradient(to right, #c6c6c6, #9f9f9f);
	background-image: linear-gradient(to bottom, #c6c6c6, #9f9f9f);
	color: #000;
}

.light-skin .answers {
	background: #c6c6c6;
	background-image: linear-gradient(to right, #c6c6c6, #9f9f9f);
}

.light-skin .answers .answer-text {
	color: #000;
}


.skin-menu {
	position: relative;
	background: #cbcbcb;
	border: 1px solid #7a7a7a;
	border-radius: 3px;
	width: 180px;
	z-index: 1000;
}

.skin-menu .title {
	padding: 5px 0;
	background: #5e5e5e;
	border-bottom: 1px solid #7a7a7a;
	color: #fff;
	text-align: center;
	font: 16px mtavruli;
}

.skin-menu .buttons {
	float: left;
	margin-left: 32px;
	padding: 5px 0;
}

.skin-menu .button-default {
	float: left;
	padding: 6px 15px;
	background: #dbdbdb;
	border: 1px solid #7a7a7a;
	border-radius: 5px;
	font-size: 14px;
	cursor: pointer;
}

.skin-menu  .skin-button-dark {
	border-right: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.skin-menu  .skin-button-light {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.skin-menu .button-default input[type=radio] {
	position: absolute;
	clip:rect(0,0,0,0);
}

.skin-menu .active {
	background: #c4c4c4;
	box-shadow:inset 0 3px 10px 0 #a0a0a0;
}

#dialog-overlay {
	width: 100%; 
	height: 100%;
	filter: alpha(opacity=50);
	opacity: 0.5;
	background: #000;
	position: absolute;
	top: 0; left: 0;
	z-index: 100;
	display: none;
}

.test-loader {
	display: none;
}


.pagination {
	clear: both;
	padding: 10px 0 10px 0;
	font-size: 12px;
}
.pagination a {
	color: #000;
	margin: 0 2px;
	font-size: 12px;
	text-decoration: none;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	background: #f7f7f7;
	padding: 4px 6px;
}
.pagination a:hover {
	background: #eaeaea;
}
.pagination span {
	margin: 0 2px;
	color: #ccc;
	border: 1px solid #f1f1f1;
	border-radius: 3px;
	background: #fbfbfb;
	padding: 4px 6px;
}
.pagination b {
	margin: 0 2px;
	color: #000;
	border: 1px solid #bababa;
	border-radius: 3px;
	background: #e7e7e7;
	padding: 4px 6px;
}


.clear {
	clear: both;
}