/* CSS Document */
:root {
	--color1: rgba(249, 195, 18, 1);
	--color2: rgba(51, 51, 51, 1);
	--color3: rgba(26, 26, 26, 1); /* black */
	--color4: rgba(255, 234, 150, 1); /* light */
	--color-gray1: #e8e8e8;
	--color-gray1-0: rgba(232, 232, 232, 0);
	--color-gray1-5: rgba(232, 232, 232, 0.5);
	--color-gray1-7: rgba(232, 232, 232, 0.7);
	--color-gray2: rgba(136, 136, 136, 1.0);
	--color-gray2-5: rgba(136,136,136,0.5);
	--color1-1: rgba(249, 195, 18, 0.1);
	--color1-3: rgba(249, 195, 18, 0.3);
	--color1-5: rgba(249, 195, 18, 0.5);
	--color1-7: rgba(249, 195, 18, 0.7);
	--color2-7: rgba(51, 51, 51, 0.7);
	--color4-1: rgba(255, 234, 150, 0.1);
	
	--color-dark: rgba(163, 128, 59, 1);
	--color-dark2: rgba(204, 153, 51, 1);
}

@font-face {
  font-family: "font_light";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/font_roboto_thin.ttf") format("truetype");
}
@font-face {
  font-family: "font_regular";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/font_roboto_light.ttf") format("truetype");
}
@font-face {
  font-family: "font_medium";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/font_roboto_regular.ttf") format("truetype");
}
@font-face {
  font-family: "font_bold";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/font_roboto_medium.ttf") format("truetype");
}

@font-face {
  font-family: "century";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/CENTURY.TTF") format("truetype");
}

/*@font-face {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/prestashop-icon-font.ttf") format("truetype");
}*/

@keyframes fade_out {
	0% {
		opacity: 1;
		left: 0px;
	}
	99% {
		opacity: 0;
		left: 0px;
	}
	100% {
		opacity: 0;
		left: -999px;
	}
}

@keyframes pulse_shadow {
	0% {
		box-shadow: 0 0 50px 0 var(--color1);
	}
	100% {
		box-shadow: 0 0 0px 0 var(--color1);
	}
}

.animation_pulse_shadow {
	animation-name: pulse_shadow;
	animation-duration: 2s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
a {
	font-size: inherit;
	color: var(--color-dark2);
	font-family: inherit;
	font-style: normal;
	text-decoration: none;
	transition: 0.5s;
}
a:hover {
	text-decoration: underline;
}

a.dashed {
	text-decoration: underline;
	text-decoration-color: var(--color1);
	text-decoration-style: dotted;
}

a.admin {
	background-color: rgba(128,128,128,.2);
	border-radius: 2px;
	color: rgba(0,0,0,.4);
	font-size: 80%;
	padding: 2px;
	position: absolute;
	right: 5px;
	z-index: 1000;
}

a.shadow {
}
a.shadow:hover {
	text-shadow: 0 0 20px #000;
}

.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;}
.t_bottom		{vertical-align: bottom;}

.w25 { width: 25%; 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; overflow: auto; }
.wa { width: auto; margin: auto; position: relative; }

.block_center { margin: auto; }

.block {
	display: block;
	text-decoration: none !important;
}

.sm {
	font-size: 80%;
}

.tiny {
	font-size: 60%;
}

.norm {
	font-family: "font_light";
	font-style: normal;
	font-weight: normal;
	font-size: 12pt;
}

.white_text {
	color: #fff;
}
.white_text a {
	color: var(--color4);
}

.gray {
	opacity: 0.5;
}

.gray_bg {
	background-color: var(--color-gray1);
}

.gray2_bg {
	background-color: var(--color2);
}

.color_bg {
	background-color: var(--color1-5) !important;
}

.text_color1 {
	color: var(--color1) !important;
}

.text_color_dark2 {
	color: var(--color-dark2) !important;
}

.light_bg {
	background-color: var(--color1-3);
}

.transparent_bg {
	background-color: rgba(0, 0, 0, 0.5);
}

.img_bg {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.light {
	font-family: "font_light";
}

.medium {
	font-family: "font_medium";
}

.bold {
	font-family: "font_bold";
}

.strike {
	text-decoration: line-through;
	text-decoration-color: #f00;
}

.hidden {
	display: none;
}

.sticky {
	position: sticky;
}

.pointer {
	cursor: pointer;
}

.huge {
	font-size: 220%;
}

.padding {
	padding: 1em 1em !important;
}

.padding_h05 {
	padding-left: 0.5em !important;
	padding-right: 0.5em !important;
}

.padding_h {
	padding-left: 1em !important;
	padding-right: 1em !important;
}

.padding_h2 {
	padding-left: 2em !important;
	padding-right: 2em !important;
}

.padding_h3 {
	padding-left: 3em !important;
	padding-right: 3em !important;
}

.padding_v {
	padding-top: 1em !important;
	padding-bottom: 1em !important;
}

.padding_v2 {
	padding-top: 2em !important;
	padding-bottom: 2em !important;
}

.padding_v3 {
	padding-top: 3em !important;
	padding-bottom: 3em !important;
}

.padding_b {
	padding-bottom: 1em !important;
}

.padding_b3 {
	padding-bottom: 3em !important;
}

.padding_t {
	padding-top: 1em !important;
}

.padding_t {
	padding-top: 3em !important;
}

/*
.icons {
	font-family: "icons";
	vertical-align: middle;
}
*/

.shadow {
	box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.3);
}

.shadow_in {
	box-shadow: inset 0 0 5em 0 rgba(0, 0, 0, 0.1);
}

.text_shadow {
	text-shadow: 0 0 0.2em rgba(0, 0, 0, 1);
}

::selection {
	color: #fff;
	background-color: var(--color1);
}

::-moz-selection {
	color: #fff;
	background-color: var(--color1);
}

body {
	font-family: 'font_light', Verdana, Tahoma, Geneva, sans-serif;
	background-color: var(--color2);
	color: #000;
	margin: 0px;
	padding: 0px;
	line-height: 1.5;
}
@media screen {
	body {
		font-size: 14pt;
	}
}
@media screen and (max-width: 900px) {
	body {
		font-size: 14pt;
	}
}

table {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
	border-spacing: 0px;
}

table.list {
	padding: 2px 4px;
	margin: auto;
}

table.border td {
	border: 1px solid #888;
}

table.rows td {
	border-bottom: 1px solid #bbb;
}

tr {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
}

td {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
	padding: 0px;
}

.list0 td {
	padding: 0px 0px;
}

.list td, .list th {
	padding: 4px 4px;
}

form td {
	padding: 4px 4px;
}

th {
	font-size: smaller;
	font-family: inherit;
	color: inherit;
	border: 0px;
	background-color: #eee;
	padding: 4px 2px;
	border-right: 1px solid #fff;
}

table.highlight tr:hover,
tr.highlight:hover {
	background-color:  var(--color-gray1);
}

div {
	position: relative;
	font-size: inherit;
	font-family: inherit;
}

.border {
	border: 1px solid #888;
}

div.top {
	font-size: 120%;
	padding: 4px 20px;
	position: sticky;
	top: 0;
	color: #888;
	background-color: rgba(0,0,0, 0.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0, 0.5);
	z-index: 9999;
}

div.menu {
	/*background-color:  var(--color1-7);*/
	text-align: center;
	color: #fff;
}
div.menu a {
	color: inherit;
	text-decoration: none;
}
div.menu a:hover {
	color: var(--color1);
}
div.bottom div.menu {
	background-color: transparent;
}

div.menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

@media screen {
	.only_full {
		display: block;
	}
	.only_mobile {
		display: none;
	}

	div.menu ul {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 900px) {
	.only_full {
		display: none;
	}
	.only_mobile {
		display: block;
	}
	
	div.menu ul {
		display: block;
	}
	
	div.menu li {
		width: 100%;
		text-align: center;
	}
}


div.menu li {
	list-style: none;
	position: relative;
}
div.menu li::before {
	content: '';
	margin-right: 0;
	margin-left: 0;
}

div.menu li a {
	display: block;
	padding: 0.5em 1em;
	text-decoration: none;
	vertical-align: middle;
	border-bottom: 2px solid transparent;
}
div.menu li a:hover {
	/*background-color: var(--color1-1);*/
	color: var(--color4);
	border-bottom: 2px solid var(--color1);
}

div.menu li ul {
	display: none;
	float: none;
	position: absolute;
	background-color:  var(--color-gray1);
	box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
	top: 48px; /* ? */
	left: 0px;
	z-index: 1000;
}

div.menu li:hover ul {
	display: block;
}

div.menu li ul li {
	width: 100%;
	text-align: left;
}

div.menu li ul li a {
	display: block;
	padding: 0.5em 1em;
	height: auto;
	border-left: 4px solid transparent;
	border-bottom: 0px;
}

div.menu li ul li a:hover {
	border-left: 4px solid var(--color1);
	border-bottom: 0px;
}

.hamburger {
	position: fixed;
	z-index: 1999;
	font-size: 120%;
	text-align: left;
	background-color: transparent;
	top: 0;
	left: 0;
	width: auto;
}
.hamburger a {
	color: var(--color1);
}

.phone {
	position: absolute;
	font-size: 120%;
	text-align: left;
	background-color: transparent;
	top: 65px;
	left: calc( (100vw - 900px) / 2 + 900px);
	width: auto;
}
.phone a {
	color: #fff;
	text-decoration: none;
}
.phone a:hover {
	color: var(--color-dark2);
	text-decoration: none;
}

@media screen {
	.phone {
		display: block;
	}
}
@media screen and (max-width: 1250px) {
	.phone {
		display: none;
	}
}

.phone_sm {
	position: absolute;
	font-size: 120%;
	text-align: center;
	background-color: transparent;
	top: 1em;
	right: 1em;
	width: auto;
}

div.mobile_menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2000;
	color: #fff;
	background-color: var(--color2);
}

div.content {
	margin: auto;
	text-align: left;
	vertical-align: top;
	background-color: #fff;
	/*border-top: 1px solid transparent;*/
	min-height: 70vh;
}

div.head {
	text-align: center;
	background-color: var(--color3);
}
div.head * {
	z-index: 1;
}

div.head_transparent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.7);
	z-index: 1000;
}

div.menu_transparent {
	background-color: var(--color-gray1-7);
	z-index: 1000;
}

div.bottom {
	font-size: 80%;
	padding: 2em 0em;
	background-color: var(--color2);
	color: var(--color-dark);
	
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}

div.bottom > div {
	padding: 1em;
}

div.bottom a {
	color: var(--color-dark2);
}

div.bottom a:hover {
	color: var(--color4);
	text-decoration: none;
}

div.admin_stat {
	opacity: 0;
	left: -999px;
	position: fixed;
	font-size: 70%;
	top: 200px;
	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.login {
	position: absolute;
	top: 5px;
	right: 10px;
	z-index: 2000;
	
	text-align: right;
	color: #000;
	font-size: 80%;
	padding: 0.5em 0em;
}

div.element {
	float: left;
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	padding: 5px;
}

div.element_right {
	float: right;
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	padding: 5px;
}

div.element_light {
	float: left;
	font-size: inherit;
	font-family: inherit;
	color: #000;
	padding: 5px;
	background-color: #fdd;
	border-radius: 10px;
}

div.parallax_element {
	overflow: auto;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
	padding: 20pt 0pt;
	position: relative;
	/*box-shadow: inset 0px 0px 50px rgba(0,0,0,.7);
	text-shadow: 0px 0px 10px rgba(0,0,0,1);*/
	box-sizing: border-box;
	background-blend-mode: multiply;

	/*display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;*/
}

div.card {
	position: relative;
	background-color: #fff;
	border-radius: 0.2em;
	box-shadow: 0px 0px 0.5em 0px rgba(0,0,0,.1);
	padding: 0.5em;
	margin: 0.5em auto;
	overflow: auto;
}
div.card_black {
	position: relative;
	background-color: var(--color2);
	color: #fff;
	border-radius: 0.2em;
	box-shadow: 0px 0px 0.5em 0px rgba(0,0,0,.1);
	padding: 0.5em;
	margin: 0.5em auto;
	overflow: auto;
}

div.close_button {
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
}

div.black {
	background-color: var(--color3);
	color: #fff;
}

div.black a {
	color: var(--color4);
}

div.divider {
	background-image: url(/files/site/monitor-window.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: 9999;
	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;
	*/
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
}

@media screen {
	div.block1 {
		width: 900px;
		box-sizing: border-box;
		margin: auto;
	}
	
	div.block2 {
		width: 50%;
		box-sizing: border-box;
	}

	div.block3 {
		width: 33.333%;
		box-sizing: border-box;
	}

	div.block4 {
		width: 25%;
		box-sizing: border-box;
	}
	
}
@media screen and (max-width: 900px) {
	div.block1 {
		width: 100%;
		box-sizing: border-box;
	}
	
	div.block2 {
		width: 100%;
		box-sizing: border-box;
	}

	div.block3 {
		width: 100%;
		box-sizing: border-box;
	}

	div.block4 {
		width: 50%;
		box-sizing: border-box;
	}
}
@media screen and (max-width: 600px) {
	div.block1 {
		width: 100%;
		box-sizing: border-box;
	}
	
	div.block2 {
		width: 100%;
		box-sizing: border-box;
	}

	div.block3 {
		width: 100%;
		box-sizing: border-box;
	}

	div.block4 {
		width: 100%;
		box-sizing: border-box;
	}
}

@keyframes pulse_darken {
	0% {
		background-color: rgba(0,0,0,0.2);
	}
	100% {
		background-color: rgba(0,0,0,0.7);
	}
}

div.flex_top {
	display: flex;
	align-items: flex-start;
	-webkit-align-items: flex-start;
	justify-content: center;
	-webkit-justify-content: center;
	flex-wrap: wrap;
}

div.flex_top_start {
	display: flex;
	align-items: flex-start;
	-webkit-align-items: flex-start;
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
	flex-wrap: wrap;
}

div.flex_bottom_start {
	display: flex;
	align-items: flex-end;
	-webkit-align-items: flex-end;
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
	flex-wrap: wrap;
}

div.flex_bottom {
	display: flex;
	align-items: flex-end;
	-webkit-align-items: flex-end;
	justify-content: space-evenly;
	-webkit-justify-content: space-evenly;
	flex-wrap: wrap;
}

div.flex_stretch {
	display: flex;
	align-items: stretch;
	-webkit-align-items: stretch;
	justify-content: center;
	-webkit-justify-content: center;
	flex-wrap: wrap;
}

div.flex_center {
	display: flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	flex-wrap: wrap;
}

div.flex_center_start {
	display: flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
	flex-wrap: wrap;
}

div.flex_center_end {
	display: flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
	flex-wrap: wrap;
}

div.flex_space_center {
	display: flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	flex-wrap: wrap;
}

div.flex_space {
	display: flex;
	align-items: flex-start;
	-webkit-align-items: flex-start;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	flex-wrap: wrap;
}

.mail_container {
	position: fixed;
	bottom: 1em;
	right: 1em;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
}

.mail_icon {
	width: auto;
	height: auto;
	color: #fff;
	background-color: var(--color1);
	border-radius: 50%;
	padding: 0.5em;
	font-size: 150%;
}

.mail_text {
	width: auto;
	height: auto;
	color: #fff;
	background-color: rgba(0,0,0,0.5);
	border-radius: 0.3em;
	padding: 0.5em 1em;
	margin-right: 0.5em;
	font-size: 80%;
}

div.news_block {
	padding: 1em;
}

a.news {
	display: block;
	width: 100%;
	color: #000;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
a.news:hover {
	color: #000;
	text-decoration: none;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

a.news:hover {
	transition-duration: 1s;
	transform: scale(1.02);
}

.fade_up_down {
	position: absolute;
	top: 50%;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(to bottom, transparent, #fff);
}

.news_img {
	width: 100%;
	height: 10em;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}

.news_date {
	/*position: absolute;
	top: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.3);
	padding: 4px 8px;
	color: #fff;*/
	font-size: 80%;
	opacity: 0.5;
}

.news_title {
	position: absolute;
	bottom: 0;
	left: 1em;
	color: #fff;
	font-size: 150%;
	text-shadow: 0 0 10px rgba(0, 0, 0, 1);
}

.news_body {
	padding: 1em;
	height: 5em;
	overflow: hidden;
}

.news_body * {
	margin: 0.5em 0 0 0;
}

.news_img_block {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}

.news_img_block img {
	max-height: 200px;
	margin-bottom: 1em;
	margin-right: 1em;
}

.button_more {
	display: block;
	width: auto;
	padding: 5px 0;
	background-color: rgba(0, 0, 0, 0.1);
	color: rgba(0, 0, 0, 1);
	text-decoration: none;
	text-align: center;
	margin: 1em;
	
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.05);
			box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.button_more:hover {
	color: #000;text-decoration: none;
	background-color: rgba(0, 0, 0, 0.2);
}

.tile {
	min-height: 20em;
	overflow: auto;
	display: flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	flex-wrap: wrap;
}

#form_name {
	width: 100%;
}

#form_contact {
	width: 100%;
}

#form_email {
	width: 100%;
}

#form_text {
	width: 100%;
}

a.button {
	display: inline-block;
}
a.button:hover {
	text-decoration: none;
}

.slick-dots {
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 1;
	position: relative;
	padding: 0;
}

.slick-dots li::before {
	content: '';
}


.slick-dots li {
	display: block;
	width: 0.7em;
	height: 0.7em;
	margin: 0.3em;
	background-color: var(--color3);
	border-radius: 50%;
	/*border: 1px solid var(--color1);*/
	cursor: pointer;
}

.slick-dots li.slick-active {
	background-color: var(--color1);
}

.slick-dots li:hover {
	background-color: var(--color1);
}

.slick-dots button {
	display: none;
}

input, select, textarea, button, a.button {
	font-family: inherit;
	font-size: inherit;
	border: 1px solid var(--color1);
	background-color: var(--color1-1);
	padding: 0.5em 1em;
	margin: 2px 0px;
	color: inherit;
	border-radius: 4px;
	box-sizing: border-box;
}

textarea {
	border-top: 1px solid #888;
	border-left: 1px solid #888;
	border-right: 1px solid #888;
}

input[type="number"] {
	width: 100px;
}

input[type="image"] {
	border: 0;
	background: transparent;
}

input[type="submit"], button, a.button {
	font-family: "font_regular";
	font-size: inherit;
	cursor: pointer;	
	color: var(--color-dark);
	/*padding: 1em 4em;*/
	text-align: center;
	border: 1px solid var(--color-dark);
	background-color: transparent;
	border-radius: 10em;
	transition: 0.5s;
	appearance: button;
	-webkit-appearance: button;
}
input[type="submit"]:hover, button:hover, a.button:hover {
	box-shadow: 0px 0px 20px 0px var(--color1-5);
	background-color: var(--color4);
}

input[type="submit"]:disabled, button:disabled {
	background-color: #ccc;
	background: linear-gradient(to bottom, #ccc, #bbb);
	/*box-shadow: 0px 0px 0px rgba(255,80,80,.5);*/
}
input:hover, select:hover, textarea:hover {
	background-color: var(--color4-1);
}
input:focus, select:focus, textarea:focus {
	background-color: #fff;
	box-shadow: 0px 0px 20px 0px var(--color1-5);
}

input[readonly] {
	filter: grayscale(50%);
}

label {
	cursor: pointer;
	padding: 0.5em 1em;
	line-height: 3em;
}
input[type="radio"] {
	display: none;
}
input[type="radio"]:checked + label {
	background-color: var(--color1-1);
	border-bottom: 3px solid var(--color1);
}
input[type="radio"] + label:hover {
	background-color: var(--color4-1);
}


input[type="checkbox"] {
	display: none;
}

input[type=checkbox] + label {
	width: auto;
	display: inline-block;
	cursor: pointer;
	position: relative;
    line-height: 1.1em;
	/*padding: 4px 4px 4px 20px;*/
}

input[type=checkbox] + label::before {
	content: "";
	display: inline-block;

	width: 1em;
	height: 1em;
	font-size: 1em;
	font-weight: bold;
	color: #fff;
	text-align: center;
    line-height: 1em;

	margin-right: 10px;
	background-color: var(--color-gray1);
	box-shadow: inset 0 0 8px 0 rgba(0, 0, 0, .2);
	vertical-align: middle;
}

input[type=checkbox]:checked + label::before {
	content: "\2713";
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
	background-color: var(--color1);
}

input[type=checkbox]:hover + label::before {
	box-shadow: inset 0 0 16px 0 rgba(0, 0, 0, .3);
}

img {
	border: 0px;
	border-radius: 0px;
	max-width: 100%;
	max-height: 80vh;
}

.mh100 { max-height: 100%; }

img.round {
	border-radius: 50%;
}

img.inline {
	height: 1em;
	max-width: 1.2em;
	vertical-align: middle;
}

.menu img.inline2 {
	height: 1.5em;
	vertical-align: middle;
}

img.inline2 {
	height: 1.5em;
	vertical-align: middle;
}

img.inline2b {
	height: 1.5em;
	vertical-align: baseline;
}

img.inline_service {
	height: 7em;
	vertical-align: middle;
}

p {
	margin: 5pt 0;
}

span.required {
	color: #F30;
}

span.red {
	padding: 10px;
	background-color: var(--color1);
	color: #fff;
	margin-right: 10px;
}

h1 {
	font-family: "century", "font_medium";
	font-size: 200%;
	font-weight: normal;
	margin: 18pt 0pt;
}
h2 {
	font-family: "century", "font_medium";
	font-size: 170%;
	font-weight: normal;
	margin: 12pt 0pt;
}
h3 {
	font-family: "century", "font_medium";
	font-size: 130%;
	font-weight: normal;
	margin: 9pt 0pt;
}

strong {
	font-family: "font_medium";
	font-weight: normal;
}

hr {
	border-top: 0px;
	border-left: 0px;
	border-right: 0px;
	border-bottom: 1px solid var(--color1);
}

ul.none {
	margin-top: 0;
	margin-bottom: 50px;
}

ul.none li {
	list-style-type: none;
}

ol li {
	margin-bottom: 0.5em;
}

li br {
	margin-bottom: 0.5em;
}

video {
	max-width: 100%;
}

iframe.video {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

@media only screen {
	iframe.video {
		width:  1280px;
		height:  720px;
	}
}
@media only screen and (max-width: 1280px) {
	iframe.video {
		width:  100vw;
		height:  56.25vw;
	}
}

.bottom_line {
	display: block;
	position: absolute;
	left: 1em;
	right: 1em;
	height: auto;
	bottom: -2px;
	z-index: 1000;
	text-align: center;
}

.yana {
	position: absolute;
	bottom: 0;
	top: -7em;
	left: 0;
	width: auto;
	z-index: 0;
}

@media only screen {
	.yana {
		display: block;
	}
}
@media only screen and (max-width: 1280px) {
	.yana {
		display: none;
	}
}

.diplom {
	position: absolute;
	text-align: center;
}

.diplom img {
	box-shadow: 0.5em 0.5em 1em 0 rgba(0, 0, 0, 0.3);
}

@media only screen {
	.diplom {
		display: block;
		position: absolute;
		height: 14em;
		top: -7em;
		left: calc( (100vw - 900px) / 2 + 900px);
		width: auto;
	}
}
@media only screen and (max-width: 1280px) {
	.diplom {
		display: none;
	}
}
@media only screen and (max-width: 900px) {
	.diplom {
		display: block;
		top: -10em;
		left: 2em;
		right: 2em;
		height: 20em;
	}
}

.femida {
	position: absolute;
	height: 100%;
	top: 0;
	right: 0;
	width: auto;
}

@media only screen {
	.femida {
		display: block;
	}
}
@media only screen and (max-width: 900px) {
	.femida {
		display: none;
	}
}


.feather {
	position: absolute;
	text-align: center;
}

@media only screen {
	.feather {
		display: block;
		position: absolute;
		height: 10em;
		top: -7em;
		right: 10em;
		width: auto;
	}
}
@media only screen and (max-width: 900px) {
	.feather {
		display: none;
	}
}


@keyframes service_percent_animation {
	0% {
		color: #000;
	}
	100% {
		color: var(--color-dark2);
	}
}

.service_percent {
	opacity: 0.5;
	font-size: 220%;
	font-family: "font_bold";
	animation-name: service_percent_animation;
	animation-duration: 1s;
	animation-timing-function: ease-in-out;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	
}

.vk2 {
	display: inline-block;
	background-image: url(/files/site/vk2.png);
	height: 0.8em;
	width: 1.6em;
	background-size: cover;
	background-position: left top;
}
.vk2:hover {
	background-position: right top;
}


#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 1rem 0.5rem;
	border-radius: 1rem;
	font-size: 80%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.col-7 {
    width: 58%;
}
.col-5 {
    width: 42%;
}
