@import url("https://fonts.googleapis.com/css2?family=Noto+Serif&family=Open+Sans&family=Roboto+Slab:wght@300;600&display=swap");
#main_slider_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#main_slider_tray {
  font-size: 0;
  line-height: 0px;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
  overflow: hidden;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 2s ease;
  transition: opacity 2s ease;
  cursor: pointer;
  min-width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.swipe_limit_indicator {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100%;
  width: 0%;
  z-index: 2;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: width 0.3s ease, opacity 0.3s ease;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.swipe_limit_indicator_r {
  position: fixed;
  top: 0;
  right: 0;
  min-height: 100%;
  width: 0%;
  z-index: 4;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, right top, left top, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(270deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: width 0.3s ease, opacity 0.3s ease;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.line {
  float: left;
  border: 0px;
  white-space: nowrap;
}

.line_2 {
  margin-top: -1px;
}

.box {
  border: 0px solid red;
  position: relative;
  display: inline-block;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

#titles_sizes {
  padding: 0.7rem;
  font-size: 1.1rem;
  line-height: 1.5;
  font-family: "Roboto Slab", serif;
  font-weight: 300;
  background-color: #383838;
  color: white;
}
#titles_sizes span {
  display: inline;
}

.item {
  display: block;
  position: absolute;
  z-index: 1;
  white-space: normal;
  overflow: hidden;
  opacity: 1;
  -webkit-transition: top 0.2s ease, left 0.2s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  transition: top 0.2s ease, left 0.2s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}
.item.fade_out {
  opacity: 0;
}
.item.excluded {
  display: none;
}
.item * {
  pointer-events: none;
}
.item .item_title {
  padding: 0.7rem;
  color: white;
  font-family: "Roboto Slab", serif;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.item .category_icon {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  height: 2rem;
  width: auto;
  z-index: 2;
  pointer-events: none;
  opacity: 0.8;
}
.item .dark {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background-color: rgba(102, 102, 102, 0);
  z-index: 2;
  -webkit-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
}
.item .item_bg_fast {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 103%;
  height: 103%;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  z-index: 1;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  -webkit-filter: blur(3px);
          filter: blur(3px);
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.5s ease;
  transition: transform 0.2s ease, opacity 0.5s ease, -webkit-transform 0.2s ease;
}
.item .item_bg {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  display: block;
  z-index: 0;
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  pointer-events: none;
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-filter 0.2s linear;
  transition: -webkit-transform 0.2s ease, -webkit-filter 0.2s linear;
  transition: transform 0.2s ease, filter 0.2s linear;
  transition: transform 0.2s ease, filter 0.2s linear, -webkit-transform 0.2s ease, -webkit-filter 0.2s linear;
}
.item .item__distance {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  max-width: 90%;
  z-index: 2;
  padding: 6px;
  opacity: 0;
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 1;
  color: white;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: #383838;
  border-radius: 6px;
  overflow: hidden;
  pointer-events: all;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.item .item__distance.visible {
  opacity: 0.6;
}
.item .item_bg_align_top {
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
}
.item .item_bg_align_bottom {
  -o-object-position: 50% 90%;
     object-position: 50% 90%;
}
.item:hover .item_title {
  opacity: 1;
}
.item:hover .dark {
  background-color: rgba(0, 0, 0, 0.5137254902);
}
.item:hover .item_bg {
  -webkit-transform: scale(1.08);
      -ms-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
.item:hover .item__distance {
  opacity: 1;
}

.shape_h .item_bg {
  width: 101%;
  height: auto;
}

.shape_v .item_bg {
  height: 101%;
  width: auto;
}

.toggle_button {
  position: relative;
  display: block;
  min-width: 48px;
  height: 26px;
  overflow: hidden;
  padding: 4px;
  border-radius: 50px;
  cursor: pointer;
}
.toggle_button * {
  pointer-events: none;
}
.toggle_button .bg {
  background-color: #bebebe;
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 150%;
  z-index: 0;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}
.toggle_button .knob {
  display: block;
  background-color: #ffffff;
  position: relative;
  width: 18px;
  height: 18px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  border-radius: 50%;
  z-index: 1;
}
.toggle_button[checked] .knob {
  background-color: white;
  -webkit-transform: translate(100%, -50%) translateX(4px);
      -ms-transform: translate(100%, -50%) translateX(4px);
          transform: translate(100%, -50%) translateX(4px);
}
.toggle_button[checked] .bg {
  background-color: #3180c4;
}
.toggle_button[checked] .knob {
  -webkit-box-shadow: 0 0 1px #2196F3;
          box-shadow: 0 0 1px #2196F3;
}

/*
.radio-button{
	width: 100%;
	display:flex;
	align-items: center;
	justify-content: flex-end;
	flex-direction: row-reverse;
	margin: 10px;
	font-size: 14px;
	cursor: pointer;
}
.radio-button input{
	display:none;
	width: 0;
	height: 0;
}
.radio-button span{
	width: 20px;
	height: 20px;
	position: relative;
	margin-right: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #bdbdbd;
}
.radio-button input:checked + span:after{
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #ffffff;
}
.radio-button input:checked + span {
	background-color: #76b176;
}
.radio-button input:disabled + span {
	background-color: #e5e5e5;
}
.radio-button span:before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	opacity: 0;
	border-radius: 50%;
	background-color: #76b176;
}
.radio-button input:checked + span:before {
	animation: growAndFade 0.2s ease-out;
} 
@keyframes growAndFade {
	0% {
		opacity: 1;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1);
	}
}
*/
p {
  margin-bottom: 0px;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  font-family: "Noto Serif";
  height: 100%;
}

body {
  background-color: #535353;
  position: relative;
}

.title_box {
  position: relative;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
  cursor: default !important;
}
.title_box .logo_box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: rgba(51, 51, 51, 0.95);
  padding: 0.8rem 1rem 0.8rem 1rem;
  width: 100%;
  text-align: center;
}
.title_box .logo_box img {
  width: 90%;
}
.title_box video {
  opacity: 0.8;
  -o-object-fit: cover;
     object-fit: cover;
}
.title_box .project_name {
  position: relative;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 1rem;
  padding: 0.8rem;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-family: "Roboto Slab", serif;
  font-weight: 600;
  height: auto;
  overflow: hidden;
  font-size: 2rem;
  line-height: 1.2;
  color: white;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.title_box .project_name img {
  width: 100%;
  display: block;
}
.title_box .jur {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 min-content;
          flex: 0 0 min-content;
  padding: 0.5rem 0.8rem 0.5rem;
  width: 100%;
  line-height: 1.2;
  font-family: "Open Sans";
  color: white;
  font-size: 0.75rem;
}

#blackboard {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  background-color: rgba(56, 56, 56, 0);
  -webkit-transition: background-color 0.5s ease, -webkit-backdrop-filter 0.5s ease;
  transition: background-color 0.5s ease, -webkit-backdrop-filter 0.5s ease;
  transition: backdrop-filter 0.5s ease, background-color 0.5s ease;
  transition: backdrop-filter 0.5s ease, background-color 0.5s ease, -webkit-backdrop-filter 0.5s ease;
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
  cursor: pointer;
  pointer-events: none;
}
#blackboard.blackboard_show {
  pointer-events: all !important;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
#blackboard.blackboard_under_menu {
  z-index: 2 !important;
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
}

#blackboard1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  background-color: #383838;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  cursor: pointer;
}

.blackboard_show1 {
  pointer-events: auto !important;
  opacity: 0.7 !important;
}

.blackboard_under_menu1 {
  z-index: 2 !important;
}

/*
.inactive_item{
	pointer-events: none;
}*/
.menu_subtitle {
  padding: 0.5rem 0 0.5rem 0.25rem;
  font-size: 1.1rem;
  border-bottom: 1px solid #E5E5E5;
  font-family: "Open Sans";
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: color 0.1s ease;
  transition: color 0.1s ease;
}
.menu_subtitle.glory {
  color: #DA2F28;
  border-bottom: 1px solid #DA2F28;
}
.menu_subtitle.glory .menu_subtitle__scrollto_button {
  color: #DA2F28;
}
.menu_subtitle.glory .menu_subtitle__roll_icon {
  color: #DA2F28;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu_subtitle.food {
  color: #007AFF;
  border-bottom: 1px solid #007AFF;
}
.menu_subtitle.food .menu_subtitle__scrollto_button {
  color: #007AFF;
}
.menu_subtitle.food .menu_subtitle__roll_icon {
  color: #007AFF;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu_subtitle.religion {
  color: #E5AC00;
  border-bottom: 1px solid #E5AC00;
}
.menu_subtitle.religion .menu_subtitle__scrollto_button {
  color: #E5AC00;
}
.menu_subtitle.religion .menu_subtitle__roll_icon {
  color: #E5AC00;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu_subtitle.family {
  color: #0DB64B;
  border-bottom: 1px solid #0DB64B;
}
.menu_subtitle.family .menu_subtitle__scrollto_button {
  color: #0DB64B;
}
.menu_subtitle.family .menu_subtitle__roll_icon {
  color: #0DB64B;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu_subtitle.active {
  color: #FF7400;
  border-bottom: 1px solid #FF7400;
}
.menu_subtitle.active .menu_subtitle__scrollto_button {
  color: #FF7400;
}
.menu_subtitle.active .menu_subtitle__roll_icon {
  color: #FF7400;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu_subtitle.folk {
  color: #803A00;
  border-bottom: 1px solid #803A00;
}
.menu_subtitle.folk .menu_subtitle__scrollto_button {
  color: #803A00;
}
.menu_subtitle.folk .menu_subtitle__roll_icon {
  color: #803A00;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu_subtitle.event {
  color: #FF0347;
  border-bottom: 1px solid #FF0347;
}
.menu_subtitle.event .menu_subtitle__scrollto_button {
  color: #FF0347;
}
.menu_subtitle.event .menu_subtitle__roll_icon {
  color: #FF0347;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu_subtitle.eco {
  color: #8FC515;
  border-bottom: 1px solid #8FC515;
}
.menu_subtitle.eco .menu_subtitle__scrollto_button {
  color: #8FC515;
}
.menu_subtitle.eco .menu_subtitle__roll_icon {
  color: #8FC515;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu_subtitle.sport_events {
  color: #FF6100;
  border-bottom: 1px solid #FF6100;
}
.menu_subtitle.sport_events .menu_subtitle__scrollto_button {
  color: #FF6100;
}
.menu_subtitle.sport_events .menu_subtitle__roll_icon {
  color: #FF6100;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu_subtitle.lenobl_districts {
  color: #616A72;
  border-bottom: 1px solid #616A72;
}
.menu_subtitle.lenobl_districts .menu_subtitle__scrollto_button {
  color: #616A72;
}
.menu_subtitle.lenobl_districts .menu_subtitle__roll_icon {
  color: #616A72;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu_subtitle.lenobl_theatres {
  color: #9900FF;
  border-bottom: 1px solid #9900FF;
}
.menu_subtitle.lenobl_theatres .menu_subtitle__scrollto_button {
  color: #9900FF;
}
.menu_subtitle.lenobl_theatres .menu_subtitle__roll_icon {
  color: #9900FF;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu_subtitle.video_lections {
  color: #4622FF;
  border-bottom: 1px solid #4622FF;
}
.menu_subtitle.video_lections .menu_subtitle__scrollto_button {
  color: #4622FF;
}
.menu_subtitle.video_lections .menu_subtitle__roll_icon {
  color: #4622FF;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu_subtitle .menu_subtitle__roll_icon {
  pointer-events: none;
  margin-right: 6px;
  opacity: 1;
  -webkit-transform-origin: 40% 50%;
      -ms-transform-origin: 40% 50%;
          transform-origin: 40% 50%;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: opacity 0.2s ease, color 0.1s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, color 0.1s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, color 0.1s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, color 0.1s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.menu_subtitle .menu__roll_all {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu_subtitle .menu_subtitle__icon {
  pointer-events: none;
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
  -webkit-transition: -webkit-filter 0.1s ease;
  transition: -webkit-filter 0.1s ease;
  transition: filter 0.1s ease;
  transition: filter 0.1s ease, -webkit-filter 0.1s ease;
}
.menu_subtitle .menu_subtitle__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  margin-left: 16px;
  pointer-events: none;
}
.menu_subtitle .menu_subtitle__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border-left: 2px solid #e9e9e9;
  width: 50px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu_subtitle .menu_subtitle__button svg {
  pointer-events: none;
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
  width: 100%;
  height: 100%;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}
.menu_subtitle .menu_subtitle__button svg path {
  fill: #383838;
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}
.menu_subtitle .menu_subtitle__visibility_button svg .eye_crossout {
  display: none;
}
.menu_subtitle.visibility_button__set_hidden .menu_subtitle__visibility_button svg {
  opacity: 0.2 !important;
}
.menu_subtitle.visibility_button__set_hidden .menu_subtitle__visibility_button svg .eye {
  display: none;
}
.menu_subtitle.visibility_button__set_hidden .menu_subtitle__visibility_button svg .eye_crossout {
  display: unset;
}
.menu_subtitle.glory .menu_subtitle__button:hover svg path {
  fill: #DA2F28;
}
.menu_subtitle.glory .menu_subtitle__scrollto_button:hover svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.menu_subtitle.rolled_up {
  color: #383838;
  border-bottom: 1px solid #e9e9e9;
}
.menu_subtitle.rolled_up .menu_subtitle__roll_icon {
  color: #383838;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0.3;
}
.menu_subtitle.rolled_up .menu_subtitle__icon {
  -webkit-filter: saturate(30%);
          filter: saturate(30%);
}
.menu_subtitle.glory:hover {
  color: #DA2F28;
}
.menu_subtitle.glory:hover .menu_subtitle__button svg {
  opacity: 1;
}
.menu_subtitle.glory:hover .menu_subtitle__roll_icon {
  color: #DA2F28;
  opacity: 1;
}
.menu_subtitle.glory:hover .menu_subtitle__icon {
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
}
.menu_subtitle.food .menu_subtitle__button:hover svg path {
  fill: #007AFF;
}
.menu_subtitle.food .menu_subtitle__scrollto_button:hover svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.menu_subtitle.rolled_up {
  color: #383838;
  border-bottom: 1px solid #e9e9e9;
}
.menu_subtitle.rolled_up .menu_subtitle__roll_icon {
  color: #383838;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0.3;
}
.menu_subtitle.rolled_up .menu_subtitle__icon {
  -webkit-filter: saturate(30%);
          filter: saturate(30%);
}
.menu_subtitle.food:hover {
  color: #007AFF;
}
.menu_subtitle.food:hover .menu_subtitle__button svg {
  opacity: 1;
}
.menu_subtitle.food:hover .menu_subtitle__roll_icon {
  color: #007AFF;
  opacity: 1;
}
.menu_subtitle.food:hover .menu_subtitle__icon {
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
}
.menu_subtitle.religion .menu_subtitle__button:hover svg path {
  fill: #E5AC00;
}
.menu_subtitle.religion .menu_subtitle__scrollto_button:hover svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.menu_subtitle.rolled_up {
  color: #383838;
  border-bottom: 1px solid #e9e9e9;
}
.menu_subtitle.rolled_up .menu_subtitle__roll_icon {
  color: #383838;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0.3;
}
.menu_subtitle.rolled_up .menu_subtitle__icon {
  -webkit-filter: saturate(30%);
          filter: saturate(30%);
}
.menu_subtitle.religion:hover {
  color: #E5AC00;
}
.menu_subtitle.religion:hover .menu_subtitle__button svg {
  opacity: 1;
}
.menu_subtitle.religion:hover .menu_subtitle__roll_icon {
  color: #E5AC00;
  opacity: 1;
}
.menu_subtitle.religion:hover .menu_subtitle__icon {
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
}
.menu_subtitle.family .menu_subtitle__button:hover svg path {
  fill: #0DB64B;
}
.menu_subtitle.family .menu_subtitle__scrollto_button:hover svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.menu_subtitle.rolled_up {
  color: #383838;
  border-bottom: 1px solid #e9e9e9;
}
.menu_subtitle.rolled_up .menu_subtitle__roll_icon {
  color: #383838;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0.3;
}
.menu_subtitle.rolled_up .menu_subtitle__icon {
  -webkit-filter: saturate(30%);
          filter: saturate(30%);
}
.menu_subtitle.family:hover {
  color: #0DB64B;
}
.menu_subtitle.family:hover .menu_subtitle__button svg {
  opacity: 1;
}
.menu_subtitle.family:hover .menu_subtitle__roll_icon {
  color: #0DB64B;
  opacity: 1;
}
.menu_subtitle.family:hover .menu_subtitle__icon {
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
}
.menu_subtitle.active .menu_subtitle__button:hover svg path {
  fill: #FF7400;
}
.menu_subtitle.active .menu_subtitle__scrollto_button:hover svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.menu_subtitle.rolled_up {
  color: #383838;
  border-bottom: 1px solid #e9e9e9;
}
.menu_subtitle.rolled_up .menu_subtitle__roll_icon {
  color: #383838;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0.3;
}
.menu_subtitle.rolled_up .menu_subtitle__icon {
  -webkit-filter: saturate(30%);
          filter: saturate(30%);
}
.menu_subtitle.active:hover {
  color: #FF7400;
}
.menu_subtitle.active:hover .menu_subtitle__button svg {
  opacity: 1;
}
.menu_subtitle.active:hover .menu_subtitle__roll_icon {
  color: #FF7400;
  opacity: 1;
}
.menu_subtitle.active:hover .menu_subtitle__icon {
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
}
.menu_subtitle.folk .menu_subtitle__button:hover svg path {
  fill: #803A00;
}
.menu_subtitle.folk .menu_subtitle__scrollto_button:hover svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.menu_subtitle.rolled_up {
  color: #383838;
  border-bottom: 1px solid #e9e9e9;
}
.menu_subtitle.rolled_up .menu_subtitle__roll_icon {
  color: #383838;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0.3;
}
.menu_subtitle.rolled_up .menu_subtitle__icon {
  -webkit-filter: saturate(30%);
          filter: saturate(30%);
}
.menu_subtitle.folk:hover {
  color: #803A00;
}
.menu_subtitle.folk:hover .menu_subtitle__button svg {
  opacity: 1;
}
.menu_subtitle.folk:hover .menu_subtitle__roll_icon {
  color: #803A00;
  opacity: 1;
}
.menu_subtitle.folk:hover .menu_subtitle__icon {
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
}
.menu_subtitle.event .menu_subtitle__button:hover svg path {
  fill: #FF0347;
}
.menu_subtitle.event .menu_subtitle__scrollto_button:hover svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.menu_subtitle.rolled_up {
  color: #383838;
  border-bottom: 1px solid #e9e9e9;
}
.menu_subtitle.rolled_up .menu_subtitle__roll_icon {
  color: #383838;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0.3;
}
.menu_subtitle.rolled_up .menu_subtitle__icon {
  -webkit-filter: saturate(30%);
          filter: saturate(30%);
}
.menu_subtitle.event:hover {
  color: #FF0347;
}
.menu_subtitle.event:hover .menu_subtitle__button svg {
  opacity: 1;
}
.menu_subtitle.event:hover .menu_subtitle__roll_icon {
  color: #FF0347;
  opacity: 1;
}
.menu_subtitle.event:hover .menu_subtitle__icon {
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
}
.menu_subtitle.eco .menu_subtitle__button:hover svg path {
  fill: #8FC515;
}
.menu_subtitle.eco .menu_subtitle__scrollto_button:hover svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.menu_subtitle.rolled_up {
  color: #383838;
  border-bottom: 1px solid #e9e9e9;
}
.menu_subtitle.rolled_up .menu_subtitle__roll_icon {
  color: #383838;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0.3;
}
.menu_subtitle.rolled_up .menu_subtitle__icon {
  -webkit-filter: saturate(30%);
          filter: saturate(30%);
}
.menu_subtitle.eco:hover {
  color: #8FC515;
}
.menu_subtitle.eco:hover .menu_subtitle__button svg {
  opacity: 1;
}
.menu_subtitle.eco:hover .menu_subtitle__roll_icon {
  color: #8FC515;
  opacity: 1;
}
.menu_subtitle.eco:hover .menu_subtitle__icon {
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
}
.menu_subtitle.sport_events .menu_subtitle__button:hover svg path {
  fill: #FF6100;
}
.menu_subtitle.sport_events .menu_subtitle__scrollto_button:hover svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.menu_subtitle.rolled_up {
  color: #383838;
  border-bottom: 1px solid #e9e9e9;
}
.menu_subtitle.rolled_up .menu_subtitle__roll_icon {
  color: #383838;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0.3;
}
.menu_subtitle.rolled_up .menu_subtitle__icon {
  -webkit-filter: saturate(30%);
          filter: saturate(30%);
}
.menu_subtitle.sport_events:hover {
  color: #FF6100;
}
.menu_subtitle.sport_events:hover .menu_subtitle__button svg {
  opacity: 1;
}
.menu_subtitle.sport_events:hover .menu_subtitle__roll_icon {
  color: #FF6100;
  opacity: 1;
}
.menu_subtitle.sport_events:hover .menu_subtitle__icon {
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
}
.menu_subtitle.lenobl_districts .menu_subtitle__button:hover svg path {
  fill: #616A72;
}
.menu_subtitle.lenobl_districts .menu_subtitle__scrollto_button:hover svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.menu_subtitle.rolled_up {
  color: #383838;
  border-bottom: 1px solid #e9e9e9;
}
.menu_subtitle.rolled_up .menu_subtitle__roll_icon {
  color: #383838;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0.3;
}
.menu_subtitle.rolled_up .menu_subtitle__icon {
  -webkit-filter: saturate(30%);
          filter: saturate(30%);
}
.menu_subtitle.lenobl_districts:hover {
  color: #616A72;
}
.menu_subtitle.lenobl_districts:hover .menu_subtitle__button svg {
  opacity: 1;
}
.menu_subtitle.lenobl_districts:hover .menu_subtitle__roll_icon {
  color: #616A72;
  opacity: 1;
}
.menu_subtitle.lenobl_districts:hover .menu_subtitle__icon {
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
}
.menu_subtitle.lenobl_theatres .menu_subtitle__button:hover svg path {
  fill: #9900FF;
}
.menu_subtitle.lenobl_theatres .menu_subtitle__scrollto_button:hover svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.menu_subtitle.rolled_up {
  color: #383838;
  border-bottom: 1px solid #e9e9e9;
}
.menu_subtitle.rolled_up .menu_subtitle__roll_icon {
  color: #383838;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0.3;
}
.menu_subtitle.rolled_up .menu_subtitle__icon {
  -webkit-filter: saturate(30%);
          filter: saturate(30%);
}
.menu_subtitle.lenobl_theatres:hover {
  color: #9900FF;
}
.menu_subtitle.lenobl_theatres:hover .menu_subtitle__button svg {
  opacity: 1;
}
.menu_subtitle.lenobl_theatres:hover .menu_subtitle__roll_icon {
  color: #9900FF;
  opacity: 1;
}
.menu_subtitle.lenobl_theatres:hover .menu_subtitle__icon {
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
}
.menu_subtitle.video_lections .menu_subtitle__button:hover svg path {
  fill: #4622FF;
}
.menu_subtitle.video_lections .menu_subtitle__scrollto_button:hover svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.menu_subtitle.rolled_up {
  color: #383838;
  border-bottom: 1px solid #e9e9e9;
}
.menu_subtitle.rolled_up .menu_subtitle__roll_icon {
  color: #383838;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0.3;
}
.menu_subtitle.rolled_up .menu_subtitle__icon {
  -webkit-filter: saturate(30%);
          filter: saturate(30%);
}
.menu_subtitle.video_lections:hover {
  color: #4622FF;
}
.menu_subtitle.video_lections:hover .menu_subtitle__button svg {
  opacity: 1;
}
.menu_subtitle.video_lections:hover .menu_subtitle__roll_icon {
  color: #4622FF;
  opacity: 1;
}
.menu_subtitle.video_lections:hover .menu_subtitle__icon {
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
}

#menu_items, #menu_items_main_screen {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#menu_items .menu_item, #menu_items_main_screen .menu_item {
  height: auto;
  overflow: hidden;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 1.1rem;
  border-bottom: 1px solid #E5E5E5;
  cursor: pointer;
  font-family: "Open Sans";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  -webkit-transition: background-color 0.15s ease, height 0.35s ease, padding-top 0.35s ease, padding-bottom 0.35s ease, border-bottom 0.35s ease, opacity 0.35s ease;
  transition: background-color 0.15s ease, height 0.35s ease, padding-top 0.35s ease, padding-bottom 0.35s ease, border-bottom 0.35s ease, opacity 0.35s ease;
}
#menu_items .menu_item .item_num, #menu_items_main_screen .menu_item .item_num {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.5rem;
          flex: 0 0 1.5rem;
  pointer-events: none;
  margin-left: 29px;
  margin-right: 1rem;
  width: auto;
  height: 1.5rem;
  background-size: cover;
  background-repeat: no-repeat;
}
#menu_items .menu_item .item_num.glory, #menu_items_main_screen .menu_item .item_num.glory {
  background-image: url(facts/glory_icon.png);
}
#menu_items .menu_item .item_num[glory_has_video], #menu_items_main_screen .menu_item .item_num[glory_has_video] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.25rem;
          flex: 0 0 2.25rem;
  width: auto;
  height: 1.5rem;
  margin-right: 0.25rem;
  background-image: url(facts/glory_icon_has_video.png);
}
#menu_items .menu_item .item_num.food, #menu_items_main_screen .menu_item .item_num.food {
  background-image: url(facts/food_icon.png);
}
#menu_items .menu_item .item_num[food_has_video], #menu_items_main_screen .menu_item .item_num[food_has_video] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.25rem;
          flex: 0 0 2.25rem;
  width: auto;
  height: 1.5rem;
  margin-right: 0.25rem;
  background-image: url(facts/food_icon_has_video.png);
}
#menu_items .menu_item .item_num.religion, #menu_items_main_screen .menu_item .item_num.religion {
  background-image: url(facts/religion_icon.png);
}
#menu_items .menu_item .item_num[religion_has_video], #menu_items_main_screen .menu_item .item_num[religion_has_video] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.25rem;
          flex: 0 0 2.25rem;
  width: auto;
  height: 1.5rem;
  margin-right: 0.25rem;
  background-image: url(facts/religion_icon_has_video.png);
}
#menu_items .menu_item .item_num.family, #menu_items_main_screen .menu_item .item_num.family {
  background-image: url(facts/family_icon.png);
}
#menu_items .menu_item .item_num[family_has_video], #menu_items_main_screen .menu_item .item_num[family_has_video] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.25rem;
          flex: 0 0 2.25rem;
  width: auto;
  height: 1.5rem;
  margin-right: 0.25rem;
  background-image: url(facts/family_icon_has_video.png);
}
#menu_items .menu_item .item_num.active, #menu_items_main_screen .menu_item .item_num.active {
  background-image: url(facts/active_icon.png);
}
#menu_items .menu_item .item_num[active_has_video], #menu_items_main_screen .menu_item .item_num[active_has_video] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.25rem;
          flex: 0 0 2.25rem;
  width: auto;
  height: 1.5rem;
  margin-right: 0.25rem;
  background-image: url(facts/active_icon_has_video.png);
}
#menu_items .menu_item .item_num.folk, #menu_items_main_screen .menu_item .item_num.folk {
  background-image: url(facts/folk_icon.png);
}
#menu_items .menu_item .item_num[folk_has_video], #menu_items_main_screen .menu_item .item_num[folk_has_video] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.25rem;
          flex: 0 0 2.25rem;
  width: auto;
  height: 1.5rem;
  margin-right: 0.25rem;
  background-image: url(facts/folk_icon_has_video.png);
}
#menu_items .menu_item .item_num.event, #menu_items_main_screen .menu_item .item_num.event {
  background-image: url(facts/event_icon.png);
}
#menu_items .menu_item .item_num[event_has_video], #menu_items_main_screen .menu_item .item_num[event_has_video] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.25rem;
          flex: 0 0 2.25rem;
  width: auto;
  height: 1.5rem;
  margin-right: 0.25rem;
  background-image: url(facts/event_icon_has_video.png);
}
#menu_items .menu_item .item_num.eco, #menu_items_main_screen .menu_item .item_num.eco {
  background-image: url(facts/eco_icon.png);
}
#menu_items .menu_item .item_num[eco_has_video], #menu_items_main_screen .menu_item .item_num[eco_has_video] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.25rem;
          flex: 0 0 2.25rem;
  width: auto;
  height: 1.5rem;
  margin-right: 0.25rem;
  background-image: url(facts/eco_icon_has_video.png);
}
#menu_items .menu_item .item_num.sport_events, #menu_items_main_screen .menu_item .item_num.sport_events {
  background-image: url(facts/sport_events_icon.png);
}
#menu_items .menu_item .item_num[sport_events_has_video], #menu_items_main_screen .menu_item .item_num[sport_events_has_video] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.25rem;
          flex: 0 0 2.25rem;
  width: auto;
  height: 1.5rem;
  margin-right: 0.25rem;
  background-image: url(facts/sport_events_icon_has_video.png);
}
#menu_items .menu_item .item_num.lenobl_districts, #menu_items_main_screen .menu_item .item_num.lenobl_districts {
  background-image: url(facts/lenobl_districts_icon.png);
}
#menu_items .menu_item .item_num[lenobl_districts_has_video], #menu_items_main_screen .menu_item .item_num[lenobl_districts_has_video] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.25rem;
          flex: 0 0 2.25rem;
  width: auto;
  height: 1.5rem;
  margin-right: 0.25rem;
  background-image: url(facts/lenobl_districts_icon_has_video.png);
}
#menu_items .menu_item .item_num.lenobl_theatres, #menu_items_main_screen .menu_item .item_num.lenobl_theatres {
  background-image: url(facts/lenobl_theatres_icon.png);
}
#menu_items .menu_item .item_num[lenobl_theatres_has_video], #menu_items_main_screen .menu_item .item_num[lenobl_theatres_has_video] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.25rem;
          flex: 0 0 2.25rem;
  width: auto;
  height: 1.5rem;
  margin-right: 0.25rem;
  background-image: url(facts/lenobl_theatres_icon_has_video.png);
}
#menu_items .menu_item .item_num.video_lections, #menu_items_main_screen .menu_item .item_num.video_lections {
  background-image: url(facts/video_lections_icon.png);
}
#menu_items .menu_item .item_num[video_lections_has_video], #menu_items_main_screen .menu_item .item_num[video_lections_has_video] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.25rem;
          flex: 0 0 2.25rem;
  width: auto;
  height: 1.5rem;
  margin-right: 0.25rem;
  background-image: url(facts/video_lections_icon_has_video.png);
}
#menu_items .menu_item .item_text, #menu_items_main_screen .menu_item .item_text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  pointer-events: none;
}
#menu_items .menu_item.rolled_up, #menu_items_main_screen .menu_item.rolled_up {
  height: 0px !important;
  padding-top: 0px;
  padding-bottom: 0px;
  border-bottom: 0px;
  opacity: 0;
}
#menu_items .menu_item:hover, #menu_items_main_screen .menu_item:hover {
  background-color: #e9e9e9;
}

#menu_items_box {
  position: absolute;
  top: 2.5rem;
  left: 2rem;
  height: calc(100% - 5rem);
  width: calc(100% - 4rem);
  overflow-y: scroll;
  overflow-x: hidden;
  margin-bottom: 2.5rem;
  z-index: 6;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#menu_items_box::-webkit-scrollbar {
  width: 4px;
  background-color: #EAEAEA;
}
#menu_items_box::-webkit-scrollbar-thumb {
  background-color: #B8B8B8;
}

#menu_items_main_screen_box {
  position: fixed;
  top: 0rem;
  left: 0;
  max-width: 30rem;
  height: 100%;
  background-color: white;
  z-index: 3;
  padding: 0.5rem;
  padding-bottom: 30px;
  -webkit-transform: translateX(-101%);
      -ms-transform: translateX(-101%);
          transform: translateX(-101%);
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
  -webkit-transition: -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}
#menu_items_main_screen_box::-webkit-scrollbar {
  width: 4px;
  background-color: #EAEAEA;
}
#menu_items_main_screen_box::-webkit-scrollbar-thumb {
  background-color: #B8B8B8;
}
#menu_items_main_screen_box #menu_items_main_screen {
  height: 100%;
  overflow-y: scroll;
}
#menu_items_main_screen_box #menu_items_main_screen::-webkit-scrollbar {
  width: 4px;
  background-color: #EAEAEA;
}
#menu_items_main_screen_box #menu_items_main_screen::-webkit-scrollbar-thumb {
  background-color: #B8B8B8;
}
#menu_items_main_screen_box #menu_settings_box {
  padding: 8px 8px 8px 16px;
  font-family: "Open Sans";
  /*
  		@keyframes sort_city_name_waiting{
  			0%{ opacity: 0.5; }
  			100%{ opacity: 1; }
  		}
  */
}
#menu_items_main_screen_box #menu_settings_box .setting_group__title {
  padding: 8px 0 8px 0px;
  margin-bottom: 8px;
  font-size: 1.1rem;
  border-bottom: 1px solid #E5E5E5;
  font-family: "Open Sans";
  font-weight: 600;
}
#menu_items_main_screen_box #menu_settings_box .settings_row {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  word-wrap: normal;
}
#menu_items_main_screen_box #menu_settings_box .setting__title {
  font-size: 1.1rem;
}
#menu_items_main_screen_box #menu_settings_box #sort_city_name {
  color: #3180c4;
  border-bottom: dashed 1px #65b2fa;
  word-wrap: normal;
  cursor: pointer;
  /*
  &.waiting{
  	animation: sort_city_name_waiting linear 0.6s infinite alternate;
  }*/
}
#menu_items_main_screen_box #menu_settings_box #map__starting_point_container {
  position: relative;
  width: 100%;
  height: 0px;
  overflow: hidden;
  display: none;
  -webkit-transition: height 0.2s ease-out;
  transition: height 0.2s ease-out;
}
#menu_items_main_screen_box #menu_settings_box #map__starting_point_container #map__starting_point_container__center_pin {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  z-index: 10000;
  pointer-events: none;
}
#menu_items_main_screen_box #menu_settings_box #map__starting_point_container.visible {
  display: block;
}
#menu_items_main_screen_box #menu_button_main_screen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 1rem;
  right: -1rem;
  background-color: white;
  overflow: hidden;
  height: 3.5rem;
  width: auto;
  font-family: "Open Sans";
  font-weight: 400;
  padding: 0.2rem 0.6rem 0.2rem 0.6rem;
  cursor: pointer;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
  line-height: 1.4rem;
  border-left: 6px solid #3180c4;
  -webkit-transition: right 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s;
  transition: right 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s;
  transition: transform 0.3s ease-in-out, right 0.3s ease-in-out, box-shadow 0.3s;
  transition: transform 0.3s ease-in-out, right 0.3s ease-in-out, box-shadow 0.3s, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#menu_items_main_screen_box #menu_button_main_screen span {
  white-space: nowrap;
  margin-right: 10px;
}
#menu_items_main_screen_box #menu_button_main_screen #menu_button_main_screen_icons {
  height: 100%;
  width: 2rem;
  overflow: hidden;
  margin-right: 1rem;
  opacity: 0.3;
  position: relative;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
#menu_items_main_screen_box #menu_button_main_screen #menu_button_main_screen_icons img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
#menu_items_main_screen_box #menu_button_main_screen #menu_button_main_screen_icons [close] {
  -webkit-transform: translateX(-101%);
      -ms-transform: translateX(-101%);
          transform: translateX(-101%);
}
#menu_items_main_screen_box #menu_button_main_screen #menu_button_main_screen_icons [menu] {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}
#menu_items_main_screen_box #menu_button_main_screen br {
  height: 0.1rem;
  line-height: 0px;
}
#menu_items_main_screen_box #menu_button_main_screen:hover #menu_button_main_screen_icons {
  opacity: 0.8;
}
@media (max-width: 600px), (max-height: 600px) {
  #menu_items_main_screen_box #menu_items_main_screen::after {
    content: " ";
    display: block;
    height: 4rem;
  }
  #menu_items_main_screen_box #menu_button_main_screen {
    position: absolute;
    top: unset;
    right: -1rem;
    bottom: 1rem;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
  }
}

.menu_items_main_screen_box_opened {
  -webkit-transform: translateX(0%) !important;
      -ms-transform: translateX(0%) !important;
          transform: translateX(0%) !important;
  -webkit-box-shadow: 10px 0px 16px 0px rgba(0, 0, 0, 0.5) !important;
          box-shadow: 10px 0px 16px 0px rgba(0, 0, 0, 0.5) !important;
}
.menu_items_main_screen_box_opened #menu_button_main_screen {
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.5) !important;
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.5) !important;
}
.menu_items_main_screen_box_opened #menu_button_main_screen #menu_button_main_screen_icons [close] {
  -webkit-transform: translateX(0%) !important;
      -ms-transform: translateX(0%) !important;
          transform: translateX(0%) !important;
}
.menu_items_main_screen_box_opened #menu_button_main_screen #menu_button_main_screen_icons [menu] {
  -webkit-transform: translateX(101%) !important;
      -ms-transform: translateX(101%) !important;
          transform: translateX(101%) !important;
}
@media (max-width: 640px) {
  .menu_items_main_screen_box_opened #menu_button_main_screen {
    position: absolute;
    top: unset;
    right: 0rem !important;
    bottom: 1rem;
    -webkit-transform: translateX(0%) !important;
        -ms-transform: translateX(0%) !important;
            transform: translateX(0%) !important;
  }
}

#article_box {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 95%;
  max-width: 56rem;
  padding: 0 2rem 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.98);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  overflow: hidden;
}
#article_box .article_box_top_ui {
  height: 2.5rem;
  min-height: 2.5rem;
  margin-right: -2rem;
  margin-left: -2rem;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  /*	
  display: flex; flex-direction: row; flex-wrap: nowrap;
  justify-content: space-between; align-items: flex-start;
  */
  border-top: 1px solid #D3D3D3;
}
#article_box .article_box_top_ui .button {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  text-align: center;
  border-right: 1px solid #D3D3D3;
  opacity: 1;
  -webkit-transition: width 0.25s ease, left 0.25s ease, opacity 0.25s ease;
  transition: width 0.25s ease, left 0.25s ease, opacity 0.25s ease;
}
#article_box .article_box_top_ui .button .button_icon {
  height: 100%;
  opacity: 0.3;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
#article_box .article_box_top_ui #button_close_menu {
  left: 0%;
  width: 0%;
}
#article_box .article_box_top_ui #button_menu {
  left: 0%;
}
#article_box .article_box_top_ui #button_prev {
  left: 25%;
}
#article_box .article_box_top_ui #button_next {
  left: 50%;
}
#article_box .article_box_top_ui #button_close_fact {
  left: 75%;
}
#article_box .article_box_top_ui .button_inactive {
  pointer-events: none;
}
#article_box .article_box_top_ui .button_inactive .button_icon {
  opacity: 0.05;
}
#article_box .article_box_top_ui .button_close_menu_on {
  width: 25% !important;
  left: 0% !important;
}
#article_box .article_box_top_ui .button_menu_off {
  width: 0% !important;
  left: 25% !important;
}
#article_box .article_box_top_ui .button:hover .button_icon {
  opacity: 0.8;
}
#article_box #article_box_article {
  overflow-y: auto;
  overflow-x: hidden;
  cursor: default;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#article_box #article_box_article::-webkit-scrollbar {
  width: 4px;
  background-color: #EAEAEA;
}
#article_box #article_box_article::-webkit-scrollbar-thumb {
  background-color: #B8B8B8;
}
#article_box #article_box_article .article_title {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  margin: 0;
  padding: 0.1rem 0.5rem 0.6rem 0rem;
}
#article_box #article_box_article .lead {
  /*
  position: absolute; bottom: 0; left: 0;
  font-size: 1rem;
  line-height: 1.35;

  width: 100%;
  padding: 0.3rem 0.7rem 0.3rem 0.7rem;
  */
  font-size: 1.5rem;
  font-weight: 300;
  border-left: 4px solid #3180c4;
  margin: 0;
  margin-top: 1rem;
  padding: 0rem 0rem 0rem 0.8rem;
}
#article_box #article_box_article .image_title:empty {
  display: none;
}
#article_box #article_box_article ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}
#article_box #article_box_article .paragraph {
  border-left: 8px solid #FCDDCC;
  padding-left: 0.5rem;
}
#article_box #article_box_article .subtitle {
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  font-size: 1.4rem;
  line-height: 1.3;
}
#article_box #article_box_article .main_image_box {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 56.25%;
}
#article_box #article_box_article .main_image_box .main_image {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#article_box #article_box_article .main_image_box .align_top {
  top: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, -10%);
      -ms-transform: translate(-50%, -10%);
          transform: translate(-50%, -10%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 10%;
     object-position: 50% 10%;
}
#article_box #article_box_article .main_image_box .align_bottom {
  top: 80%;
  left: 50%;
  -webkit-transform: translate(-50%, -80%);
      -ms-transform: translate(-50%, -80%);
          transform: translate(-50%, -80%);
}
#article_box #article_box_article .main_image_box .ie_fit {
  height: auto;
}
#article_box #article_box_article .main_image_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  margin: 0;
  opacity: 1;
  z-index: 1;
}
@media (max-width: 900px) {
  #article_box #article_box_article .main_image_box {
    min-height: 42vh;
    padding-bottom: unset;
  }
}
#article_box #article_box_article .video_button {
  cursor: pointer;
  pointer-events: all;
}
#article_box #article_box_article .video_button .play_button {
  display: block;
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(img/icon_play.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.7;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
#article_box #article_box_article .video_button:hover .play_button {
  opacity: 1;
}
#article_box #article_box_article .titles {
  padding: 1rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
  font-family: "Noto Serif";
}
#article_box #article_box_article .titles .subtitle {
  margin-top: 0;
  margin-bottom: 0;
}
#article_box #article_box_article .titles .synopsis {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
}
#article_box #article_box_article .main_text {
  font-family: "Noto Serif";
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 0.1rem;
  padding-bottom: 1rem;
  margin-top: 1.2rem;
}
#article_box #article_box_article .main_text .cover_in_text {
  margin-top: 0.5rem;
}
#article_box #article_box_article .main_text .image_quint_then_full {
  display: inline-block;
  width: 20%;
  position: relative;
  float: left;
  margin-right: 1rem;
}
#article_box #article_box_article .main_text .image_quint_then_full img {
  display: block;
  width: 100%;
}
#article_box #article_box_article .main_text .image_quart_then_full {
  display: inline-block;
  width: 25%;
  position: relative;
  float: left;
  margin-right: 1rem;
}
#article_box #article_box_article .main_text .image_quart_then_full img {
  display: block;
  width: 100%;
}
#article_box #article_box_article .main_text .image_third_then_full {
  display: inline-block;
  width: 33%;
  position: relative;
  float: left;
  margin-right: 1.2rem;
}
#article_box #article_box_article .main_text .image_third_then_full img {
  display: block;
  width: 100%;
}
#article_box #article_box_article .main_text .image_half_then_full {
  display: inline-block;
  width: 50%;
  position: relative;
  float: left;
  margin-right: 1rem;
}
#article_box #article_box_article .main_text .image_half_then_full img {
  display: block;
  width: 100%;
}
#article_box #article_box_article .main_text .image_wide {
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
  display: block;
  width: 100%;
}
#article_box #article_box_article .main_text .image_wide img {
  display: block;
  width: 100%;
}
#article_box #article_box_article .main_text .clearfix {
  clear: both;
  width: 100%;
}
#article_box #article_box_article .main_text .subtitle {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  background-color: #FCECE3;
  padding: 0.1rem 0.5rem 0.1rem 0.5rem;
}
#article_box #article_box_article .main_text .short_fact {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  background-color: #FCECE3;
  padding: 1rem;
  font-size: 1.25rem;
}
#article_box #article_box_article .main_text p {
  margin-top: 1.2rem;
}
#article_box #article_box_article .getting {
  margin-top: 1rem;
  font-family: "Noto Serif";
  font-size: 1.1rem;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
#article_box #article_box_article .getting:has(.addr_block > .addr > .getting_text:empty) {
  display: none;
}
#article_box #article_box_article .getting span {
  background-color: #3180c4;
  color: white;
  padding: 0rem 0.5rem 0.2rem 0.5rem;
  display: block;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
#article_box #article_box_article .getting a {
  color: #3180c4 !important;
}
#article_box #article_box_article .getting .addr_block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  margin-right: 2rem;
}
#article_box #article_box_article .getting .addr_block .icon_box {
  width: 100%;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #3180c4;
}
#article_box #article_box_article .getting .addr_block .icon_box img {
  display: inline-block;
  vertical-align: middle;
  max-width: 2.5rem;
  margin-right: 0.2rem;
  max-height: 1.4rem;
}
#article_box #article_box_article .getting .addr_block .public, #article_box #article_box_article .getting .addr_block .car, #article_box #article_box_article .getting .addr_block .addr {
  font-family: "Open Sans";
  line-height: 1.4;
  font-size: 1rem;
  margin-bottom: 1rem;
}
#article_box #article_box_article .getting .addr_block .public:has(.getting_text:empty), #article_box #article_box_article .getting .addr_block .car:has(.getting_text:empty), #article_box #article_box_article .getting .addr_block .addr:has(.getting_text:empty) {
  display: none;
}
#article_box #article_box_article .getting .fact_map_container {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  min-height: 400px;
}
#article_box #article_box_article .getting .fact_map_container a {
  display: block;
}
#article_box #article_box_article .getting .fact_map_container img {
  display: block;
  width: 100%;
  height: auto;
}
#article_box #article_box_article .getting .fact_map_container #global_map_container {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#article_box #article_box_article .getting .fact_map_container #global_map_container .icon_title {
  position: absolute;
  top: -5px;
  left: 15px;
  z-index: -1;
  -webkit-transform: translate(-50%, -100%) !important;
      -ms-transform: translate(-50%, -100%) !important;
          transform: translate(-50%, -100%) !important;
  font-family: "Open Sans" !important;
  font-size: 0.9rem;
  line-height: 1.1;
  border-radius: 5px;
  min-width: 8rem;
  text-align: left;
  color: white;
  padding: 0.3rem 0.5rem 0.3rem 0.5rem;
}
#article_box #article_box_article .getting .fact_map_container #global_map_container .icon_title.glory {
  background-color: #DA2F28;
}
#article_box #article_box_article .getting .fact_map_container #global_map_container .icon_title.food {
  background-color: #007AFF;
}
#article_box #article_box_article .getting .fact_map_container #global_map_container .icon_title.religion {
  background-color: #E5AC00;
}
#article_box #article_box_article .getting .fact_map_container #global_map_container .icon_title.family {
  background-color: #0DB64B;
}
#article_box #article_box_article .getting .fact_map_container #global_map_container .icon_title.active {
  background-color: #FF7400;
}
#article_box #article_box_article .getting .fact_map_container #global_map_container .icon_title.folk {
  background-color: #803A00;
}
#article_box #article_box_article .getting .fact_map_container #global_map_container .icon_title.event {
  background-color: #FF0347;
}
#article_box #article_box_article .getting .fact_map_container #global_map_container .icon_title.eco {
  background-color: #8FC515;
}
#article_box #article_box_article .getting .fact_map_container #global_map_container .icon_title.sport_events {
  background-color: #FF6100;
}
#article_box #article_box_article .getting .fact_map_container #global_map_container .icon_title.lenobl_districts {
  background-color: #616A72;
}
#article_box #article_box_article .getting .fact_map_container #global_map_container .icon_title.lenobl_theatres {
  background-color: #9900FF;
}
#article_box #article_box_article .getting .fact_map_container #global_map_container .icon_title.video_lections {
  background-color: #4622FF;
}
#article_box .article_bottom_project_name {
  height: 1rem;
  margin-top: 0.5rem;
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 0.8rem;
  color: #3180c4;
  text-align: left;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid #E0E0E0;
  overflow: hidden;
}
#article_box .article_bottom_project_name #place_type_box_top {
  float: right;
  height: 400%;
  position: relative;
  padding-left: 0.5rem;
  margin-left: 0.1rem;
  color: #3180c4;
}
#article_box .article_bottom_project_name #place_type_box_top .place_type_top {
  position: absolute;
  top: 0;
  right: 0;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.2s ease;
  transition: opacity 0.3s, -webkit-transform 0.2s ease;
  transition: opacity 0.3s, transform 0.2s ease;
  transition: opacity 0.3s, transform 0.2s ease, -webkit-transform 0.2s ease;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  max-width: 33vw;
  overflow: hidden;
  text-overflow: ellipsis;
}
#article_box .article_bottom_project_name #place_type_box_top .place_type_top.visible {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  opacity: 1;
}

.main_col {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

#icon_swipe_here_box {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 6rem;
  height: 6rem;
  z-index: 2;
  opacity: 1;
  border-radius: 50%;
  background-color: #383838;
  background-clip: padding-box;
  border: 10px solid rgba(255, 255, 255, 0.5);
  -webkit-transition: border-radius 0.3s ease, width 0.2s ease, height 0.2s ease, opacity 0.4s ease, border-width 0.2s ease;
  transition: border-radius 0.3s ease, width 0.2s ease, height 0.2s ease, opacity 0.4s ease, border-width 0.2s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000;
          perspective: 1000;
}
#icon_swipe_here_box img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  width: 4rem;
  height: 4rem;
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
#icon_swipe_here_box #icon_swipe_here_text {
  display: block;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  font-family: "Open Sans";
  white-space: nowrap;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

#icon_swipe_here_box:hover {
  width: 20rem;
  height: 4rem;
  border-radius: 0.5rem;
  border-width: 0;
}
#icon_swipe_here_box:hover img {
  opacity: 0;
}
#icon_swipe_here_box:hover #icon_swipe_here_text {
  opacity: 1;
}

#icon_swipe_here_box:focus {
  width: 20rem;
  height: 4rem;
  border-radius: 0.5rem;
  border-width: 0;
}
#icon_swipe_here_box:focus img {
  opacity: 0;
}
#icon_swipe_here_box:focus #icon_swipe_here_text {
  opacity: 1;
}

.small_tip {
  position: absolute;
  top: 383px;
  left: 383px;
  z-index: 2;
  -webkit-transform-origin: 50% 100%;
      -ms-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  opacity: 0;
  -webkit-transform: translate(-50%, -110%) scale(0);
      -ms-transform: translate(-50%, -110%) scale(0);
          transform: translate(-50%, -110%) scale(0);
  -webkit-transition: opacity 0.1s ease, -webkit-transform 0.1s ease;
  transition: opacity 0.1s ease, -webkit-transform 0.1s ease;
  transition: opacity 0.1s ease, transform 0.1s ease;
  transition: opacity 0.1s ease, transform 0.1s ease, -webkit-transform 0.1s ease;
}
.small_tip .tip__text {
  padding: 6px;
  border-radius: 6px;
  color: white;
  background-color: #383838;
  font-family: "Open Sans";
  font-size: 15px;
  line-height: 1;
}
.small_tip .tip__arrow_line {
  text-align: center;
}
.small_tip .tip__arrow_line img {
  -webkit-transform: translateY(-5%);
      -ms-transform: translateY(-5%);
          transform: translateY(-5%);
  margin-left: 6px;
  margin-right: 6px;
  height: 10px;
}
.small_tip.visible {
  opacity: 1;
  -webkit-transform: translate(-50%, -110%) scale(1);
      -ms-transform: translate(-50%, -110%) scale(1);
          transform: translate(-50%, -110%) scale(1);
}

.breadcrumbs__tip {
  position: absolute;
  top: 383px;
  left: 383px;
  z-index: 2;
  -webkit-transform-origin: -10% 50%;
      -ms-transform-origin: -10% 50%;
          transform-origin: -10% 50%;
  opacity: 0;
  -webkit-transform: translate(10px, -50%) scale(0);
      -ms-transform: translate(10px, -50%) scale(0);
          transform: translate(10px, -50%) scale(0);
  -webkit-transition: opacity 0.15s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.15s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.15s ease, transform 0.15s ease;
  transition: opacity 0.15s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
  pointer-events: none;
}
.breadcrumbs__tip .tip__text {
  padding: 6px;
  border-radius: 6px;
  color: white;
  white-space: nowrap;
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 1;
}
.breadcrumbs__tip svg {
  position: absolute;
  left: 0;
  top: 50%;
  height: 12px;
  width: 12px;
  -webkit-transform: translate(-80%, -50%);
      -ms-transform: translate(-80%, -50%);
          transform: translate(-80%, -50%);
}
.breadcrumbs__tip[data-category=glory] .tip__text {
  background-color: #DA2F28;
}
.breadcrumbs__tip[data-category=glory] #brdcrmb_tip_triangle {
  fill: #DA2F28 !important;
}
.breadcrumbs__tip[data-category=food] .tip__text {
  background-color: #007AFF;
}
.breadcrumbs__tip[data-category=food] #brdcrmb_tip_triangle {
  fill: #007AFF !important;
}
.breadcrumbs__tip[data-category=religion] .tip__text {
  background-color: #E5AC00;
}
.breadcrumbs__tip[data-category=religion] #brdcrmb_tip_triangle {
  fill: #E5AC00 !important;
}
.breadcrumbs__tip[data-category=family] .tip__text {
  background-color: #0DB64B;
}
.breadcrumbs__tip[data-category=family] #brdcrmb_tip_triangle {
  fill: #0DB64B !important;
}
.breadcrumbs__tip[data-category=active] .tip__text {
  background-color: #FF7400;
}
.breadcrumbs__tip[data-category=active] #brdcrmb_tip_triangle {
  fill: #FF7400 !important;
}
.breadcrumbs__tip[data-category=folk] .tip__text {
  background-color: #803A00;
}
.breadcrumbs__tip[data-category=folk] #brdcrmb_tip_triangle {
  fill: #803A00 !important;
}
.breadcrumbs__tip[data-category=event] .tip__text {
  background-color: #FF0347;
}
.breadcrumbs__tip[data-category=event] #brdcrmb_tip_triangle {
  fill: #FF0347 !important;
}
.breadcrumbs__tip[data-category=eco] .tip__text {
  background-color: #8FC515;
}
.breadcrumbs__tip[data-category=eco] #brdcrmb_tip_triangle {
  fill: #8FC515 !important;
}
.breadcrumbs__tip[data-category=sport_events] .tip__text {
  background-color: #FF6100;
}
.breadcrumbs__tip[data-category=sport_events] #brdcrmb_tip_triangle {
  fill: #FF6100 !important;
}
.breadcrumbs__tip[data-category=lenobl_districts] .tip__text {
  background-color: #616A72;
}
.breadcrumbs__tip[data-category=lenobl_districts] #brdcrmb_tip_triangle {
  fill: #616A72 !important;
}
.breadcrumbs__tip[data-category=lenobl_theatres] .tip__text {
  background-color: #9900FF;
}
.breadcrumbs__tip[data-category=lenobl_theatres] #brdcrmb_tip_triangle {
  fill: #9900FF !important;
}
.breadcrumbs__tip[data-category=video_lections] .tip__text {
  background-color: #4622FF;
}
.breadcrumbs__tip[data-category=video_lections] #brdcrmb_tip_triangle {
  fill: #4622FF !important;
}
.breadcrumbs__tip.visible {
  opacity: 1 !important;
  -webkit-transform: translate(10px, -50%) scale(1) !important;
      -ms-transform: translate(10px, -50%) scale(1) !important;
          transform: translate(10px, -50%) scale(1) !important;
}
#breadcrumbs_box {
  position: absolute;
  left: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
#breadcrumbs_box .breadcrumb_icon {
  display: block;
  width: 46px;
  height: 46px;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  -webkit-filter: saturate(50%);
          filter: saturate(50%);
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-filter 0.1s ease, -webkit-transform 0.2s ease;
  transition: -webkit-filter 0.1s ease, -webkit-transform 0.2s ease;
  transition: filter 0.1s ease, transform 0.2s ease;
  transition: filter 0.1s ease, transform 0.2s ease, -webkit-filter 0.1s ease, -webkit-transform 0.2s ease;
}
#breadcrumbs_box .breadcrumb_icon:hover {
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

@media (max-height: 700px) {
  #article_box {
    height: 100%;
    padding: 0 2rem 0 2rem;
  }
}
@media (max-width: 770px) {
  #article_box {
    height: 100%;
    padding: 0 1rem 0 1rem;
  }
  #article_box #article_box_article .article_title {
    border: 0;
    font-size: 1.5rem;
  }
  #article_box #article_box_article .image_and_title {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
  }
  #article_box #article_box_article .image_and_title .main_image img {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    width: 100%;
    height: auto;
    -o-object-fit: unset;
       object-fit: unset;
  }
  #article_box #article_box_article .image_and_title .main_image .align_top {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -o-object-fit: unset;
       object-fit: unset;
    -o-object-position: unset;
       object-position: unset;
  }
  #article_box #article_box_article .image_and_title .titles br {
    display: none;
  }
  #article_box #article_box_article .main_text .image_half_then_full, #article_box #article_box_article .main_text .image_third_then_full, #article_box #article_box_article .main_text .image_quart_then_full, #article_box #article_box_article .main_text .image_quint_then_full {
    float: none;
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  #article_box #article_box_article .getting {
    display: block;
  }
  #article_box #article_box_article .getting .fact_map_container {
    height: 80vh;
  }
  #menu_items_box {
    position: absolute;
    top: 2.5rem;
    left: 0;
    height: calc(100% - 5rem);
    width: 100%;
    padding-left: 1rem;
  }
  #breadcrumbs_box {
    display: none;
  }
}
@media (max-height: 730px) {
  .title_box .project_name {
    font-size: 1.65rem;
  }
}
@media (max-height: 690px) {
  #breadcrumbs_box {
    top: unset;
    bottom: 10px;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
  }
  #breadcrumbs_box .breadcrumb_icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-height: 600px) {
  .title_box .jur {
    font-size: 0.65rem;
  }
  .item .item_title {
    font-size: 1rem;
    line-height: 1.2;
  }
  #titles_sizes {
    font-size: 1rem;
    line-height: 1.2;
  }
  #breadcrumbs_box {
    display: none;
  }
}