/* CSS Document */
:root {
	--color1: rgba(255, 0, 187, 1);
	--color1-1: rgba(255, 0, 187, 0.1);
	--color1-2: rgba(255, 0, 187, 0.2);
	--color1-3: rgba(255, 0, 187, 0.3);
	--color1-5: rgba(255, 0, 187, 0.5);
	--color1-7: rgba(255, 0, 187, 0.7);

	--color2: rgba(187, 255, 0, 1);
	--color2-3: rgba(187, 255, 0, 0.3);
	--color2-5: rgba(187, 255, 0, 0.5);
	--color2-7: rgba(187, 255, 0, 0.7);

	--color3: rgba(0, 187, 255, 1);
	--color3-3: rgba(0, 187, 255, 0.3);
	--color3-5: rgba(0, 187, 255, 0.5);
	--color3-7: rgba(0, 187, 255, 0.7);
	
	--color-gray1: rgba(232, 232, 232, 1);
	--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);
}


::selection {
	color: #fff;
	background-color: var(--color1-5);
}

::-moz-selection {
	color: #fff;
	background-color: var(--color1-5);
}




@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: "font_header";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/AmaticSC-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "font_header_bold";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/AmaticSC-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "awesome";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/fontawesome-webfont.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_darken {
	0% {
		background-color: rgba(0,0,0,0.2);
	}
	100% {
		background-color: rgba(0,0,0,0.7);
	}
}




/* теги */

html {
	font-size: 12pt;
}

body {
	font-family: 'font_regular', Verdana, Tahoma, Geneva, sans-serif;
	background-color: #222;
	color: #fff;
	margin: 0px;
	padding: 0px;
	line-height: 1.5;
}

header {
	
}

main {
	min-height: 80vh;
}

main > *:first-child {
	/*padding-top: calc(4rem + 100px) !important;*/
}

footer {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background-color: #111;
	color: #fff;
}

a {
	font-size: inherit;
	color: var(--color3);
	font-family: inherit;
	font-style: normal;
	text-decoration: none;
	transition: 200ms;
}
a:hover {
	text-decoration: none;
	color: var(--color1);
}

a.dashed {
	text-decoration: underline;
	text-decoration-color: var(--color1);
	text-decoration-style: dotted;
}

a.admin {
	background-color: rgba(128,128,128,.3);
	border-radius: 2px;
	color: inherit;
	font-size: 80%;
	opacity: 0.5;
	padding: 2px;
	position: absolute;
	right: 5px;
	z-index: 1000;
	transition: 200ms;
	line-height: 1;
}

div > a.admin {
	opacity: 0.2;
}

div:hover > a.admin {
	opacity: 0.5;
}

a.admin:hover {
	opacity: 1 !important;
}

img {
	max-width: 100%;
	max-height: 100%;
}

img.inline {
	height: 1em;
	vertical-align: middle;
}

img.inline2 {
	height: 2em;
	vertical-align: middle;
}

h1 {
	font-family: "font_header_bold";
	font-weight: normal;
}
h2 {
	font-family: "font_header_bold";
	font-weight: normal;
}
h3 {
	font-family: "font_header_bold";
	font-weight: normal;
}

p {
	margin: 0;
}

p + p,
h1 + p,
h2 + p,
h3 + p,
ul + p,
ol + p
{
	margin-top: 0.5em;
}

ul.color {
	list-style: none;
	padding: 0.5em 0 0 0;
}
ul.color li::before {
	content: url(/files/site/li_marker.png);
}
ul.color li {
	margin-bottom: 1em;
}

.icons {
	font-family: "icons";
	vertical-align: middle;
}



/* form */

input, select, textarea, button, a.button {
	font-size: inherit;
	border: 1px solid transparent;
	background-color: var(--color-gray1-5);
	padding: 1em 1em;
	color: #000;
	border-radius: 4px;
	box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
	border: 1px solid var(--color-gray2);
	background-color: #fff;
}

input[type="number"] {
	width: 100px;
}

input[type="image"] {
	border: 0;
	background: transparent;
}

input[type="submit"], button, a.button {
	cursor: pointer;	
	color: #fff !important;
	text-align: center;
	border: 2px solid var(--color1);
	border-radius: 4px;
	background-color: transparent;
	padding: 0.5em 1em;
	transition: 500ms;
	display: inline-block;
	margin-bottom: 1em;
	font-family: "font_bold";
	font-size: 80%;
}
input[type="submit"]:hover, button:hover, a.button:hover {
	color: #fff !important;
	background-color: var(--color1);
}

input[type="submit"]: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 {
}
input:not([type="submit"]):focus, select:focus, textarea:focus {
	background-color: #fff;
}

input[readonly] {
	filter: grayscale(50%);
	opacity: 0.5;
}

label {
	cursor: pointer;
	padding: 0.5em 1em;
	line-height: 3em;
}


input[type="radio"] {
	/*display: none;*/
	opacity: 0;
	position: absolute;
}

input[type="radio"] + label {
	width: 100%;
	display: inline-block;
	cursor: pointer;
	position: relative;
    line-height: 1.1em;
	padding: 0em 0em 0em 2em;
}

input[type="radio"] + label::before {
	content: "";
	display: block;
	
	position: absolute;
	left: 0;
	top: 0;

	width: 1.2em;
	height: 1.2em;
	border-radius: 50%;
	font-size: 1em;
	font-weight: bold;
	color: #fff;
	text-align: center;
    line-height: 1em;

	margin-right: 10px;
	background-color: var(--color-gray1-5);
	box-shadow: inset 0 0 8px 0 rgba(0, 0, 0, .2);
	vertical-align: middle;
}

input[type="radio"]:checked + label::before {
	content: "\2713";
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
	background-color: var(--color1);
}

input[type="radio"]:hover + label::before {
	box-shadow: inset 0 0 16px 0 rgba(0, 0, 0, .3);
}



input[type="checkbox"] {
	display: none;
}

input[type="checkbox"] + label {
	width: 100%;
	display: inline-block;
	cursor: pointer;
	position: relative;
    line-height: 1.1em;
	padding: 0em 0em 0em 2em;
}

input[type="checkbox"] + label::before {
	content: "";
	display: block;
	
	position: absolute;
	left: 0;
	top: 0;

	width: 1.2em;
	height: 1.2em;
	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);
}




/* table */

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: var(--color-gray1);
	padding: 4px 2px;
	border-right: 1px solid #fff;
}

table.highlight tr:hover,
tr.highlight:hover {
	background-color:  var(--color-gray1);
}








/*  */

.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;
}

.login {
	position: absolute;
	top: 1em;
	right: 1em;
	z-index: 9999;
	
	text-align: right;
	color: #000;
	font-size: 80%;
	padding: 0.5em 0em;
}



.white_text {
	color: #fff;
}
.white_text a,
.white_text h1,
.white_text h2,
.white_text h3 {
	color: #fff;
}
.white_text a:hover {
	color: var(--color1);
}

.gray {
	opacity: 0.5;
}

.color1 {
	color: var(--color1);
}

.color2 {
	color: var(--color2);
}

.color3 {
	color: var(--color3);
}

.light {
	font-family: "font_light";
}

.medium {
	font-family: "font_medium";
}

.huge {
	font-size: 150%;
}

.sm {
	font-size: 80%;
}

.img_bg {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg_color1 {
	background-color: var(--color1);
}

.bg_color2 {
	background-color: var(--color2);
}

.bg_color3 {
	background-color: var(--color3);
}


.bg_tint {
	background-color: rgba(0, 0, 0, 0.5);
	background-blend-mode: multiply;
}

.bg_light {
	background-color: var(--color1-2);
}

.bg_gray1 {
	background-color: var(--color-gray1);
}

.black {
	background-color: var(--color3);
	color: #fff;
}

.black a {
	
}

.mh100 { max-height: 100vh; }
.mh80 { max-height: 80vh; }

.hidden {
	display: none;
}


.button_more {
	display: block;
	width: auto;
	padding: 5px 0;
	background-color: var(--color1-5);
	color: #fff;
	text-decoration: none;
	text-align: center;
	margin-top: 1em;
}

.button_more:hover {
	color: #fff;
	text-decoration: none;
	background-color: var(--color1);
}

.round {
	border-radius: 50%;
}

.hamburger svg {
	width: 1.5rem;
	height: 1.5rem;
	fill: var(--color1);
}



/* modal */

.modal {
	display: none;
	position: fixed;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
	z-index: 9999;
	padding-top: 100px;
}

.modal_bg {
	position: fixed;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
	background-color: rgba(0,0,0,0.7);
	overflow: auto;
}

.modal_card {
    position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
}

.modal_container {
    position: relative;
}

.close_modal {
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	cursor: pointer;
	opacity: 0.5;
	transition: 200ms;
}
.close_modal:hover {
	opacity: 1;
}
.close_modal svg {
	width: 1.5rem;
	height: 1.5rem;
	display: block;
	fill: var(--color1);
}


/* slider */


.slick-dots {
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 1;
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 0;
	margin-bottom: 1.5rem;
	grid-gap: 0.5rem;
}

.slick-dots li::before {
	content: '';
}


.slick-dots li {
	display: block;
	width: 0.6em;
	height: 0.3em;
	background-color: rgba(255,255,255,1.00);
	border-radius: 2px;
	border: 0px solid var(--color1);
	cursor: pointer;
	transition: 200ms;
}

.slick-dots li.slick-active {
	background-color: var(--color1);
	width: 1.2em;
}

.slick-dots li:hover {
	background-color: var(--color1-7);
}

.slick-dots button {
	display: none;
}

.slick-slide {
	outline: none;
}

.slick-prev {
	position: absolute;
	left: 0;
	top: calc((100% - 50px) / 2);
	padding: 0em;
	cursor: pointer;
	z-index: 100;
}

.slick-next {
	position: absolute;
	right: 0;
	top: calc((100% - 50px) / 2);
	padding: 0em;
	cursor: pointer;
	z-index: 100;
}

.slick-prev svg,
.slick-next svg {
	height: 50px;
	opacity: 0.5;
	transition: 200ms;
	fill: rgba(255, 255, 255, 1);
}

.slick-prev:hover svg,
.slick-next:hover svg {
	opacity: 1;
}





/* сайт */

.menu_top {
	position: relative;
	padding: 1rem 0rem;
	background-color: #111;
	color: #fff;
    font-family: "font_medium";
}
.menu_top a.menu {
	display: block;
	color: #fff;
	padding: 0 0;
	text-transform: uppercase;
	font-size: 70%;
	/*border-bottom: 2px solid transparent;*/
}
.menu_top a.menu:hover {
	color: var(--color2);
	/*border-bottom: 2px solid var(--color1);*/
}
.menu_selected {
	color: var(--color2) !important;
	/*border-bottom-color: var(--color1) !important;*/
}



.menu_mobile {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #111;
	padding: 0 var(--bs-gutter-x,.75rem);
	margin: 0;
	z-index: 100000;
	overflow-y: auto;
}

.menu_mobile li {
	display: block;
}

.menu_mobile a {
	display: block;
	padding: 1rem 0;
	color: #fff;
}

.menu_mobile_links {
	position: absolute;
	top: 2em;
	right: 1em;
	width: auto;
}


.logo {
	display: block;
	height: 3rem;
	width: auto;
}



.tab {
	padding: 0.1em 0.3em;
	border-radius: 0px;
	border-bottom: 2px solid var(--color1);
}
.tab:hover {
	background-color: var(--color1-5);
	color: #fff !important;
	border-radius: 4px;
}
.tab_selected {
	padding: 0.1em 0.3em;
	border-radius: 4px;
	background-color: var(--color1);

}
.tab_selected:hover {
	background-color: var(--color1);
	color: #fff !important;
}


.card {
	color: #000;
}
a .card {
	color: #000;
}
a .card h3 {
	color: var(--color1);
}

.white_text a .card {
	color: #fff;
}

.required {
	color: #f00;
}


.news_img_block {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	grid-gap: 1em;
}

.news_img_block img {
	max-height: 200px;
}



.anketa .card {
	padding: 1em 1em 1em 1em;
	margin-bottom: 1em;
}

.anketa {
	background-color: var(--color1-3);
}
input.anketa_question {
	font-weight: bold;
}
.anketa input,
.anketa textarea,
.anketa select {
	border-color: var(--color1-3);
}

video {
	max-width: 100%;
}

.video iframe {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

a.auth {
	display: inline-block;
	padding: 0.5em 1em;
	border-bottom: 1px solid var(--color-gray2);
	color: var(--color-gray2);
	font-weight: bold;
}
a.auth_active, a.auth:hover {
	color: var(--color1);
	border-bottom: 4px solid var(--color1);
}

.login_1 {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.login_2 {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.tag {
	display: inline-block;
	background-color: var(--color-gray1);
	color: inherit;
	padding: 4px 6px;
	border-radius: 4px;
	line-height: 1;
}

.tag:hover {
	background-color: var(--color1-3);
	color: inherit;
}

.tag_selected {
	display: inline-block;
	background-color: var(--color1);
	color: #fff;
	padding: 4px 6px;
	border-radius: 4px;
	line-height: 1;
}

.tag_selected:hover {
	background-color: var(--color1-7);
	color: #fff;
}

input[type="range"] {
	accent-color: var(--color1);
}

.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%;
}

.video_item {
	position: relative;
}

.video_item a {
	color: #fff;
}
.video_item:hover a {
	color: var(--color1);
}
.video_cover {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
	border-radius: 0.5rem;
}

.video_tags {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 1.5rem;
	padding: 0.2rem 0.4rem;
	border-radius: 0 0.5rem;
	background-color: rgba(0,0,0,0.4);
	line-height: 1;
}

.tour_item {
	position: relative;
}
.tour_item {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
	border-radius: 0.5rem;
}


.main {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: rgba(0, 0, 0, 0.5);
	background-blend-mode: multiply;
}

.map {
	color: #000;
	width: 100%;
	height: 70vh;
}

a.color1_invert {
	background-color: var(--color1);
	color: #fff;
	padding: 2px 4px;
	border-radius: 2px;
}
a.color1_invert:hover {
	background-color: var(--color1-7);
}

a.color2_invert {
	background-color: var(--color2);
	color: #fff;
	padding: 2px 4px;
	border-radius: 2px;
}
a.color2_invert:hover {
	background-color: var(--color2-7);
}

a.color3_invert {
	background-color: var(--color3);
	color: #fff;
	padding: 2px 4px;
	border-radius: 2px;
}
a.color3_invert:hover {
	background-color: var(--color3-7);
}

.tile {
	text-align: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 50px 0px;
}


div.darken_bg {
	animation-name: pulse_darken;
	animation-duration: 2s;
	animation-timing-function: ease;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-direction: alternate;

	cursor: pointer;
	text-shadow: 0 0 10px #000;
	background-color: rgba(0,0,0,0.3);
	background-blend-mode: multiply;
}

div.darken_bg:hover {
	background-blend-mode: normal;
}

.video_tag_selected {
	background-color: rgba(255,255,255, 0.15);
	padding-bottom: 2px;
	border-radius: 2px;
	border-bottom: 2px solid var(--color1);
}


.main_slider .slick-prev {
	left: 2rem;
	bottom: 1rem;
	top: auto;
}
.main_slider .slick-next {
	right: 2rem;
	bottom: 1rem;
	top: auto;
}
.main_slider .slick-prev svg,
.main_slider .slick-next svg {
	height: 2rem;
}

.video_main {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-color: rgba(0,0,0, 0.4);
	background-blend-mode: multiply;
	aspect-ratio: 16 / 8;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	color: #fff;
}

.video_main > div {
	/*min-height: 50vh;*/
}





/* xxl */
@media screen {

}

@media screen and (max-width: 1800px) {
	
}

/* xl */
@media screen and (max-width: 1400px) {
	
}

/* lg */
@media screen and (max-width: 1200px) {
	.video_main {
		aspect-ratio: 1 / 1;
	}
}

/* md */
@media screen and (max-width: 992px) {

}

/* sm */
@media screen and (max-width: 768px) {
}

/* xs */
@media screen and (max-width: 576px) {
	.video_main {
		aspect-ratio: 3 / 4;
	}

}






