/**** RESET *******************************************/

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: top;
}

*:focus {
	outline: none;
}

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:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input, select {
	vertical-align: middle;
}

a {
	background: transparent;
}

/**** FONTS *******************************************/

@font-face {
    font-family: 'v2018';
    src: 	url('fonts/GothamProRegular.eot');
    src: 	url('fonts/GothamProRegular.eot?#iefix') format('embedded-opentype'),
			url('fonts/GothamProRegular.woff') format('woff'),
			url('fonts/GothamProRegular.ttf') format('truetype');
	font-style: normal;
	font-weight: 500;
}

@font-face {
    font-family: 'v2018';
    src: 	url('fonts/GothamProLight.eot');
    src: 	url('fonts/GothamProLight.eot?#iefix') format('embedded-opentype'),
	 		url('fonts/GothamProLight.woff') format('woff'),
			url('fonts/GothamProLight.ttf') format('truetype');
	font-style: normal;
	font-weight: 300;
}

@font-face {
    font-family: 'v2018';
    src: 	url('fonts/GothamProBold.eot');
    src: 	url('fonts/GothamProBold.eot?#iefix') format('embedded-opentype'),
	 		url('fonts/GothamProBold.woff') format('woff'),
			url('fonts/GothamProBold.ttf') format('truetype');
	font-style: normal;
    font-weight: 700;
}

/**** BASE *******************************************/

html
{
	position: relative;
	height: 100%;
}

body
{
	font: 500 14px/1.3 'v2018', sans-serif;
	/*text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25);*/
	letter-spacing: 0.02em;
	word-wrap: break-word;
	background-color: #faf8f8;
	color: #4e4e4e;
	position: relative;
	height: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
    color: #e4000f;
}

/**** BASE PARTS *******************************************/

body {
	padding: 0;
	padding-left: 400px;
	-webkit-transition	: padding-left 1.5s;
	-moz-transition		: padding-left 1.5s;
	-o-transition		: padding-left 1.5s;
	transition			: padding-left 1.5s;
}

body.admin,
body.enter,
body.enter_poll,
body.enter_full,
body.news,
body.chart_activity,
body.chart_visit,
body.chart_data {
	padding-left: 0;
}

header, footer, main, aside, section {
	width: 100%;
	min-width: 260px;
	clear: both;
}

main {
	height: 100%;
}

.main-scroll {
	position: relative;
	height: calc( 100% - 60px );
	padding: 20px 7px 20px 0;
}

section {
	padding: 0;
	position: relative;
	overflow: hidden;
}

main section {
	padding: 0 30px 30px;
}

.section-header {
	font-size: 18px;
	color: #252525;
	margin-bottom: 20px;
}

.bottom-no-sep {
	padding-bottom: 0;
}

main:after,
section:after,
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

aside {
	width: 400px;
	max-width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: #fff;
	-webkit-box-shadow	: 1px 1px 3px 0px rgba(170, 150, 150, 0.2);
	-moz-box-shadow		: 1px 1px 3px 0px rgba(170, 150, 150, 0.2);
	box-shadow			: 1px 1px 3px 0px rgba(170, 150, 150, 0.2);
	z-index: 100000;
	-webkit-transition	: left 1.5s;
	-moz-transition		: left 1.5s;
	-o-transition		: left 1.5s;
	transition			: left 1.5s;
}

.section-half {
	width: 50%;
	float: left;
	position: relative;
	overflow: hidden;
}

.section-half > .section-header {
	left: 0;
}

@media (max-width: 1199px) {
	body {
		padding-left: 0;
	}

	main section {
		padding: 0 0 30px 15px
	}

	.section-half {
		width: 100% !important;
		padding-bottom: 30px;
	}
}

/****  SIDE CLOSED *******************************************/

.side-close {
	content: '';
	position: fixed;
	top: 60px;
	left: 0;
	width: 2px;
	height: 100%;
	-webkit-transition-duration	: 0.5s;
	-moz-transition-duration	: 0.5s;
	-o-transition-duration		: 0.5s;
	transition-duration			: 0.5s;
	background-color: rgba(170, 150, 150, 0.5);
	z-index: 10400;

}

.admin .side-close,
.enter .side-close,
.enter_poll .side-close,
.enter_full .side-close,
.news .side-close,
.chart_activity .side-close,
.chart_visit .side-close,
.chart_data .side-close {
	display: none;
}


.side-close:hover {
	width: 10px;
	background-color: rgba(170, 150, 150, 0.85);
}

.side-close-inner {
	position: fixed;
	top: calc( 50% - 39px );
	left: 0;
	width: 8px;
	height: 78px;
	-webkit-border-radius	: 0 4px 4px 0;
	-moz-border-radius		: 0 4px 4px 0;
	border-radius			: 0 4px 4px 0;
	-webkit-transition-duration	: 0.5s;
	-moz-transition-duration	: 0.5s;
	-o-transition-duration		: 0.5s;
	transition-duration			: 0.5s;
	cursor: pointer;
	background-color: #019ee3;
	z-index: 105000;
}

.side-close:hover .side-close-inner {
	width: 12px;
}

.side-close-dots {
	height: 100%;
	position: relative;
}

.side-close-dots:before,
.side-close-dots:after {
	content: '';
	display: block;
	position: absolute;
	height: 4px;
	width: 4px;
	left: 2px;
	-webkit-transition-duration	: 0.5s;
	-moz-transition-duration	: 0.5s;
	-o-transition-duration		: 0.5s;
	transition-duration			: 0.5s;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.side-close-dots:before { top: 34px; }
.side-close-dots:after { bottom: 34px; }

.side-close:hover .side-close-dots:before,
.side-close:hover .side-close-dots:after { height: 10px; left: 4px; }
.side-close:hover .side-close-dots:before { top: 25px; }
.side-close:hover .side-close-dots:after { bottom: 25px; }

body.side-toggle {
	padding-left: 0px;
}

body.side-toggle aside {
	left: -400px;
}

body.side-toggle .main-control {
	right: -130px;
}

@media (max-width: 1199px) {
	aside {
		left: -400px;
	}

	body.side-toggle aside {
		left: 0px;
	}

	.main-control {
		right: -130px;
	}

	body.side-toggle .main-control {
		right: 30px;
	}

	.side-close-inner {
		width: 14px;
	}

	.side-close-dots:before,
	.side-close-dots:after {
		left: 5px;
	}
}

/****  ELEMENTS *******************************************/

.mCSB_scrollTools { opacity: 0.50; filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; }

.mCustomScrollBox:hover .mCSB_dragger_bar { background-color: #019ee3 !important; }

.inner-block {
	background-color: #fff;
	-webkit-border-radius	: 7px;
	-moz-border-radius		: 7px;
	border-radius			: 7px;
	-webkit-box-shadow	: 0px 1px 3px 1px rgba(170, 150, 150, 0.2);
	-moz-box-shadow		: 0px 1px 3px 1px rgba(170, 150, 150, 0.2);
	box-shadow			: 0px 1px 3px 1px rgba(170, 150, 150, 0.2);
	position: relative;
}

.inner-block .section-header {
	top: 20px;
}

.select-option-wrp {
	font-size: 0;
	display: inline-block;
}

.select-button,
.select-option,
.select-option-toggle {
	display: inline-block;
	padding: 7px 10px;
	color: #fff;
	background-color: #777;
	-webkit-transition-duration	: 0.5s;
	-moz-transition-duration	: 0.5s;
	-o-transition-duration		: 0.5s;
	transition-duration			: 0.5s;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 300;
	margin: 6px 12px 6px 0;
}

/* .select-option:last-child,
.select-option-toggle:last-child {
	margin-right: 0;
} */

.select-button:hover,
.select-option.active,
.select-option:hover,
.select-option-toggle.active,
.select-option-toggle:hover {
	color: #fff;
	background-color: #019ee3;
}

.select-option.dis,
.select-option-toggle.dis {
	cursor: default;
	color: #ccc;
	background-color: #f3f3f3;
}

.select-option.pred {
	color: #aaa;
	background-color: #f3f3f3;
	position: relative;
	-webkit-box-shadow	: inset 0px 0px 0px 1px #bbb;
	-moz-box-shadow		: inset 0px 0px 0px 1px #bbb;
	box-shadow			: inset 0px 0px 0px 1px #bbb;
}

.select-option.pred:after {
	content: 'Прогноз';
	position: absolute;
	top: -15px;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 11px;
	color: #999;
}

.select-option-toggle.toggle-variants .var2 { display: none; }
.select-option-toggle.toggle-variants.active .var1 { display: none; }
.select-option-toggle.toggle-variants.active .var2 { display: inline; }

div.sep-line {
	padding: 0 30px 25px;
}

.sep-line:before {
	content: '';
	display: block;
	height: 1px;
	background-color: rgba(170, 150, 150, 0.15);
}

circle {
  fill: rgba(0,0,0,0);
  stroke: #e6e6e6;
  stroke-width: 10;
  stroke-dasharray: 408px 408px;
}
circle:nth-child(2n) {
  fill: rgba(0,0,0,0);
  stroke: #019ee3;
  stroke-width: 10;
}

.circle-diag {
	height: 160px;
	width: 160px;
}

.circle-diag-num {
	position: absolute;
	width: 100%;
	text-align: center;
	font-size: 36px;
	top: calc( 50% - 22px );
	color: #019ee3;
	font-weight: 300;
	padding-left: 4px;
}

.circle-diag-num:after {
	content: '%';
	display: inline-block;
	font-size: 24px;
	padding-bottom: 6px;
	vertical-align: bottom;
	font-weight: 300;
}

/****  SIDEBAR-HEADER *******************************************/

#sidebar-header {
	height: 60px;
	padding: 20px 20px 20px 73px;
	color: #fff;
	background: #019ee3 url('design/control.person.png') left 18px center no-repeat;
	font-size: 16px;
	font-weight: 300;
}

.admin #sidebar-header,
.enter #sidebar-header,
.enter_poll #sidebar-header,
.enter_full #sidebar-header,
.news #sidebar-header,
.chart_activity #sidebar-header,
.chart_visit #sidebar-header,
.chart_data #sidebar-header {
	width: 100%;
	max-width: 400px;
	min-width: 320px;
	position: fixed;
	top: 0;
	left: 0;
}

/**** NEWS-SELECT *******************************************/

#news-select {
	text-align: center;
	border-bottom: 1px solid rgba(170, 150, 150, 0.15);
	padding: 7px;
}

.news-block {
	position: relative;
	height: calc( 100% - 130px );
	padding: 20px 10px 20px 30px;
}

.news-item {
	padding: 20px 5px 20px 0;
	border-bottom: 1px solid rgba(170, 150, 150, 0.15);
	overflow: hidden;
}

.news-item:first-child {
	padding-top: 0;
}

.news-global { display: none !important;}
.n-global .news-mo { display: none !important; }
.n-global .news-global { display: block !important; }

.news-title {
	font-size: 14px;
	font-weight: 700;
	color: #252525;
	text-transform: uppercase;
}

.news-text {
	margin-top: 10px;
	font-size: 13px;
	font-weight: 300;
}

.news-source {
	font-size: 13px;
	margin-top: 10px;
	color: #a0cbd2;
}

.news-source:before {
	content: 'Источник:';
	display: inline-block;
	padding-right: 10px;
	color: #b7b7b7;
}

/****  MAIN-HEADER *******************************************/

#main-header {
	height: 60px;
	padding: 20px 30px;
	background-color: #fff;
	color: #252525;
	font-size: 16px;
	-webkit-box-shadow	: 1px 1px 3px 0px rgba(170, 150, 150, 0.2);
	-moz-box-shadow		: 1px 1px 3px 0px rgba(170, 150, 150, 0.2);
	box-shadow			: 1px 1px 3px 0px rgba(170, 150, 150, 0.2);
}

.admin #main-header,
.enter #main-header,
.enter_poll #main-header,
.enter_full #main-header,
.news #main-header,
.chart_activity #main-header,
.chart_visit #main-header,
.chart_data #main-header {
	padding-left: 430px;
}

.main-control {
	position: absolute;
	top: 0;
	right: 30px;
	white-space: nowrap;
	-webkit-transition	: right 1.5s;
	-moz-transition		: right 1.5s;
	-o-transition		: right 1.5s;
	transition			: right 1.5s;
}

.control-environment {
	display: inline-block;
	background: #fff url('design/control.exit.png') right center no-repeat;
	padding: 20px 53px 20px 20px;
	-webkit-transition-duration	: 0.5s;
	-moz-transition-duration	: 0.5s;
	-o-transition-duration		: 0.5s;
	transition-duration			: 0.5s;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
	cursor: pointer;
	font-weight: 300;
	margin-right: 30px;
}

.control-environment:hover {
	color: #e4000f;
}

.control-refresh {
	display: inline-block;
	background: #fff url('design/control.refresh.png') right center no-repeat;
	padding: 20px 53px 20px 20px;
	-webkit-transition-duration	: 0.5s;
	-moz-transition-duration	: 0.5s;
	-o-transition-duration		: 0.5s;
	transition-duration			: 0.5s;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
	cursor: pointer;
	font-weight: 300;
	margin-right: 30px;
}

.control-refresh:hover {
	color: #e4000f;
}

.control-exit {
	display: inline-block;
	-webkit-transition-duration	: 0.5s;
	-moz-transition-duration	: 0.5s;
	-o-transition-duration		: 0.5s;
	transition-duration			: 0.5s;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
	font-weight: 300;
	z-index: 1000;
	position: relative;
}

.control-exit input[type=submit] {
	display: block;
	padding: 20px 53px 20px 20px;
	background: url('design/control.exit.png') right center no-repeat;
	-webkit-transition-duration	: 0.5s;
	-moz-transition-duration	: 0.5s;
	-o-transition-duration		: 0.5s;
	transition-duration			: 0.5s;
	cursor: pointer;
}

.control-exit input[type=submit]:hover {
	color: #e4000f;
}

@media (max-width: 1599px) {
	.enter .control-refresh,
	.enter_poll .control-refresh,
	.enter_full .control-refresh {
		display: none;
	}
}

@media (max-width: 1199px) {
	.enter .main-title,
	.enter_poll .main-title,
	.enter_full .main-title {
		display: none;
	}
}

@media (max-width: 767px) {
	.enter #main-header,
	.enter_poll #main-header,
	.enter_full #main-header {
		background-color: #019ee3;
	}

	.main-title {
		display: none;
	}

	.control-refresh {
		margin-right: 0;
	}

	.enter .control-exit,
	.enter_poll .control-exit,
	.enter_full .control-exit {
		display: block;
		position: fixed;
		top: 0;
		right: 5px;
	}

	.enter .control-exit input[type="submit"],
	.enter_poll .control-exit input[type="submit"],
	.enter_full .control-exit input[type="submit"] {
    	padding-right: 37px;
	}

	.enter .control-exit input[type=submit]:hover,
	.enter_poll .control-exit input[type=submit]:hover,
	.enter_full .control-exit input[type=submit]:hover {
		color: #fff;
	}
}

/**** VISIT-TIME *******************************************/

.time-control .select-option-wrp:first-child {
	padding-right: 30px;
}

/**** CITY-VISIT *******************************************/

.city-visit__list {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/* justify-content: space-between; */
	flex-direction: column;
	height: calc( 7 * 60px);
}

.city-visit {
	width: calc(33% - 13px);
	margin-bottom: 15px;
}

.city-visit .inner-block {
	overflow: hidden;
	padding: 10px 90px 10px 20px;
	font-size: 14px;
	position: relative;
}

.city-visit .inner-block:before {
	content: '';
	position: absolute;
	display: block;
	width: 86px;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: #019ee3;
	-webkit-transition	: background-color 0.5s;
	-moz-transition		: background-color 0.5s;
	-o-transition		: background-color 0.5s;
	transition			: background-color 0.5s;
}

.city-visit-number {
	position: absolute;
	width: 86px;
	top: calc(50% - 11px);
	right: 0;
	text-align: center;
	color: #fff;
	font-size: 18px;
}

.city-visit-number:after {
	content: '%';
	display: inline-block;
	padding-left: 3px;
	font-size: 16px;
	padding-bottom: 1px;
	vertical-align: bottom;
	font-weight: 300;
}

@media (max-width: 1349px) {
	.city-visit__list {
		height: calc( 10 * 60px);
	}
}


@media (max-width: 1199px) {
	.city-visit__list {
		height: calc( 10 * 60px);
	}

	.city-visit {
		width: calc(50% - 10px);
	}
}

@media (max-width: 767px) {
	.city-visit__list {
		height: auto;
	}

	.city-visit {
		width: 100%;
		margin-bottom: 15px;
	}
}

/**** VISIT-TOTAL *******************************************/

.visit-total .inner-block {
	overflow: hidden;
	padding: 15px 30px;
}

.total-back {
	height: 0;
	-webkit-transition-duration	: 0.5s;
	-moz-transition-duration	: 0.5s;
	-o-transition-duration		: 0.5s;
	transition-duration			: 0.5s;
	overflow: hidden;
	cursor: pointer;
	background: #fff url('design/control.back.png') left top no-repeat;
	padding-left: 53px;
	font-size: 16px;
	font-weight: 300
}

.total-back:hover {
	color: #019ee3;
}

.show-division .total-back {
	height: 70px;
	padding-top: 9px;
}

.total-position {
	position: relative;
	height: 0;
	font-size: 14px;
	padding: 0 30px 0 405px;
	-webkit-transition	: height 0.5s;
	-moz-transition		: height 0.5s;
	-o-transition		: height 0.5s;
	transition			: height 0.5s;
	overflow: hidden;
}

.global .total-position {
	cursor: pointer;
}

.total-position.v0 { height: 60px; }
.show-division .total-position.v0 { height: 0; }
.total-position.show-that { height: auto; }
.show-division .total-position.v0.show-that {
	height: 65px;
	border-bottom: 1px dashed #019ee3;
	margin-bottom: 5px;
	font-weight: 700;
}

.total-name {
	position: absolute;
	width: 280px;
	top: 0;
	left: 0;
	bottom: 0;
	padding: 17px 0 0;
	font-size: 14px;
	text-align: right;
}

.total-sign {
	position: absolute;
	top: 0;
	left: 290px;
	width: 50px;
	height: 50px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.total-photo {
	position: absolute;
	top: 0;
	left: 345px;
	width: 50px;
	height: 50px;
	-webkit-border-radius	: 50%;
	-moz-border-radius		: 50%;
	border-radius			: 50%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.total-bar {
	position: relative;
	margin-top: 17px;
	height: 18px;
	background-color: #f3f3f3;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
}

.total-bar-inner {
	position: absolute;
	width: 0;
	top: 4px;
	left: 0;
	height: 10px;
	background-color: #a0cbd2;
	-webkit-transition	: height 0.15s, top 0.15s, width 1.5s;
	-moz-transition		: height 0.15s, top 0.15s, width 1.5s;
	-o-transition		: height 0.15s, top 0.15s, width 1.5s;
	transition			: height 0.15s, top 0.15s, width 1.5s;
	-webkit-border-radius	: 2px 0 0 2px;
	-moz-border-radius		: 2px 0 0 2px;
	border-radius			: 2px 0 0 2px;
}
.total-number {
	position: absolute;
	width: 100px;
	top: -7px;
	left: 0;
	height: 31px;
	text-align: center;
	padding: 1px 0 0 4px;
	color: #fff;
	background-color: #a0cbd2;
	font-size: 22px;
	line-height: 26px;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
	border: 2px solid #a0cbd2;
	-webkit-transition	: background-color 0.15s, left 1.5s;
	-moz-transition		: background-color 0.15s, left 1.5s;
	-o-transition		: background-color 0.15s, left 1.5s;
	transition			: background-color 0.15s, left 1.5s;
}

.total-number:after {
	content: '%';
	display: inline-block;
	padding-left: 3px;
	font-size: 17px;
	vertical-align: bottom;
	font-weight: 300;
}

.v0:nth-last-child(1) .total-bar-inner, .v0:nth-last-child(1) .total-number,
.v0:nth-last-child(2) .total-bar-inner, .v0:nth-last-child(2) .total-number,
.v0:nth-last-child(3) .total-bar-inner, .v0:nth-last-child(3) .total-number {
	background-color: #da9779;
	border-color: #da9779;
}

.v0:nth-child(1) .total-bar-inner, .v0:nth-child(1) .total-number,
.v0:nth-child(2) .total-bar-inner, .v0:nth-child(2) .total-number,
.v0:nth-child(3) .total-bar-inner, .v0:nth-child(3) .total-number {
	background-color: #019ee3;
	border-color: #019ee3;
}

.total-position:hover {	border-color: #a0cbd2; }
.total-position:hover .total-name {	color: #a0cbd2; }
.total-position:hover .total-number {
	background-color: #fff;
	color: #a0cbd2;
	font-weight: 700;
}
.total-position:hover .total-bar-inner {
	top: 8px;
	height: 2px;
}
.v0:nth-last-child(1):hover .total-name, .v0:nth-last-child(1):hover .total-number,
.v0:nth-last-child(2):hover .total-name, .v0:nth-last-child(2):hover .total-number,
.v0:nth-last-child(3):hover .total-name, .v0:nth-last-child(3):hover .total-number {
	color: #da9779;
}
.v0:nth-last-child(1):hover,
.v0:nth-last-child(2):hover,
.v0:nth-last-child(3):hover {
	border-color: #da9779;
}

.v0:nth-child(1):hover .total-name, .v0:nth-child(1):hover .total-number,
.v0:nth-child(2):hover .total-name, .v0:nth-child(2):hover .total-number,
.v0:nth-child(3):hover .total-name, .v0:nth-child(3):hover .total-number {
	color: #019ee3;
}
.v0:nth-child(1):hover,
.v0:nth-child(2):hover,
.v0:nth-child(3):hover {
	border-color: #019ee3;
}

.total-data.show-that {
	padding: 30px;
}

.total__list {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/* justify-content: space-between; */
}

.total-block {
	width: 25%;
	position: relative;
	padding: 0 10px 10px;
}

.total-portrait {
	width: 140px;
	height: 140px;
	margin: 20px auto;
	-webkit-border-radius	: 50%;
	-moz-border-radius		: 50%;
	border-radius			: 50%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.total-percent {
	height: 160px;
	width: 160px;
	position: relative;
	margin: 10px auto;
}

.total-dname {
	width: 100%;
	text-align: center;
	font-size: 14px;
}

@media (max-width: 767px) {
	.visit-total .inner-block {
	    padding: 0;
	}

	.total-name {
		text-align: left;
		position: relative;
		margin-bottom: 15px;
	}

	.total-sign,
	.total-photo {
		position: relative;
		display: inline-block;
		left: 0;
		margin-right: 15px;
	}

	.total-bar {
		position: relative;
		margin-bottom: 20px;
	}

	.total-position {
		padding: 0;
	}

	.total-position.show-that {
		padding: 0;
	}

	.total-position.v0 {
		height: auto;
		padding: 15px 30px 0 30px;
		border-bottom: 1px dashed #ddd;
	}

	.show-division .total-position.v0 {
		padding: 0;
	}

	/* .total-position.show-that {
		height: auto;
		padding: 32px 30px 0 30px;
	} */

	.show-division .total-position.v0 {
		border: none;
	}

	.show-division .total-position.v0.show-that {
		height: auto;
		padding: 32px 30px 0 30px;
	}

	.total-block {
		width: 50%;
	}
}

/**** STAT-TOTAL *******************************************/

.stat-total .inner-block {
	overflow: hidden;
	padding: 30px 30px;
}

#stat-total-chart {
	height: 500px;
}

.show-division .timezone-hide {
	display: none;
}

.highcharts-container {
	margin: 0 auto;
}

.highcharts-plot-band {
	/* fill: rgba(55, 55, 55, 0.25); */
}

.highcharts-legend-box {
	fill: #fff;
	stroke: #ddd;
}

.highcharts-legend-item text {
	font-size: 13px !important;
	font-weight: 300 !important;
	color: #252525 !important;
}

.highcharts-axis-0 text {
	font-size: 13px !important;
	font-weight: 500 !important;
	color: #019ee3 !important;
	fill: #019ee3 !important;
}

.highcharts-axis-0 .highcharts-axis-line {
	stroke: #019ee3;
}

.highcharts-axis-1 text {
	font-size: 13px !important;
	font-weight: 500 !important;
	color: #5ba2e5 !important;
	fill: #5ba2e5 !important;
}

.highcharts-axis-1 .highcharts-axis-line {
	stroke: #5ba2e5;
}

.highcharts-yaxis .highcharts-axis-line {
	stroke-width: 2px;
}

.highcharts-text-outline {
	display: none;
}

.highcharts-data-label text {
	font-size: 15px !important;
	font-weight: 300 !important;
	/* text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25); */
	color: #454545 !important;
	fill: #454545 !important;
}

.highcharts-tooltip text tspan:first-child {
	font-size: 20px !important;
	font-weight: 700 !important;
}

.highcharts-annotation-label-box {
	fill: transparent !important;
	stroke: transparent !important;
}

.highcharts-annotation-label text {
	font-size: 15px !important;
	font-weight: 500 !important;
	color: #777 !important;
	fill: #777 !important;
}

@media (max-width: 767px) {
	#stat-total-chart {
		height: 300px;
	}

	.stat-total .inner-block {
		padding: 30px 0;
	}
}

/**** FINAL *******************************************/

.global .final {
	display: none;
}

.global.show-division .final {
	display: block;
}

.final .inner-block {
	overflow: hidden;
	padding: 30px 30px;
}

#final-chart {
	height: 500px;
}

@media (max-width: 767px) {
	#final-chart {
		height: 300px;
	}

	.final .inner-block {
		padding: 30px 0;
	}
}

/**** EXIT POLL INFO *******************************************/

#poll-info {
	/* margin-bottom: 55px; */
	max-width: 1000px;
	display: none;
}

.show-division #poll-info {
	display: block;
}

.poll-votes .inner-block {
	padding: 30px 0;
}

.show-details .poll-votes .inner-block {
	padding-bottom: 30px;
}

.poll-votes-control {
	padding-bottom: 25px;
	/* text-align: center; */
}

.poll-votes-control .select-option-wrp:first-child {
	padding-right: 30px;
}

.votes-position {
	position: relative;
	height: 0;
	font-size: 14px;
	padding: 0 30px 0 340px;
	overflow: hidden;
	-webkit-transition	: height 0.5s;
	-moz-transition		: height 0.5s;
	-o-transition		: height 0.5s;
	transition			: height 0.5s;
}

.votes-position.ev0 { height: 40px; }
.show-division .votes-position.ev0 { height: 0; }
.votes-position.show-that { height: 40px; }
.show-division .votes-position.ev0.show-that { height: 40; }

#poll-info .hide-that {
	-webkit-transition	: height 0.5s;
	-moz-transition		: height 0.5s;
	-o-transition		: height 0.5s;
	transition			: height 0.5s;
	height: 40px;
	overflow: hidden;
}

.poll-toggle.hide-that {
	height: 0 !important;
}

.votes-name {
	position: absolute;
	width: 320px;
	top: 0;
	left: 0;
	bottom: 0;
	padding: 11px 0 0;
	font-size: 14px;
	text-align: right;
}

.votes-bar {
	position: relative;
	margin-top: 11px;
	height: 18px;
	background-color: #f3f3f3;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
}

.votes-bar-inner {
	position: absolute;
	width: 0;
	top: 4px;
	left: 0;
	height: 10px;
	background-color: #019ee3;
	-webkit-transition	: height 0.15s, top 0.15s, width 1.5s;
	-moz-transition		: height 0.15s, top 0.15s, width 1.5s;
	-o-transition		: height 0.15s, top 0.15s, width 1.5s;
	transition			: height 0.15s, top 0.15s, width 1.5s;
	-webkit-border-radius	: 2px 0 0 2px;
	-moz-border-radius		: 2px 0 0 2px;
	border-radius			: 2px 0 0 2px;
}

.votes-number {
	position: absolute;
	width: 68px;
	top: -7px;
	left: 0;
	height: 31px;
	text-align: center;
	padding: 3px 0 0 1px;
	color: #fff;
	background-color: #019ee3;
	font-size: 20px;
	line-height: 20px;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
	border: 2px solid #019ee3;
	-webkit-transition	: background-color 0.15s, left 1.5s;
	-moz-transition		: background-color 0.15s, left 1.5s;
	-o-transition		: background-color 0.15s, left 1.5s;
	transition			: background-color 0.15s, left 1.5s;
}

.votes-number:after {
	content: '%';
	display: inline-block;
	padding-left: 3px;
	font-size: 15px;
	line-height: 18px;
	vertical-align: bottom;
	font-weight: 300;
}

.off-chart .votes-position .votes-bar-inner, .off-chart .votes-position .votes-number {
	background-color: #da9779;
	border-color: #da9779;
}

@media (max-width: 767px) {
	.votes-name {
		text-align: left;
		padding-left: 15px;
	}

	.votes-position {
		padding: 0;
	}

	.votes-position.ev0 { height: 70px; padding: 32px 15px 0 15px; }
	.show-division .votes-position.ev0 { height: 0; padding: 0; }
	.votes-position.show-that { height: 70px; padding: 32px 15px 0 15px; }
	.show-division .votes-position.ev0.show-that { height: 70px; padding: 32px 15px 0 15px; }

	#poll-info .hide-that {
		height: 70px;
	}
}

/**** LOGIN *******************************************/

.login-form-wrp {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: url('design/login.png') center center no-repeat;
	background-size: cover;
}

.login-form {
	top: 50px;
	max-width: 400px;
	width: 100%;
	margin: 50px auto 0;
	overflow: hidden;
	-webkit-border-radius	: 7px;
	-moz-border-radius		: 7px;
	border-radius			: 7px;
	-webkit-box-shadow	: 1px 1px 3px 0px rgba(170, 150, 150, 0.2);
	-moz-box-shadow		: 1px 1px 3px 0px rgba(170, 150, 150, 0.2);
	box-shadow			: 1px 1px 3px 0px rgba(170, 150, 150, 0.2);
	background: #fff url('design/login.msk.png') right 20px bottom 50px no-repeat;
	background-size: 35%;
}

.login-form-inner {
	padding: 30px 180px 30px 30px;
	text-align: center;
}

.login-form .form-title {
	height: 60px;
	padding: 20px 20px 20px 73px;
	color: #fff;
	background: #019ee3 url('design/control.person.png') left 18px center no-repeat;
	font-size: 16px;
	font-weight: 300;
}

.login-form .form-input {
	width: 100%;
	border: 1px solid rgba(170, 150, 150, 0.15);
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
	margin: 0 auto 30px;
	padding: 10px 10px;
}

.login-submit {
	display: inline-block;
	padding: 7px 30px;
	color: #fff;
	background-color: #777;
	-webkit-transition-duration	: 0.5s;
	-moz-transition-duration	: 0.5s;
	-o-transition-duration		: 0.5s;
	transition-duration			: 0.5s;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 300;
}

.login-submit:hover {
	color: #fff;
	background-color: #019ee3;
}


/**** ENTER FORM *******************************************/

.enter-form {
	padding: 0 3px 30px 30px;
}

.enter-form .inner-block {
	padding: 30px;
}

.enter-form .section-header {
	position: relative;
	left: 0;
	top: 0;
	padding-bottom: 5px;
}

.enter-form .section-info {
	color: #777;
	font-size: 15px;
	font-weight: 300;
	padding-bottom: 10px;
}

.enter-form .form-input {
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 20px;
}

.enter-form .form-input input {
	width: 140px;
	display: block;
	color: #019ee3;
	font-size: 22px;
	font-weight: 700;
	background-color: #f3f3f3;
	position: relative;
	border: 1px solid rgba(170, 150, 150, 0.15);
	-webkit-border-radius	: 5px;
	-moz-border-radius		: 5px;
	border-radius			: 5px;
	padding: 10px;
	margin-bottom: 5px;
	text-align: center;
}

.enter-form .form-input input:disabled {
	color: #999;
	background-color: #777;
}

.enter-form .form-input.info-input input:disabled {
	color: #999;
	background-color: #f3f3f3;
}

.enter-form .form-input.tooltip {
	font-size: 12px;
	color: #999;
	text-align: center;
}

.enter-form .form-input textarea {
	width: 100%;
	min-height: 240px;
	display: block;
	color: #019ee3;
	font-size: 22px;
	font-weight: 700;
	background-color: #f3f3f3;
	position: relative;
	border: 1px solid rgba(170, 150, 150, 0.15);
	-webkit-border-radius	: 5px;
	-moz-border-radius		: 5px;
	border-radius			: 5px;
	padding: 10px;
	margin-bottom: 5px;
	text-align: center;
}

.enter-submit {
	display: inline-block;
	padding: 7px 30px;
	color: #fff;
	background-color: #777;
	-webkit-transition-duration	: 0.5s;
	-moz-transition-duration	: 0.5s;
	-o-transition-duration		: 0.5s;
	transition-duration			: 0.5s;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 300;
	margin-right: 12px;
}

.enter-submit:hover {
	color: #fff;
	background-color: #019ee3;
}

/**** CITY DATA ENTER  *******************************************/

#city-data-enter .inner-block .section-header {
	display: inline-block;
	width: 400px;
	padding-top: 6px;
}

#city-data-enter .poll-enter__wrp {
	padding: 20px 0;
}

#city-data-enter .form-input {
	margin-bottom: 10px;
}

#city-data-enter .form-input input {
	font-size: 18px;
	width: 100px;
	padding: 5px 10px;
}

#city-data-enter .long-input input {
	width: 450px;
}

/**** ADMIN TOTAL *******************************************/

#admin-total .inner-block {
	overflow: hidden;
	padding: 25px 30px;
	display: inline-block;
}

.at-position {
	position: relative;
	overflow: hidden;
	border-bottom: 1px dashed #fff;
}

.at-position:hover {
	border-color: #019ee3;
}

.at-name {
	display: inline-block;
	width: 280px;
	padding: 0 10px 0;
	font-size: 14px;
	line-height: 26px;
	text-align: right;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
}

.at-number {
	display: inline-block;
	width: 100px;
	text-align: center;
	padding: 1px 10px 0 4px;
	text-align: right;
	color: #fff;
	background-color: #a0cbd2;
	font-size: 14px;
	line-height: 26px;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
	-webkit-transition	: background-color 0.15s, left 1.5s;
	-moz-transition		: background-color 0.15s, left 1.5s;
	-o-transition		: background-color 0.15s, left 1.5s;
	transition			: background-color 0.15s, left 1.5s;
}

.at-date {
	width: 200px;
	background-color: #da9779;
	text-align: center;
	padding-right: 4px;
}

.at-header .at-number {
	background-color: #777;
	text-align: center;
	padding-right: 4px;
}

.at-number.at-total {
	background-color: #019ee3;
}

.at-number.at-alert {
	background-color: #fa193f;
}

/**** NEWS ENTER *******************************************/

.news-data-enter .inner-block {
	padding-bottom: 0;
	max-width: 900px;
	margin: 0 auto;
}

.news-data-enter .form-input {
	width: 100%;
}

.with-button {
	position: relative;
}

.with-button .form-input {
	display: block;
	float: left;
	width: calc( 100% - 230px );
}

.with-button.bot-buttons .form-input {
	width: calc( 100% - 440px );
}

.news-data-enter input[type=text] {
	display: block;
	width: 100%;
	font-size: 16px;
	text-align: left;
	color: #252525;
}

.news-data-enter .form-input textarea {
	display: block;
	font-size: 16px;
	font-weight: 300;
	text-align: left;
	color: #252525;
	min-height: 160px;
}

.news-mode,
.news-data-enter input[type=submit],
.news-data-enter .select-option-wrp {
	float: right;
}

.news-data-enter .select-option-toggle,
.news-data-enter input[type=submit] {
	width: 200px;
	text-align: center;
	padding: 10px 10px;
	font-size: 16px;
	margin: 0;
}

.news-data-enter input[type=submit]:nth-child(2) {
	margin-left: 10px;
}

.news-data-enter input.n-source {
	font-weight: 300;
	color: #51a1b0;
}

.news .section-header {
	padding-bottom: 25px;
}

/**** CHART VISIT *******************************************/

#chart-visit .inner-block {
	overflow: hidden;
	padding: 25px 30px;
	display: inline-block;
}

.cv-position {
	position: relative;
	overflow: hidden;
	border-bottom: 1px dashed #fff;
}

.cv-position:hover {
	border-color: #fa193f;
}

.cv-name {
	display: inline-block;
	width: 280px;
	padding: 0 10px 0;
	font-size: 14px;
	line-height: 26px;
	text-align: right;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
}

.cv-number {
	display: inline-block;
	width: 70px;
	text-align: center;
	padding: 1px 4px 0 4px;
	text-align: right;
	color: #fff;
	background-color: #019ee3;
	font-size: 14px;
	line-height: 26px;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
	-webkit-transition	: background-color 0.15s, left 1.5s;
	-moz-transition		: background-color 0.15s, left 1.5s;
	-o-transition		: background-color 0.15s, left 1.5s;
	transition			: background-color 0.15s, left 1.5s;
}

.cv-perc {
	text-align: center;
}

.cv-perc:after {
	content: '%';
	display: inline-block;
	font-size: 12px;
	line-height: 26px;
	padding-left: 3px;
	vertical-align: bottom;
	font-weight: 300;
	color: #ddd;
}

.cv-header .cv-name,
.cv-header .cv-number {
	background-color: #777;
	text-align: center;
	padding-right: 4px;
	cursor: pointer;
	color: #fff;
}

.cv-number.dis {
	background-color: #999;
	color: #ddd;
}

/**** CHART DATA *******************************************/

#chart-data .inner-block {
	overflow: hidden;
	padding: 25px 30px;
	display: inline-block;
}

.cd-position {
	position: relative;
	overflow: hidden;
	border-bottom: 1px dashed #fff;
}

.cd-position:hover {
	border-color: #019ee3;
}

.cd-name {
	display: inline-block;
	width: 280px;
	padding: 0 10px 0;
	font-size: 14px;
	line-height: 26px;
	text-align: right;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
}

.cd-number {
	display: inline-block;
	width: 85px;
	text-align: center;
	padding: 1px 10px 0 4px;
	text-align: right;
	color: #fff;
	background-color: #a0cbd2;
	font-size: 14px;
	line-height: 26px;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
	-webkit-transition	: background-color 0.15s, left 1.5s;
	-moz-transition		: background-color 0.15s, left 1.5s;
	-o-transition		: background-color 0.15s, left 1.5s;
	transition			: background-color 0.15s, left 1.5s;
}

.cd-header .cd-name,
.cd-header .cd-number {
	background-color: #777;
	text-align: center;
	padding-right: 4px;
	cursor: pointer;
	color: #fff;
}

.cd-number.cd-total {
	background-color: #019ee3;
}

.cd-number.cd-alert {
	background-color: #fa193f;
}

/**** CHART ACTIVITY *******************************************/

#chart-activity .inner-block {
	overflow: hidden;
	padding: 25px 30px;
	display: inline-block;
}

#chart-activity .section-info {
	color: #777;
	font-size: 15px;
	font-weight: 300;
	padding-bottom: 10px;
}

.activity-select-sort {
	display: inline-block;
	padding: 5px 10px;
	color: #777;
	background-color: #fff;
	border: 1px solid #ddd;
	-webkit-transition-duration	: 0.5s;
	-moz-transition-duration	: 0.5s;
	-o-transition-duration		: 0.5s;
	transition-duration			: 0.5s;
	-webkit-border-radius	: 2px;
	-moz-border-radius		: 2px;
	border-radius			: 2px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 300;
	margin: 6px 12px 6px 0;
}

.activity-select-sort.active,
.activity-select-sort:hover {
	color: #019ee3;
	border-color: #019ee3;
	background-color: #efe;
}

.ca-position {
	position: relative;
	overflow: hidden;
	-webkit-transition	: height 0.5s;
	-moz-transition		: height 0.5s;
	-o-transition		: height 0.5s;
	transition			: height 0.5s;
	height: 0;
}

.ca-position.show-that {
	height: 21px;
}

.ca-item {
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
}

.ca-action {
	width: 70px;
	color: #a0cbd2;
	font-weight: 700;
	text-align: right;
	padding-right: 10px;
}

/**** WIN *******************************************/

.win {
	background: url('design/login.png') center center no-repeat;
	background-size: cover;
}

.win-wrp {
	overflow: hidden;
	-webkit-border-radius	: 7px;
	-moz-border-radius		: 7px;
	border-radius			: 7px;
	-webkit-box-shadow	: 1px 1px 3px 0px rgba(170, 150, 150, 0.2);
	-moz-box-shadow		: 1px 1px 3px 0px rgba(170, 150, 150, 0.2);
	box-shadow			: 1px 1px 3px 0px rgba(170, 150, 150, 0.2);
	background-color: #fff;
}

 .win-inner {
	padding: 30px 30px;
	text-align: center;
}

.win-title {
	padding: 16px 20px;
	color: #fff;
	background-color: #019ee3;
	font-size: 28px;
	font-weight: 300;
	text-align: center;
}

.win-wrp {
	width: 100%;
	max-width: 1200px;
	margin: 50px 0 auto 0;
	position: relative;
}

#win-chart {
	height: 500px;
}

@media (max-width: 767px) {
	#win-chart {
		height: 300px;
	}
}
