* {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	outline: 0;
	-webkit-appearance: none;
	border-radius: 0;
	line-height: 0;
	font-weight: normal;
	border: 0;
	background: none;
	box-sizing: border-box;
}

body, html {
    touch-action: pan-x pan-y;
    -webkit-text-size-adjust: 100%;
	--header-w: 48px;
	background: #232323;
	color: #fff;
	width: 100%;
	height: 100svh;
	height: var(--app-height, 100svh);
	position: fixed;
	top: 0;
	left: 0;
	overflow: hidden;
	font-family: "Roboto Mono", sans-serif;
}

img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

@font-face {
    font-family: "Roboto Mono";
    src: url("../fonts/RobotoMono-Medium.woff2") format("woff2"), url("../fonts/RobotoMono-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Mono";
    src: url("../fonts/RobotoMono-Regular.woff2") format("woff2"), url("../fonts/RobotoMono-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
	animation: fadeInAnimation ease 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

body::-webkit-scrollbar, .popup-content::-webkit-scrollbar, .header-top__result--content::-webkit-scrollbar, .content-data__container::-webkit-scrollbar, .game-data__content::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background-color: rgba(255, 255, 255, .25);
}

body::-webkit-scrollbar-corner, .popup-content::-webkit-scrollbar-corner, .header-top__result--content::-webkit-scrollbar-corner, .content-data__container::-webkit-scrollbar-corner, .game-data__content::-webkit-scrollbar-corner {
	background-color: rgba(255, 255, 255, .25);
}
  
body::-webkit-scrollbar-thumb, .popup-content::-webkit-scrollbar-thumb, .header-top__result--content::-webkit-scrollbar-thumb, .content-data__container::-webkit-scrollbar-thumb, .game-data__content::-webkit-scrollbar-thumb {
	background-color: #30C870;
}

.map-secret__slider--item, .map-secret__slider, .map-zoom a, .popup-header__right--close, .map-zoom, .map-secret, .popup-content__text p a, .header-button, .header-button svg, .header-top__items--line, .header-top__items, .header-top__items a, .header-top__wrapper button, .header-top__result--content a, .header-links__content a, .header-links, .content-data__close, .content-data__header ul li a, .game-data__close, .js-call-game, .game-data__answers a, .gates-button a, .content-data__copy-link, .content-data__content--organization {
    transition: all 0.3s ease;
}

.map-balloons__item {
    transition: background-color 0.3s ease, transform 0.2s ease-out, box-shadow 0.3s ease;
}

.map-balloons__item span {
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

header {
	position: fixed;
	width: 48px;
	background: #000;
	background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(40, 40, 40, 0.8) 100%);
	height: 100svh;
	padding: 16px 0 28px 0;
	overflow: hidden;
	z-index: 6;
}

.header-content {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	height: 100%;
}

.header-top {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.header-bottom {
	padding: 0 12px;
}

.header-top__logos {
	padding: 0 12px;
}

.header-logo {
	transition: opacity 0.3s ease;
}

.header-logo:hover {
	opacity: .7;
}

.header-logo {
	position: relative;
	display: block;
	width: 24px;
	height: 42px;
}

.header-opened .header-logo {
	width: 172px;
	height: 77px;
}

.header-logo__small {
	width: 24px;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
}

.header-logo__big {
	width: 172px;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.header-opened .header-logo__small {
	opacity: 0;
}

.header-opened .header-logo__big {
	opacity: 1;
}

.header-button {
	display: flex;
}

.header-button:hover {
	opacity: .7;
}

.header-opened header {
	width: 256px;
}

body.header-opened {
	--header-w: 256px;
}

.header-opened .header-button svg {
	transform: scaleX(-1);
}

.header-opened .header-button {
	justify-content: flex-end;
}

.header-button svg {
	width: 20px;
	height: auto;
}

body.header-opened .map-secret {
	left: 272px;
}

.header-top__logos {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.header-top__logos .header-button {
	display: none;
}

.header-top__items--grid {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.header-top__items a {
	height: 48px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding-right: 12px;
	color: #fff;
	flex-wrap: nowrap;
}

.header-top__items a div:last-child {
	margin-left: auto;
}

.header-top__items--line {
	height: 100%;
	width: 4px;
	opacity: 0;
}

.header-top__items--active .header-top__items--line, .header-top__items a:hover .header-top__items--line {
	opacity: 1;
}

.header-top__items--active, .header-top__items a:hover {
	background-color: rgba(255, 255, 255, .15);
}

.header-top__items--name {
	font-size: 12px;
	line-height: 19px;
	text-transform: uppercase;
	display: none;
}

.header-top__items--count {
	font-size: 12px;
	line-height: 19px;
	color: #A6A6A6;
	display: none;
}

.header-opened .header-top__items--name {
	display: block;
}

.header-opened .header-top__items--count {
	display: block;
}

.header-top__items--icon img {
	width: 24px;
	height: auto;
}

.header-top__items {
	display: none;
}

.header-top__items--current {
	display: block;
}

main {
	background: #232323;
	background: linear-gradient(180deg, rgba(35, 35, 35, 1) 0%, rgba(55, 50, 60, 1) 100%);
	height: 100svh;
	height: var(--app-height, 100svh);
	position: relative;
	overflow: hidden;
}

.map {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	touch-action: none;
}

.map-drag {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    touch-action: none;
}

.map-image {
	position: absolute;
	width: 100%;
	height: 100%;
}

.map-image img {
	position: absolute;
}

.map-image__pic {
	transition: left 0.2s ease-out, top 0.2s ease-out, width 0.2s ease-out, height 0.2s ease-out, transform 0.2s ease-out;
}

.map-image__pic.no-transition {
	transition: none;
}

.map-balloons {
	transition: left 0.2s ease-out, top 0.2s ease-out, width 0.2s ease-out, height 0.2s ease-out, transform 0.2s ease-out;
}

.map-balloons.no-transition {
	transition: none;
}

.map-balloons.no-transition .map-balloons__item {
	transition: none;
}

.map-balloons {
	z-index: 3;
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
}

.map-balloons__item {
	pointer-events: auto;
	cursor: pointer;
	width: 40px;
	height: 40px;
	border-radius: 100px;
	position: absolute;
	border: 1px solid #000;
	background-color: rgba(0, 0, 0, .75);
	transform-origin: center center;
	touch-action: none;
}

.map-balloons__content {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.map-balloons__item img {
	width: 30px;
	height: auto;
}

.map-balloons__item:hover {
	background-color: rgba(0, 0, 0, .6);
	z-index: 10;
}

.map-balloons__item:hover span {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.3s ease, visibility 0s linear;
}

.map-balloons__item span {
	display: block;
	visibility: hidden;
	position: absolute;
	background-color: #fff;
	padding: 4px 8px;
	color: #4A4A4A;
	font-size: 12px;
	line-height: 17px;
	bottom: 48px;
	min-width: max-content;
	text-align: center;
	opacity: 0;
	z-index: 10;
	transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.map-balloons__item span.map-balloons__item--tooltip-bottom {
	bottom: auto;
	top: 48px;
}

.map-secret {
	position: absolute;
	z-index: 4;
	border-radius: 100px;
	background-color: rgba(0, 0, 0, .6);
	color: #63AC92;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 12px;
	border: 1px solid rgba(255, 255, 255, .5);
	bottom: 16px;
	left: 64px;
	height: 40px;
}

.map-secret p {
	font-size: 12px;
	line-height: 17px;
	font-weight: 500;
}

.map-secret__slider {
	background-color: rgba(255, 255, 255, .15);
	border-radius: 100px;
	height: 24px;
	position: relative;
	padding: 2px;
	width: 48px;
}

.map-secret__slider--item {
	border-radius: 100px;
	background: #0E8B44;
	background: linear-gradient(-180deg,rgba(14, 139, 68, 1) 0%, rgba(133, 135, 28, 1) 100%);
	width: 20px;
	height: 20px;
	position: absolute;
	cursor: pointer;
	left: 2px;
	top: 2px;
}

.map-secret__slider--item.no-transition {
	transition: none;
}

.map-secret__slider--item.map-secret__slider--moved {
	left: 26px;
}

.map-secret__slider.map-secret__slider--active {
	background-color: rgba(255, 255, 255, .75);
}

.map-zoom {
	right: 16px;
	bottom: 16px;
	position: absolute;
	z-index: 4;
	background-color: rgba(255, 255, 255, .75);
	width: 80px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
}

.map-zoom a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4A4A4A;
	font-size: 20px;
	line-height: 29px;
}

.map-zoom a:nth-child(1) {
	border-right: 1px solid rgba(74, 74, 74, .25);
}

.map-zoom a:hover {
	opacity: .5;
}

.popup {
	position: fixed;
	width: 35%;
	min-width: 528px;
	height: 100svh;
	height: var(--app-height, 100svh);
	z-index: 5;
	background-color: rgba(0, 0, 0, .8);
	right: 0;
	display: none;
}

.popup-wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.popup-header {
	padding: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, .25);
	display: flex;
	gap: 16px;
	justify-content: space-between;
	flex-shrink: 0;
}

.popup-header__left ul {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-bottom: 4px;
}

.popup-header__left ul li {
	font-size: 10px;
	text-transform: uppercase;
	line-height: 19px;
}

.popup-header__left ul li.popup-header__left--point {
	width: 5px;
	height: 5px;
	background-color: #fff;
	border-radius: 100px;
}

.popup-header__left h2 {
	font-size: 20px;
	line-height: 29px;
}

.popup-header__right {
	margin-left: auto;
}

.popup-header__right--close {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	min-height: 24px;
}

.popup-header__right--close svg {
	width: 24px;
	height: auto;
}

.popup-header__right--close:hover {
	opacity: .7;
}

.popup-content {
	padding: 16px;
	overflow-y: auto;
	flex: 1;
	min-height: 0; 
}

.popup-content__slider {
	width: 100%;
	margin-bottom: 16px;
	position: relative;
}

.popup-content__slider--audio {
	min-height: 240px;
}

.popup-slider {
	width: 100%;
}

.popup-slider .swiper-slide {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.popup-slider__media {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #3A3A3A;
	position: relative;
}

.popup-slider__media::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -16px 0 0 -16px;
	width: 32px;
	height: 32px;
	border: 3px solid rgba(255, 255, 255, .2);
	border-top-color: #fff;
	border-radius: 100px;
	animation: popup-loader-spin .8s linear infinite;
}

.popup-slider .swiper-slide.is-loaded .popup-slider__media::after {
	display: none;
}

.popup-slider__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.3s ease;
	cursor: zoom-in;
}

.popup-slider .swiper-slide.is-loaded .popup-slider__media img {
	opacity: 1;
	pointer-events: auto;
}

.popup-slider__caption {
	color: #fff;
	font-size: 12px;
	line-height: 19px;
	margin-top: 8px;
}

.popup-slider {
	container-type: inline-size;
}

.popup-slider .swiper-button-prev,
.popup-slider .swiper-button-next {
	top: 37.5cqw;
}

.popup-slider .swiper-pagination {
	display: flex !important;
	top: 0 !important;
	bottom: auto !important;
	left: 0 !important;
	width: 100% !important;
	height: auto;
	aspect-ratio: 4 / 3;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 10px;
	pointer-events: none;
}

.popup-slider .swiper-pagination-bullet {
	background: #fff;
	opacity: .5;
	pointer-events: auto;
}

.popup-slider .swiper-pagination-bullet-active {
	opacity: 1;
	background: #0E8B44;
}

.popup-slider .swiper-button-prev,
.popup-slider .swiper-button-next {
	width: 32px;
	height: 32px;
	background-color: rgba(0, 0, 0, .5);
	border-radius: 100px;
}

.popup-slider .swiper-button-prev:after,
.popup-slider .swiper-button-next:after {
	font-size: 14px;
	color: #fff;
}

.popup-slider .swiper-button-prev:hover,
.popup-slider .swiper-button-next:hover {
	opacity: .7;
}

.popup-content__text {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.popup-content__text p {
	font-size: 14px;
	line-height: 21px;
}

.popup-content__text p a {
	color: rgba(255, 255, 255, .75);
	border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.popup-content__text p a:hover {
	color: #fff;
	border-bottom-color: transparent;
}

.popup-content__text ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.popup-content__text ul li {
	font-size: 14px;
	line-height: 21px;
	list-style: disc;
	margin-left: 12px;
}

.popup-content__text ul li::marker {
	color: #0E8B44;
}

body.popup-open .map-zoom {
	right: calc(max(35vw, 528px) + 16px);
}

.swiper-pagination-bullet {
	width: 6px !important;
	height: 6px !important;
}

.swiper-pagination {
	display: none;
}

.audio-animation {
	display: flex;
	position: absolute;
	z-index: 6;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	align-items: flex-end;
	justify-content: flex-start;
	padding: 16px;
	opacity: 1;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.audio-animation:hover {
	opacity: .85;
}

.audio-animation--hidden {
	display: none;
	pointer-events: none;
}

.audio-animation img {
	width: clamp(144px, 16.5vw, 240px);
	max-width: 100%;
	height: auto;
	background-color: rgba(255, 255, 255, .3);
	border-radius: 100px;
	box-shadow: 0 0 32px 8px rgba(255, 255, 255, .3);
	cursor: pointer;
	pointer-events: auto;
}

.popup-loader {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup-loader p {
	font-size: 14px;
	color: rgba(255, 255, 255, .6);
}

.popup-loader__spinner {
	width: 40px;
	height: 40px;
	border: 3px solid rgba(255, 255, 255, .2);
	border-top-color: #fff;
	border-radius: 100px;
	animation: popup-loader-spin .8s linear infinite;
}

.game-loader {
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.game-loader p {
	font-size: 14px;
	color: rgba(255, 255, 255, .6);
}

.game-loader__spinner {
	width: 40px;
	height: 40px;
	border: 3px solid rgba(255, 255, 255, .2);
	border-top-color: #fff;
	border-radius: 100px;
	animation: popup-loader-spin .8s linear infinite;
}

.page-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100svh;
	height: var(--app-height, 100svh);
	background: #232323;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.page-loader.is-hidden {
	opacity: 0;
	pointer-events: none;
}

.page-loader__spinner {
	width: 48px;
	height: 48px;
	border: 3px solid rgba(255, 255, 255, .2);
	border-top-color: #fff;
	border-radius: 100px;
	animation: popup-loader-spin .8s linear infinite;
}

.element-hidden {
	display: none;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.fancybox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100svh;
	height: var(--app-height, 100svh);
	background-color: rgba(0, 0, 0, .92);
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.fancybox-overlay.is-open {
	display: flex;
}

.fancybox-overlay.is-visible {
	opacity: 1;
}

.fancybox-overlay__img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	user-select: none;
	pointer-events: none;
}

.fancybox-overlay__caption {
	position: absolute;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	max-width: min(90%, 640px);
	text-align: center;
	color: #fff;
	font-size: 14px;
	line-height: 21px;
	padding: 8px 16px;
	background-color: rgba(0, 0, 0, .5);
	border-radius: 8px;
	pointer-events: none;
}

.fancybox-overlay__close,
.fancybox-overlay__nav {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #fff;
	background-color: rgba(255, 255, 255, .15);
	border-radius: 100px;
}

.fancybox-overlay__close:hover,
.fancybox-overlay__nav:hover {
	background-color: rgba(255, 255, 255, .25);
}

.fancybox-overlay__close {
	top: 24px;
	right: 24px;
	width: 40px;
	height: 40px;
}

.fancybox-overlay__close svg {
	width: 18px;
	height: 18px;
}

.fancybox-overlay__nav {
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
}

.fancybox-overlay__nav--prev {
	left: 24px;
}

.fancybox-overlay__nav--next {
	right: 24px;
}

.fancybox-overlay__nav svg {
	width: 20px;
	height: 20px;
}

.header-top__wrapper:has(input:focus) {
	border-bottom-color: #0E8B44;
}

.header-top__wrapper button {
	cursor: pointer;
}

.header-top__wrapper button:hover {
	opacity: .7;
}

.header-top__wrapper button svg {
	width: 18px;
	height: auto;
}

.header-top__input {
	font-family: "Roboto Mono", sans-serif;
	font-size: 14px;
	line-height: 21px;
	width: 100%;
	color: #fff;
	display: none;
}

.header-top__input::placeholder {
	color: #A6A6A6;
}

.header-top__search {
	position: relative;
	margin-top: 8px;
}

.header-top__result {
	display: none;
	position: relative;
	width: 100%;
}

.header-top__result--content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 12px;
	background-color: rgba(0, 0, 0, .9);
	position: absolute;
	margin: 0 12px;
	max-height: 192px;
	overflow: auto;
	width: calc(100% - 24px);
}

.header-top__result--content a {
	font-size: 12px;
	line-height: 19px;
	color: #fff;
}

.header-top__result--content a:hover {
	opacity: .7;
}

.header-opened .header-top__input {
	display: block;
}

.header-opened .header-top__wrapper {
	border-bottom: 1px solid #9D9D9D;
	gap: 8px;
	padding-bottom: 8px;
	justify-content: flex-start;
}

.header-top__wrapper {
	margin: 0 12px;
	display: flex;
	justify-content: center;
}

.header-opened .header-top__search {
	display: block;
}

.header-links {
	display: none;
	margin-top: 16px;
}

.header-bottom .header-button {
	margin-top: 24px;
}

.header-links__content {
	display: flex;
	gap: 12px;
	flex-direction: column;
}

.header-links__content a {
	color: #BFC7D7;
	font-size: 12px;
	line-height: 19px;
	text-transform: uppercase;
}

.header-links__content a:hover {
	color: #fff;
}

.header-opened .header-links {
	display: block;
}

.balloon-outlined {
	box-shadow: 0 0 16px 4px #fff;
	z-index: 10;
}

.map-balloons__item--hidden {
	display: none;
}

.content-data {
	width: 100%;
	height: 100%;
	position: absolute;
	background: #000;
	background: linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(40, 40, 40, 1) 100%);
	z-index: 5;
	display: none;
}

.content-data img {
	pointer-events: auto;
	cursor: zoom-in;
}

.content-data__wrapper {
	width: 100%;
	height: 100%;
	padding: 32px 32px 0 80px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.content-data__header {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
}

.content-data__close {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	min-height: 32px;
}

.content-data__close svg {
	width: 32px;
	height: auto;
}

.content-data__close:hover {
	opacity: .7;
}

.content-data__header ul {
	display: flex;
	gap: 16px;
}

.content-data__header ul li a {
	display: inline-block;
	font-size: 12px;
	line-height: 40px;
	color: #fff;
	text-transform: uppercase;
	height: 40px;
	padding: 0 24px;
	background-color: #454343;
}

.content-data__header ul li a.content-data__header--active, .content-data__header ul li a:hover {
	background-color: #389A4B;
}

.content-data__text {
	position: relative;
	flex: 1;
	min-height: 0;
}

.content-data__content {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 40px 0;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	pointer-events: auto;
}

.content-data__container {
	height: 100%;
	overflow-y: auto;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding-right: 16px;
	padding-bottom: 16px;
}

.content-data__content--intro {
	display: flex;
	gap: 16px;
	flex-direction: column;
}

.content-data__content--intro h2 {
	font-size: 24px;
	line-height: 32px;
	text-transform: uppercase;
}

.content-data__content--intro p {
	font-size: 16px;
	line-height: 25px;
	max-width: 1280px;
}

.content-data__content--numbers {
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;
	padding: 24px 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.content-data__content--number {
	display: flex;
	gap: 8px;
	flex-direction: column;
}

.content-data__content--number p:first-child {
	color: #30C870;
	font-size: 24px;
	line-height: 32px;
}

.content-data__content--number p:nth-child(2) {
	font-size: 14px;
	line-height: 21px;
}

.content-data__content--column {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 40px;
}

.content-data__content--column.content-data__content--column--alt {
	grid-template-columns: 1fr 1.5fr;
}

.content-data__content--column div {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.content-data__content--column div p {
	font-size: 14px;
	line-height: 21px;
}

.content-data__content--column div h3 {
	font-size: 14px;
	line-height: 21px;
	text-transform: uppercase;
	color: #30C870;
}

.content-data__content--column div img {
	width: 100%;
	height: auto;
}

.content-data__content--hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.content-data__header h2 {
	font-size: 24px;
	line-height: 32px;
	text-transform: uppercase;
}

.content-data__history--grid {
	display: grid;
	gap: 64px;
	margin-bottom: -10px;
}

.content-data__history--grid--alt {
	margin-left: 300px;
	margin-top: -10px;
	margin-bottom: 0;
}

.content-data__history--grid .content-data__history--item {
	min-width: 600px;
}

.content-data__container--alt {
	display: block;
}

.content-data__history--line {
	border: 1px solid green;
	width: 100%;
}

.content-data__history--road {
	height: 100%;
	width: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.content-data__history--dashed {
	border-left: 1px dashed #54603C;
	height: 100%;
}

.content-data__history--item {
	display: flex;
	gap: 16px;
}

.content-data__history--content {
	background-color: #30312F;
	width: 100%;
	margin-bottom: 56px;
	border-radius: 20px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.content-data__history--grid.content-data__history--grid--alt .content-data__history--content {
	margin-bottom: 0;
	margin-top: 56px;
}

.content-data__history--circle {
	border: 2px solid #fff;
	border-radius: 100px;
	background-color: #63AC92;
	min-width: 20px;
	min-height: 20px;
}

.content-data__history--round {
	min-width: 10px;
	min-height: 10px;
	background-color: #A9A3A9;
	border-radius: 100px;
}

.content-data__history--grid--alt .content-data__history--road {
	transform: rotate(180deg);
}

.content-data__history--year {
	border-bottom: 1px solid #5C5C5C;
	padding-bottom: 16px;
}

.content-data__history--year p {
	font-size: 24px;
	line-height: 32px;
	color: #30C870;
}

.content-data__history--figure {
	display: flex;
	gap: 16px;
}

.content-data__history--figure div:first-child {
	width: 96px;
	height: 96px;
	min-width: 96px;
	min-height: 96px;
	position: relative;
	overflow: hidden;
	border-radius: 100px;
}

.content-data__history--figure div:first-child img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	object-position: center;
	object-fit: cover;
}

.content-data__history--figure div:nth-child(2) p:first-child {
	font-size: 16px;
	line-height: 25px;
	margin-bottom: 8px;
}

.content-data__history--figure div:nth-child(2) p:nth-child(2) {
	font-size: 14px;
	line-height: 19px;
	color: #7E8082;
}

.content-data__history--item--adaptive {
	display: none;
}

.content-data__header--actions {
	display: flex;
	align-items: center;
	gap: 24px;
}

.content-data__copy-link {
	font-size: 12px;
	line-height: 16px;
	text-transform: uppercase;
	letter-spacing: .02em;
	color: #BFC7D7;
	cursor: pointer;
	white-space: nowrap;
}

.content-data__copy-link:hover {
	opacity: .7;
}

.content-data__copy-link.is-copied {
	color: #30C870;
}

.content-data__copy-link--row {
	display: flex;
}

.content-data__content--organization {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.content-data__content--organization:hover {
	opacity: .8;
}

.content-data__content--organization img {
	height: 50px;
	width: auto;
	align-self: flex-start;
	cursor: pointer;
}

.content-data__content--organization div {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.content-data__content--organization div p:first-child {
	font-size: 16px;
	line-height: 20px;
	color: #fff;
}

.content-data__content--organization div p:nth-child(2) {
	font-size: 16px;
	line-height: 20px;
	color: #30C870;
}

.game-data {
	width: calc(100vw - var(--header-w) - 64px);
	max-width: 1280px;
	max-height: calc(100svh - 64px);
	position: absolute;
	top: 50%;
	left: calc(var(--header-w) + (100vw - var(--header-w)) / 2);
	transform: translate(-50%, -50%);
	z-index: 100;
	background-color: #131A0E;
	border: 1px solid transparent;
	border-image: linear-gradient(to right, #AE83E8, #A4C566) 1;
	display: none;
}

.game-data__wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
}

.game-data__header {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	padding: 16px 32px;
	background-color: #000;
	border-bottom: 1px solid rgba(255, 255, 255, .25);
	flex-shrink: 0;
}

.game-data__header--left {
	display: flex;
	gap: 8px;
	align-items: center;
}

.game-data__header--left h2 {
	color: #AA9EB2;
	font-size: 20px;
	line-height: 29px;
}

.game-data__header--left img {
	width: 32px;
	height: auto;
}

.game-data__close {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	min-height: 32px;
	margin-left: auto;
}

.game-data__close svg {
	width: 32px;
	height: auto;
}

.game-data__close:hover {
	opacity: .7;
}

.game-data__content {
	padding: 32px;
	flex: 1;
	min-height: 0;
	overflow-y: auto;
}

.game-data__intro {
	color: #A6A6A6;
	font-size: 16px;
	line-height: 25px;
	margin-bottom: 24px;
}

.game-data__puzzle {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.game-data__puzzle--left img {
	width: 100%;
	height: auto;
}

.game-data__puzzle--right {
	position: relative;
}

.game-data__solved, .game-data__unsolved {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px;
}

.game-data__solved--content {
	display: flex;
	gap: 16px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.game-data__solved--content img {
	width: 64px;
	height: auto;
}

.game-data__solved--content p {
	color: #fff;
	font-size: 16px;
	line-height: 25px;
}

#stage-wrap {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
	overscroll-behavior: none;
}

#stage {
	position: relative;
	width: 100%;
	max-width: 100%;
	background: radial-gradient(ellipse at center, #23262e 0%, #14161b 75%);
	box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.5);
}

#board-outline {
	position: absolute;
	border: 2px solid rgb(56, 154, 75);
	pointer-events: none;
}

#stage.solved #board-outline {
	border-color: rgba(56, 154, 75, 0.75);
	box-shadow: 0 0 24px rgba(56, 154, 75, 1);
	transition: border-color .3s ease, box-shadow .3s ease;
}

.piece {
	position: absolute;
	cursor: grab;
	touch-action: none;
	filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.5));
	transition: filter .3s ease;
}

.piece.locked {
	cursor: default;
	filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
}

.piece canvas {
	display: block;
	width: 100%;
	height: 100%;
	-webkit-user-drag: none;
	-webkit-touch-callout: none;
	pointer-events: none;
}

.js-call-game {
	position: relative;
	height: 48px;
	border-radius: 8px;
	background: transparent;
	display: flex;
	padding: 0 16px;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.js-call-game::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(to right, #AE83E8, #A4C566);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}
.js-call-game img {
	width: 32px;
	height: auto;
}

.js-call-game span {
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 48px;
}

.js-call-game:hover {
	opacity: .9;
}

.game-data__subtitle {
	font-size: 18px;
	line-height: 27px;
	margin-bottom: 32px;
}

.game-data__word {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.game-data__word .game-data__solved {
	position: relative;
}

.game-data__believe .game-data__solved,
.game-data__believe .game-data__unsolved {
	position: relative;
}

.game-data__assembly {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.game-data__assembly--slots,
.game-data__assembly--tray {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
}

.game-data__assembly--slot,
.game-data__assembly--tile {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	line-height: 1;
	text-transform: uppercase;
	user-select: none;
	container-type: inline-size;
}

.game-data__assembly--slots > .game-data__assembly--slot,
.game-data__assembly--tray > .game-data__assembly--tile {
	flex: 1 1 0;
	min-width: 0;
	max-width: 64px;
	aspect-ratio: 4 / 5;
}

.game-data__assembly--slots > .game-data__assembly--space {
	flex: 0 0 16px;
}

.game-data__assembly--tile > span {
	display: block;
	font-size: 50cqi;
	line-height: 1;
}

.game-data__assembly--slot {
	border: 2px solid rgba(255, 255, 255, .25);
	color: #7E8082;
}

.game-data__assembly--slot.filled {
	color: #fff;
}

.game-data__assembly--slot.correct {
	border: 2px solid #389A4B;
	background-color: rgba(56, 154, 75, .15);
}

.game-data__assembly--slot.incorrect {
	border: 2px solid #C0392B;
	background-color: rgba(192, 57, 43, .15);
}

.game-data__assembly--tile {
	background-color: #000;
	border: 2px solid rgba(255, 255, 255, .25);
	color: #fff;
	cursor: grab;
	touch-action: none;
}

.game-data__assembly--slot .game-data__assembly--tile {
	width: 100%;
	height: 100%;
	border: none;
	background: none;
}

.game-data__assembly--tile.dragging {
	position: fixed;
	z-index: 200;
	cursor: grabbing;
	pointer-events: none;
}

.game-data__question p {
	font-size: 20px;
	line-height: 29px;
	border-left: 2px solid transparent;
	border-image: linear-gradient(to right, #AE83E8, #A4C566) 1;
	padding-left: 24px;
	margin-bottom: 32px;
}

.game-data__answers {
	display: flex;
	align-items: center;
	gap: 24px;
}

.game-data__answers a {
	font-size: 12px;
	text-transform: uppercase;
	color: #fff;
	height: 40px;
	line-height: 38px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-image: linear-gradient(to right, #AE83E8, #A4C566) 1;
}

.game-data__answers a:hover {
	background-color: #000;
	opacity: .8;
}

.gates {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 10;
}

.gates.gates-open {
	background-color: transparent;
}

.gates-content {
	display: flex;
	width: 100%;
	height: 100%;
}

.gates-content__left, .gates-content__right {
	width: 50%;
	min-width: 50%;
	position: relative;
	transition: transform var(--gates-duration, 1.5s) ease;
}

.gates.gates-open .gates-content__left {
	transform: translateX(-100%);
}

.gates.gates-open .gates-content__right {
	transform: translateX(100%);
}

.gates-content__left img, .gates-content__right img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
}

.gates-content__left img {
	object-position: right;
}

.gates-content__right img {
	object-position: left;
}

.gates-button {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gates-button a {
	height: 30px;
	line-height: 30px;
	color: #000;
	font-size: 20px;
	text-transform: uppercase;
	width: 140px;
	text-align: center;
	border-radius: 6px;
	background-color: #FFF02A;
	box-shadow: 0 0 0 0 rgba(255, 240, 42, 0);
	transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

.gates-button a:hover {
	box-shadow: 0 0 24px 6px rgba(255, 240, 42, .65);
}

.gates.gates-fade .gates-button a,
.gates.gates-fade .gates-atom {
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--gates-fade-duration, .4s) ease;
}

.gates-button {
	display: flex;
	gap: 128px;
	flex-direction: column;
	align-items: center;
	transform: translateY(79px);
}

.gates-atom {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 180px;
	box-sizing: border-box;
	background-color: #000;
	border-radius: 100px;
	border: 4px solid #FFF02A;
}

.gates-atom img {
	width: 104px;
	height: auto;
}

.gates.gates-spin .gates-atom img {
	animation: gates-atom-spin-once var(--gates-spin-duration, .9s) ease-in-out;
}

@keyframes gates-atom-spin-once {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.kiosk, .kiosk body {
	-webkit-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
}

.kiosk-exit-trigger {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 96px;
	height: 96px;
	z-index: 3;
	opacity: 0;
	cursor: default;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.kiosk-exit-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background-color: rgba(0, 0, 0, .8);
	display: none;
	align-items: center;
	justify-content: center;
}

.kiosk-exit-modal.is-open {
	display: flex;
}

.kiosk-exit-modal__box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	padding: 40px 48px;
	background-color: #131A0E;
	border: 1px solid transparent;
	border-image: linear-gradient(to right, #AE83E8, #A4C566) 1;
}

.kiosk-exit-modal__box p {
	font-size: 24px;
	line-height: 32px;
	text-transform: uppercase;
	color: #fff;
}

.kiosk-exit-modal__buttons {
	display: flex;
	gap: 24px;
}

.kiosk-exit-modal__buttons button {
	min-width: 160px;
	height: 56px;
	line-height: 56px;
	padding: 0 32px;
	font-family: "Roboto Mono", sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
	background-color: #454343;
	transition: opacity 0.3s ease;
}

.kiosk-exit-modal__buttons .kiosk-exit-modal__yes {
	background-color: #389A4B;
}

.kiosk-exit-modal__buttons button:active {
	opacity: .7;
}

@media (prefers-reduced-motion: reduce) {
	.gates-atom img {
		animation: none;
	}
}

@media (hover: none) {
	.map-balloons__item:hover span {
		visibility: hidden;
		opacity: 0;
	}
}

@keyframes popup-loader-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@media screen and (max-width: 1024px) {
	.gates-atom {
		width: 128px;
		height: 128px;
	}
	.gates-atom img {
		width: 76px;
	}
	.gates-button {
		gap: 91px;
		transform: translateY(56px);
	}
	.gates-button a {
		height: 21px;
		line-height: 21px;
		font-size: 17px;
		width: 120px;
	}
	.game-data__question p {
		font-size: 16px;
		line-height: 25px;
		margin-bottom: 24px;
	}
	.game-data__subtitle {
		font-size: 16px;
		line-height: 25px;
		margin-bottom: 24px;
	}
	.js-call-game img {
		width: 24px;
	}
	.game-data {
		width: 100%;
		max-width: 100%;
		height: 100%;
		max-height: 100%;
		top: 0;
		left: 0;
		transform: none;
		border: none;
	}
	.game-data__header {
		padding: 16px;
	}
	.game-data__content {
		padding: 16px;
	}
	.game-data__puzzle {
		grid-template-columns: 1fr;
	}
	.game-data__header--left h2 {
		font-size: 18px;
		line-height: 27px;
	}
	.game-data__intro {
		font-size: 14px;
		line-height: 21px;
		margin-bottom: 16px;
	}
	.game-data__header--left img {
		width: 24px;
	}
	.game-data__assembly--slots > .game-data__assembly--slot,
	.game-data__assembly--tray > .game-data__assembly--tile {
		max-width: 40px;
	}
	.content-data__history--item--adaptive {
		display: block;
	}
	.content-data__history--grid--alt {
		display: none;
	}
	.content-data__history--figure div:first-child {
		width: 80px;
		height: 80px;
		min-width: 80px;
		min-height: 80px;
	}
	.content-data__history--year {
		padding-bottom: 8px;
	}
	.content-data__history--figure div:nth-child(2) p:first-child {
		font-size: 14px;
		line-height: 19px;
	}
	.content-data__history--year p {
		font-size: 20px;
		line-height: 29px;
	}
	.content-data__history--content {
		gap: 16px;
	}
	.content-data__history--grid .content-data__history--item {
		min-width: auto;
	}
	.content-data__history--road {
		flex-direction: row;
		width: 100%;
		height: 20px;
		transform: rotate(180deg);
	}
	.content-data__history--dashed {
		width: 100%;
		height: 1px;
		border-left: transparent;
		border-top: 1px dashed #54603C;
	}
	.content-data__history--item {
		flex-direction: column;
	}
	.content-data__history--line {
		height: calc(100% - 80px);
		width: 1px;
		position: absolute;
		top: 40px;
		left: 9px;
		z-index: -1;
	}
	.content-data__history--content {
		margin: 0;
		margin-left: 32px;
		width: calc(100% - 32px);
		padding: 12px;
		gap: 12px;
	}
	.content-data__history--grid {
		grid-template-columns: 1fr !important;
		margin-bottom: 0;
		gap: 24px;
	}
	.content-data__wrapper {
		padding: 16px;
	}
	body {
		display: flex;
		flex-direction: column;
	}
	main {
		order: 1;
		flex: 1;
		min-height: 0;
	}
	footer {
		order: 2;
	}
	.fancybox-overlay__close {
		top: 16px;
		right: 16px;
		width: 36px;
		height: 36px;
	}
	.fancybox-overlay__nav {
		width: 40px;
		height: 40px;
	}
	.fancybox-overlay__nav--prev {
		left: 12px;
	}
	.fancybox-overlay__nav--next {
		right: 12px;
	}
	.header-top__search {
		display: none;
		margin-top: 16px;
	}
	.header-top__result--content {
		width: calc(100% - 32px);
		margin: 0 16px;
	}
	.header-top__items--current {
		display: grid;
		grid-template-rows: 0fr;
		opacity: 0;
		overflow: hidden;
		pointer-events: none;
		margin-top: 0;
		transition: grid-template-rows 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
	}
	.header-top__items--current > .header-top__items--grid {
		min-height: 0;
		overflow: hidden;
	}
	.header-opened .header-top__items--current {
		grid-template-rows: 1fr;
		opacity: 1;
		pointer-events: auto;
		margin-top: 16px;
	}
	.header-top__items a {
		height: 40px;
	}
	.header-top {
		gap: 0;
	}
	.header-bottom {
		padding: 0 16px;
	}
	.header-top__logos {
		padding: 0 16px;
	}
	.header-top__logos .header-button {
		display: inline-block;
		transform: rotate(-90deg);
	}
	.header-logo__big {
		width: 144px;
	}
	.header-opened .header-logo {
		width: 144px;
		height: 64.2px;
	}
	header {
		position: static;
		width: 100%;
		height: fit-content;
		flex-shrink: 0;
		order: 3;
		padding: 16px 0 calc(16px + env(safe-area-inset-bottom)) 0;
		z-index: 1;
	}
	.header-opened header {
		width: 100%;
	}
	.header-bottom .header-button {
		display: none;
	}
	body.header-opened .map-secret {
		left: 16px;
		opacity: 0;
		pointer-events: none;
	}
	.map-secret {
		left: 16px;
		top: 16px;
	}
	body.popup-open .map-secret {
		opacity: 0;
		pointer-events: none;
	}
	.map-zoom {
		display: none;
	}
	.popup {
		width: 100%;
		min-width: auto;
	}
	.popup-header__left h2 {
		font-size: 18px;
		line-height: 27px;
	}
	.map-balloons__item:hover span {
		visibility: hidden;
		opacity: 0;
	}
	.popup-slider .swiper-button-prev,
	.popup-slider .swiper-button-next {
		display: none;
	}
	.header-top__items a {
		padding-right: 20px;
	}
	.header-top__items--line {
		margin-right: 4px;
	}
	.header-top__wrapper {
		margin: 0 16px;
	}
	.content-data__content--number p:first-child {
		font-size: 24px;
		line-height: 32px;
	}
	.content-data__header ul li a {
		padding: 0 16px;
	}
	.content-data__content--intro p {
		font-size: 14px;
		line-height: 21px;
	}
	.content-data__content--numbers, .content-data__content--column {
		gap: 16px;
	}
	.content-data__content--column, .content-data__content--column.content-data__content--column--alt {
		grid-template-columns: 1fr;
	}
	.content-data__content--organizations {
		grid-template-columns: 1fr;
	}
	.content-data__header--actions {
		gap: 12px;
	}
	.content-data__copy-link {
		font-size: 11px;
	}
}

@media screen and (max-width: 1024px) and (min-height: 800px) {
	.game-data__content {
		display: flex;
		flex-direction: column;
		min-height: 0;
	}
	.game-data__puzzle {
		display: flex;
		flex-direction: column;
		flex: 1;
		min-height: 0;
	}
	.game-data__puzzle--left,
	.game-data__puzzle--right {
		flex: 1 1 0;
		min-height: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
	}
	.game-data__puzzle--left img {
		width: auto;
		height: 100%;
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
	}
	#stage-wrap {
		width: auto;
		height: 100%;
		max-width: 100%;
	}
	#stage {
		width: auto;
		height: 100%;
		max-width: 100%;
		max-height: 100%;
	}
}

@media screen and (min-width: 1920px) {
	.content-data__header h2 {
		font-size: 32px;
		line-height: 40px;
	}
	.content-data__content {
		padding-top: 56px;
		padding-bottom: 56px;
	}
	.content-data__content--intro {
		gap: 24px;
	}
	.content-data__content--number {
		gap: 12px;
	}
	.content-data__content--column div {
		gap: 12px;
	}
	.content-data__content--intro h2 {
		font-size: 32px;
		line-height: 40px;
	}
	.content-data__content--intro p {
		font-size: 18px;
		line-height: 27px;
	}
	.content-data__content--number p:first-child {
		font-size: 32px;
		line-height: 40px;
	}
	.content-data__content--number p:nth-child(2) {
		font-size: 16px;
		line-height: 25px;
	}
	.content-data__content--column div p {
		font-size: 16px;
		line-height: 25px;
	}
	.content-data__content--column div h3 {
		font-size: 16px;
		line-height: 25px;
	}
	.content-data__header ul li a {
		font-size: 14px;
	}
	.content-data__wrapper {
		padding-left: 96px;
	}
	.popup-slider__caption {
		font-size: 14px;
		line-height: 21px;
	}
	.header-top__input {
		font-size: 16px;
		line-height: 25px;
	}
	.header-top__result--content a {
		font-size: 14px;
		line-height: 21px;
	}
	.header-links__content a {
		font-size: 14px;
		line-height: 21px;
	}
	.header-top__items--name {
		font-size: 14px;
		line-height: 21px;
	}
	.header-top__items--count {
		font-size: 14px;
		line-height: 21px;
	}
	.map-secret p {
		font-size: 14px;
		line-height: 21px;
	}
	.popup-content__text p {
		font-size: 16px;
		line-height: 25px;
	}
	.popup-content__text ul li {
		font-size: 16px;
		line-height: 25px;
	}
	.popup-content__text {
		gap: 12px;
	}
	.popup-header__left h2 {
		font-size: 24px;
		line-height: 32px;
	}
	.popup-header__left ul li {
		font-size: 12px;
	}
	.map-zoom a {
		font-size: 24px;
		line-height: 32px;
	}
	.map-balloons__item {
		width: 48px;
		height: 48px;
	}
	.map-balloons__item span {
		bottom: 56px;
		font-size: 14px;
		line-height: 21px;
	}
	.map-balloons__item span.map-balloons__item--tooltip-bottom {
		top: 56px;
	}
	.header-logo__small {
		width: 32px;
	}
	.header-logo__big {
		width: 224px;
	}
	.header-logo {
		width: 32px;
		height: 56px;
	}
	.header-opened .header-logo {
		width: 224px;
		height: 99.86px;
	}
	.header-button svg {
		width: 24px;
	}
	.header-opened header {
		width: 320px;
	}
	body.header-opened .map-secret {
		left: 336px;
	}
	header {
		width: 60px;
		padding-bottom: 24px;
	}
	body {
		--header-w: 60px;
	}
	body.header-opened {
		--header-w: 320px;
	}
	.header-top__items--icon img {
		width: 32px;
	}
	.header-top__wrapper button svg {
		width: 22px;
	}
}
@media screen and (max-width: 1024px) {
	header {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: calc(74px + env(safe-area-inset-bottom));
		padding: 0;
		overflow: visible;
		background: none;
		z-index: 4;
	}
	.header-content {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		height: auto;
		max-height: var(--app-height, 100svh);
		overflow-y: auto;
		padding: 16px 0 calc(16px + env(safe-area-inset-bottom)) 0;
		background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(40, 40, 40, 0.8) 100%);
	}
}
