/* CSS Document */
@font-face {
  font-family: "roboto_thin";
  font-style: normal;
  font-weight: normal;
  src: url("inc/font_roboto_thin.ttf") format("truetype");
}
@font-face {
  font-family: "roboto_light";
  font-style: normal;
  font-weight: normal;
  src: url("inc/font_roboto_light.ttf") format("truetype");
}
@font-face {
  font-family: "roboto_regular";
  font-style: normal;
  font-weight: normal;
  src: url("inc/font_roboto_regular.ttf") format("truetype");
}
@font-face {
  font-family: "roboto_medium";
  font-style: normal;
  font-weight: normal;
  src: url("inc/font_roboto_medium.ttf") format("truetype");
}
@font-face {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  src: url("inc/prestashop-icon-font.ttf") format("truetype");
}

@keyframes top_pulse {
	0% {
		background-color: #F90;
	}
	50% {
		background-color: #09F;
	}
	100% {
		background-color: #F9F;
	}
}

@keyframes pulse {
	0% {
		color: #F90;
	}
	50% {
		color: #09F;
	}
	100% {
		color: #F9F;
	}
}


@keyframes fade_out {
	0% {
		opacity: 1;
		left: 0px;
	}
	99% {
		opacity: 0;
		left: 0px;
	}
	100% {
		opacity: 0;
		left: -999px;
	}
}

.animation_top_pulse {
	animation-name: top_pulse;
	animation-duration: 8s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

.animation_pulse {
	animation-name: pulse;
	animation-duration: 8s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

a {
	font-size: inherit;
	color: inherit;
	font-family: inherit;
	font-style: normal;
	text-decoration: underline;
}
a:hover {
	color: #f00;
	text-decoration: none;
}

a.dashed {
	text-decoration-style: dotted;
}

a.none {
	text-decoration: none;
}

a.menu {
	font-size: inherit;
	color: inherit;
	text-decoration: none;
}

a.button {
	font-size: 12pt;
	padding: 8px 20px;
	border-bottom: 2px solid #888;
	border-radius: 2px;
	color: #fff;
	background-color: #F33;
	text-decoration: none;
	box-shadow: 0px 0px 10px rgba(255,80,80,.5);
}

a.button:hover {
	border-bottom: 2px solid #f00;
	box-shadow: 0px 0px 10px rgba(255,80,80,1);
}

a.mini_button {
	padding: 2px 4px;
	border-radius: 2px;
	color: #fff;
	background-color: #F33;
	text-decoration: none;
}

a.mini_button:hover {
	box-shadow: 0px 0px 10px rgba(255,80,80,1);
}

div.menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

div.menu li a {
	display:block;
	padding: 8px 12px;
}
div.menu li a:hover {
	background-color: #eee;
	color: #000;
}

a.sel {
	background-color: #ddd;
	color: #000;
}

a.admin {
	background-color: rgba(128,128,128,.2);
	border-radius: 2px;
	color: rgba(0,0,0,.4);
	font-size: 8pt;
	padding: 2px;
	position: absolute;
	right: 5px;
	z-index: 1000;
}

a.tile {
	font-size: 24pt;
}

a.user {
	font-family: "roboto_medium";
	color: #468dc3;
	text-decoration: underline;
}
a.user:hover {
	text-decoration: none;
}

a.white {
	color: #fff;
	padding: 2px 4px;
}



.t_center		{text-align: center; vertical-align: top;}
.t_left			{text-align: left; vertical-align: top;}
.t_right		{text-align: right; vertical-align: top;}

.t_center_sm	{font-size: smaller; text-align: center; vertical-align: top;}
.t_left_sm		{font-size: smaller; text-align: left; vertical-align: top;}
.t_right_sm		{font-size: smaller; text-align: right; vertical-align: top;}

.t_middle		{vertical-align: middle;}

.w40 { width: 40%; margin: auto; position: relative; }
.w50 { width: 50%; margin: auto; position: relative; }
.w75 { width: 75%; margin: auto; position: relative; }
.w100 { width: 100%; margin: auto; position: relative; }
.wa { width: auto; margin: auto; position: relative; display: table; }

.percent_bar	{ position: absolute; right: 0px; }
.percent_bar_left	{ position: absolute; left: 5px; }
.percent_bar_right	{ position: absolute; right: 5px; }

.white {
	color: #fff;
}

.huge {
	font-size: 48pt;
}

.icons {
	font-family: "icons";
	vertical-align: middle;
}

.hidden {
	display: none;
}

.text_padding {
	padding: 2px 4px;
	border-radius: 2px;
}

.strike {
	text-decoration: line-through;
}

.status1 {
	background-color: #ddf;
}
.status1:hover {
	background-color: #ccf;
}

.status2 {
	background-color: #dfd;
}
.status2:hover {
	background-color: #cfc;
}

.status3 {

}
.status3:hover {
	background-color: #eee;
}

.status4 {
	background-color: #ddd;
	opacity: 0.3;
}
.status4:hover {
	opacity: 1;
}

.rating {
	font-family: "roboto_medium";
	font-size: 16pt;
}

.rating_bg {
	color: #fff;
	background-color: #f40;
	padding: 2px 4px;
	border-radius: 4px;
}

.rate_number {
	background-color: #fb0;
	color: #fff;
	padding: 2px 4px;
	border-radius: 4px;
	text-decoration: none;
}
.rate_number:hover {
	background-color: #f00;
	color: #fff;
	box-shadow: 0 0 5px 0 #f20;
}
.rate_number_sel {
	background-color: #e60;
	color: #fff;
}

.ajax_loading {
	filter: saturate(0);
	opacity: 0.3;
}

.invert {
	padding: 2px 4px;
	border-radius: 2px;
	color: #fff;
	background-color: #F33;
}

::selection {
	color: #000;
	background-color: #F8F;
}

::-moz-selection {
	color: #000;
	background-color: #F8F;
}


body {
	font-family: 'roboto_regular', Verdana, Tahoma, Geneva, sans-serif;
	background-color: #fff;
	font-size: 12pt;
	color: #000;
	margin: 0px;
	padding: 0px;
}

table {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
	border-spacing: 0px 1px;
}


table.list td, table.list th {
	padding: 4px 4px;
}

table.border td {
	border: 1px solid #000;
}

table.top td, table.top th {
	vertical-align: top;
}

tr {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
	padding-bottom: 1px;
}

td {
	position: relative;
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
}

td.done {
	text-align: right;
	background-color: #4a4;
	color: #fff;
	padding: 4px 0px;
}

td.cancel {
	text-align: right;
	background-color: #f44;
	color: #fff;
	padding: 4px 0px;
}

td.stat {
	text-align: right;
	background-color: #36f;
	color: #fff;
	padding: 4px 0px;
}

td.stat2 {
	text-align: right;
	background-color: #f63;
	color: #fff;
	padding: 4px 0px;
}

td.stat3 {
	text-align: right;
	background-color: #3b6;
	color: #fff;
	padding: 4px 0px;
}

th {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
	background-color: #eee;
	padding: 4px 2px;
	border-right: 1px solid #fff;
}

tr.gray_bg {
	background-color: #ddd;
}

tr.highlight:hover {
	background-color: #eee;
}



div {
	position: relative;
	font-size: inherit;
	font-family: inherit;
}

div.w {
	color: #fff;
}

div.top {
	font-size: 24pt;
	padding: 24pt;
}

div.menu {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 300px;
	overflow: auto;

	text-align: left;
	vertical-align: top;

	padding: 0px;
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
	margin-right: 20px;
	z-index: 1001;
}

div.content_outer {
	position: relative;
	margin-left: 300px;

	text-align: left;
	vertical-align: top;
	z-index: 1000;
}

div.content {
	position: relative;
	margin: auto;
	box-shadow: 0 10px 10px 0 rgba(0,0,0,.2);
	min-height: 70vh;

	text-align: left;
	vertical-align: top;
	background-color: #ddd;
}

div.bottom {
	font-size: 10pt;
	padding: 40px;
	background-color: #bbb;
}

div.admin_stat {
	opacity: 0;
	left: -999px;
	position: fixed;
	font-size: 8pt;
	bottom: 10px;
	text-align: left;
	color: #000;
	z-index: 2000;
	padding: 10px;
	background-color: rgba(128,128,128,.2);


	animation-name: fade_out;
	animation-duration: 4s;
	animation-timing-function: ease-in;
	animation-delay: 0s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: forwards;
}

div#notifications {
	position: fixed;
	left: -999px;
	bottom: 0px;
	z-index: 2000;
	text-align: left;
	max-height: 60%;
	overflow-y: auto;
	padding: 10px;
}

div.new_notification {
	position: relative;
	font-size: 8pt;
	text-align: left;
	color: #fff;
	padding: 10px;
	border-radius: 5px;
	background-color: rgba(0,0,0,.7);
	margin: 5px 0px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

div.close_button {
	position: absolute;
	top: 0px;
	right: 0px;
	cursor: pointer;
	color: #fff;
	border-radius: 0 5px 0 5px;
	padding: 3px 10px;
	background-color: rgba(0,0,0,.7);
}
div.close_button:hover {
	background-color: rgba(255,0,0,.7);
	box-shadow: 0px 0px 10px rgba(255,80,80,1);
}

div.login {
	position: absolute;
	top: 5px;
	right: 10px;
	text-align: right;
	color: #fff;
	z-index: 2000;
}

div.element {
	position: relative;
	float: left;
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	padding: 5px;
}

div.element_right {
	position: relative;
	float: right;
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	padding: 5px;
}

div.element_light {
	float: left;
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	padding: 5px;
	background-color: #fdd;
	border-radius: 10px;
}

div.parallax_element {
	text-align: center;
	overflow: auto;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
	box-shadow: inset 0px 0px 50px rgba(0,0,0,.7);
	padding: 100px 0px;
	position: relative;
	
	text-shadow: 0px 0px 10px rgba(0,0,0,1);
}

div.desc {
	position: relative;
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 20px;
}

div.blue_bg {
	background-color: #def;
}

div.dark_bg {
	background-color: #333;
}

div.dark_bg .card {
	background-color: #555;
}

div.parallax_element div.card {
	text-shadow: 0px 0px 0px rgba(0,0,0,1);
	color: #000;
}

div.card {
	position: relative;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,.1);
	padding: 10px;
	margin: auto;
	margin-bottom: 20px;
	overflow: auto;
}

div.card_transparent {
	background-color: rgba(0,0,0, 0.7);
	border-radius: 4px;
	padding: 10px;
	margin: auto;
	margin-bottom: 20px;
	overflow: auto;
}

div.card_title {
	font-size: 24pt;
	font-weight: normal;
	color: #000;
	margin-top: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 20px;
	border-radius: 4px 4px 0px 0px;
	overflow: auto;
}

div.card_img_sm {
	position: relative;
	float: left;
	width: 250px;
	height: 250px;
	margin-right: 20px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

div.card_img {
	position: relative;
	float: left;
	width: 400px;
	height: 400px;
	margin-right: 20px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
}

div.title {
	padding-left: 40px;
	height: 100px;
	font-size: 24pt;
	color: #fff;
	box-shadow: 0 10px 10px 0 rgba(0,0,0,.2);
	margin-bottom: 20px;
	
	line-height: 100px;
	overflow: hidden;
	white-space: nowrap;
}

div.hint_in {
	font-family: "roboto_medium";
	color: #fff;
	background-color: rgba(255,0,255,.8);
	padding: 5px 20px;
	position: absolute;
	left: 0px;
	top: 0px;
	border-radius: 4px 0px 4px 0px;
}

div.visitors {
	text-align: right;
	color: #fff;
	background-color: rgba(0,125,255,.8);
	padding: 5px 20px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	border-radius: 4px 0px 0px 0px;
}

div.price {
	color: #fff;
	background-color: rgba(0,255,125,.8);
	padding: 5px 20px;
	position: absolute;
	left: 0px;
	bottom: 0px;
	border-radius: 0px 4px 0px 0px;
}

div.bonus {
	font-size: small;
	color: #fff;
	background-color: rgba(255,0,0,.5);
	padding: 5px 20px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	border-radius: 4px 0px 4px 0px;
}

div.divider {
	background-image: url(/photo/misc/lab-scientist.svg);
	background-repeat: no-repeat;
	background-position: center;
	height: 150px;
}

div.modal {
	display: none;
	position: fixed;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
	z-index: 11000;
	padding-top: 100px;
}

div.modal_bg {
	position: fixed;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
	background-color: rgba(0,0,0,0.5);
	overflow: auto;
}

div.modal_card {
	position: relative;
	overflow: auto;
	height: 80%;
	width: auto;
	margin: auto;
	top: 60px;
}

div.popup {
	display: none;
	position: fixed;
	bottom: 0px;
	right: 0px;
	left: 0px;
	overflow: auto;
	z-index: 10500;
}

div.popup_bg {
	position: relative;
	bottom: 0px;
	right: 0px;
	left: 0px;
	background-color: rgba(0,0,0,0.7);
	overflow: auto;
	padding: 20px 10% 10px 10%;
}

div.popup_card {
	position: relative;
	overflow: auto;
	width: auto;
	margin: auto;
	top: 0px;
}

div.popup_close {
	position: absolute;
	top: 0px;
	right: 0px;
	cursor: pointer;
	color: #fff;
	border-radius: 5px;
	padding: 5px 10px;
	background-color: rgba(0,0,0,.7);
}
div.popup_close:hover {
	background-color: rgba(255,0,0,.7);
	box-shadow: 0px 0px 10px rgba(255,80,80,1);
}

div.bar_green {
	background-color: #3b6;
	height: 0.8em;
}

div.bar_red {
	background-color: #f44;
	height: 0.8em;
}

div#map {
	width: 100%;
	height: 700px;
	padding: 0;
	margin: 0;
}

form {
	margin: 0;
}

input, select, textarea, button {
	font-family: inherit;
	font-size: 12pt;
	border-bottom: 2px solid #888;
	border-top: 0px;
	border-left: 0px;
	border-right: 0px;
	background-color: rgba(128,128,128,0.05);
	padding: 3px 3px;
	margin: 2px 1px 10px 1px;
	border-radius: 2px;
	color: #a0a;
}

textarea {
	border-top: 1px solid #888;
	border-left: 1px solid #888;
	border-right: 1px solid #888;
}

input[type="number"] {
	width: 100px;
}

input[type="submit"], button {
	font-size: 12pt;
	cursor: pointer;	
	color: #fff;
	background-color: #F33;
	padding: 3px 20px;
	border-radius: 2px;
	box-shadow: 0px 0px 10px rgba(255,80,80,.5);
}
input[type="submit"]:hover, button:hover {
	box-shadow: 0px 0px 10px rgba(255,80,80,1);
}
input:disabled,
select:disabled {
	color: #ccc;
}
input[type="submit"]:disabled, button:disabled {
	background-color: #ccc;
	box-shadow: 0px 0px 0px rgba(255,80,80,.5);
}
input[type="submit"].gray {
	background-color: #aaa;
	box-shadow: 0px 0px 0px rgba(255,80,80,.5);
}
input:hover, select:hover, textarea:hover {
	border-bottom: 2px solid #f00;
}
input:focus, select:focus, textarea:focus {
	border-bottom: 2px solid #f00;
}

input.price {
	font-size: 14pt;
	border: 0px;
	background-color: rgba(0,0,0,0);
}

img {
	border: 0px;
	border-radius: 4px;
}

img.attention {
	border-radius: 0px 10px 10px 0px;
	box-shadow: 0px 0px 20px rgba(255,80,80,.8);
}

img.border_white {
	border: 1px solid #aaa;
	border-radius: 4px;
	box-shadow: 0px 0px 10px rgba(128,128,128,.5);
}

img.shadow {
	box-shadow: 0px 0px 10px rgba(0,0,0,.5);
}

img.plain {
	border: 0px;
	border-radius: 0px;
}

img.round {
	border: 0px;
	border-radius: 1000px;
}

img.middle {
	vertical-align: middle;
}

#photo_bg {
	background-color: rgba(0, 0, 0, 0.9);
	width: 100%;
	height: 100%;
	display: none;
	left: 0;
	top: 0;
	position: fixed;
	z-index: 5000;
	text-align: center;
	color: #fff;
}

#photo_win {
	top: 10px;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 5050;
	overflow-y: auto;
}

#photo_container {
	position: relative;
	overflow-y: auto;
	padding: 1px;
}

#big_photo {
	max-width: 80%;
	max-height: 80%;
}

.photo_preview {
	/*border-width: 1px;
	border-style: solid;*/
	float: left;
	width: 150px;
	height: 150px;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.photo_preview img {
	vertical-align: middle;
}

p {
	/*max-width: 700px;*/
}

span.accent {
	font-family: "roboto_medium";
	font-size: larger;
}

.sm {
	font-size: 8pt;
}

.norm {
	font-size: 12pt;
}

.gray {
	color: #888;
}

.light {
	font-family: "roboto_light";
}

.medium {
	font-family: "roboto_medium";
}

.thin {
	font-family: "roboto_thin";
}

span.city {
	font-size: 10pt;
	color: #fff;
	background-color: rgba(0,0,0,.5);
	padding: 2px 4px;
	border-radius: 4px;
	vertical-align: middle;
}

span.required {
	color: #F30;
}

span.visitors {
	color: #fff;
	background-color: rgba(0,125,255,.8);
	padding: 2px 8px;	
}

div.menu span.icons {
	font-size: 150%;
	margin-right: 20px;
}

div.title span.icons {
	margin-right: 20px;
}


h1 {
	font-size: 24pt;
	font-weight: normal;

	margin-top: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
}
h1.center {
	text-align: center;
	margin-bottom: 0;
}
h2 {
	font-size: 18pt;
	font-weight: normal;
	margin-top: 0px;
	margin-bottom: 0;
}
h3 {
	font-size: 16pt;
	font-weight: normal;
	margin-top: 0px;
	margin-bottom: 0;
}

strong {
	font-family: "roboto_medium";
	font-weight: normal;
}

hr {
	border-top: 0px;
	border-left: 0px;
	border-right: 0px;
	border-bottom: 1px solid #888;
}

ul.plus {
	padding-left: 2em;
}
ul.plus li {
	list-style-type: none;
}
ul.plus li::before {
	content: '+ ';
	color: #0a0;
	margin-right: 0.5em;
	margin-left: -1.1em;
}

ul.minus {
	padding-left: 2em;
}
ul.minus li {
	list-style-type: none;
}
ul.minus li::before {
	content: '\2212 ';
	color: #f00;
	margin-right: 0.5em;
	margin-left: -1.1em;
}


.color_red		{ color: #f00; }
.color_green	{ color: #0a0; }


.color_main		{ color: #444; }
.bg_main		{ background-color: #444; }

.color_announce	{ color: #808; }
.bg_announce	{ background-color: #808; }

.color_shows	{ color: #088; }
.bg_shows		{ background-color: #088; }

.color_programs	{ color: #f80; }
.bg_programs	{ background-color: #f80; }

.color_scientists { color: #444; }
.bg_scientists	 { background-color: #444; }

.color_orders	{ color: #800; }
.bg_orders		{ background-color: #800; }

.color_photo	{ color: #00f; }
.bg_photo		{ background-color: #00f; }

.color_shop		{ color: #080; }
.bg_shop		{ background-color: #080; }
.color_basket	{ color: #080; }
.bg_basket		{ background-color: #080; }
.color_catalog	{ color: #080; }
.bg_catalog		{ background-color: #080; }

.color_contacts	{ color: #008; }
.bg_contacts	{ background-color: #008; }

.color_admin	{ color: #f00; }
.bg_admin		{ background-color: #f00; }

.color_users	{ color: #f00; }
.bg_users		{ background-color: #f00; }

.color_client	{ color: #08f; }
.bg_client	{ background-color: #08f; }

.color_client_search	{ color: #08f; }
.bg_client_search		{ background-color: #08f; }

.color_client_actions	{ color: #f44; }
.bg_client_actions		{ background-color: #f44; }

.color_feast	{ color: #088; }
.bg_feast		{ background-color: #088; }

.color_partners	{ color: #084; }
.bg_partners	{ background-color: #084; }

.color_news		{ color: #880; }
.bg_news		{ background-color: #880; }

.color_franchise{ color: #088; }
.bg_franchise	{ background-color: #088; }

.color_city		{ color: #08f; }
.bg_city		{ background-color: #08f; }

.color_files	{ color: #484; }
.bg_files		{ background-color: #484; }

.color_rules	{ color: #222; }
.bg_rules		{ background-color: #222; }

.color_cabinet	{ color: #420; }
.bg_cabinet		{ background-color: #420; }

.color_about	{ color: #f0f; }
.bg_about		{ background-color: #f0f; }

.color_bonus	{ color: #f00; }
.bg_bonus		{ background-color: #f00; }

.color_pay		{ color: #080; }
.bg_pay			{ background-color: #080; }

.color_kassa	{ color: #080; }
.bg_kassa		{ background-color: #080; }

.color_salary	{ color: #08f; }
.bg_salary		{ background-color: #08f; }

.color_vr		{ color: #840; }
.bg_vr			{ background-color: #840; }

.color_auth		{ color: #444; }
.bg_auth		{ background-color: #444; }

.color_rate		{ color: #f40; }

.color_birthday		{ color: #f08; }
.bg_birthday		{ background-color: #f08; }

.color_lessons		{ color: #8c0; }
.bg_lessons		{ background-color: #8c0; }

.color_school		{ color: #8c0; }
.color_class		{ color: #480; }


.cke_notifications_area {
	display: none;
}

#cookie-consent {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: transparent;
	padding: 2rem 2rem 1rem 2rem;
	text-align: start;
	z-index: 9997;
	justify-content: center;
}

#decline-cookies {
	position: absolute;
	top: -0.5rem;
	right: -0.5rem;
	width: auto;
	padding: 0 0.5rem;
	border-radius: 0.5rem;
}

.cookie-card {
	background-color: rgba(0, 0, 0, 0.8);
	width: 500px;
	max-width: 100%;
	position: relative;
	padding: 1rem 0.5rem 0 0.5rem;
	border-radius: 1rem;
	font-size: 80%;
}


