:root {
	--main-dark: #21283C;


	--main-black: #000000;
	--main-white: #ffffff;
	--main-yellow: #ffc200;
	--main-red: #db156d;
	--main-green: #00a351;
	--main-blue: #0c4c6b;
	--main-bg: #ffffff;
	--footer-bg: #eaf6f9;
	--hover-bg: #f2f2f2;
	--main-gray: #757575;
	--speed-fast: 0.2s;
	--speed-slow: 0.4s;
	--larg-size: calc(100vw / 1400);
	--font-header: 'Roboto', Arial, sans-serif;
}

* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}

html {
	scroll-behavior: initial!important;
	margin-top: 0px!important;
}

.x1, .x2, .x3, .x4, .x5, .x6, .x7, .x8, .x9 {
	opacity: 0;
	transform: translateX(-120px);
}
.x1 {
	transition: transform ease .7s .1s, opacity ease .7s .1s;
}
.x2 {
	transition: transform ease .7s .2s, opacity ease .7s .2s;
}
.x3 {
	transition: transform ease .7s .3s, opacity ease .7s .3s;
}
.x4 {
	transition: transform ease .7s .4s, opacity ease .7s .4s;
}
.x5 {
	transition: transform ease .7s .5s, opacity ease .7s .5s;
}
.x6 {
	transition: transform ease .7s .6s, opacity ease .7s .6s;
}
.x7 {
	transition: transform ease .7s .7s, opacity ease .7s .7s;
}
.x8 {
	transition: transform ease .7s .8s, opacity ease .7s .8s;
}
.x9 {
	transition: transform ease .7s .9s, opacity ease .7s .9s;
}
.ready .visible.x1, 
.ready .visible.x2, 
.ready .visible.x3, 
.ready .visible.x4, 
.ready .visible.x5, 
.ready .visible.x6,
.ready .visible.x7, 
.ready .visible.x8, 
.ready .visible.x9 {
	opacity: 1;
	transform: translateX(0px);
}

.y1, .y2, .y3, .y4, .y5, .y6, .y7, .y8, .y9 {
	opacity: 0;
	transform: translateY(120px);
}
.y1 {
	transition: transform ease .7s .1s, opacity ease .7s .1s;
}
.y2 {
	transition: transform ease .7s .2s, opacity ease .7s .2s;
}
.y3 {
	transition: transform ease .7s .3s, opacity ease .7s .3s;
}
.y4 {
	transition: transform ease .7s .4s, opacity ease .7s .4s;
}
.y5 {
	transition: transform ease .7s .5s, opacity ease .7s .5s;
}
.y6 {
	transition: transform ease .7s .6s, opacity ease .7s .6s;
}
.y7 {
	transition: transform ease .7s .7s, opacity ease .7s .7s;
}
.y8 {
	transition: transform ease .7s .8s, opacity ease .7s .8s;
}
.y9 {
	transition: transform ease .7s .9s, opacity ease .7s .9s;
}
.ready .visible.y1, 
.ready .visible.y2, 
.ready .visible.y3, 
.ready .visible.y4, 
.ready .visible.y5, 
.ready .visible.y6, 
.ready .visible.y7, 
.ready .visible.y8, 
.ready .visible.y9 {
	opacity: 1;
	transform: translateX(0px);
}

#page-preloader {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 99;
}

.load:after, .loader:after {
	content: "";
	width: 66px;
	height: 66px;
	left: 50%;
	top: 50%;
	margin-left: -33px;
	margin-top: -33px;
	position: absolute;
	border-left: 4px solid #ccc;
	border-top: 4px solid #ccc;
	border-right: 4px solid #fff;
	border-bottom: 4px solid #ccc;
	border-radius: 50%;
	-moz-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-moz-animation: load-index .5s infinite linear;
	-webkit-animation: load-index .5s infinite linear;
	animation: load-index .5s infinite linear;
}

@-moz-keyframes load-index {
	0% {
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 2px dotted #ffcc01!important;
	}
	100% {
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 6px dotted #4ec9dd!important;
	}
}

@-webkit-keyframes load-index {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 2px dotted #ffcc01!important;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 6px dotted #4ec9dd!important;
	}
}

@keyframes load-index {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 2px dotted #ffcc01!important;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 6px dotted #4ec9dd!important;
	}
}

body {
	font-size: 16px;
	font-family: 'Roboto', Arial, sans-serif;
  color: var(--main-black);
}

body.overflow {
  overflow: hidden;
  padding-right: 15px;
}

.site#page {
  position: relative;
	overflow: clip;
	background-color: var(--main-bg);
}

.container-fluid {
  padding: 0px 30px;
  max-width: 1340px;
	position: relative;
}

.container-fluid .row {
  margin-left: -15px;
  margin-right: -15px;
}

.container-fluid .row [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

img {
	width: 100%;
	height: auto;
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  width : 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

header.header {
	position: sticky;
	z-index: 100;
	top: 0px;
	left: 0px;
	width: 100%;
	background-color: var(--main-bg);
}

header.header .container-fluid {
	max-width: 100%;
	padding: 0px;
}

header.header .header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px;
	border-bottom: 1px solid #f2f2f2;
}

header.header .header-wrap .header-menu-btn {
	width: 60px;
	min-width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 0px;
	cursor: pointer;
	position: relative;
	background-color: transparent;
	border-right: 1px solid #e2e2e2;
}

@media screen and (min-width: 576px) {
	header.header .header-wrap .header-menu-btn:hover {
		background-color: var(--hover-bg);
	}
}

header.header .header-wrap .header-menu-btn::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 33%;
	height: 33%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(../img/menu-burger-green.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

header.header.side-open .header-wrap .header-menu-btn::before {
  background-image: url(../img/menu-burger-close-green.svg);
}

header.header .header-wrap a.logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 60px;
	background-color: transparent;
}

@media screen and (min-width: 576px) {
	header.header .header-wrap a.logo:hover {
		background-color: var(--hover-bg);
	}
}

header.header .header-wrap a.logo img {
	display: flex;
	height: 100%;
	width: 88%;
	object-fit: contain;
}

header.header .header-wrap .header-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px auto 0px 0px;
	border-left: 1px solid #e2e2e2;
}

header.header .header-wrap .header-menu ul.menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0px;
	padding: 0px;
	margin: 0px;
	list-style: none;
}

header.header .header-wrap .header-menu ul.menu li {
	display: flex;
	align-items: center;
}

header.header .header-wrap .header-menu ul.menu li a {
	min-height: 60px;
	padding: 12px 12px 8px;
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-green);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-bottom: 4px solid transparent;
	text-transform: uppercase;
}

@media screen and (min-width: 576px) {
	header.header .header-wrap .header-menu ul.menu li a:hover {
		color: var(--main-yellow);
	}
}

header.header .header-wrap .header-menu ul.menu li.is-active a {
	color: var(--main-yellow);
	border-color: var(--main-yellow);
}

header.header .header-wrap .accessibility-menu {
  display: flex;
  align-items: center;
	margin-right: 0px;
	border-right: 1px solid #e2e2e2;
}

header.header .header-wrap .accessibility-menu .accessibility-btn {
  display: flex;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border: none;
  cursor: pointer;
  transition: var(--speed-slow);
	position: relative;
	background-color: transparent;
}

@media screen and (min-width: 576px) {
	header.header .header-wrap .accessibility-menu .accessibility-btn:hover {
		background-color: var(--hover-bg);
	}
}

header.header .header-wrap .accessibility-menu .accessibility-btn::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	height: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(../img/accessibility-icon-green.svg);
	background-image: url(../img/accesibility-eye-icon-green.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

header.header .header-wrap .accessibility-menu .accessibility-btn span {
  display: none;
}

header.header .header-wrap .search-menu {
	display: flex;
  align-items: center;
	margin-right: 0px;
	border-right: 1px solid #e2e2e2;
}

header.header .header-wrap .search-menu .search-form-btn {
  display: flex;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border: none;
  cursor: pointer;
  transition: var(--speed-slow);
	position: relative;
	background-color: transparent;
}

@media screen and (min-width: 576px) {
	header.header .header-wrap .search-menu .search-form-btn:hover {
		background-color: var(--hover-bg);
	}
}

header.header .header-wrap .search-menu .search-form-btn::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(../img/search-icon-green.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

header.header .header-wrap .search-menu .search-form-btn span {
  display: none;
}

header.header .header-wrap .login-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 1px solid #e2e2e2;
}

header.header .header-wrap .login-menu a.login-btn {
	height: 60px;
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 700;
	color: var(--main-black);
	background-color: var(--main-white);
	text-decoration: none;
	display: flex;
	align-items: center;
	position: relative;
	padding: 12px;
}

@media screen and (min-width: 576px) {
	header.header .header-wrap .login-menu a.login-btn:hover {
		background-color: var(--hover-bg);
	}
}

header.header .header-wrap .login-menu a.login-btn::before {
	content: '';
	position: relative;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(../img/login-arrow.svg);
	background-position: -2px center;
	background-repeat: no-repeat;
	background-size: 75% auto;
	background-color: var(--main-green);
	border-radius: 50%;
	margin-right: 10px;
}

header.header .header-wrap .login-menu .user-profile-wrap {
  display: flex;
  align-items: center;
  position: relative;
	padding: 8px;
}

@media screen and (min-width: 576px) {
	header.header .header-wrap .login-menu .user-profile-wrap:hover {
		background-color: var(--hover-bg);
	}
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 100%;
  border: 2px solid var(--main-green);
	background-color: var(--main-white);
  overflow: hidden;
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-image::before {
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-image .avatar-placeholder {
	font-size: 1.25em;
	width: 100%;
	height: 100%;
	background-color: transparent;
	color: var(--main-black);
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background-color: transparent;
  color: var(--main-white);
  font-size: 1em;
  line-height: 100%;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: var(--speed-slow);
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content {
  position: absolute;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: var(--speed-slow);
  background-color: var(--main-white);
	border: 1px solid #e2e2e2;
  right: -1px;
  top: 100%;
	max-height: calc(100svh - 60px);
	overflow-y: auto;
  /* box-shadow: 0px 0px 26px -5px rgba(0, 0, 0, 0.2); */
  display: flex;
  flex-direction: column;
}

header.header .header-wrap .login-menu .user-profile-wrap.show .user-profile-content {
  opacity: 1;
  user-select: auto;
  pointer-events: all;
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu {
  position: relative;
  z-index: 2;
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item {
  display: flex;
  align-items: center;
  flex: 1;
  margin: 0px;
  padding: 0px;
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a {
  font-size: 1em;
  line-height: 120%;
  font-weight: 400;
	padding: 8px 12px;
  color: var(--main-blue);
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
	width: 100%;
}

@media screen and (min-width: 576px) {
	header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a:hover {
		background-color: #f4f4f4;
		color: var(--main-blue);
	}
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a span {
  position: relative;
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	margin-right: 10px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item.user-profile a::before {
	background-image: url(../img/user-profile-blue.svg);
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item.user-favorites a::before {
	background-image: url(../img/user-favorites-blue.svg);
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item.user-discounts a::before {
	background-image: url(../img/user-discounts-blue.svg);
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item.user-events a::before {
	background-image: url(../img/user-events-blue.svg);
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item.user-locations a::before {
	background-image: url(../img/user-locations-blue.svg);
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item.user-products a::before {
	background-image: url(../img/user-products-blue.svg);
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item.user-artists a::before {
	background-image: url(../img/user-profile-blue.svg);
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item.user-articles a::before {
	background-image: url(../img/user-articles-blue.svg);
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item.user-reviews a::before {
	background-image: url(../img/user-reviews-blue.svg);
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item.user-orders a::before {
	background-image: url(../img/user-orders-blue.svg);
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item.user-booking a::before {
	background-image: url(../img/user-booking-blue.svg);
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item.user-settings a::before {
	background-image: url(../img/user-settings-blue.svg);
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item form {
	width: 100%;
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item form button {
	font-size: 1em;
  line-height: 120%;
  font-weight: 400;
	padding: 8px 12px;
  color: var(--main-blue)!important;
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	color: inherit;
}

@media screen and (min-width: 576px) {
	header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item form button:hover {
		background-color: #f4f4f4;
		color: var(--main-blue);
	}
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item form button::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	margin-right: 10px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item.user-logout form button::before {
	background-image: url(../img/user-logout-blue.svg);
}

header.header .header-wrap .add-event-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 0px;
	border-right: 1px solid #e2e2e2;
}

header.header .header-wrap .add-event-menu .add-event-btn {
	height: 60px;
	padding: 12px;
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 700;
	color: var(--main-black);
	text-decoration: none;
	display: flex;
	align-items: center;
	cursor: pointer;
	background-color: transparent;
}

@media screen and (min-width: 576px) {
	header.header .header-wrap .add-event-menu .add-event-btn:hover {
		background-color: var(--hover-bg);
	}
}

header.header .header-wrap .add-event-menu .add-event-btn::before {
	content: '';
	width: 35px;
	min-width: 35px;
	height: 35px;
	background-image: url(../img/plus-header.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 48% 48%;
	background-color: var(--main-red);
	border-radius: 100%;
	margin-right: 10px;
}

header.header .header-wrap .language-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 0px;
}

header.header .header-wrap .language-menu ul.menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0px;
	padding: 0px;
	margin: 0px;
	list-style: none;
}

header.header .header-wrap .language-menu ul.menu li {
	display: flex;
	align-items: center;
}

header.header .header-wrap .language-menu ul.menu li a {
	width: 60px;
	min-width: 60px;
	height: 60px;
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 700;
	color: var(--main-black);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: transparent;
}

@media screen and (min-width: 576px) {
	header.header .header-wrap .language-menu ul.menu li a:hover {
		opacity: 1;
		background-color: var(--hover-bg);
	}
}

header.header .header-wrap .language-menu ul.menu li.current-menu-item {
	display: none;
}

.login-popup,
.search-popup,
.event-popup,
.booking-popup {
  position: fixed;
  z-index: 115;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #1B1B1B80;
  backdrop-filter: blur(6px);
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: opacity var(--speed-fast);
  padding: 20px;
  overflow-y: auto;
  text-align: center;
}

.login-popup.show,
.search-popup.show,
.event-popup.show {
  opacity: 1;
  user-select: auto;
  pointer-events: all;
}

.booking-popup {
	opacity: 1;
	user-select: auto;
	pointer-events: all;
	display: none;
}

.login-popup > .close-login-btn,
.search-popup > .close-search-btn,
.event-popup > .close-event-btn {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  color: transparent;
  font-size: 0px;
  line-height: 100%;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-popup::before,
.search-popup::before,
.event-popup::before,
.booking-popup::before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.login-popup .popup-box,
.search-popup .popup-box,
.event-popup .popup-box,
.booking-popup .popup-box {
  position: relative;
  z-index: 2;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
	max-width: 600px;
	width: 95%;
}

.login-popup .popup-wrap,
.search-popup .popup-wrap,
.event-popup .popup-wrap,
.booking-popup .popup-wrap {
  max-width: 600px;
  vertical-align: middle;
  margin: 0 auto;
  width: 100%;
  padding: 40px 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--main-white);
  border: 1px solid var(--main-white);
  text-align: left;
	border-radius: 0px;
	position: relative;
}

.login-popup .popup-wrap .popup-content,
.search-popup .popup-wrap .popup-content,
.event-popup .popup-wrap .popup-content,
.booking-popup .popup-wrap .popup-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.login-popup .popup-wrap .popup-content > p.h2,
.search-popup .popup-wrap .popup-content > p.h2,
.event-popup .popup-wrap .popup-content > p.h2,
.booking-popup .popup-wrap .popup-content > p.h2 {
	margin-bottom: 1rem;
	color: var(--main-blue);
}

.login-popup .popup-wrap .popup-content .login-with-btns,
.search-popup .popup-wrap .popup-content .login-with-btns,
.event-popup .popup-wrap .popup-content .login-with-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0px;
}

.login-popup .popup-wrap .popup-content .login-with-btns a,
.search-popup .popup-wrap .popup-content .login-with-btns a,
.event-popup .popup-wrap .popup-content .login-with-btns {
	line-height: 100%;
	font-weight: 500;
	color: #000;
	padding: 14px 40px;
	text-decoration: none;
	border: 1px solid var(--main-gray);
	display: flex;
	align-items: center;
	justify-content: left;
	width: 100%;
	transition: var(--speed-fast);
	margin-bottom: 10px;
	border-radius: 0px;
	height: 45px;
}

.booking-popup .popup-wrap .popup-content p.undertitle {
	font-size: 1em;
	color: #666666;
	margin-bottom: 16px;
}

.booking-popup .popup-wrap .popup-content .btn {
	width: 100%;
}

.event-popup .popup-wrap .popup-content ul.add-list {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item {
	width: calc((100% - 20px) / 3);
	width: calc((100% - 10px) / 2);
	display: flex;
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item a.item-link {
	padding: 6px 12px;
	color: var(--main-blue);
	background: transparent;
	border-radius: 0px;
	transition: all 0.2s ease;
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	transition: var(--speed-fast);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item a.item-link::before {
	content: '';
	width: 60px;
	min-width: 60px;
	height: 60px;
	background-color: #f2f2f2;
	border-radius: 50px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50% 50%;
	margin-bottom: 6px;
	transition: var(--speed-fast);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-event a.item-link::before {
	background-image: url(../img/user-events-blue.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-location a.item-link::before {
	background-image: url(../img/user-locations-blue.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-guide a.item-link::before {
	background-image: url(../img/user-profile-blue.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-tour a.item-link::before {
	background-image: url(../img/user-booking-blue.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-news a.item-link::before {
	background-image: url(../img/user-articles-blue.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-product a.item-link::before {
	background-image: url(../img/user-products-blue.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-legends a.item-link::before {
	background-image: url(../img/user-news-blue.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-video a.item-link::before {
	background-image: url(../img/user-video-blue.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-virual_tour a.item-link::before {
	background-image: url(../img/user-streetview-blue.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item a.item-link:hover::before {
	background-color: var(--main-blue);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-event a.item-link:hover::before {
	background-image: url(../img/user-events-white.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-location a.item-link:hover::before {
	background-image: url(../img/user-locations-white.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-guide a.item-link:hover::before {
	background-image: url(../img/user-profile-white.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-tour a.item-link:hover::before {
	background-image: url(../img/user-booking-white.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-news a.item-link:hover::before {
	background-image: url(../img/user-articles-white.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-product a.item-link:hover::before {
	background-image: url(../img/user-products-white.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-legends a.item-link:hover::before {
	background-image: url(../img/user-news-white.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-video a.item-link:hover::before {
	background-image: url(../img/user-video-white.svg);
}

.event-popup .popup-wrap .popup-content ul.add-list li.list-item.add-virual_tour a.item-link:hover::before {
	background-image: url(../img/user-streetview-white.svg);
}

/* Стилі для кнопок вибору типу */
.add-type-buttons {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
}

.add-type-btn {
	flex: 1;
	padding: 12px 20px;
	border: 2px solid #e2e2e2;
	background: transparent;
	border-radius: 0px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 16px;
	font-weight: 500;
	color: var(--main-black);
}

@media screen and (min-width: 576px) {
	.add-type-btn:hover {
		border-color: var(--main-blue);
		color: var(--main-blue);
	}
}

.add-type-btn.active {
	background: var(--main-blue);
	border-color: var(--main-blue);
	color: white;
}

/* Стилі для кроків модерації */
.moderation-step {
	display: none;
}

.moderation-step.active {
	display: block;
}

.step-description {
	margin-bottom: 20px;
	font-size: 16px;
	color: #666;
	text-align: center;
}

.step-header {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e2e2e2;
}

.step-header h3 {
	margin: 0;
	flex: 1;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
}

.back-btn {
	background: none;
	border: none;
	color: var(--main-blue);
	font-size: 16px;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 0px;
	transition: background-color 0.3s ease;
}

@media screen and (min-width: 576px) {
	.back-btn:hover {
		background: #f5f5f5;
	}
}

.form-group {
	margin-bottom: 20px;
}

.form-row {
	display: flex;
	gap: 15px;
}

.form-row .form-group {
	flex: 1;
}

.static-page .col-12 > h1 {
	margin-bottom: 20px;
	color: var(--main-blue);
	font-size: 2.75em;
	line-height: 120%;
	font-weight: 700;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--main-blue);
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #e2e2e2;
	border-radius: 0px;
	font-size: 1em;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--main-blue);
}

.form-group input[type="file"] {
	padding: 8px 15px;
}

.form-actions {
	margin-top: 30px;
	text-align: center;
}

.btn-submit {
	background: var(--main-red);
	color: var(--main-white);
	border: none;
	padding: 15px 30px 12px;
	border-radius: 0px;
	font-size: 1em;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.btn-submit:disabled {
	background: #ccc;
	cursor: not-allowed;
}

a.back-to-socials-btn {
	font-size: 1em;
	line-height: 100%;
	font-weight: 500;
	color: #000;
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 100px;
	border: 1px solid var(--main-gray);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	transition: var(--speed-slow);
	margin-bottom: 16px;
	width: 100%;
	display: block;
	text-align: center;
  }
  
  a.back-to-socials-btn {
	border: none;
	text-align: left;
	padding: 0px;
	display: flex;
	align-items: center;
  }


a.back-to-socials-btn::before {
	content: '';
    width: 17px;
    min-width: 17px;
    height: 17px;
	background-image: url(../img/arrow-left-black.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 12px;
}

.forgot-password {
    cursor: pointer;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}


.agree_link {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    padding-left: 0;
    font-size: 0.875em;
    line-height: 120%;
    font-weight: 400;
    color: #000;
    min-height: 24px;
    cursor: pointer;
    user-select: none;
    width: 100%;
    margin-bottom: 16px;
  }

  label.agree_link input {
    margin-right: 10px;
    position: relative;
    top: 1px;
}

.error-message {
    color: red;
    margin-top: -15px;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.popup-content-inner .h2 {
	color: var(--main-blue);
    margin-bottom: 20px;
}

.login-popup.login-page .popup-wrap .popup-content .login-with-btns a {
  width: 100%;
}

.login-popup.login-page .popup-wrap .popup-content .login-with-btns a:nth-child(1n + 2) {
  margin-top: 24px;
}

.login-popup .popup-wrap .popup-content .login-with-btns a::before,
.search-popup .popup-wrap .popup-content .login-with-btns a::before {
  content: '';
  width: 26px;
  min-width: 26px;
  height: 26px;
  background-image: url(../img/login-google-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 10px;
}

.login-popup .popup-wrap .popup-content .login-with-btns a.mail::before {
    background-image: url(../img/mail-icon-black.svg);
	height: 24px;
	width: 24px;
}

a.mail.email-login-btn {
    height: 40px;
}

.login-popup .popup-wrap .popup-content .login-with-btns a.facebook::before,
.login-popup .popup-wrap .popup-content .login-with-btns a[href*="facebook"]::before,
.search-popup .popup-wrap .popup-content .login-with-btns a.facebook::before,
.search-popup .popup-wrap .popup-content .login-with-btns a[href*="facebook"]::before {
  background-image: url(../img/login-facebook-icon.svg);
}

.login-popup .popup-wrap .popup-content .login-or-lines,
.search-popup .popup-wrap .popup-content .login-or-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0px 24px;
}

.login-popup .popup-wrap .popup-content .login-or-lines::before,
.login-popup .popup-wrap .popup-content .login-or-lines::after,
.search-popup .popup-wrap .popup-content .login-or-lines::before,
.search-popup .popup-wrap .popup-content .login-or-lines::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--main-gray);
}

.login-popup .popup-wrap .popup-content .login-or-lines span,
.search-popup .popup-wrap .popup-content .login-or-lines span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125em;
  line-height: 100%;
  font-weight: 400;
  color: var(--main-gray);
	margin: 0px 24px;
}

.login-popup .popup-wrap .popup-content .login-form,
.search-popup .popup-wrap .popup-content .search-form,
section.profile-page .profile-wrap .settings-wrap .settings-item form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.login-popup .popup-wrap .popup-content .login-form p.h2,
.search-popup .popup-wrap .popup-content .search-form p.h2,
section.profile-page .profile-wrap .settings-wrap .settings-item form p.h2 {
	width: 100%;
	color: var(--main-blue);
	margin-bottom: 20px;
}

.login-popup .popup-wrap .popup-content .login-form .form-item,
.search-popup .popup-wrap .popup-content .search-form .form-item,
section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  position: relative;
}

.login-popup .popup-wrap .popup-content .login-form .form-item:last-child,
.search-popup .popup-wrap .popup-content .search-form .form-item:last-child,
section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item:last-child {
  margin: 0px;
}

.login-popup .popup-wrap .popup-content .login-form .form-item.half-item,
.search-popup .popup-wrap .popup-content .search-form .form-item.half-item,
section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item.half-item {
  width: calc(50% - 12px);
}

.login-popup .popup-wrap .popup-content .login-form .form-item label,
.search-popup .popup-wrap .popup-content .search-form .form-item label,
section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item label {
  font-size: 0.875em;
  line-height: 100%;
  font-weight: 400;
  color: var(--main-black);
  margin-bottom: 8px;
}

.login-popup .popup-wrap .popup-content .login-form .form-item .pass-wrap,
.search-popup .popup-wrap .popup-content .search-form .form-item .pass-wrap,
section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item .pass-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.login-popup .popup-wrap .popup-content .login-form .form-item input,
.search-popup .popup-wrap .popup-content .search-form .form-item input,
section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item input {
  width: 100%;
  outline: none;
  font-size: 1.125em;
  line-height: 100%;
  font-weight: 400;
  color: var(--main-gray);
  padding: 14px;
  background-color: var(--main-white);
  border: 1px solid var(--main-gray);
	border-radius: 0px;
}

.login-popup .popup-wrap .popup-content .login-form .form-item span.hide-password,
.search-popup .popup-wrap .popup-content .search-form .form-item span.hide-password,
section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item span.hide-password {
  position: absolute;
  width: 24px;
  min-width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  background-image: url(../img/hide-password-icon-open.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: transparent;
  font-size: 0px;
  line-height: 100%;
  font-weight: 400;
  cursor: pointer;
}

.login-popup .popup-wrap .popup-content .login-form .form-item span.hide-password.close,
.search-popup .popup-wrap .popup-content .search-form .form-item span.hide-password.close,
section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item span.hide-password.close {
  background-image: url(../img/hide-password-icon-close.svg);
}

.login-popup .popup-wrap .popup-content .login-form .form-item button,
.search-popup .popup-wrap .popup-content .search-form .form-item button,
section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item button {
  width: 100%;
  font-size: 1.125em;
  line-height: 100%;
  font-weight: 700;
	text-transform: uppercase;
  color: var(--main-white);
  background-color: var(--main-red);
  border: 1px solid var(--main-red);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 50px;
	border-radius: 0px;
}

.login-popup .popup-wrap .popup-content .under-form,
.search-popup .popup-wrap .popup-content .under-form {
  font-size: 1.125em;
  line-height: 100%;
  font-weight: 400;
  display: flex;
  align-items: center;
	justify-content: space-between;
  margin-top: 24px;
}

.login-popup .popup-wrap .popup-content .under-form span,
.search-popup .popup-wrap .popup-content .under-form span {
  color: var(--main-gray);
  margin-right: 8px;
}

.login-popup .popup-wrap .popup-content .under-form a,
.search-popup .popup-wrap .popup-content .under-form a {
  color: var(--main-black);
  text-decoration: none;
	font-weight: 700;
}

@media screen and (min-width: 576px) {
  .login-popup .popup-wrap .popup-content .under-form a:hover,
  .search-popup .popup-wrap .popup-content .under-form a:hover {
    text-decoration: underline;
  }
}

.login-popup .popup-wrap .popup-top span.close-login-btn,
.search-popup .popup-wrap .popup-top span.close-search-btn,
.event-popup .popup-wrap .popup-top span.close-event-btn,
.booking-popup .popup-wrap .popup-top span.close-booking-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  text-decoration: none;
  color: transparent;
  font-size: 0px;
  line-height: 100%;
  font-weight: 400;
  background-image: url(../img/filter-cross.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: var(--speed-slow);
	cursor: pointer;
}

.mobile-menu {
  position: fixed;
  z-index: 15;
  left: -400px;
  top: 60px;
  max-width: 400px;
  width: 100%;
  height: calc(100% - 60px);
  background-color: var(--main-white);
  padding: 0px 40px;
  user-select: none;
  pointer-events: none;
  transition: left var(--speed-fast);
  box-shadow: 0px 0px 26px -5px rgba(0, 0, 0, 0.2);
}

.mobile-menu::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.mobile-menu.show {
  left: 0px;
  user-select: auto;
  pointer-events: all;
}

.mobile-menu .mobile-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 30px 0px;
  overflow-y: auto;
}

.mobile-menu .mobile-wrap::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.mobile-menu .mobile-wrap .profile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 26px;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 26px;
}

.mobile-menu .mobile-wrap .profile-menu a.profile-btn {
  font-size: 1.125em;
  line-height: 120%;
  font-weight: 500;
  color: var(--main-black);
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: var(--speed-slow);
}

.mobile-menu .mobile-wrap .addon-menu {
  display: flex;
  flex-direction: column;
  padding-bottom: 26px;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 26px;
  gap: 20px;
  width: 100%;
}

.mobile-menu .mobile-wrap .addon-menu .lang-menu {
  display: flex;
  align-items: center;
	gap: 20px;
}

.mobile-menu .mobile-wrap .addon-menu .lang-menu .lang-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-menu .mobile-wrap .addon-menu .lang-menu .lang-item a {
  font-size: 1.125em;
  line-height: 120%;
  font-weight: 500;
  color: var(--main-black);
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: var(--speed-slow);
  text-transform: uppercase;
}

.mobile-menu .mobile-wrap .addon-menu .lang-menu .lang-item:not(.current-menu-item) a {
	opacity: 0.5;
}

.mobile-menu .mobile-wrap .side-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  margin: 0px;
  list-style: none;
  padding-bottom: 26px;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 26px;
  gap: 20px;
  width: 100%;
}

.mobile-menu .mobile-wrap .side-menu .menu-item {
  display: flex;
  align-items: center;
}

.mobile-menu .mobile-wrap .side-menu .menu-item a {
  font-size: 1.125em;
  line-height: 120%;
  font-weight: 400;
  color: var(--main-green);
	text-transform: uppercase;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.mobile-menu .mobile-wrap .side-menu .menu-item a span {
  position: relative;
}

@media screen and (min-width: 576px) {
	.mobile-menu .mobile-wrap .side-menu .menu-item a:hover {
		color: var(--main-red);
	}
}

.mobile-menu .mobile-wrap .side-menu .menu-item.is-active a {
	color: var(--main-yellow);
}

.mobile-menu .mobile-wrap .side-menu.footer-menu {
	gap: 16px;
}

.mobile-menu .mobile-wrap .side-menu.footer-menu .menu-item a {
	font-size: 1em;
	color: var(--main-blue);
	text-transform: none;
}

.mobile-menu .mobile-wrap .contacts-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0px;
  margin: 0px;
  gap: 20px;
  margin-bottom: auto;
}

.mobile-menu .mobile-wrap .contacts-menu .menu-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-menu .mobile-wrap .contacts-menu .menu-item span {
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--main-blue);
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 16px;
}

.mobile-menu .mobile-wrap .contacts-menu .menu-item span:last-child {
	margin-bottom: 0px;
}

.mobile-menu .mobile-wrap .socials-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  padding: 0px;
  margin: 0px;
  user-select: none;
  /* padding-top: 26px;
  border-top: 1px solid #e2e2e2;
  margin-top: 26px; */
  gap: 22px;
}

.mobile-menu .mobile-wrap .socials-menu .menu-item {
  display: flex;
  align-items: center;
}

.mobile-menu .mobile-wrap .socials-menu .menu-item a {
  display: flex;
	width: 30px;
	min-width: 30px;
	height: 30px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	cursor: pointer;
	font-size: 0px;
	line-height: 100%;
	font-weight: 400;
	color: transparent;
	position: relative;
}

.mobile-menu .mobile-wrap .socials-menu .menu-item a::before {
	content: '';
	transition: all ease 0.2s;
	position: absolute;
	z-index: 1;
	background-color: var(--main-green);
	width: 40px;
	height: 10px;
	top: 8px;
	left: -3px;
	transform: rotate(-42deg);
}

.mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="instagram"]::before {
	background-color: var(--main-yellow);
	transform: rotate(-60deg);
}

.mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="t.me"]::before {
	background-color: var(--main-red);
	transform: rotate(-302deg);
}

@media screen and (min-width: 576px) {
	.mobile-menu .mobile-wrap .socials-menu .menu-item a:hover::before {
		transform: rotate(-242deg);
	}

	.mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="instagram"]:hover::before {
		transform: rotate(-160deg);
	}

	.mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="t.me"]:hover::before {
		transform: rotate(-242deg);
	}
}

.mobile-menu .mobile-wrap .socials-menu .menu-item a span {
	display: flex;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 75% 75%;
	position: relative;
	z-index: 2;
}

.mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="facebook"] span {
	background-image: url(../img/facebook-icon-blue.svg);
}

.mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="t.me"] span {
	background-image: url(../img/telegram-icon-blue.svg);
}

.mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="instagram"] span {
	background-image: url(../img/instagram-icon-blue.svg);
}

.mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="x.com"] span {
	background-image: url(../img/twitter-icon-blue.svg);
}

.aside-bg {
	position: fixed;
	z-index: 10;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	cursor: pointer;
	transition: opacity var(--speed-fast);
	opacity: 0;
	user-select: none;
	pointer-events: none;
}

body:has(header.side-open) .aside-bg {
	opacity: 1;
	user-select: auto;
	pointer-events: all;
}

section.main {
	padding: 0px;
	background-color: var(--main-white);
	position: relative;
}

section.main .main-slider {
	position: relative;
}

section.main .main-slider .main-item {
	display: flex;
	flex-direction: column;
	width: 100%;
}

section.main .main-slider .main-item .item-link {
	display: flex;
	flex-direction: column;
	width: 100%;
	text-decoration: none;
	color: var(--main-blue);
	position: relative;
}

section.main .main-slider .main-item .item-link .thumbnail {
	display: flex;
	flex-direction: column;
	width: 100%;
}

section.main .main-slider .main-item .item-link .thumbnail .img-wrap {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 600px;
}

section.main .main-slider .main-item .item-link .thumbnail .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.main .main-slider .main-item .item-link .caption {
	position: absolute;
	z-index: 2;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.04);
}

section.main .main-slider .main-item .item-link .caption .caption-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 30px 30px 20px;
	width: 50%;
	background-color: rgba(255, 255, 255, 0.8);
}

section.main .main-slider .main-item .item-link .caption .caption-wrap::before {
	content: '';
	width: 120px;
	height: 100px;
	background-image: url(../img/main-slide-icon1.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 80px;
	border-right: 1px solid var(--main-blue);
	padding-right: 30px;
	margin-right: 30px;
}

section.main .main-slider .main-item.slide1 .item-link .caption .caption-wrap::before {
	background-image: url(../img/main-slide-icon1.svg);
}

section.main .main-slider .main-item.slide2 .item-link .caption .caption-wrap::before {
	background-image: url(../img/main-slide-icon2.svg);
}

section.main .main-slider .main-item.slide3 .item-link .caption .caption-wrap::before {
	background-image: url(../img/main-slide-icon3.svg);
}

section.main .main-slider .main-item.slide4 .item-link .caption .caption-wrap::before {
	background-image: url(../img/main-slide-icon4.svg);
}

section.main .main-slider .main-item.slide5 .item-link .caption .caption-wrap::before {
	background-image: url(../img/main-slide-icon5.svg);
}

section.main .main-slider .main-item.slide6 .item-link .caption .caption-wrap::before {
	background-image: url(../img/main-slide-icon6.svg);
}

section.main .main-slider .main-item.slide7 .item-link .caption .caption-wrap::before {
	background-image: url(../img/main-slide-icon7.svg);
}

section.main .main-slider .main-item.slide8 .item-link .caption .caption-wrap::before {
	background-image: url(../img/main-slide-icon8.svg);
}

section.main .main-slider .main-item .item-link .caption .caption-wrap h1 {
	font-size: 2.75em;
	font-weight: 700;
	line-height: 120%;
	color: var(--main-blue);
	margin: 0px;
}

section.main .main-slider .slick-arrow {
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	min-width: 40px;
	height: 40px;
	border-radius: 50%;
	background-size: 16px;
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--main-red);
	border: none;
	font-size: 0px;
	color: transparent;
	overflow: hidden;
}

@media screen and (min-width: 576px) {
	section.main .main-slider .slick-arrow:hover {
		background-color: var(--main-yellow);
	}
}

section.main .main-slider .slick-arrow.slick-prev {
	left: 20px;
	background-image: url(../img/arrow-left-white.svg);
}

section.main .main-slider .slick-arrow.slick-next {
	right: 20px;
	background-image: url(../img/arrow-right-white.svg);
}

section.locations-title-box {
	background-color: var(--main-yellow);
}

section.locations-title-box .locations-wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-top: -30px;
  margin-bottom: -30px;
	position: relative;
	z-index: 5;
}

section.locations-title-box .locations-wrap .locations-item {
	background-color: var(--main-white);
	width: calc(100% / 4);
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #b4cad1;
}

section.locations-title-box .locations-wrap .locations-item:nth-child(4n + 1),
section.locations-title-box .locations-wrap .locations-item:nth-child(4n + 2),
section.locations-title-box .locations-wrap .locations-item:nth-child(4n + 3) {
	border-right: 1px solid #b4cad1;
}

section.locations-title-box .locations-wrap .locations-item:nth-last-child(1),
section.locations-title-box .locations-wrap .locations-item:nth-last-child(2),
section.locations-title-box .locations-wrap .locations-item:nth-last-child(3),
section.locations-title-box .locations-wrap .locations-item:nth-last-child(4) {
	border-bottom: none;
}

section.locations-title-box .locations-wrap .locations-item .item-link {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	border: 5px solid transparent;
	transition: all ease 0.5s;
	text-decoration: none;
}

@media screen and (min-width: 576px) {
	section.locations-title-box .locations-wrap .locations-item .item-link:hover {
		border-color: var(--main-yellow);
	}
}

section.locations-title-box .locations-wrap .locations-item .item-link::before {
	content: '';
	width: 120px;
	height: 70px;
	background-position: center;
	background-size: auto 75px;
	background-repeat: no-repeat;
	margin-bottom: 10px;
}

section.locations-title-box .locations-wrap .locations-item .item-link.tag-map::before {
	background-image: url(../img/map-icon-green.svg);
}

section.locations-title-box .locations-wrap .locations-item .item-link.tag-video::before {
	background-image: url(../img/video-icon-red.svg);
}

section.locations-title-box .locations-wrap .locations-item .item-link.tag-hotels::before {
	background-image: url(../img/hotel-icon-green.svg);
}

section.locations-title-box .locations-wrap .locations-item .item-link.tag-restaurant::before {
	background-image: url(../img/restaurant-icon-red.svg);
}

section.locations-title-box .locations-wrap .locations-item .item-link.tag-legends::before {
	background-image: url(../img/legends-icon-red.svg);
}

section.locations-title-box .locations-wrap .locations-item .item-link.tag-news::before {
	background-image: url(../img/news-icon-green.svg);
}

section.locations-title-box .locations-wrap .locations-item .item-link.tag-events::before {
	background-image: url(../img/events-icon-red.svg);
}

section.locations-title-box .locations-wrap .locations-item .item-link.tag-guides::before {
	background-image: url(../img/guide-logo-green.svg);
}

section.locations-title-box .locations-wrap .locations-item .item-link.tag-spectacular::before {
	background-image: url(../img/main-slide-icon2.svg);
}

section.locations-title-box .locations-wrap .locations-item .item-link.tag-industrial::before {
	background-image: url(../img/main-slide-icon3.svg);
}

section.locations-title-box .locations-wrap .locations-item .item-link.tag-historic::before {
	background-image: url(../img/main-slide-icon4.svg);
}

section.locations-title-box .locations-wrap .locations-item .item-link.tag-cossack::before {
	background-image: url(../img/main-slide-icon5.svg);
}

section.locations-title-box .locations-wrap .locations-item .item-link.tag-event::before {
	background-image: url(../img/main-slide-icon6.svg);
}

section.locations-title-box .locations-wrap .locations-item .item-link.tag-natural::before {
	background-image: url(../img/main-slide-icon7.svg);
}

section.locations-title-box .locations-wrap .locations-item .item-link.tag-sacred::before {
	background-image: url(../img/main-slide-icon8.svg);
}

section.locations-title-box .locations-wrap .locations-item .item-link.tag-other::before {
	background-image: url(../img/other.svg);
}

section.locations-title-box .locations-wrap .locations-item .item-link span {
	font-size: 1.125em;
	line-height: 150%;
	font-weight: 700;
	color: var(--main-black);
	text-align: center;
}

section.plan-your-trip {
	background-color: var(--main-white);
	position: relative;
}

section.plan-your-trip .thumbnail {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

section.plan-your-trip .thumbnail .img-wrap {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

section.plan-your-trip .thumbnail .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.plan-your-trip .caption {
	position: relative;
	z-index: 2;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

section.plan-your-trip .caption .caption-wrap {
	padding: 100px 0px 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

section h2.main-h2 {
	font-size: 2.75em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-white);
	margin-bottom: 35px;
	text-align: center;
	position: relative;
}

section h2.main-h2::after {
	content: '';
	position: absolute;
	width: 80px;
	height: 11px;
	bottom: -15px;
	background-color: var(--main-yellow);
	-ms-transform: rotate(-4deg);
	-webkit-transform: rotate(-4deg);
	transform: rotate(-4deg);
	left: 50%;
	margin-left: -40px;
}

section.plan-your-trip .caption .caption-wrap p {
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-white);
	text-align: center;
	margin-bottom: 20px;
}

.btn {
	font-size: 1.125em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-white);
	text-transform: uppercase;
	padding: 15px 30px 12px;
	border-radius: 0px;
}

.btn.btn-primary {
	background-color: var(--main-red);
	border-color: var(--main-red);
}

.btn.btn-show-more {
	background-color: var(--main-red);
	border-color: var(--main-red);
}

@media screen and (min-width: 576px) {
	.btn.btn-show-more:hover {
		background-color: transparent;
		color: var(--main-red);
	}
}

.btn.btn-primary.btn-3d {
	font-size: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 30px 8px;
}

.btn.btn-primary.btn-3d::before {
	content: '';
	width: 100px;
	min-width: 100px;
	height: 45px;
	background-image: url(../img/3d-icon-white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.btn.btn-secondary {
	background-color: var(--main-green);
	border: 1px solid var(--main-green);
}

@media screen and (min-width: 576px) {
	.btn.btn-secondary:hover {
		background-color: transparent;
		color: var(--main-green);
	}
}

section.events-list {
	background-color: #eaf6f9;
	position: relative;
}

section.events-list .caption {
	position: relative;
	z-index: 2;
	width: 100%;
}

section.events-list .caption .caption-wrap {
	padding: 100px 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

section.events-list .caption .caption-wrap h2.main-h2 {
	color: var(--main-blue);
}

section .buttons-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}

section.blogs {
	padding: 70px 0px;
	background-color: var(--main-green);
	background-image: url(../img/blogs-bg-image.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

section.blogs::before {
	content: '';
	position: absolute;
	background-color: rgba(0, 163, 81, 0.8);
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 1;
}

section.blogs .blogs-wrap {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
}

section.blogs .blogs-wrap .blogs-slider {
	margin: 0px -12px;
	position: relative;
}

section.blogs .blogs-wrap .blogs-slider .slick-list {
  overflow: visible;
}

section.blogs .blogs-wrap .blogs-slider .slick-list .slick-track {
	display: flex;
}

section.blogs .blogs-wrap .blogs-slider .slick-list .slick-track .slick-slide {
	height: auto;
}

@media screen and (min-width: 576px) {
  section.blogs .blogs-wrap .blogs-slider .slick-slide {
    opacity: 0.5;
    transition: opacity var(--speed-fast);
  }

  section.blogs .blogs-wrap .blogs-slider .slick-slide.slick-active {
    opacity: 1;
  }

  section.blogs .blogs-wrap .blogs-slider:has(.slick-slide.slick-cloned + .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned)) .slick-slide.slick-cloned:nth-child(2) {
    opacity: 1;
  }

  section.blogs .blogs-wrap .blogs-slider .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned) + .slick-slide.slick-cloned {
    opacity: 1;
  }
}

section.blogs .blogs-wrap .blogs-slider .slick-list .slick-track .slick-slide > div {
	height: 100%;
}

section.blogs .blogs-wrap .blogs-slider .blogs-box {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 0px;
	height: 100%;
}

section.blogs .blogs-wrap .blogs-slider .blogs-box .blog-item:first-child {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}

section.blogs .blogs-wrap .blogs-slider .blog-item {
	padding: 12px;
	height: 100%;
}

section.blogs .blogs-wrap .blogs-slider .blog-item .item-link {
	background-color: var(--main-white);
	border-radius: 0px;
	position: relative;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	height: 100%;
}

section.blogs .blogs-wrap .blogs-slider .blog-item .item-link .thumbnail {
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

section.blogs .blogs-wrap .blogs-slider .blog-item .item-link .thumbnail .img-wrap {
	width: 100%;
	padding-top: 50%;
	position: relative;
	background-color: var(--footer-bg);
}

section.blogs .blogs-wrap .blogs-slider .blog-item .item-link .thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.blogs .blogs-wrap .blogs-slider .blog-item .item-link .thumbnail .img-wrap::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 50px;
	transition: all ease .3s;
	opacity: 0;
	background-color: #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-image: url(../img/thumbnail-icon.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 40px;
	z-index: 3;
}

@media screen and (min-width: 576px) {
	section.blogs .blogs-wrap .blogs-slider .blog-item .item-link:hover .thumbnail .img-wrap::after {
		transform: translate(-50%, -50%);
		opacity: 1;
		width: 70px;
		height: 70px;
	}
}

section.blogs .blogs-wrap .blogs-slider .blog-item .item-link .thumbnail span.date {
	position: absolute;
	left: 0px;
	top: 0px;
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-white);
	background-color: var(--main-red);
	padding: 8px 10px;
}

section.blogs .blogs-wrap .blogs-slider .blog-item .item-link .caption {
	display: flex;
	flex-direction: column;
	padding: 15px 20px;
	flex: 1;
}

section.blogs .blogs-wrap .blogs-slider .blog-item .item-link .caption p.h2 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 0px;
}

section.blogs .blogs-wrap .blogs-slider .blog-item .item-link::after {
	content: '';
	position: absolute;
	left: -5px;
	top: -5px;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	border-radius: 0px;
	border: 5px solid var(--main-yellow);
	opacity: 0;
	transition: var(--speed-fast);
	user-select: none;
	pointer-events: none;
}

@media screen and (min-width: 576px) {
	section.blogs .blogs-wrap .blogs-slider .blog-item .item-link:hover::after {
		opacity: 1;
	}
}

section.blogs .blogs-wrap .blogs-slider .slick-arrow {
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	min-width: 40px;
	height: 40px;
	border-radius: 50%;
	background-size: 16px;
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--main-yellow);
	border: none;
	font-size: 0px;
	color: transparent;
	overflow: hidden;
}

@media screen and (min-width: 576px) {
	section.blogs .blogs-wrap .blogs-slider .slick-arrow:hover {
		background-color: var(--main-red);
	}
}

section.blogs .blogs-wrap .blogs-slider .slick-arrow.slick-prev {
	left: -20px;
	background-image: url(../img/arrow-left-white.svg);
}

section.blogs .blogs-wrap .blogs-slider .slick-arrow.slick-next {
	right: -20px;
	background-image: url(../img/arrow-right-white.svg);
}

section.legends {
	padding: 70px 0px;
	background-color: var(--main-white);
}

section.legends .legends-wrap {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
}

section.legends .legends-wrap h2.main-h2 {
	color: var(--main-blue);
}

section.legends .legends-wrap .legends-slider {
	margin: 0px -12px;
	position: relative;
}

section.legends .legends-wrap .legends-slider .slick-list {
  overflow: visible;
}

section.legends .legends-wrap .legends-slider .slick-list .slick-track {
	display: flex;
}

section.legends .legends-wrap .legends-slider .slick-list .slick-track .slick-slide {
	height: auto;
}

@media screen and (min-width: 576px) {
  section.legends .legends-wrap .legends-slider .slick-slide {
    opacity: 0.5;
    transition: opacity var(--speed-fast);
  }

  section.legends .legends-wrap .legends-slider .slick-slide.slick-active {
    opacity: 1;
  }

  section.legends .legends-wrap .legends-slider:has(.slick-slide.slick-cloned + .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned)) .slick-slide.slick-cloned:nth-child(2) {
    opacity: 1;
  }

  section.legends .legends-wrap .legends-slider .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned) + .slick-slide.slick-cloned {
    opacity: 1;
  }
}

section.legends .legends-wrap .legends-slider .legends-item {
	padding: 12px;
}

section.legends .legends-wrap .legends-slider .legends-item .item-link {
	background-color: var(--main-white);
	border-radius: 0px;
	position: relative;
	display: flex;
	text-decoration: none;
}

section.legends .legends-wrap .legends-slider .legends-item .item-link .thumbnail {
	width: 50%;
	display: flex;
	align-items: center;
}

section.legends .legends-wrap .legends-slider .legends-item .item-link .thumbnail .img-wrap {
	width: 100%;
	padding-top: 50%;
	position: relative;
	background-color: var(--footer-bg);
}

section.legends .legends-wrap .legends-slider .legends-item .item-link .thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.legends .legends-wrap .legends-slider .legends-item .item-link .thumbnail .img-wrap::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 50px;
	transition: all ease .3s;
	opacity: 0;
	background-color: #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-image: url(../img/thumbnail-icon.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 40px;
	z-index: 3;
}

@media screen and (min-width: 576px) {
	section.legends .legends-wrap .legends-slider .legends-item .item-link:hover .thumbnail .img-wrap::after {
		transform: translate(-50%, -50%);
		opacity: 1;
		width: 70px;
		height: 70px;
	}
}

section.legends .legends-wrap .legends-slider .legends-item .item-link .caption {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 20px 40px;
	flex: 1;
}

section.legends .legends-wrap .legends-slider .legends-item .item-link .caption p.h2 {
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 20px;
}

section.legends .legends-wrap .legends-slider .legends-item .item-link .caption p.text {
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-blue);
	margin-bottom: 20px;
}

section.legends .legends-wrap .legends-slider .legends-item .item-link::after {
	content: '';
	position: absolute;
	left: -5px;
	top: -5px;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	border-radius: 0px;
	border: 5px solid var(--main-yellow);
	opacity: 0;
	transition: var(--speed-fast);
	user-select: none;
	pointer-events: none;
}

@media screen and (min-width: 576px) {
	section.legends .legends-wrap .legends-slider .legends-item .item-link:hover::after {
		opacity: 1;
	}
}

section.legends .legends-wrap .legends-slider .slick-arrow {
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	min-width: 40px;
	height: 40px;
	border-radius: 50%;
	background-size: 16px;
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--main-red);
	border: none;
	font-size: 0px;
	color: transparent;
	overflow: hidden;
}

@media screen and (min-width: 576px) {
	section.legends .legends-wrap .legends-slider .slick-arrow:hover {
		background-color: var(--main-yellow);
	}
}

section.legends .legends-wrap .legends-slider .slick-arrow.slick-prev {
	left: -20px;
	background-image: url(../img/arrow-left-white.svg);
}

section.legends .legends-wrap .legends-slider .slick-arrow.slick-next {
	right: -20px;
	background-image: url(../img/arrow-right-white.svg);
}

section.faq {
	padding: 60px 0px;
	background-color: var(--main-bg);
}

section.faq .faq-text {
	display: flex;
	flex-direction: column;
}

section.faq .faq-text h2.section-title {
	font-family: var(--font-header);
	font-size: 2.5em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 32px;
}

.show-more-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.show-more-wrap .show-more-content {
	-webkit-line-clamp: 14;
	line-clamp: 14;
}

.show-more-wrap.show .show-more-content {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	width: 100%;
}

.show-more-wrap.show .show-more-content>*:last-child {
  margin-bottom: 0;
}

.show-more-wrap.open .show-more-content {
  display: block;
}

.show-more-wrap .show-more {
  display: none;
}

.show-more-wrap.show .show-more {
	display: flex;
	align-items: center;
	position: relative;
	margin-top: 16px;
	cursor: pointer;
}

.show-more-wrap .show-more span {
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-black);
}

.show-more-wrap .show-more span.less {
  display: none;
}

.show-more-wrap.open .show-more span.more {
  display: none;
}

.show-more-wrap.open .show-more span.less {
  display: flex;
}

.show-more-wrap .show-more::after {
	content: '';
	width: 24px;
	min-width: 24px;
	height: 24px;
	margin-left: 8px;
	background-image: url(../img/show-more-arrow-black.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transition: var(--speed-slow);
}

.show-more-wrap.open .show-more::after {
  transform: rotate(-180deg);
}

@media screen and (max-width: 1299px) {
	.show-more-wrap .show-more::after {
		width: 20px;
		min-width: 20px;
		height: 20px;
		margin-left: 6px;
	}

  .show-more-wrap .show-more-content {
		-webkit-line-clamp: 13;
		line-clamp: 13;
	}
}

@media screen and (max-width: 1199px) {
	.show-more-wrap .show-more-content {
		-webkit-line-clamp: 10;
		line-clamp: 10;
	}

  .show-more-wrap .show-more span {
		font-size: 1em;
	}
}

@media screen and (max-width: 991px) {
  .show-more-wrap .show-more-content {
		-webkit-line-clamp: 8;
		line-clamp: 8;
	}

	.show-more-wrap .show-more span {
		font-size: 1em
	}
}

@media screen and (max-width: 767px) {
  .show-more-wrap .show-more-content {
		-webkit-line-clamp: 6;
		line-clamp: 6;
	}
}

@media screen and (max-width: 575px) {
	.show-more-wrap .show-more-content {
		-webkit-line-clamp: 5;
		line-clamp: 5;
	}

  .show-more-wrap .show-more span {
		font-size: 0.875em;
	}
}

section.faq .faq-text .show-more-wrap .show-more-content p {
	font-size: 1.25em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-black);
	margin-bottom: 16px;
}

section.faq .faq-text .show-more-wrap .show-more-content p:last-child {
	margin-bottom: 0px;
}

section.faq .faq-text .show-more-wrap .show-more span {
	font-size: 1.25em;
}

section.faq .faq-wrap {
	display: flex;
	flex-direction: column;
}

section.faq .faq-wrap h2.section-title {
	font-family: var(--font-header);
	font-size: 2.5em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 32px;
}
section.faq .faq-container .card {
  border: none;
  border-radius: 0px;
  overflow: hidden;
  background-color: var(--main-white);
  padding: 0px;
}
section.faq .faq-container .card:not(:last-child) {
  margin-bottom: 16px;
}
section.faq .faq-container .card .card-header {
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

section.faq .faq-container .card .card-header .accordion-button {
  font-size: 1.25em;
  line-height: 100%;
  font-weight: 400;
  color: var(--main-black);
  padding: 16px 32px;
  background-color: transparent;
  justify-content: space-between;
  min-height: 58px;
	border-radius: 0px;
}

section.faq .faq-container .card .card-header .accordion-button::after {
  display: none;
}

section.faq .faq-container .card .card-header .accordion-button span:not(.cross) {
  margin-right: 12px;
}

section.faq .faq-container .card .card-header .accordion-button span.cross {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 24px;
  min-width: 24px;
  height: 24px;
  position: relative;
  transition: var(--speed-fast);
  border: none;
  border-radius: 100%;
}

section.faq .faq-container .card .card-header .accordion-button span.cross::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 14px;
  height: 2px;
  background-color: var(--main-black);
}

section.faq .faq-container .card .card-header .accordion-button span.cross::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 2px;
  height: 14px;
  background-color: var(--main-black);
  transition: var(--speed-slow);
}

section.faq .faq-container .card .card-header .accordion-button:not(.collapsed) span.cross::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

section.faq .faq-container .card .card-body {
  padding: 0 32px 16px 32px;
  font-size: 1.25em;
  line-height: 150%;
  font-weight: 400;
  color: var(--main-black);
}

section.faq .faq-container .card .card-body a {
  color: var(--main-black);
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  section.faq .faq-container .card .card-body a:hover {
    color: var(--main-yellow);
  }
}

section.faq .faq-container .card .card-body *:last-child {
  margin-bottom: 0;
}

section.virtual-tour {
	background-color: var(--main-white);
	position: relative;
}

section.virtual-tour .thumbnail {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

section.virtual-tour .thumbnail .img-wrap {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

section.virtual-tour .thumbnail .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.virtual-tour .caption {
	position: relative;
	z-index: 2;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

section.virtual-tour .caption .caption-wrap {
	padding: 100px 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

footer.footer {
	background-color: var(--footer-bg);
}

footer.footer .footer-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 40px 0px;
}

footer.footer .footer-column a.logo-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 75px;
	margin-bottom: 20px;
}

footer.footer .footer-column a.logo-footer img {
	display: flex;
	height: 100%;
	width: auto;
}

footer.footer .footer-column p {
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-blue);
	margin-bottom: 16px;
}

footer.footer .footer-column .footer-menu {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

footer.footer .footer-column .footer-menu ul.menu {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	padding: 0px;
	margin: 0px;
	list-style: none;
}

footer.footer .footer-column .footer-menu ul.menu li {
	display: flex;
	align-items: center;
}

footer.footer .footer-column .footer-menu ul.menu li a {
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-white);
	text-decoration: none;
	display: flex;
	align-items: center;
}

footer.footer .footer-column .socials-menu {
	display: flex;
	align-items: center;
}

footer.footer .footer-column .socials-menu ul.menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 22px;
	padding: 0px;
	margin: 0px;
	list-style: none;
}

footer.footer .footer-column .socials-menu ul.menu li {
	display: flex;
	align-items: center;
}

footer.footer .footer-column .socials-menu ul.menu li a {
	width: 30px;
	min-width: 30px;
	height: 30px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	cursor: pointer;
	font-size: 0px;
	line-height: 100%;
	font-weight: 400;
	color: transparent;
	position: relative;
}

footer.footer .footer-column .socials-menu ul.menu li a::before {
	content: '';
	transition: all ease 0.2s;
	position: absolute;
	z-index: 1;
	background-color: var(--main-green);
	width: 40px;
	height: 10px;
	top: 8px;
	left: -3px;
	transform: rotate(-42deg);
}

footer.footer .footer-column .socials-menu ul.menu li a[href*="instagram"]::before {
	background-color: var(--main-yellow);
	transform: rotate(-60deg);
}

footer.footer .footer-column .socials-menu ul.menu li a[href*="t.me"]::before {
	background-color: var(--main-red);
	transform: rotate(-302deg);
}

@media screen and (min-width: 576px) {
	footer.footer .footer-column .socials-menu ul.menu li a:hover::before {
		transform: rotate(-242deg);
	}

	footer.footer .footer-column .socials-menu ul.menu li a[href*="instagram"]:hover::before {
		transform: rotate(-160deg);
	}

	footer.footer .footer-column .socials-menu ul.menu li a[href*="t.me"]:hover::before {
		transform: rotate(-242deg);
	}
}

footer.footer .footer-column .socials-menu ul.menu li a span {
	display: flex;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 75% 75%;
	position: relative;
	z-index: 2;
}

footer.footer .footer-column .socials-menu ul.menu li a[href*="facebook"] span {
	background-image: url(../img/facebook-icon-blue.svg);
}

footer.footer .footer-column .socials-menu ul.menu li a[href*="t.me"] span {
	background-image: url(../img/telegram-icon-blue.svg);
}

footer.footer .footer-column .socials-menu ul.menu li a[href*="instagram"] span {
	background-image: url(../img/instagram-icon-blue.svg);
}

footer.footer .footer-column .socials-menu ul.menu li a[href*="x.com"] span {
	background-image: url(../img/twitter-icon-blue.svg);
}

footer.footer .footer-column .partners-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

footer.footer .footer-column .partners-wrap > a {
	width: calc((100% - 40px) / 3);
	height: 130px;
}

footer.footer .footer-column .partners-wrap > a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

footer.footer .copyright {
	background-color: var(--main-blue);
}

footer.footer .copyright .copyright-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 15px 0px;
}

footer.footer .copyright .copyright-wrap span {
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-white);
	text-align: center;
}

footer.footer .copyright .copyright-wrap span a {
	color: var(--main-white);
	text-decoration: none;
}

@media screen and (min-width: 576px) {
	footer.footer .copyright .copyright-wrap span a:hover {
		text-decoration: underline;
	}
}

.scroll-top-btn {
	position: fixed;
	z-index: 10;
	left: 20px;
	bottom: 20px;
	border: none;
	box-shadow: 0px 2px 10px rgb(0 0 0 / 40%);
	background-image: url(../img/up-icon-white.svg);
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50%;
	background-color: var(--main-yellow);
	height: 45px;
	width: 45px;
	background-size: 22px;
	cursor: pointer;
	opacity: 0;
	user-select: none;
	pointer-events: none;
	transition: opacity var(--speed-fast);
}

.scroll-top-btn.show {
	opacity: 1;
	user-select: auto;
	pointer-events: all;
}

@media screen and (max-width: 1299px) {
  header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content {
    top: 100%;
  }

	header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a {
    font-size: 1em;
  }

	header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item form button {
		font-size: 1em;
	}

	.static-page .col-12 > h1 {
		font-size: 2.5em;
		margin-bottom: 18px;
	}

	.form-group input,
	.form-group textarea,
	.form-group select {
		padding: 10px 13px;
	}

	.form-group input[type="file"] {
		padding: 6px 13px;
	}

	.btn-submit {
		padding: 13px 25px 10px;
	}

	.login-popup,
	.search-popup,
	.event-popup,
	.booking-popup {
		padding: 18px;
	}

	.login-popup .popup-wrap,
	.search-popup .popup-wrap,
	.event-popup .popup-wrap,
	.booking-popup .popup-wrap {
		max-width: 530px;
		padding: 35px 48px;
		border-radius: 0px;
	}

	.login-popup .popup-wrap .popup-content .login-with-btns a,
	.search-popup .popup-wrap .popup-content .login-with-btns a {
		padding: 12px 40px;
	}

	.login-popup.login-page .popup-wrap .popup-content .login-with-btns a:nth-child(1n + 2) {
		margin-top: 22px;
	}

	.login-popup .popup-wrap .popup-content .login-with-btns a::before,
	.search-popup .popup-wrap .popup-content .login-with-btns a::before {
		width: 22px;
		min-width: 22px;
		height: 22px;
	}

	.login-popup .popup-wrap .popup-content .login-or-lines,
	.search-popup .popup-wrap .popup-content .login-or-lines {
		margin: 0px 0px 22px;
	}

	.login-popup .popup-wrap .popup-content .login-or-lines span,
	.search-popup .popup-wrap .popup-content .login-or-lines span {
		font-size: 1em;
		margin: 0px 22px;
	}

	.login-popup .popup-wrap .popup-content .login-form .form-item,
	.search-popup .popup-wrap .popup-content .search-form .form-item,
	section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item {
		margin-bottom: 22px;
	}

	.login-popup .popup-wrap .popup-content .login-form .form-item input,
	.search-popup .popup-wrap .popup-content .search-form .form-item input,
	section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item input {
		font-size: 1em;
		padding: 12px;
		border-radius: 0px;
	}

	.login-popup .popup-wrap .popup-content .login-form .form-item span.hide-password,
	.search-popup .popup-wrap .popup-content .search-form .form-item span.hide-password,
	section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item span.hide-password {
		width: 22px;
		min-width: 22px;
		height: 22px;
		right: 10px;
	}

	.login-popup .popup-wrap .popup-content .login-form .form-item button,
	.search-popup .popup-wrap .popup-content .search-form .form-item button,
	section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item button {
		font-size: 1.125em;
		padding: 15px 44px;
	}

	.login-popup .popup-wrap .popup-content .under-form,
	.search-popup .popup-wrap .popup-content .under-form {
		font-size: 1em;
		margin-top: 22px;
	}

	.login-popup .popup-wrap .popup-content .under-form span,
	.search-popup .popup-wrap .popup-content .under-form span {
		margin-right: 6px;
	}

	.event-popup .popup-wrap .popup-content ul.add-list {
		gap: 10px;
	}

	.event-popup .popup-wrap .popup-content ul.add-list li.list-item {
		width: calc((100% - 20px) / 3);
		width: calc((100% - 10px) / 2);
	}

	.event-popup .popup-wrap .popup-content ul.add-list li.list-item a.item-link {
		padding: 10px;
		border-radius: 0px;
		font-size: 1em;
	}

	.event-popup .popup-wrap .popup-content ul.add-list li.list-item a.item-link::before {
		width: 56px;
		min-width: 56px;
		height: 56px;
	}

	.mobile-menu {
		left: -350px;
		top: 60px;
		max-width: 350px;
		height: calc(100% - 60px);
		padding: 0px 35px;
	}

	.mobile-menu .mobile-wrap {
		padding: 26px 0px;
	}

	.mobile-menu .mobile-wrap .profile-menu {
		padding-bottom: 22px;
		margin-bottom: 22px;
	}

	.mobile-menu .mobile-wrap .profile-menu a.profile-btn {
		font-size: 1em;
	}

	.mobile-menu .mobile-wrap .addon-menu {
		padding-bottom: 22px;
		margin-bottom: 22px;
		gap: 18px;
	}

	.mobile-menu .mobile-wrap .addon-menu .lang-menu {
		gap: 18px;
	}

	.mobile-menu .mobile-wrap .addon-menu .lang-menu .lang-item a {
		font-size: 1em;
	}

	.mobile-menu .mobile-wrap .side-menu {
		padding-bottom: 22px;
		margin-bottom: 22px;
		gap: 18px;
	}

	.mobile-menu .mobile-wrap .side-menu .menu-item a {
		font-size: 1em;
	}

	.mobile-menu .mobile-wrap .side-menu.footer-menu {
		gap: 14px;
	}

	.mobile-menu .mobile-wrap .contacts-menu {
		gap: 18px;
	}

	.mobile-menu .mobile-wrap .contacts-menu .menu-item span {
		font-size: 1em;
		margin-bottom: 14px;
	}

	.mobile-menu .mobile-wrap .socials-menu {
		/* padding-top: 22px;
		margin-top: 22px; */
		gap: 20px;
	}

	/* section.main .main-slider .main-item .item-link .thumbnail .img-wrap {
		height: 530px;
	} */

	section.main .main-slider .main-item .item-link .caption .caption-wrap {
		padding: 26px 26px 18px;
	}

	section.main .main-slider .main-item .item-link .caption .caption-wrap::before {
		width: 105px;
		height: 88px;
		background-size: 70px;
		padding-right: 26px;
		margin-right: 26px;
	}

	section.main .main-slider .main-item .item-link .caption .caption-wrap h1 {
		font-size: 2.5em;
	}

	section.locations-title-box .locations-wrap {
		margin-top: -26px;
		margin-bottom: -26px;
	}

	section.locations-title-box .locations-wrap .locations-item .item-link {
		padding: 35px 18px;
	}

	section.locations-title-box .locations-wrap .locations-item .item-link::before {
		width: 105px;
		height: 60px;
		background-size: auto 65px;
	}

	section.locations-title-box .locations-wrap .locations-item .item-link span {
		font-size: 1em;
	}

	section.plan-your-trip .caption .caption-wrap {
		padding: 88px 0px 105px;
	}

	section h2.main-h2 {
		font-size: 2.5em;
		margin-bottom: 30px;
	}

	section h2.main-h2::after {
		width: 70px;
		height: 10px;
		bottom: -10px;
		margin-left: -35px;
	}

	section.plan-your-trip .caption .caption-wrap p {
		font-size: 1em;
		margin-bottom: 16px;
	}

	.btn {
		font-size: 1em;
		padding: 13px 25px 10px;
	}

	.btn.btn-primary.btn-3d {
		padding: 8px 25px 6px;
	}

	.btn.btn-primary.btn-3d::before {
		width: 88px;
		min-width: 88px;
		height: 40px;
	}

	section.events-list .caption .caption-wrap {
		padding: 88px 0px;
	}

	section .buttons-wrap {
		margin-top: 16px;
	}

	section.blogs {
		padding: 62px 0px;
	}

	section.blogs .blogs-wrap .blogs-slider .blog-item .item-link .thumbnail .img-wrap::after {
		width: 40px;
		height: 40px;
		background-size: 35px;
	}

	@media screen and (min-width: 576px) {
		section.blogs .blogs-wrap .blogs-slider .blog-item .item-link:hover .thumbnail .img-wrap::after {
			width: 60px;
			height: 60px;
		}
	}

	section.blogs .blogs-wrap .blogs-slider .blog-item .item-link .thumbnail span.date {
		font-size: 0.875em;
		padding: 6px 8px;
	}

	section.blogs .blogs-wrap .blogs-slider .blog-item .item-link .caption {
		padding: 13px 16px;
	}

	section.blogs .blogs-wrap .blogs-slider .blog-item .item-link .caption p.h2 {
		font-size: 1.375em;
	}

	section.legends {
		padding: 62px 0px;
	}

	section.legends .legends-wrap .legends-slider .legends-item .item-link .thumbnail .img-wrap::after {
		width: 40px;
		height: 40px;
		background-size: 35px;
	}

	@media screen and (min-width: 576px) {
		section.legends .legends-wrap .legends-slider .legends-item .item-link:hover .thumbnail .img-wrap::after {
			width: 60px;
			height: 60px;
		}
	}

	section.legends .legends-wrap .legends-slider .legends-item .item-link .caption {
		padding: 16px 32px;
	}

	section.legends .legends-wrap .legends-slider .legends-item .item-link .caption p.h2 {
		font-size: 1em;
		margin-bottom: 16px;
	}

	section.legends .legends-wrap .legends-slider .legends-item .item-link .caption p.text {
		font-size: 1em;
		margin-bottom: 16px;
	}

	section.faq {
		padding: 52px 0px;
	}

	section.faq .faq-text h2.section-title {
		font-size: 2.125em;
		margin-bottom: 28px;
	}

	section.faq .faq-text .show-more-wrap .show-more-content p {
		font-size: 1.125em;
	}

	section.faq .faq-text .show-more-wrap .show-more span {
		font-size: 1.125em;
	}

	section.faq .faq-wrap h2.section-title {
		font-size: 2.125em;
		margin-bottom: 28px;
	}

	section.faq .faq-container .card {
		border-radius: 0px;
	}

	section.faq .faq-container .card:not(:last-child) {
		margin-bottom: 14px;
	}

	section.faq .faq-container .card .card-header .accordion-button {
		font-size: 1.125em;
		padding: 14px 30px;
		min-height: 56px;
		border-radius: 0px;
	}

	section.faq .faq-container .card .card-header .accordion-button span.cross {
		width: 22px;
		min-width: 22px;
		height: 22px;
	}

	section.faq .faq-container .card .card-body {
		padding: 0px 30px 14px 30px;
		font-size: 1.125em;
	}

	section.virtual-tour .caption .caption-wrap {
		padding: 88px 0px;
	}

	footer.footer .footer-column {
		padding: 32px 0px;
	}

	footer.footer .footer-column a.logo-footer {
		height: 66px;
		margin-bottom: 16px;
	}

	footer.footer .footer-column .footer-menu ul.menu {
		gap: 14px;
	}

	footer.footer .footer-column .socials-menu ul.menu {
		gap: 20px;
	}

	footer.footer .footer-column .socials-menu ul.menu li a {
		width: 26px;
		min-width: 26px;
		height: 26px;
	}

	footer.footer .footer-column .socials-menu ul.menu li a::before {
		width: 35px;
		height: 9px;
		top: 7px;
		left: -2px;
	}

	footer.footer .footer-column .partners-wrap {
		gap: 18px;
	}

	footer.footer .footer-column .partners-wrap > a {
		width: calc((100% - 36px) / 3);
		height: 115px;
	}

	footer.footer .copyright .copyright-wrap {
		padding: 13px 0px;
	}

	.scroll-top-btn {
		width: 40px;
		height: 40px;
		background-size: 20px;
	}
}

@media screen and (max-width: 1199px) {
	.static-page .col-12 > h1 {
		font-size: 2em;
		margin-bottom: 16px;
	}

	.form-group input,
	.form-group textarea,
	.form-group select {
		padding: 8px 10px;
	}

	.form-group input[type="file"] {
		padding: 6px 8px;
	}

	.btn-submit {
		padding: 11px 20px 8px;
		font-size: 0.875em;
	}

	header.header .header-wrap .header-menu-btn {
		width: 50px;
		min-width: 50px;
		height: 50px;
	}

	header.header .header-wrap .header-menu-btn::before {
		width: 40%;
		height: 40%;
	}

	header.header .header-wrap a.logo {
		width: 166px;
		height: 50px;
		margin-right: auto;
	}

	header.header .header-wrap .header-menu {
		display: none;
	}

	header.header .header-wrap .accessibility-menu .accessibility-btn {
		width: 50px;
		min-width: 50px;
		height: 50px;
	}

	header.header .header-wrap .search-menu .search-form-btn {
		width: 50px;
		min-width: 50px;
		height: 50px;
	}

	header.header .header-wrap .search-menu .search-form-btn::before {
		width: 25px;
		height: 25px;
	}

	header.header .header-wrap .login-menu a.login-btn {
		font-size: 1em;
		height: 50px;
		padding: 10px;
	}

	header.header .header-wrap .login-menu a.login-btn::before {
		width: 30px;
		height: 30px;
	}

	header.header .header-wrap .login-menu .user-profile-wrap {
		padding: 6px;
	}

	header.header .header-wrap .login-menu .user-profile-wrap .user-profile-image {
		width: 38px;
    height: 38px;
    border: 1px solid var(--main-green);
  }

	header.header .header-wrap .login-menu .user-profile-wrap .user-profile-image .avatar-placeholder {
		font-size: 1.125em;
	}

  header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content {
    top: 100%;
  }

	header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a {
    font-size: 1em;
  }

	header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item form button {
		font-size: 1em;
	}

	header.header .header-wrap .add-event-menu .add-event-btn {
		font-size: 1em;
		height: 50px;
		padding: 10px;
	}

	header.header .header-wrap .add-event-menu .add-event-btn::before {
		width: 30px;
		min-width: 30px;
		height: 30px;
	}

	header.header .header-wrap .language-menu ul.menu li a {
		width: 50px;
		min-width: 50px;
		height: 50px;
		font-size: 1em;
	}

	.login-popup,
	.search-popup,
	.event-popup,
	.booking-popup {
		padding: 15px;
	}

	.login-popup .popup-wrap,
	.search-popup .popup-wrap,
	.event-popup .popup-wrap,
	.booking-popup .popup-wrap {
		padding: 28px 40px;
		border-radius: 0px;
	}

	.login-popup .popup-wrap .popup-content .login-with-btns,
	.search-popup .popup-wrap .popup-content .login-with-btns {
		margin-bottom: 0px;
	}

	.login-popup .popup-wrap .popup-content .login-with-btns a,
	.search-popup .popup-wrap .popup-content .login-with-btns a {
		padding: 10px 36px;
	}

	.login-popup.login-page .popup-wrap .popup-content .login-with-btns a:nth-child(1n + 2) {
		margin-top: 18px;
	}

	.login-popup .popup-wrap .popup-content .login-with-btns a::before,
	.search-popup .popup-wrap .popup-content .login-with-btns a::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
	}

	.login-popup .popup-wrap .popup-content .login-or-lines,
	.search-popup .popup-wrap .popup-content .login-or-lines {
		margin: 0px 0px 18px;
	}

	.login-popup .popup-wrap .popup-content .login-or-lines span,
	.search-popup .popup-wrap .popup-content .login-or-lines span {
		margin: 0px 18px;
	}

	.login-popup .popup-wrap .popup-content .login-form .form-item,
	.search-popup .popup-wrap .popup-content .search-form .form-item,
	section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item {
		margin-bottom: 18px;
	}

	.login-popup .popup-wrap .popup-content .login-form .form-item.half-item,
	.search-popup .popup-wrap .popup-content .search-form .form-item.half-item, 
	section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item.half-item {
		width: calc(50% - 9px);
	}

	.login-popup .popup-wrap .popup-content .login-form .form-item input,
	.search-popup .popup-wrap .popup-content .search-form .form-item input,
	section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item input {
		padding: 10px;
	}

	.login-popup .popup-wrap .popup-content .login-form .form-item span.hide-password,
	.search-popup .popup-wrap .popup-content .search-form .form-item span.hide-password,
	section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item span.hide-password {
		width: 20px;
		min-width: 20px;
		height: 20px;
		right: 8px;
	}

	.login-popup .popup-wrap .popup-content .login-form .form-item button,
	.search-popup .popup-wrap .popup-content .search-form .form-item button,
	section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item button {
		font-size: 1em;
		padding: 12px 36px;
	}

	.login-popup .popup-wrap .popup-content .under-form,
	.search-popup .popup-wrap .popup-content .under-form {
		margin-top: 18px;
	}

	.event-popup .popup-wrap .popup-content ul.add-list {
		gap: 10px;
	}

	.event-popup .popup-wrap .popup-content ul.add-list li.list-item {
		width: calc((100% - 20px) / 3);
		width: calc((100% - 10px) / 2);
	}

	.event-popup .popup-wrap .popup-content ul.add-list li.list-item a.item-link {
		padding: 8px;
		border-radius: 0px;
		font-size: 1em;
	}

	.event-popup .popup-wrap .popup-content ul.add-list li.list-item a.item-link::before {
		width: 52px;
		min-width: 52px;
		height: 52px;
	}

	.mobile-menu {
		left: -300px;
		top: 50px;
		max-width: 300px;
		height: calc(100% - 50px);
		padding: 0px 28px;
	}

	.mobile-menu .mobile-wrap {
		padding: 22px 0px;
	}

	.mobile-menu .mobile-wrap .profile-menu {
		padding-bottom: 18px;
		margin-bottom: 18px;
	}

	.mobile-menu .mobile-wrap .profile-menu a.profile-btn {
		font-size: 1em;
	}

	.mobile-menu .mobile-wrap .addon-menu {
		padding-bottom: 18px;
		margin-bottom: 18px;
		gap: 16px;
	}

	.mobile-menu .mobile-wrap .addon-menu .lang-menu {
		gap: 16px;
	}

	.mobile-menu .mobile-wrap .addon-menu .lang-menu .lang-item a {
		font-size: 1em;
	}

	.mobile-menu .mobile-wrap .side-menu {
		padding-bottom: 18px;
		margin-bottom: 18px;
		gap: 16px;
	}

	.mobile-menu .mobile-wrap .side-menu .menu-item a {
		font-size: 1em;
	}

	.mobile-menu .mobile-wrap .contacts-menu {
		gap: 16px;
	}

	.mobile-menu .mobile-wrap .socials-menu {
		/* padding-top: 18px;
		margin-top: 18px; */
		gap: 18px;
	}

	.mobile-menu .mobile-wrap .socials-menu .menu-item a {
		width: 26px;
		min-width: 26px;
		height: 26px;
	}

	.mobile-menu .mobile-wrap .socials-menu .menu-item a::before {
		width: 35px;
		height: 9px;
		top: 7px;
		left: -2px;
	}

	.mobile-menu .mobile-wrap .contacts-menu .menu-item span {
		font-size: 0.875em;
	}

	section.main .main-slider .main-item .item-link .thumbnail .img-wrap {
		height: 440px;
	}

	section.main .main-slider .main-item .item-link .caption .caption-wrap {
		padding: 22px;
	}

	section.main .main-slider .main-item .item-link .caption .caption-wrap::before {
		width: 86px;
		height: 72px;
		background-size: 58px;
		padding-right: 22px;
		margin-right: 22px;
	}

	section.main .main-slider .main-item .item-link .caption .caption-wrap h1 {
		font-size: 2em;
	}

	section.main .main-slider .slick-arrow.slick-prev {
		left: 15px;
	}

	section.main .main-slider .slick-arrow.slick-next {
		right: 15px;
	}

	section.locations-title-box .locations-wrap {
		margin-top: -22px;
		margin-bottom: -22px;
	}

	section.locations-title-box .locations-wrap .locations-item .item-link {
		padding: 28px 14px;
	}

	section.locations-title-box .locations-wrap .locations-item .item-link::before {
		width: 86px;
		height: 50px;
		background-size: auto 53px;
	}

	section.plan-your-trip .caption .caption-wrap {
		padding: 72px 0px 86px;
	}

	section h2.main-h2 {
		font-size: 2em;
		margin-bottom: 25px;
	}

	section h2.main-h2::after {
		width: 58px;
		height: 8px;
		bottom: -10px;
		margin-left: -28px;
	}

	.btn {
		font-size: 0.875em;
		padding: 11px 20px 8px;
	}

	.btn.btn-primary.btn-3d {
		padding: 6px 20px 4px;
	}

	.btn.btn-primary.btn-3d::before {
		width: 68px;
		min-width: 68px;
		height: 30px;
	}

	section.events-list .caption .caption-wrap {
		padding: 72px 0px;
	}

	section.blogs {
		padding: 52px 0px;
	}

	section.blogs .blogs-wrap .blogs-slider .blog-item .item-link .thumbnail .img-wrap::after {
		width: 34px;
		height: 34px;
		background-size: 28px;
	}

	@media screen and (min-width: 576px) {
		section.blogs .blogs-wrap .blogs-slider .blog-item .item-link:hover .thumbnail .img-wrap::after {
			width: 50px;
			height: 50px;
		}
	}

	section.blogs .blogs-wrap .blogs-slider .blog-item .item-link .caption {
		padding: 10px 13px;
	}

	section.blogs .blogs-wrap .blogs-slider .blog-item:nth-child(1) .item-link .caption p.h2 {
		font-size: 1.25em;
	}

	section.blogs .blogs-wrap .blogs-slider .blog-item .item-link .caption p.h2 {
		font-size: 1.125em;
	}

	section.legends {
		padding: 52px 0px;
	}

	section.legends .legends-wrap .legends-slider .legends-item .item-link .thumbnail .img-wrap::after {
		width: 34px;
		height: 34px;
		background-size: 28px;
	}

	@media screen and (min-width: 576px) {
		section.legends .legends-wrap .legends-slider .legends-item .item-link:hover .thumbnail .img-wrap::after {
			width: 50px;
			height: 50px;
		}
	}

	section.legends .legends-wrap .legends-slider .legends-item .item-link .caption {
		padding: 14px 26px;
	}

	section.legends .legends-wrap .legends-slider .legends-item .item-link .caption p.h2 {
		font-size: 1em;
		margin-bottom: 14px;
	}

	section.legends .legends-wrap .legends-slider .legends-item .item-link .caption p.text {
		font-size: 1em;
		margin-bottom: 16px;
	}

	section.faq {
		padding: 42px 0px;
	}

	section.faq .faq-text h2.section-title {
		font-size: 1.75em;
		margin-bottom: 24px;
	}

	section.faq .faq-text .show-more-wrap .show-more-content p {
		font-size: 1em;
	}

	section.faq .faq-text .show-more-wrap .show-more span {
		font-size: 1em;
	}

	section.faq .faq-wrap h2.section-title {
		font-size: 1.75em;
		margin-bottom: 24px;
	}

	section.faq .faq-container .card {
		border-radius: 0px;
	}

	section.faq .faq-container .card:not(:last-child) {
		margin-bottom: 12px;
	}

	section.faq .faq-container .card .card-header .accordion-button {
		font-size: 1em;
		padding: 12px 24px;
		min-height: 46px;
		border-radius: 0px;
	}

	section.faq .faq-container .card .card-header .accordion-button span.cross {
		width: 20px;
		min-width: 20px;
		height: 20px;
	}

	section.faq .faq-container .card .card-body {
		padding: 0px 24px 12px 24px;
		font-size: 1em;
	}

	section.virtual-tour .caption .caption-wrap {
		padding: 72px 0px;
	}

	footer.footer .footer-column {
		padding: 26px 0px;
	}

	footer.footer .footer-column a.logo-footer {
		height: 54px;
	}

	footer.footer .footer-column span.address {
		margin-bottom: 16px;
	}

	footer.footer .footer-column .footer-menu ul.menu {
		gap: 12px;
	}

	footer.footer .footer-column .socials-menu ul.menu {
		gap: 16px;
	}

	footer.footer .footer-column .partners-wrap {
		gap: 16px;
	}

	footer.footer .footer-column .partners-wrap > a {
		width: calc((100% - 32px) / 3);
		height: 95px;
	}

	footer.footer .copyright .copyright-wrap span {
		font-size: 0.875em;
	}
}

@media screen and (max-width: 991px) {
	.static-page .col-12 > h1 {
		font-size: 1.625em;
		margin-bottom: 16px;
	}

	.form-group input,
	.form-group textarea,
	.form-group select {
		font-size: 0.875em;
	}

	.container-fluid {
		padding: 0px 24px;
	}

	header.header .header-wrap .login-menu a.login-btn {
		font-size: 0em;
	}

	header.header .header-wrap .login-menu a.login-btn::before {
		margin-right: 0px;
	}

	header.header .header-wrap .add-event-menu .add-event-btn {
		font-size: 0em;
	}

	header.header .header-wrap .add-event-menu .add-event-btn::before {
		margin-right: 0px;
	}

	header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a {
		font-size: 0.875em;
		padding: 6px 10px;
	}

	header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 6px;
	}

	header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item form button {
		font-size: 0.875em;
		padding: 6px 10px;
	}

	header.header .header-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item form button::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 6px;
	}

	.login-popup .popup-wrap,
	.search-popup .popup-wrap,
	.event-popup .popup-wrap,
	.booking-popup .popup-wrap {
		max-width: 400px;
		padding: 22px 30px;
		border-radius: 0px;
	}

	.login-popup .popup-wrap .popup-content .login-with-btns,
	.search-popup .popup-wrap .popup-content .login-with-btns {
		margin-bottom: 16px;
	}

	.login-popup .popup-wrap .popup-content .login-with-btns a,
	.search-popup .popup-wrap .popup-content .login-with-btns a {
		padding: 8px 28px;
		height: 40px;
	}

	.login-popup.login-page .popup-wrap .popup-content .login-with-btns a:nth-child(1n + 2) {
		margin-top: 16px;
	}

	.login-popup .popup-wrap .popup-content .login-or-lines,
	.search-popup .popup-wrap .popup-content .login-or-lines {
		margin: 0px 0px 16px;
	}

	.login-popup .popup-wrap .popup-content .login-or-lines span,
	.search-popup .popup-wrap .popup-content .login-or-lines span {
		margin: 0px 16px;
	}

	.login-popup .popup-wrap .popup-content .login-form .form-item,
	.search-popup .popup-wrap .popup-content .search-form .form-item,
	section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item {
		margin-bottom: 16px;
	}

	.login-popup .popup-wrap .popup-content .login-form .form-item.half-item,
	.search-popup .popup-wrap .popup-content .search-form .form-item.half-item, 
	section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item.half-item {
		width: calc(50% - 8px);
	}

	.login-popup .popup-wrap .popup-content .login-form .form-item input,
	.search-popup .popup-wrap .popup-content .search-form .form-item input,
	section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item input {
		padding: 8px;
	}

	.login-popup .popup-wrap .popup-content .login-form .form-item span.hide-password,
	.search-popup .popup-wrap .popup-content .search-form .form-item span.hide-password,
	section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item span.hide-password {
		width: 18px;
		min-width: 18px;
		height: 18px;
		right: 8px;
	}

	.login-popup .popup-wrap .popup-content .login-form .form-item button,
	.search-popup .popup-wrap .popup-content .search-form .form-item button,
	section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item button {
		font-size: 0.875em;
		padding: 10px 28px;
	}

	.login-popup .popup-wrap .popup-content .under-form,
	.search-popup .popup-wrap .popup-content .under-form {
		margin-top: 16px;
	}

	.login-popup .popup-wrap .popup-content .under-form span, 
	.search-popup .popup-wrap .popup-content .under-form span {
		font-size: 0.875em;
	}

	.login-popup .popup-wrap .popup-content .under-form a, 
	.search-popup .popup-wrap .popup-content .under-form a {
		font-size: 0.875em;
	}

	.event-popup .popup-wrap .popup-content ul.add-list {
		gap: 8px;
	}

	.event-popup .popup-wrap .popup-content ul.add-list li.list-item {
		width: calc((100% - 16px) / 3);
		width: calc((100% - 8px) / 2);
	}

	.event-popup .popup-wrap .popup-content ul.add-list li.list-item a.item-link {
		padding: 8px;
		border-radius: 0px;
		font-size: 1em;
	}

	.event-popup .popup-wrap .popup-content ul.add-list li.list-item a.item-link::before {
		width: 46px;
		min-width: 46px;
		height: 46px;
	}

	.mobile-menu {
		left: -240px;
		top: 50px;
		max-width: 240px;
		height: calc(100% - 50px);
		padding: 0px 25px;
	}

	.mobile-menu .mobile-wrap {
		padding: 20px 0px;
	}

	.mobile-menu .mobile-wrap .profile-menu {
		padding-bottom: 16px;
		margin-bottom: 16px;
	}

	.mobile-menu .mobile-wrap .addon-menu {
		padding-bottom: 16px;
		margin-bottom: 16px;
		gap: 14px;
	}

	.mobile-menu .mobile-wrap .addon-menu .lang-menu {
		gap: 14px;
	}

	.mobile-menu .mobile-wrap .side-menu {
		padding-bottom: 16px;
		margin-bottom: 16px;
		gap: 14px;
	}

	.mobile-menu .mobile-wrap .contacts-menu {
		gap: 14px;
	}

	.mobile-menu .mobile-wrap .socials-menu {
		/* padding-top: 16px;
		margin-top: 16px; */
		gap: 16px;
	}

	.mobile-menu .mobile-wrap .socials-menu .menu-item a {
		width: 26px;
		min-width: 26px;
		height: 26px;
	}

	section.main .main-slider .main-item .item-link .thumbnail .img-wrap {
		height: 380px;
	}

	section.main .main-slider .main-item .item-link .caption .caption-wrap {
		padding: 18px;
		width: 100%;
		flex-direction: column;
	}

	section.main .main-slider .main-item .item-link .caption .caption-wrap::before {
		width: 100px;
		height: 100px;
		padding-right: 0px;
		margin-right: 0px;
		border-right: none;
		margin-bottom: 18px;
		border-bottom: 1px solid var(--main-blue);
		background-size: 65% 65%;
	}

	section.main .main-slider .main-item .item-link .caption .caption-wrap h1 {
		font-size: 1.625em;
		text-align: center;	
	}

	section.main .main-slider .slick-arrow.slick-prev {
		left: 10px;
	}

	section.main .main-slider .slick-arrow.slick-next {
		right: 10px;
	}

	section.locations-title-box .locations-wrap {
		margin-top: -20px;
		margin-bottom: -20px;
	}

	section.locations-title-box .locations-wrap .locations-item .item-link {
		padding: 22px 10px;
	}

	section.locations-title-box .locations-wrap .locations-item .item-link::before {
		width: 65px;
		height: 40px;
		background-size: auto 41px;
	}

	section.plan-your-trip .caption .caption-wrap {
		padding: 55px 0px 66px;
	}

	section h2.main-h2 {
		font-size: 1.625em;
		margin-bottom: 24px;
	}

	section h2.main-h2::after {
		width: 46px;
		height: 6px;
		bottom: -10px;
		margin-left: -23px;
	}

	section.events-list .caption .caption-wrap {
		padding: 55px 0px;
	}

	section.blogs {
		padding: 40px 0px;
	}

	section.blogs .blogs-wrap .blogs-slider .blog-item .item-link .thumbnail .img-wrap::after {
		width: 30px;
		height: 30px;
		background-size: 24px;
	}

	@media screen and (min-width: 576px) {
		section.blogs .blogs-wrap .blogs-slider .blog-item .item-link:hover .thumbnail .img-wrap::after {
			width: 40px;
			height: 40px;
		}
	}

	section.blogs .blogs-wrap .blogs-slider .blog-item:nth-child(1) .item-link .caption p.h2 {
		font-size: 1.125em;
	}

	section.blogs .blogs-wrap .blogs-slider .blog-item .item-link .caption p.h2 {
		font-size: 1em;
	}

	section.legends {
		padding: 40px 0px;
	}

	section.legends .legends-wrap .legends-slider .legends-item .item-link .thumbnail .img-wrap::after {
		width: 30px;
		height: 30px;
		background-size: 28px;
	}

	@media screen and (min-width: 576px) {
		section.legends .legends-wrap .legends-slider .legends-item .item-link:hover .thumbnail .img-wrap::after {
			width: 40px;
			height: 40px;
		}
	}

	section.legends .legends-wrap .legends-slider .legends-item .item-link .caption {
		padding: 12px 22px;
	}

	section.legends .legends-wrap .legends-slider .legends-item .item-link .caption p.text {
		font-size: 0.875em;
		margin-bottom: 14px;
	}

	section .slick-slider ul.slick-dots {
		padding: 0px;
		margin: 12px 0px 0px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 6px;
	}

	section .slick-slider ul.slick-dots li {
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0px;
	}

	section .slick-slider ul.slick-dots li button {
		width: 10px;
		min-width: 10px;
		height: 10px;
		border: 1px solid var(--main-red);
		background-color: transparent;
		color: transparent;
		font-size: 0px;
		line-height: 100%;
		font-weight: 400;
		border-radius: 100%;
		overflow: hidden;
		box-shadow: none;
		outline: none;
	}

	section .slick-slider ul.slick-dots li.slick-active button {
		background-color: var(--main-red);
	}

	section.faq {
		padding: 32px 0px;
	}

	section.faq .faq-text h2.section-title {
		font-size: 1.375em;
		margin-bottom: 22px;
	}

	section.faq .faq-text .show-more-wrap {
		margin-bottom: 22px;
	}

	section.faq .faq-wrap h2.section-title {
		font-size: 1.375em;
		margin-bottom: 22px;
	}

	section.faq .faq-container .card {
		border-radius: 0px;
	}

	section.faq .faq-container .card:not(:last-child) {
		margin-bottom: 10px;
	}

	section.faq .faq-container .card .card-header .accordion-button {
		padding: 10px 18px;
		min-height: 36px;
		border-radius: 0px;
	}

	section.faq .faq-container .card .card-header .accordion-button span.cross {
		width: 18px;
		min-width: 18px;
		height: 18px;
	}

	section.faq .faq-container .card .card-body {
		padding: 0px 18px 10px 18px;
	}

	section.virtual-tour .caption .caption-wrap {
		padding: 55px 0px;
	}

	footer.footer .footer-column {
		padding: 20px 0px;
	}

	footer.footer .footer-column a.logo-footer {
		height: 50px;
	}

	footer.footer .footer-column p {
		font-size: 0.875em;
	}

	footer.footer .footer-column .footer-menu ul.menu {
		gap: 10px;
	}

	footer.footer .footer-column .socials-menu ul.menu {
		gap: 14px;
	}

	footer.footer .footer-column .partners-wrap {
		gap: 14px;
	}

	footer.footer .footer-column .partners-wrap > a {
		width: calc((100% - 14px) / 2);
		height: 80px;
	}

	.scroll-top-btn {
		left: 15px;
		bottom: 15px;
		width: 30px;
		height: 30px;
		background-size: 18px;
	}
}

@media screen and (max-width: 767px) {
	.static-page .col-12 > h1 {
		font-size: 1.5em;
		margin-bottom: 14px;
	}

	.form-group {
		margin-bottom: 16px;
	}

	.form-row {
		flex-direction: column;
		gap: 0px;
		margin-bottom: 16px;
	}

	.container-fluid {
		padding: 0px 20px;
	}

	.login-popup .popup-wrap,
	.search-popup .popup-wrap,
	.event-popup .popup-wrap,
	.booking-popup .popup-wrap {
		max-width: 320px;
		padding: 20px 24px;
		border-radius: 0px;
	}

	.popup-content-inner .h2 {
		font-size: 1.25em;
		margin-bottom: 16px;
	}

	.login-popup .popup-wrap .popup-content .login-with-btns,
	.search-popup .popup-wrap .popup-content .login-with-btns {
		gap: 3px;
	}

	.login-popup .popup-wrap .popup-content .login-with-btns a,
	.search-popup .popup-wrap .popup-content .login-with-btns a {
		padding: 8px 24px;
		width: 100%;
	}

	.login-popup .popup-wrap .popup-content .login-form p.h2,
	.search-popup .popup-wrap .popup-content .search-form p.h2,
	section.profile-page .profile-wrap .settings-wrap .settings-item form p.h2 {
		margin-bottom: 16px;
		font-size: 1.125em;
	}

	.login-popup .popup-wrap .popup-content .login-form .form-item.half-item, 
	.search-popup .popup-wrap .popup-content .search-form .form-item.half-item, 
	section.profile-page .profile-wrap .settings-wrap .settings-item form .form-item.half-item {
		width: 100%;
	}

	.event-popup .popup-wrap .popup-content ul.add-list {
		gap: 8px;
	}

	.event-popup .popup-wrap .popup-content ul.add-list li.list-item {
		width: calc((100% - 8px) / 2);
	}

	.mobile-menu {
		top: 50px;
		height: calc(100% - 50px);
		padding: 0px 20px;
	}

	.mobile-menu .mobile-wrap .profile-menu {
		padding-bottom: 14px;
		margin-bottom: 14px;
	}

	.mobile-menu .mobile-wrap .addon-menu {
		padding-bottom: 14px;
		margin-bottom: 14px;
		gap: 12px;
	}

	.mobile-menu .mobile-wrap .addon-menu .lang-menu {
		gap: 12px;
	}

	.mobile-menu .mobile-wrap .side-menu {
		padding-bottom: 14px;
		margin-bottom: 14px;
		gap: 12px;
	}

	.mobile-menu .mobile-wrap .contacts-menu {
		gap: 12px;
	}

	.mobile-menu .mobile-wrap .socials-menu {
		/* padding-top: 14px;
		margin-top: 14px; */
		gap: 14px;
	}

	section.main .main-slider .main-item .item-link .thumbnail .img-wrap {
		height: 320px;
	}

	section.main .main-slider .main-item .item-link .caption .caption-wrap {
		padding: 16px;
	}

	section.main .main-slider .main-item .item-link .caption .caption-wrap::before {
		width: 80px;
		height: 80px;
		margin-bottom: 16px;
	}

	section.main .main-slider .main-item .item-link .caption .caption-wrap h1 {
		font-size: 1.5em;
	}

	section.locations-title-box .locations-wrap {
		margin-top: -18px;
		margin-bottom: -18px;
	}

	section.locations-title-box .locations-wrap .locations-item {
		width: calc(100% / 2);
	}

	section.locations-title-box .locations-wrap .locations-item:nth-last-child(3), 
	section.locations-title-box .locations-wrap .locations-item:nth-last-child(4) {
		border-bottom: 1px solid #b4cad1;
	}

	section.locations-title-box .locations-wrap .locations-item .item-link {
		padding: 16px 10px;
	}

	section.plan-your-trip .caption .caption-wrap {
		padding: 60px 0px 50px;
	}

	section h2.main-h2 {
		font-size: 1.5em;
	}

	section.events-list .caption .caption-wrap {
		padding: 50px 0px;
	}

	section.blogs {
		padding: 30px 0px;
	}

	section.blogs .blogs-wrap .blogs-slider .blogs-box {
		grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
	}

	section.blogs .blogs-wrap .blogs-slider .blogs-box .blog-item:first-child {
		grid-column: 1 / 3;
    grid-row: 1 / 2;
	}

	section.legends {
		padding: 30px 0px;
	}

	section.legends .legends-wrap .legends-slider .legends-item .item-link .caption {
		padding: 12px 16px;
	}

	section.faq {
		padding: 24px 0px;
	}

	section.faq .faq-text h2.section-title {
		font-size: 1.25em;
		margin-bottom: 20px;
	}

	section.faq .faq-text .show-more-wrap {
		margin-bottom: 20px;
	}

	section.faq .faq-wrap h2.section-title {
		font-size: 1.25em;
		margin-bottom: 20px;
	}

	section.faq .faq-container .card {
		border-radius: 0px;
	}

	section.faq .faq-container .card:not(:last-child) {
		margin-bottom: 8px;
	}

	section.faq .faq-container .card .card-header .accordion-button {
		padding: 8px 14px;
		min-height: 32px;
		border-radius: 0px;
	}

	section.faq .faq-container .card .card-header .accordion-button span.cross {
		width: 16px;
		min-width: 16px;
		height: 16px;
	}

	section.faq .faq-container .card .card-body {
		padding: 0px 14px 8px 14px;
	}

	section.virtual-tour .caption .caption-wrap {
		padding: 50px 0px;
	}

	footer.footer .footer-column {
		padding: 16px 0px;
	}
}

@media screen and (max-width: 575px) {
	.static-page .col-12 > h1 {
		font-size: 1.375em;
	}

	.container-fluid {
		padding: 0px 15px;
	}

	header.header .header-wrap a.logo {
		width: 60px;
	}

	header.header .header-wrap a.logo img {
		content: url(../img/logo3.svg);
	}

	header.header .header-wrap .accessibility-menu {
		display: none;
	}

	header.header .header-wrap .login-menu {
		border-right: none;
	}

	header.header .header-wrap .language-menu {
		display: none;
	}

	/* header.header .header-wrap .add-event-menu {
		border-left: 1px solid #e2e2e2;
		border-right: 0px;
	} */

	.login-popup, 
	.search-popup,
	.event-popup,
	.booking-popup {
		padding: 15px 10px;
	}

	.login-popup .popup-wrap,
	.search-popup .popup-wrap,
	.event-popup .popup-wrap,
	.booking-popup .popup-wrap {
		padding: 20px 15px;
	}

	.login-popup .popup-wrap .popup-content > p.h2, 
	.search-popup .popup-wrap .popup-content > p.h2, 
	.event-popup .popup-wrap .popup-content > p.h2, 
	.booking-popup .popup-wrap .popup-content > p.h2 {
		font-size: 1.375em;
	}

	.booking-popup .popup-wrap .popup-content p.undertitle {
		font-size: 0.875em;
		margin-bottom: 14px;
	}

	.event-popup .popup-wrap .popup-content ul.add-list {
		gap: 6px;
	}

	.event-popup .popup-wrap .popup-content ul.add-list li.list-item {
		width: calc((100% - 6px) / 2);
	}

	.mobile-menu {
		top: 50px;
		height: calc(100% - 50px);
		padding: 0px 15px;
	}

	.mobile-menu .mobile-wrap {
		padding: 15px 0px;
	}

	.mobile-menu .mobile-wrap .contacts-menu .menu-item span {
		font-size: 0.875em;
	}

	section.main .main-slider .main-item .item-link .thumbnail .img-wrap {
		height: 300px;
	}

	section.main .main-slider .main-item .item-link .caption .caption-wrap::before {
		width: 75px;
		height: 75px;
		margin-bottom: 16px;
	}

	section.main .main-slider .main-item .item-link .caption .caption-wrap h1 {
		font-size: 1.375em;
	}

	section.main .main-slider .slick-arrow {
		width: 30px;
		min-width: 30px;
		height: 30px;
	}

	section.locations-title-box .locations-wrap {
		margin-top: -16px;
		margin-bottom: -16px;
	}

	section.locations-title-box .locations-wrap .locations-item .item-link {
		padding: 12px 10px;
	}

	section.plan-your-trip .caption .caption-wrap {
		padding: 50px 0px 40px;
	}

	section h2.main-h2 {
		font-size: 1.375em;
	}

	section.events-list .caption .caption-wrap {
		padding: 30px 0px;
	}

	section.blogs {
		padding: 25px 0px;
	}

	section.blogs .blogs-wrap .blogs-slider .blogs-box {
		grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
	}

	section.blogs .blogs-wrap .blogs-slider .blogs-box .blog-item {
		padding: 0px 12px 12px;
	}

	section.blogs .blogs-wrap .blogs-slider .blogs-box .blog-item:first-child {
		grid-column: 1;
    grid-row: 1;
	}

	section.blogs .blogs-wrap .blogs-slider .blog-item:nth-child(1) .item-link .caption p.h2 {
		font-size: 1em;
	}

	section.legends {
		padding: 25px 0px;
	}

	section.legends .legends-wrap .legends-slider {
		margin: 0px -15px;
	}

	section.legends .legends-wrap .legends-slider .slick-list {
		overflow: hidden;
	}

	section.legends .legends-wrap .legends-slider .slick-list .slick-track {
		display: block;
	}

	section.legends .legends-wrap .legends-slider .legends-item {
		padding: 12px 15px;
	}

	section.legends .legends-wrap .legends-slider .legends-item .item-link {
		flex-direction: column;
	}

	section.legends .legends-wrap .legends-slider .legends-item .item-link .thumbnail {
		width: 100%;
	}

	section.legends .legends-wrap .legends-slider .legends-item .item-link .caption {
		width: 100%;
		padding: 10px 0px 0px;
	}

	section.faq .faq-text h2.section-title {
		margin-bottom: 16px;
	}

	section.faq .faq-wrap h2.section-title {
		margin-bottom: 16px;
	}

	section.faq .faq-container .card {
		border-radius: 0px;
	}

	section.faq .faq-container .card:not(:last-child) {
		margin-bottom: 6px;
	}

	section.faq .faq-container .card .card-header .accordion-button {
		padding: 6px 12px;
		min-height: 30px;
		border-radius: 0px;
		line-height: 120%;
	}

	section.faq .faq-container .card .card-header .accordion-button span.cross {
		width: 14px;
		min-width: 14px;
		height: 14px;
	}

	section.faq .faq-container .card .card-body {
		padding: 0px 12px 6px 12px;
		line-height: 120%;
	}

	section.virtual-tour .caption .caption-wrap {
		padding: 40px 0px;
	}
}

@media screen and (min-width: 576px) {
	section.catalog .catalog-items-list .place-item .item-link .thumbnail .event-button .like-button:hover span,
	section.blog .catalog-items-list .blog-item .item-link .thumbnail .event-button .like-button:hover span {
		background-color: #d9d9d9;
	}
}















































section.archive-page-top {
	position: relative;
}

section.archive-page-top .thumbnail {
	position: absolute;
	z-index: 1;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

section.archive-page-top .thumbnail .img-wrap {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

section.archive-page-top .thumbnail .img-wrap picture {
	width: 100%;
	height: 100%;
}

section.archive-page-top .thumbnail .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.archive-page-top .caption {
	position: relative;
	z-index: 2;
	width: 100%;
	background-color: rgba(0,0,0,0.3);
}

section.archive-page-top .caption .caption-wrap {
	padding: 100px 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

section.archive-page-top.single-top .caption .caption-wrap {
	padding: 150px 0px;
}

section.archive-page-top.tour-top .caption .caption-wrap {
	padding: 100px 0px 250px;
}

section.archive-page-top .caption .caption-wrap .tag-wrap {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.archive-page-top .caption .caption-wrap .tag-wrap a.tag-link {
	background-color: var(--main-red);
	padding: 5px 10px;
	color: var(--main-white);
	text-decoration: none;
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
}

section.archive-page-top.tour-top .caption-wrap .tag-wrap a.tag-link {
	background-color: transparent;
	padding: 0px;
	font-size: 1.5em;
}

section.archive-page-top .caption .caption-wrap h1.main-h1 {
	font-size: 3.25em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-white);
	text-align: center;
	margin-bottom: 40px;
	position: relative;
}

section.archive-page-top.single-top .caption .caption-wrap h1.main-h1 {
	font-size: 2.75em;
}

section.archive-page-top .caption .caption-wrap h1.main-h1::after {
	content: '';
	position: absolute;
	width: 80px;
	height: 11px;
	bottom: -15px;
	background-color: var(--main-yellow);
	-ms-transform: rotate(-4deg);
	-webkit-transform: rotate(-4deg);
	transform: rotate(-4deg);
	left: 50%;
	margin-left: -40px;
}

section.archive-page-top .caption .caption-wrap p.text {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-white);
	margin: 0px;
}

section.archive-page-top .caption .caption-wrap .btn-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}

section.archive-page-top .caption .caption-wrap .btn-wrap a.btn-share {
	border: 1px solid var(--main-white);
	color: var(--main-white);
	font-size: 1em;
	line-height: 120%;
	font-weight: 400;
	padding: 6px 12px;
	display: flex;
	align-items: center;
	text-decoration: none;
}

section.archive-page-top .caption .caption-wrap .btn-wrap a.btn-share::before {
	content: '';
	width: 22px;
	min-width: 22px;
	height: 22px;
	background-image: url(../img/share-icon-white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 6px;
}

section.catalog {
	background-color: var(--main-white);
	padding: 40px 0px 60px;
}

section.catalog .sorting-btns-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}

section.catalog .sorting-btns-wrap .btn-filters-open {
	width: calc(((100% + 30px) / 4) - 30px);
	border: 1px solid var(--main-red);
	border-radius: 0px;
	background-color: var(--main-white);
	color: var(--main-red);
	font-size: 1.25em;
	line-height: 100%;
	font-weight: 700;
	padding: 13px 44px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}

section.catalog .sorting-btns-wrap .btn-filters-open::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 16px;
	width: 24px;
	min-width: 24px;
	height: 24px;
	background-image: url(../img/filters-icon-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

section.catalog .sorting-btns-wrap .count-title {
	margin-left: 18px;
	margin-right: auto;
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-blue);
}

section.catalog .sorting-btns-wrap .btn-map {
	font-size: 1em;
	line-height: 100%;
	font-weight: 700;
	color: var(--main-red);
	border: 1px solid var(--main-red);
	background-color: var(--main-white);
	padding: 15px 26px;
	border-radius: 0px;
	text-decoration: none;
	margin-right: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.catalog .sorting-btns-wrap .sorting-wrapper {
	position: relative;
	margin-right: 18px;
}

section.catalog .sorting-btns-wrap .sorting-wrapper .btn-sorting {
	font-size: 1em;
	line-height: 100%;
	font-weight: 700;
	color: var(--main-red);
	border: 1px solid var(--main-red);
	background-color: var(--main-white);
	padding: 13px 26px;
	border-radius: 0px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.catalog .sorting-btns-wrap .sorting-wrapper .btn-sorting::after {
	position: relative;
	content: '';
	width: 24px;
	min-width: 24px;
	height: 20px;
	background-image: url(../img/filters-arrow-down-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-left: 4px;
}

section.catalog .sorting-btns-wrap .sorting-wrapper .sorting-options {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  background: #fff;
  border: none;
  z-index: 1000;
  border-radius: 0px;
  box-shadow: 0px 0px 26px -5px rgba(0, 0, 0, 0.2);
	border: 1px solid var(--main-blue);
	width: 100%;
}

section.catalog .sorting-btns-wrap .sorting-wrapper .sorting-options.active {
  display: block;
}

section.catalog .sorting-btns-wrap .sorting-wrapper .sorting-options li {
  padding: 5px;
}

section.catalog .sorting-btns-wrap .sorting-wrapper .sorting-options li a {
  padding: 5px;
	text-decoration: none;
  color: var(--main-blue);
  display: block;
	border-radius: 0px;
	background-color: transparent;
}

section.catalog .sorting-btns-wrap .sorting-wrapper .sorting-options li a.active {
  background-color: #f0f0f0;
}

@media screen and (min-width: 576px) {
	section.catalog .sorting-btns-wrap .sorting-wrapper .sorting-options li a:hover {
		background-color: #f0f0f0;
	}
}

section.catalog .sorting-btns-wrap .btn-share {
	font-size: 1em;
	line-height: 100%;
	font-weight: 700;
	color: var(--main-white);
	border: 1px solid var(--main-green);
	background-color: var(--main-green);
	padding: 14px 32px;
	border-radius: 0px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.catalog .sorting-btns-wrap .btn-share::after {
	content: '';
	width: 24px;
	min-width: 24px;
	height: 18px;
	background-image: url(../img/share-icon-white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-left: 4px;
}

.view-toggle {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-left: 16px;
	background: #fff;
	border-radius: 0px;
	border: 1px solid var(--main-blue);
	padding: 5px;
}

.view-toggle-btn {
	border: none;
	background-color: #ffffff;
	padding: 5px 5px;
	border-radius: 0px;
	font-size: 0.875rem;
	line-height: 1;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	color: #323232;
	box-shadow: none !important;
}

button.view-toggle-btn.active[data-view="grid"] img {
	content: url(/assets/img/grid-icon-white.svg);
}

button.view-toggle-btn.active[data-view="list"] img {
	content: url(/assets/img/list-icon-white.svg);
}

@media screen and (min-width: 576px) {
	.view-toggle-btn:hover,
	.view-toggle-btn:focus-visible {
		border-color: #323232;
		color: #000000;
	}
}

.view-toggle-btn.active {
	background-color: var(--main-blue);
	color: #ffffff;
	border-color: var(--main-blue);
}

section.catalog .filters-wrap {
  display: flex;
  flex-direction: column;
}

section.catalog .filters-wrap .filters-chips {
  display: flex;
  flex-direction: column;
  padding: 16px;
  background-color: var(--main-white);
  border-radius: 0px;
  margin-bottom: 14px;
	border: 1px solid var(--main-blue);
}

section.catalog .filters-wrap .filters-chips .chips-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

section.catalog .filters-wrap .filters-chips .chips-title span.title {
  font-size: 1.25em;
  line-height: 120%;
  font-weight: 700;
  color: var(--main-blue);
}

section.catalog .filters-wrap .filters-chips .chips-title a.clear {
  font-size: 1em;
  line-height: 120%;
  font-weight: 400;
  color: var(--main-blue);
  cursor: pointer;
	opacity: 0.5;
  text-decoration: none;
  transition: var(--speed-slow);
  margin-left: 12px;
}

@media screen and (min-width: 576px) {
  section.catalog .filters-wrap .filters-chips .chips-title a.clear:hover {
    opacity: 1;
  }
}

section.catalog .filters-wrap .filters-chips .chips-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
}

section.catalog .filters-wrap .filters-chips .chips-list .chip:nth-child(1n + 2) {
  margin-top: 14px;
}

section.catalog .filters-wrap .filters-chips .chips-list .chip {
  display: flex;
}

section.catalog .filters-wrap .filters-chips .chips-list .chip a {
  width: 100%;
  font-size: 1.125em;
  line-height: 120%;
  font-weight: 400;
  color: var(--main-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
}

section.catalog .filters-wrap .filters-chips .chips-list .chip a::after {
  content: '';
  width: 18px;
  min-width: 18px;
  height: 18px;
  background-color: transparent;
  border-radius: 100%;
  margin-left: 18px;
  opacity: 0.5;
  transition: var(--speed-fast);
  background-image: url(../img/filter-cross.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media screen and (min-width: 576px) {
  section.catalog .filters-wrap .filters-chips .chips-list .chip a:hover::after {
    opacity: 1;
  }
}

section.catalog .filters-wrap .filters-chips .chips-list .chip .chip-name {
  margin-right: auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

section.catalog .filters-wrap .filters-list {
  display: flex;
  flex-direction: column;
}

section.catalog .filters-wrap .filters-list .filters-container {
  display: flex;
  flex-direction: column;
}

section.catalog .filters-wrap .filters-list .filters-container .card:nth-child(1n + 2) {
  margin-top: 14px;
}

section.catalog .filters-wrap .filters-list .filters-container .card {
  padding: 16px;
  border: 1px solid var(--main-blue);
  border-radius: 0px;
  overflow: hidden;
  background-color: var(--main-white);
}

section.catalog .filters-wrap .filters-list .filters-container .card .card-header {
	padding: 0px;
  background-color: transparent;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section.catalog .filters-wrap .filters-list .filters-container .card .card-header button {
  font-size: 1.25em;
  line-height: 120%;
  font-weight: 700;
  color: var(--main-blue);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
}

section.catalog .filters-wrap .filters-list .filters-container .card .card-header button::after {
  display: none;
}

section.catalog .filters-wrap .filters-list .filters-container .card .card-header button .cross {
  width: 24px;
  min-width: 24px;
  height: 19px;
  background-image: url(../img/filters-arrow-down.svg);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  margin-right: 10px;
  transition: var(--speed-fast);
}

section.catalog .filters-wrap .filters-list .filters-container .card .card-header button.collapsed .cross {
  transform: rotate(180deg);
}

section.catalog .filters-wrap .filters-list .filters-container .card .collapse {
	position: relative;
}

section.catalog .filters-wrap .filters-list .filters-container .card .collapse::before {
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	height: 18px;
	background: linear-gradient(180deg, #ffffff, transparent);
	display: block;
	z-index: 9;
}

section.catalog .filters-wrap .filters-list .filters-container .card .collapse::after {
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	height: 18px;
	background: linear-gradient(1deg, #ffffff, transparent);
	display: block;
	z-index: 9;
}

section.catalog .filters-wrap .filters-list .filters-container .card .card-body {
  padding: 10px 0px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
	max-height: 360px;
	overflow-y: auto;
}

section.catalog .filters-wrap .filters-list .filters-container .card .card-body .filters-empty {
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-blue);
	margin: 10px 0px;
}

section.catalog .filters-wrap .filters-list .filters-container .card .card-body .checkbox-wrap {
  position: relative;
  display: flex;
	flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  padding: 0px;
  margin-top: 15px;
  font-size: 1.125em;
  line-height: 120%;
  font-weight: 400;
  color: var(--main-blue);
  cursor: pointer;
  user-select: none;
  width: 100%;
}

section.catalog .filters-wrap .filters-list .filters-container .card .card-body .checkbox-wrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

section.catalog .filters-wrap .filters-list .filters-container .card .card-body .checkbox-wrap .checkmark {
	position: relative;
  width: 18px;
	min-width: 18px;
  height: 18px;
  border: 1px solid #d3d3d3;
  transition: var(--speed-fast);
  background-color: #f0f0f0;
  border-radius: 0px;
	margin-right: 18px;
}

section.catalog .filters-wrap .filters-list .filters-container .card .card-body .checkbox-wrap .checkmark::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: '';
  background-color: transparent;
  transition: var(--speed-fast);
  background-image: url(../img/filter-check-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 120% 120%;
	opacity: 0;
}

@media screen and (min-width: 576px) {
  section.catalog .filters-wrap .filters-list .filters-container .card .card-body .checkbox-wrap:hover .checkmark {
    border-color: var(--main-blue);
  }
}

section.catalog .filters-wrap .filters-list .filters-container .card .card-body .checkbox-wrap input:checked ~ .checkmark {
  border-color: var(--main-blue);
	background-color: var(--main-blue);
}

section.catalog .filters-wrap .filters-list .filters-container .card .card-body .checkbox-wrap input:checked ~ .checkmark::after {
  opacity: 1;
}

section.catalog .catalog-items-list,
.related-events .catalog-items-list {
	display: flex;
	flex-wrap: wrap;
}

section.catalog .catalog-items-list .place-item,
.related-events .catalog-items-list .place-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

section.catalog .catalog-items-list .place-item:nth-child(1n + 2),
.related-events .catalog-items-list .place-item:nth-child(1n + 2) {
	margin-top: 26px;
}

section.catalog .catalog-items-list .place-item .item-link,
.related-events .catalog-items-list .place-item .item-link {
	width: 100%;
	text-decoration: none;
	display: flex;
	border-radius: 0px;
	background-color: var(--main-white);
	border: 1px solid #deeef3;
	position: relative;
}

section.catalog .catalog-items-list .place-item .item-link::after,
.related-events .catalog-items-list .place-item .item-link::after {
	content: '';
	position: absolute;
	left: -5px;
	top: -5px;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	border-radius: 0px;
	border: 5px solid var(--main-yellow);
	opacity: 0;
	transition: var(--speed-fast);
	user-select: none;
	pointer-events: none;
}

@media screen and (min-width: 576px) {
	section.catalog .catalog-items-list .place-item .item-link:hover::after,
	.related-events .catalog-items-list .place-item .item-link:hover::after {
		opacity: 1;
	}
}

section.catalog .catalog-items-list .place-item .item-link .thumbnail,
.related-events .catalog-items-list .place-item .item-link .thumbnail {
	width: 32%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

section.catalog .catalog-items-list .place-item .item-link .thumbnail .img-wrap,
.related-events .catalog-items-list .place-item .item-link .thumbnail .img-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.catalog .catalog-items-list .place-item .item-link .thumbnail .img-wrap::after,
.related-events .catalog-items-list .place-item .item-link .thumbnail .img-wrap::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 50px;
	transition: all ease .3s;
	opacity: 0;
	background-color: #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-image: url(../img/thumbnail-icon.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 40px;
	z-index: 3;
}

@media screen and (min-width: 576px) {
	section.catalog .catalog-items-list .place-item .item-link:hover .thumbnail .img-wrap::after,
	.related-events .catalog-items-list .place-item .item-link:hover .thumbnail .img-wrap::after {
		transform: translate(-50%, -50%);
		opacity: 1;
		width: 70px;
		height: 70px;
	}
}

section.catalog .catalog-items-list .place-item .item-link .thumbnail .img-wrap img,
.related-events .catalog-items-list .place-item .item-link .thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.catalog .catalog-items-list .place-item .item-link .thumbnail .event-button, 
section.catalog .catalog-items-list .event-item .item-link .thumbnail .event-button, 
section.related-events .catalog-items-list .event-item .item-link .thumbnail .event-button,
section.blog .catalog-items-list .blog-item .item-link .thumbnail .event-button {
	position: absolute;
	top: 18px;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.catalog .catalog-items-list .place-item .item-link .thumbnail .event-button .like-button, 
section.catalog .catalog-items-list .event-item .item-link .thumbnail .event-button .like-button, 
section.related-events .catalog-items-list .event-item .item-link .thumbnail .event-button .like-button,
section.blog .catalog-items-list .blog-item .item-link .thumbnail .event-button .like-button {
	width: 30px;
	min-width: 30px;
	height: 30px;
	border-radius: 0px;
	background-color: var(--main-white);
	font-size: 0px;
	line-height: 100%;
	font-weight: 400;
	color: transparent;
	overflow: hidden;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.catalog .catalog-items-list .place-item .item-link .thumbnail .event-button .like-button span, 
section.catalog .catalog-items-list .event-item .item-link .thumbnail .event-button .like-button span,
section.blog .catalog-items-list .blog-item .item-link .thumbnail .event-button .like-button span {
	width: 60%;
	min-width: 60%;
	height: 50%;
	background-image: url(../img/heart-icon-black.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	-webkit-mask-image: url(../img/heart-icon-black-full.svg);
  mask-image: url(../img/heart-icon-black-full.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	margin-top: 0.5%;
	transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
	section.catalog .catalog-items-list .place-item .item-link .thumbnail .event-button .like-button:hover span,
	section.blog .catalog-items-list .blog-item .item-link .thumbnail .event-button .like-button:hover span {
		background-color: #d9d9d9;
	}
}

section.catalog .catalog-items-list .place-item .item-link .thumbnail .event-button .like-button.in-wishlist span,
section.catalog .catalog-items-list .event-item .item-link .thumbnail .event-button .like-button.in-wishlist span,
section.blog .catalog-items-list .blog-item .item-link .thumbnail .event-button .like-button.in-wishlist span {
	background-color: var(--main-black);
}

section.catalog .catalog-items-list .place-item .item-link .caption {
	width: 68%;
	padding: 10px 15px;
	display: flex;
	flex-direction: column;
}

section.catalog .catalog-items-list .place-item .item-link .caption span.uppertitle {
	font-size: 1em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.catalog .catalog-items-list .place-item .item-link .caption p.h2 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.catalog .catalog-items-list .place-item .item-link .caption p.text {
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.catalog .catalog-items-list .place-item .item-link .caption span.place {
	font-size: 1em;
	line-height: 150%;
	font-weight: 500;
	color: var(--main-green);
	margin-top: auto;
	margin-bottom: 0px;
	display: flex;
	align-items: center;
}

section.catalog .catalog-items-list .place-item .item-link .caption span.place::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url(../img/pin-icon-green.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	margin-right: 8px;
}

section.catalog .catalog-items-list .place-item .item-link .caption span.place span {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	width: 100%;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

section.catalog .catalog-items-list .place-item .item-link .caption span.time {
	font-size: 1em;
	line-height: 150%;
	font-weight: 500;
	color: var(--main-green);
	display: flex;
	align-items: center;
}

section.catalog .catalog-items-list .place-item .item-link .caption span.time::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url(../img/time-icon-green.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	margin-right: 8px;
}

section.catalog .catalog-wrap.hide-filters .col-12:has(.filters-wrap) {
	display: none;
}

section.catalog .catalog-wrap.hide-filters .col-12:has(.catalog-items-list) {
	width: 100%;
}

section .pagination {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0px;
	margin-top: 40px;
}

section .pagination a,
section .pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 42px;
	min-width: 42px;
	height: 42px;
	background-color: transparent;
	border: none;
	font-size: 1.25em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-blue);
	text-decoration: none;
	transition: var(--speed-slow);
	border-radius: 0px;
	overflow: hidden;
}

section .pagination a.current,
section .pagination span.current {
	border-bottom: 1px solid var(--main-red);
	color: var(--main-red);
}

@media screen and (min-width: 576px) {
	section .pagination a:hover {
		color: var(--main-red);
	}
}

section .pagination a.direction-page,
section .pagination span.direction-page {
	font-size: 0px;
	color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 60% 60%;
	background-color: var(--main-green);
	position: relative;
}

section .pagination a.direction-page.prev-page,
section .pagination span.direction-page.prev-page {
  background-image: url(../img/arrow-left-white.svg);
}

section .pagination a.direction-page.next-page,
section .pagination span.direction-page.next-page {
  background-image: url(../img/arrow-right-white.svg);
}

section .pagination a.disabled,
section .pagination span.disabled {
	user-select: none;
	pointer-events: none;
}

.filters-modal-wrap {
  display: none;
}

@media screen and (max-width: 1299px) {
	section.archive-page-top .caption .caption-wrap {
		padding: 90px 0px;
	}

	section.archive-page-top.single-top .caption .caption-wrap {
		padding: 135px 0px;
	}

	section.archive-page-top.tour-top .caption .caption-wrap {
		padding: 90px 0px 225px;
	}

	section.archive-page-top .caption .caption-wrap .tag-wrap {
		margin-bottom: 8px;
	}

	section.archive-page-top .caption .caption-wrap .tag-wrap a.tag-link {
		padding: 4px 8px;
	}

	section.archive-page-top.tour-top .caption-wrap .tag-wrap a.tag-link {
		font-size: 1.375em;
	}

	section.archive-page-top .caption .caption-wrap h1.main-h1 {
		font-size: 3em;
		margin-bottom: 30px;
	}

	section.archive-page-top.single-top .caption .caption-wrap h1.main-h1 {
		font-size: 2.5em;
	}

	section.archive-page-top .caption .caption-wrap h1.main-h1::after {
		width: 70px;
		height: 10px;
		bottom: -10px;
		margin-left: -35px;
	}

	section.archive-page-top .caption .caption-wrap p.text {
		font-size: 1.375em;
	}

	section.archive-page-top .caption .caption-wrap .btn-wrap a.btn-share {
		padding: 5px 10px;
	}

	section.archive-page-top .caption .caption-wrap .btn-wrap a.btn-share::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
		margin-right: 4px;
	}

	section.catalog {
		padding: 35px 0px 52px;
	}

	section.catalog .sorting-btns-wrap {
		margin-bottom: 28px;
	}

	section.catalog .sorting-btns-wrap .btn-filters-open {
		font-size: 1.125em;
		padding: 12px 38px;
	}

	section.catalog .sorting-btns-wrap .btn-filters-open::before {
		width: 22px;
		min-width: 22px;
		height: 22px;
	}

	section.catalog .sorting-btns-wrap .count-title {
		margin-left: 16px;
		font-size: 1.125em;
	}

	section.catalog .sorting-btns-wrap .btn-map {
		padding: 13px 24px;
		margin-right: 16px;
	}

	section.catalog .sorting-btns-wrap .sorting-wrapper {
		margin-right: 16px;
	}

	section.catalog .sorting-btns-wrap .sorting-wrapper .btn-sorting {
		padding: 12px 24px;
	}

	section.catalog .sorting-btns-wrap .sorting-wrapper .btn-sorting::after {
		width: 22px;
		min-width: 22px;
		height: 18px;
	}

	section.catalog .sorting-btns-wrap .sorting-wrapper .sorting-options li {
		padding: 4px;
	}

	section.catalog .sorting-btns-wrap .sorting-wrapper .sorting-options li a {
		padding: 4px;
	}

	section.catalog .sorting-btns-wrap .btn-share {
		padding: 12px 28px;
	}

	section.catalog .sorting-btns-wrap .btn-share::after {
		width: 22px;
		min-width: 22px;
	}

	.view-toggle {
		gap: 4px;
		padding: 4px;
	}

	.view-toggle-btn {
		padding: 4px;
	}

	section.catalog .filters-wrap .filters-chips {
		padding: 14px;
		border-radius: 0px;
	}

	section.catalog .filters-wrap .filters-chips .chips-title {
		margin-bottom: 14px;
	}

	section.catalog .filters-wrap .filters-chips .chips-title span.title {
		font-size: 1.125em;
	}

	section.catalog .filters-wrap .filters-chips .chips-title span.clear {
		font-size: 0.875em;
		margin-left: 10px;
	}

	section.catalog .filters-wrap .filters-chips .chips-list .chip:nth-child(1n + 2) {
		margin-top: 12px;
	}

	section.catalog .filters-wrap .filters-chips .chips-list .chip a {
		font-size: 1em;
	}

	section.catalog .filters-wrap .filters-chips .chips-list .chip a::after {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-left: 16px;
	}

	section.catalog .filters-wrap .filters-list .filters-container .card:nth-child(1n + 2) {
		margin-top: 12px;
	}

	section.catalog .filters-wrap .filters-list .filters-container .card {
		padding: 14px;
		border-radius: 0px;
	}

	section.catalog .filters-wrap .filters-list .filters-container .card .card-header button {
		font-size: 1.125em;
	}

	section.catalog .filters-wrap .filters-list .filters-container .card .card-header button .cross {
		width: 22px;
		min-width: 22px;
		height: 18px;
		margin-right: 8px;
	}

	section.catalog .filters-wrap .filters-list .filters-container .card .collapse::before {
		height: 16px;
	}

	section.catalog .filters-wrap .filters-list .filters-container .card .collapse::after {
		height: 16px;
	}

	section.catalog .filters-wrap .filters-list .filters-container .card .card-body {
		padding: 8px 0px 8px;
	}

	section.catalog .filters-wrap .filters-list .filters-container .card .card-body .filters-empty {
		font-size: 1em;
		margin: 8px 0px;
	}

	section.catalog .filters-wrap .filters-list .filters-container .card .card-body .checkbox-wrap {
		font-size: 1em;
		margin-top: 13px;
	}

	section.catalog .filters-wrap .filters-list .filters-container .card .card-body .checkbox-wrap .checkmark {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 16px;
	}

	section.catalog .catalog-items-list .place-item:nth-child(1n + 2),
	.related-events .catalog-items-list .place-item:nth-child(1n + 2) {
		margin-top: 24px;
	}

	section.catalog .catalog-items-list .place-item .item-link .thumbnail .img-wrap::after,
	.related-events .catalog-items-list .place-item .item-link .thumbnail .img-wrap::after {
		width: 40px;
		height: 40px;
		background-size: 35px;
	}

	@media screen and (min-width: 576px) {
		section.catalog .catalog-items-list .place-item .item-link:hover .thumbnail .img-wrap::after,
		.related-events .catalog-items-list .place-item .item-link:hover .thumbnail .img-wrap::after {
			width: 60px;
			height: 60px;
		}
	}

	section.catalog .catalog-items-list .place-item .item-link .thumbnail .event-button, 
	section.catalog .catalog-items-list .event-item .item-link .thumbnail .event-button, 
	section.related-events .catalog-items-list .event-item .item-link .thumbnail .event-button,
	section.blog .catalog-items-list .blog-item .item-link .thumbnail .event-button {
		top: 16px;
		right: 14px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption {
		padding: 8px 13px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption span.uppertitle {
		margin-bottom: 14px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption p.h2 {
		font-size: 1.375em;
		margin-bottom: 14px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption p.text {
		font-size: 1em;
		margin-bottom: 14px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption span.place {
		font-size: 0.875em;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption span.place::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 6px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption span.time {
		font-size: 0.875em;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption span.time::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 6px;
	}

	section .pagination {
		margin-top: 35px;
	}

	section .pagination a,
	section .pagination span {
		width: 38px;
		min-width: 38px;
		height: 38px;
		font-size: 1.125em;
	}
}

@media screen and (max-width: 1199px) {
	section.archive-page-top .caption .caption-wrap {
		padding: 75px 0px;
	}

	section.archive-page-top.single-top .caption .caption-wrap {
		padding: 115px 0px;
	}

	section.archive-page-top.tour-top .caption .caption-wrap {
		padding: 75px 0px 185px;
	}

	section.archive-page-top .caption .caption-wrap .tag-wrap a.tag-link {
		font-size: 0.875em;
	}

	section.archive-page-top.tour-top .caption-wrap .tag-wrap a.tag-link {
		font-size: 1.25em;
	}

	section.archive-page-top .caption .caption-wrap h1.main-h1 {
		font-size: 2.5em;
		margin-bottom: 25px;
	}

	section.archive-page-top.single-top .caption .caption-wrap h1.main-h1 {
		font-size: 2em;
	}

	section.archive-page-top .caption .caption-wrap h1.main-h1::after {
		width: 58px;
		height: 8px;
		bottom: -10px;
		margin-left: -28px;
	}

	section.archive-page-top .caption .caption-wrap p.text {
		font-size: 1.25em;
	}

	section.archive-page-top .caption .caption-wrap .btn-wrap a.btn-share {
		font-size: 0.875em;
	}

	section.archive-page-top .caption .caption-wrap .btn-wrap a.btn-share::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 3px;
	}

	section.catalog {
		padding: 28px 0px 42px;
	}

	section.catalog .sorting-btns-wrap {
		margin-bottom: 24px;
	}

	section.catalog .sorting-btns-wrap .btn-filters-open {
		font-size: 1em;
		padding: 10px 36px;
	}

	section.catalog .sorting-btns-wrap .btn-filters-open::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
	}

	section.catalog .sorting-btns-wrap .count-title {
		margin-left: 12px;
		font-size: 0.875em;
	}

	section.catalog .sorting-btns-wrap .btn-map {
		font-size: 0.875em;
		padding: 10px 14px;
		margin-right: 12px;
	}

	section.catalog .sorting-btns-wrap .sorting-wrapper {
		margin-right: 12px;
	}

	section.catalog .sorting-btns-wrap .sorting-wrapper .btn-sorting {
		padding: 10px 14px;
		font-size: 0.875em;
	}

	section.catalog .sorting-btns-wrap .sorting-wrapper .btn-sorting::after {
		width: 20px;
		min-width: 20px;
		height: 16px;
	}

	section.catalog .sorting-btns-wrap .sorting-wrapper .sorting-options li {
		padding: 3px;
	}

	section.catalog .sorting-btns-wrap .sorting-wrapper .sorting-options li a {
		padding: 3px;
	}

	section.catalog .sorting-btns-wrap .btn-share {
		padding: 10px 14px;
		font-size: 0.875em;
	}

	section.catalog .sorting-btns-wrap .btn-share::after {
		width: 20px;
		min-width: 20px;
		height: 16px;
	}

	.view-toggle {
		margin-left: 12px;
		gap: 3px;
		padding: 3px;
	}

	.view-toggle-btn {
		padding: 3px;
	}

	.view-toggle-btn img {
		width: 24px;
		height: 24px;
	}

	section.catalog .filters-wrap .filters-list .filters-container .card .card-header button {
		font-size: 1em;
	}
	
	section.catalog .filters-wrap .filters-list .filters-container .card .card-header button .cross {
		width: 20px;
		min-width: 20px;
		margin-right: 6px;
	}

	section.catalog .filters-wrap .filters-list .filters-container .card .card-body .checkbox-wrap .checkmark {
		margin-right: 12px;
	}

	section.catalog .catalog-items-list .place-item:nth-child(1n + 2),
	.related-events .catalog-items-list .place-item:nth-child(1n + 2) {
		margin-top: 20px;
	}

	section.catalog .catalog-items-list .place-item .item-link .thumbnail .img-wrap::after,
	.related-events .catalog-items-list .place-item .item-link .thumbnail .img-wrap::after {
		width: 34px;
		height: 34px;
		background-size: 28px;
	}

	@media screen and (min-width: 576px) {
		section.catalog .catalog-items-list .place-item .item-link:hover .thumbnail .img-wrap::after,
		.related-events .catalog-items-list .place-item .item-link:hover .thumbnail .img-wrap::after {
			width: 50px;
			height: 50px;
		}
	}

	section.catalog .catalog-items-list .place-item .item-link .thumbnail .event-button, 
	section.catalog .catalog-items-list .event-item .item-link .thumbnail .event-button, 
	section.related-events .catalog-items-list .event-item .item-link .thumbnail .event-button,
	section.blog .catalog-items-list .blog-item .item-link .thumbnail .event-button {
		top: 14px;
		right: 12px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption {
		padding: 8px 13px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption span.uppertitle {
		margin-bottom: 12px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption p.h2 {
		font-size: 1.25em;
		margin-bottom: 12px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption p.text {
		margin-bottom: 12px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption span.place {
		margin-bottom: 4px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption span.place::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 4px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption span.time::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 4px;
	}

	section .pagination {
		margin-top: 28px;
	}

	section .pagination a,
	section .pagination span {
		width: 32px;
		min-width: 32px;
		height: 32px;
		font-size: 1em;
	}
}

@media screen and (max-width: 991px) {
	section.archive-page-top .caption .caption-wrap {
		padding: 55px 0px;
	}

	section.archive-page-top.single-top .caption .caption-wrap {
		padding: 85px 0px;
	}

	section.archive-page-top.tour-top .caption .caption-wrap {
		padding: 55px 0px 145px;
	}

	section.archive-page-top.tour-top .caption-wrap .tag-wrap a.tag-link {
		font-size: 1.125em;
	}

	section.archive-page-top .caption .caption-wrap h1.main-h1 {
		font-size: 2em;
		margin-bottom: 24px;
	}

	section.archive-page-top.single-top .caption .caption-wrap h1.main-h1 {
		font-size: 1.625em;
	}

	section.archive-page-top .caption .caption-wrap h1.main-h1::after {
		width: 46px;
		height: 6px;
		bottom: -10px;
		margin-left: -23px;
	}

	section.archive-page-top .caption .caption-wrap p.text {
		font-size: 1.125em;
	}

	section.archive-page-top .caption .caption-wrap .btn-wrap a.btn-share::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 3px;
	}

	section.catalog {
		padding: 24px 0px 32px;
	}

	section.catalog .sorting-btns-wrap {
		margin-bottom: 22px;
	}

	section.catalog .sorting-btns-wrap .btn-filters-open {
		width: auto;
		padding: 8px 14px;
		font-size: 0.875em;
		margin-right: auto;
	}

	section.catalog .sorting-btns-wrap .btn-filters-open::before {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 4px;
	}

	section.catalog .sorting-btns-wrap .count-title {
		display: none;
	}

	section.catalog .sorting-btns-wrap .btn-map {
		margin-right: 10px;
	}

	section.catalog .sorting-btns-wrap .sorting-wrapper {
		margin-right: 10px;
	}

	section.catalog .sorting-btns-wrap .sorting-wrapper .btn-sorting::after {
		width: 18px;
		min-width: 18px;
		height: 14px;
	}

	section.catalog .sorting-btns-wrap .btn-share::after {
		width: 18px;
		min-width: 18px;
		height: 14px;
	}

	.view-toggle {
		margin-left: 10px;
	}
	
	button.view-toggle-btn img {
		width: 22px;
		height: 22px;
	}

	section.catalog .catalog-wrap .col-12:has(.filters-wrap) {
		display: none;
	}

	section.catalog .catalog-items-list .place-item:nth-child(1n + 2),
	.related-events .catalog-items-list .place-item:nth-child(1n + 2) {
		margin-top: 16px;
	}

	section.catalog .catalog-items-list .place-item .item-link .thumbnail .img-wrap::after, 
	.related-events .catalog-items-list .place-item .item-link .thumbnail .img-wrap::after {
		width: 30px;
		height: 30px;
		background-size: 24px;
	}

	@media screen and (min-width: 576px) {
		section.catalog .catalog-items-list .place-item .item-link:hover .thumbnail .img-wrap::after, 
		.related-events .catalog-items-list .place-item .item-link:hover .thumbnail .img-wrap::after {
			width: 40px;
			height: 40px;
		}
	}

	section.catalog .catalog-items-list .place-item .item-link .thumbnail .event-button, 
	section.catalog .catalog-items-list .event-item .item-link .thumbnail .event-button, 
	section.related-events .catalog-items-list .event-item .item-link .thumbnail .event-button,
	section.blog .catalog-items-list .blog-item .item-link .thumbnail .event-button {
		top: 12px;
		right: 10px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption span.uppertitle {
		margin-bottom: 10px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption p.h2 {
		font-size: 1.125em;
		margin-bottom: 10px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption p.text {
		margin-bottom: 10px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption span.place::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 3px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption span.time::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 3px;
	}

	section .pagination {
		margin-top: 24px;
	}

	section .pagination a,
	section .pagination span {
		width: 30px;
		min-width: 30px;
		height: 30px;
	}

	.filters-modal-wrap {
    position: fixed;
    z-index: 115;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--main-bg);
    display: flex;
    flex-direction: column;
    opacity: 0;
    user-select: none;
    pointer-events: none;
    transition: opacity var(--speed-fast);
  }

  .filters-modal-wrap.show {
    opacity: 1;
    user-select: auto;
    pointer-events: all;
  }

  .filters-modal-wrap .filters-modal-top {
    padding: 10px 0px;
    display: flex;
    align-items: center;
    background-color: var(--main-bg);
		border-bottom: 1px solid #f2f2f2;
  }

  .filters-modal-wrap .filters-modal-top .top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .filters-modal-wrap .filters-modal-top .top-wrap .title {
    display: flex;
    align-items: center;
    font-size: 1.125em;
    line-height: 100%;
    font-weight: 500;
    color: var(--main-blue);
  }

  .filters-modal-wrap .filters-modal-top .top-wrap .title .filters-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 4px;
    font-size: 0px;
    color: transparent;
  }

  .filters-modal-wrap .filters-modal-top .top-wrap .title .filters-modal-close::before {
    content: '';
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../img/filters-arrow-down.svg);
		filter: invert(1);
    transform: rotate(90deg);
  }

  .filters-modal-wrap .filters-modal-top .top-wrap .title .filters-modal-back {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 4px;
    font-size: 0px;
    color: transparent;
    display: none;
  }

  .filters-modal-wrap .filters-modal-top .top-wrap .title .filters-modal-back::before {
    content: '';
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../img/filters-arrow-down.svg);
		filter: invert(1);
    transform: rotate(90deg);
  }

  .filters-modal-wrap .filters-modal-top .top-wrap .clear {
    font-size: 1em;
    line-height: 120%;
    font-weight: 400;
    color: var(--main-blue);
    cursor: pointer;
    text-decoration: none;
    transition: var(--speed-fast);
		opacity: 0.5;
    margin-left: 12px;
  }

  @media screen and (min-width: 576px) {
    .filters-modal-wrap .filters-modal-top .top-wrap .clear:hover {
      opacity: 1;
    }
  }

  .filters-modal-wrap .filters-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0px;
    background-color: var(--main-bg);
  }

  .filters-modal-wrap .filters-modal-content .content-wrap {
    display: flex;
    flex-direction: column;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list {
    display: flex;
    flex-direction: column;
    border-radius: 0px;
    background-color: var(--main-white);
    padding: 8px 16px 16px;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item:nth-child(1n + 2) {
    margin-top: 20px;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item:nth-child(1n + 2)::before {
    content: '';
    position: absolute;
    left: 0px;
    top: -10px;
    width: 100%;
    height: 1px;
    background-color: #e2e2e2;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-top {
    padding: 12px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
		min-height: 48px;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-top .title {
    font-size: 1.125em;
    line-height: 120%;
    font-weight: 700;
    color: var(--main-blue);
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-top .value {
    font-size: 1em;
    line-height: 120%;
    font-weight: 400;
    color: var(--main-blue);
    margin-left: 12px;
    display: flex;
    align-items: center;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-top .value::after {
    content: '';
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../img/filters-arrow-down.svg);
    transform: rotate(-90deg);
    margin-left: 4px;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap {
    position: relative;
    display: flex;
		flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    padding-left: 0px;
    margin-top: 12px;
    font-size: 1em;
    line-height: 120%;
    font-weight: 400;
    color: var(--main-blue);
    min-height: 24px;
    cursor: pointer;
    user-select: none;
    width: 100%;
    display: none;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item.open .list-body .checkbox-wrap {
    display: flex;
  }
  
  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap .checkmark {
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid #d3d3d3;
    transition: var(--speed-fast);
    background-color: #f0f0f0;
    border-radius: 0px;
		margin-right: 12px;
  }
  
  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap .checkmark::after {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    content: '';
    background-color: transparent;
    transition: var(--speed-fast);
    background-image: url(../img/filter-check-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 120% 120%;
		opacity: 0;
  }
  
  @media screen and (min-width: 576px) {
    .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap:hover .checkmark::after {
      border-color: var(--main-blue);
    }
  }
  
  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap input:checked ~ .checkmark {
    border-color: var(--main-blue);
		background-color: var(--main-blue);
  }
  
  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap input:checked ~ .checkmark::after {
    opacity: 1;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list:has(.list-item.open) {
    padding-top: 8px;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item.open .list-top .value {
    display: none;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item:not(.open):has(.list-body .checkbox-wrap input:checked) .list-top .value span {
    display: none;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item:not(.open) .list-body .checkbox-wrap:has(input:checked) {
    display: flex;
    padding-left: 0px;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item:not(.open) .list-body .checkbox-wrap:has(input:checked):first-child {
    margin-top: 0px;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item:not(.open) .list-body .checkbox-wrap:has(input:checked) .checkmark,
  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item:not(.open) .list-body .checkbox-wrap:has(input:checked) .count {
    display: none;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap:has(.filters-list .list-item.open) .sorting-list,
  .filters-modal-wrap .filters-modal-content .content-wrap:has(.filters-list .list-item.open) .filters-list .list-item:not(.open) {
    display: none;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item.open {
    margin-top: 0px;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item.open::before {
    display: none;
  }

  .filters-modal-wrap:has(.filters-modal-content .content-wrap .filters-list .list-item.open) .filters-modal-top .top-wrap .title .filters-modal-close {
    display: none;
  }

  .filters-modal-wrap:has(.filters-modal-content .content-wrap .filters-list .list-item.open) .filters-modal-top .top-wrap .title .filters-modal-back {
    display: flex;
  }

  .filters-modal-wrap:has(.filters-modal-content .content-wrap .filters-list .list-item.open) .filters-modal-bottom .bottom-wrap .buttons .filters-modal-back {
    display: block;
  }

  .filters-modal-wrap .filters-modal-bottom {
    padding: 16px 0px;
    background-color: var(--footer-bg);
  }

  .filters-modal-wrap .filters-modal-bottom .bottom-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .filters-modal-wrap .filters-modal-bottom .bottom-wrap .search-title {
    font-size: 1em;
    line-height: 150%;
    font-weight: 400;
    color: var(--main-blue);
    margin-bottom: 12px;
  }

  .filters-modal-wrap .filters-modal-bottom .bottom-wrap .search-title b {
    font-weight: 400;
    color: var(--main-blue);
  }

  .filters-modal-wrap .filters-modal-bottom .bottom-wrap .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% + 12px);
    margin: 0px -6px;
  }

  .filters-modal-wrap .filters-modal-bottom .bottom-wrap .buttons .filters-modal-back {
    font-size: 1em;
    line-height: 100%;
    font-weight: 400;
    color: var(--main-red);
    background: var(--main-white);
    border: 1px solid var(--main-red);
    border-radius: 0px;
    padding: 10px 14px;
    text-decoration: none;
    text-align: center;
    width: 100%;
    margin: 0px 6px;
    display: none;
  }

  .filters-modal-wrap .filters-modal-bottom .bottom-wrap .buttons .filters-modal-close {
    font-size: 1em;
    line-height: 100%;
    font-weight: 400;
    color: var(--main-white);
    background: var(--main-green);
		border: 1px solid var(--main-green);
    border-radius: 0px;
    padding: 10px 14px;
    text-decoration: none;
    text-align: center;
    width: 100%;
    margin: 0px 6px;
  }
}

@media screen and (max-width: 767px) {
	section.archive-page-top .caption .caption-wrap {
		padding: 40px 0px;
	}

	section.archive-page-top.single-top .caption .caption-wrap {
		padding: 65px 0px;
	}

	section.archive-page-top.tour-top .caption .caption-wrap {
		padding: 40px 0px 105px;
	}

	section.archive-page-top.tour-top .caption-wrap .tag-wrap a.tag-link {
		font-size: 1em;
	}

	section.archive-page-top .caption .caption-wrap h1.main-h1 {
		font-size: 1.75em;
		margin-bottom: 12px;
	}

	section.archive-page-top.single-top .caption .caption-wrap h1.main-h1 {
		font-size: 1.5em;
	}

	section.archive-page-top .caption .caption-wrap p.text {
		font-size: 1em;
	}

	section.catalog {
		padding: 20px 0px 24px;
	}

	section.catalog .sorting-btns-wrap {
		margin-bottom: 20px;
	}

	section.catalog .sorting-btns-wrap .btn-filters-open {
		padding: 8px 14px;
		margin-right: auto;
	}

	section.catalog .sorting-btns-wrap .btn-filters-open::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 3px;
	}

	section.catalog .sorting-btns-wrap .btn-map {
		margin-right: 0px;
		padding: 10px 14px;
	}

	section.catalog .sorting-btns-wrap .sorting-wrapper {
		display: none;
	}

	section.catalog .sorting-btns-wrap .btn-share {
		display: none;
	}

	section.catalog .catalog-items-list .place-item:nth-child(1n + 2),
	.related-events .catalog-items-list .place-item:nth-child(1n + 2) {
		margin-top: 14px;
	}

	section.catalog .catalog-items-list .place-item .item-link .thumbnail .img-wrap {
		padding-top: 60%;
	}

	section.catalog .catalog-items-list .place-item .item-link .thumbnail .event-button .like-button, 
	section.catalog .catalog-items-list .event-item .item-link .thumbnail .event-button .like-button, 
	section.related-events .catalog-items-list .event-item .item-link .thumbnail .event-button .like-button, 
	section.blog .catalog-items-list .blog-item .item-link .thumbnail .event-button .like-button {
		width: 25px;
		min-width: 25px;
		height: 25px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption {
		padding: 10px 13px;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption span.uppertitle {
		font-size: 0.875em;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption p.h2 {
		font-size: 1em;
	}

	.filters-modal-wrap .filters-modal-content .content-wrap .filters-list {
		padding: 8px 0px;
	}

	section .pagination {
		margin-top: 20px;
	}
}

@media screen and (max-width: 575px) {
	section.archive-page-top .caption .caption-wrap {
		padding: 30px 0px;
	}

	section.archive-page-top.single-top .caption .caption-wrap {
		padding: 40px 0px;
	}

	section.archive-page-top.tour-top .caption .caption-wrap {
		padding: 30px 0px 55px;
	}

	section.archive-page-top.tour-top .caption-wrap .tag-wrap a.tag-link {
		font-size: 0.875em;
	}

	section.archive-page-top .caption .caption-wrap h1.main-h1 {
		font-size: 1.5em;
	}

	section.archive-page-top.single-top .caption .caption-wrap h1.main-h1 {
		font-size: 1.375em;
	}

	section.catalog .sorting-btns-wrap {
		margin-bottom: 16px;
	}

	section.catalog .sorting-btns-wrap .btn-filters-open {
		padding: 6px 12px;
	}

	section.catalog .sorting-btns-wrap .btn-map {
		padding: 8px 12px;
	}

	.view-toggle {
		display: none;
	}

	section.catalog .catalog-items-list .place-item .item-link, 
	.related-events .catalog-items-list .place-item .item-link {
		flex-direction: column;
	}

	section.catalog .catalog-items-list .place-item .item-link .thumbnail, 
	.related-events .catalog-items-list .place-item .item-link .thumbnail {
		width: 100%;
	}

	section.catalog .catalog-items-list .place-item .item-link .caption {
		width: 100%;
	}

	section .pagination {
		margin-top: 16px;
	}
}








































section.place-single {
	background-color: var(--main-bg);
	padding: 10px 0px 60px;
}

.breadcrumbs-wrap {
	display: flex;
	position: relative;
	z-index: 2;
	margin-bottom: 10px;
}

.breadcrumbs-wrap ul.breadcrumbs {
	display: flex;
	align-items: center;
	list-style: none;
	padding: 0;
	margin-bottom: 0;
}

.breadcrumbs-wrap ul.breadcrumbs li {
	display: flex;
	align-items: center;
}

.breadcrumbs-wrap ul.breadcrumbs li:not(:last-child) {
	padding-right: 16px;
	position: relative;
}

.breadcrumbs-wrap ul.breadcrumbs li a {
	font-size: 1em;
	font-weight: 400;
	line-height: 120%;
	color: #888888;
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--speed-slow);
}

@media screen and (min-width: 576px) {
	.breadcrumbs-wrap ul.breadcrumbs li a:hover {
		color: var(--main-green);
	}
}

.breadcrumbs-wrap ul.breadcrumbs li:not(:last-child)::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 5px;
	content: '/';
	font-size: 1em;
	font-weight: 400;
	line-height: 120%;
	color: #888888;
}

section.place-single .single-wrapper .thumbnail-slider {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-bottom: 16px;
	position: relative;
}

section.place-single .single-wrapper .thumbnail-slider .img-wrap {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.place-single .single-wrapper .thumbnail-slider .img-wrap a {
	position: relative;
	text-decoration: none;
	width: 100%;
	padding-top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0px;
	overflow: hidden;
}

section.place-single .single-wrapper .thumbnail-slider .img-wrap a img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.place-single .single-wrapper .thumbnail-slider .slick-arrow {
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	min-width: 30px;
	height: 30px;
	border-radius: 50%;
	background-size: 14px;
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--main-red);
	border: none;
	font-size: 0px;
	color: transparent;
	overflow: hidden;
}

@media screen and (min-width: 576px) {
	section.place-single .single-wrapper .thumbnail-slider .slick-arrow:hover {
		background-color: var(--main-yellow);
	}
}

section.place-single .single-wrapper .thumbnail-slider .slick-arrow.slick-prev {
	left: -10px;
	background-image: url(../img/arrow-left-white.svg);
}

section.place-single .single-wrapper .thumbnail-slider .slick-arrow.slick-next {
	right: -10px;
	background-image: url(../img/arrow-right-white.svg);
}

section.place-single .single-content {
	display: flex;
	flex-direction: column;
	margin-bottom: 32px;
}

section.place-single .single-content h1 {
	font-size: 2em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.place-single .single-content > .meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 16px;
	gap: 30px;
}

section.place-single .single-content > .meta span {
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-blue);
	display: flex;
	align-items: center;
}

section.place-single .single-content > .meta span.favorites::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url(../img/eye-star.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 6px;
}

section.place-single .single-content > .meta span.views::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url(../img/eye-stat.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 6px;
}

section.place-single .single-content > .meta span.shares::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url(../img/share-icon-gray.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 6px;
}

section.place-single .single-content .btns-wrap {
	display: flex;
	gap: 10px;
	margin-bottom: 16px;
}

section.place-single .single-content .event-button {
	display: flex;
	flex-wrap: wrap;
	margin-left: auto;
}

section.place-single .single-content .event-button .like-button {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875em;
	line-height: 100%;
	font-weight: 400;
	border: 1px solid var(--main-red);
	color: var(--main-red);
	background-color: var(--main-white);
	border-radius: 0px;
	padding: 6px 12px;
	cursor: pointer;
}

section.place-single .single-content .event-button .like-button::before {
	content: '';
	width: 22px;
	min-width: 22px;
	height: 22px;
	background-image: url(../img/heart-icon-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	-webkit-mask-image: url(../img/heart-icon-red-full.svg);
	mask-image: url(../img/heart-icon-red-full.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	margin-right: 6px;
}

section.place-single .single-content .event-button .like-button.in-wishlist::before {
	background-color: var(--main-red);
}

section.place-single .single-content .btn-direction {
	border: 1px solid var(--main-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-blue);
	background-color: var(--main-white);
	border-radius: 0px;
	padding: 6px 12px;
	text-decoration: none;
}

section.place-single .single-content .btn-direction::before {
	content: '';
	width: 22px;
	min-width: 22px;
	height: 22px;
	background-image: url(../img/directional-gray.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 6px;
}

section.place-single .single-content .btn-share {
	border: 1px solid var(--main-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-blue);
	background-color: var(--main-white);
	border-radius: 0px;
	padding: 6px 12px;
	text-decoration: none;
}

section.place-single .single-content .btn-share::before {
	content: '';
	width: 22px;
	min-width: 22px;
	height: 22px;
	background-image: url(../img/share-icon-blue.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 6px;
}

section.place-single .single-content .page-content {
	margin-bottom: 32px;
}

section.place-single .single-content .single-gallery {
	margin-bottom: 32px;
}

section.place-single .single-content .single-gallery h2 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.place-single .single-content .single-gallery .img-box {
	width: 100%;
	position: relative;
}

section.place-single .single-content .single-gallery .img-box .slick-arrow {
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	min-width: 30px;
	height: 30px;
	border-radius: 50%;
	background-size: 14px;
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--main-red);
	border: none;
	font-size: 0px;
	color: transparent;
	overflow: hidden;
}

@media screen and (min-width: 576px) {
	section.place-single .single-content .single-gallery .img-box .slick-arrow:hover {
		background-color: var(--main-yellow);
	}
}

section.place-single .single-content .single-gallery .img-box .slick-arrow.slick-prev {
	left: -10px;
	background-image: url(../img/arrow-left-white.svg);
}

section.place-single .single-content .single-gallery .img-box .slick-arrow.slick-next {
	right: -10px;
	background-image: url(../img/arrow-right-white.svg);
}

section.place-single .single-content .location-wrap {
	display: flex;
	flex-direction: column;
	margin-bottom: 16px;
}

section.place-single .single-content .location-wrap .box-wrap {
	display: flex;
	background-color: #eaf6f9;
	border-radius: 0px;
	padding: 20px;
}

section.place-single .single-content .location-wrap .box-wrap .caption {
	width: 100%;
	padding: 0px;
	display: grid;
  grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

/* section.place-single .single-content .location-wrap .box-wrap .caption > a {
	width: calc((100% - 16px) / 2);
} */

section.place-single .single-content .location-wrap .box-wrap .caption a,
section.place-single .single-content .location-wrap .box-wrap .caption span {
	display: flex;
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-blue);
	text-decoration: none;
	word-break: break-word;
}

section.place-single .single-content .location-wrap .box-wrap .caption a.place::before {
	content: '';
	width: 26px;
	min-width: 26px;
	height: 26px;
	background-image: url(../img/nav-gray.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	margin-right: 8px;
}

section.place-single .single-content .location-wrap .box-wrap .caption a.site::before {
	content: '';
	width: 26px;
	min-width: 26px;
	height: 26px;
	background-image: url(../img/web-gray.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	margin-right: 8px;
}

section.place-single .single-content .location-wrap .box-wrap .caption a.phone::before {
	content: '';
	width: 26px;
	min-width: 26px;
	height: 26px;
	background-image: url(../img/tel-gray.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	margin-right: 8px;
}

section.place-single .single-content .location-wrap .box-wrap .caption a.email::before {
	content: '';
	width: 26px;
	min-width: 26px;
	height: 26px;
	background-image: url(../img/email-gray.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 80% 80%;
	margin-right: 8px;
}

section.comments {
	padding: 40px 0px;
	background-color: #eaf6f9;
}

section .comments-wrap {
  display: flex;
  flex-direction: column;
	margin-bottom: 32px;
}

section .comments-wrap:last-child {
	margin-bottom: 0px;
}

section .comments-wrap h2 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section .comments-wrap .comments-add {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

section .comments-wrap .comments-add .comments-user {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

section .comments-wrap .comments-add .comments-user .image-wrap {
  width: 44px;
	min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 16px;
	border: 2px solid var(--main-green);
}

section .comments-wrap .comments-add .comments-user .image-wrap .avatar-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--main-white);
	border-radius: 100%;
	font-size: 1.125em;
	color: var(--main-black);
}

section .comments-wrap .comments-add .comments-user .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section .comments-wrap .comments-add .comments-user span.name {
  font-size: 1.125em;
  line-height: 120%;
  font-weight: 700;
  color: var(--main-black);
  margin: 0px;
}

section .comments-wrap form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

section .comments-wrap form .form-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
}

section .comments-wrap form .form-item:last-child {
  margin-bottom: 0px;
}

section .comments-wrap form .form-item input,
section .comments-wrap form .form-item textarea {
  width: 100%;
  outline: none;
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--main-black);
  padding: 16px;
  background-color: var(--main-white);
	border: none;
	border: 1px solid #e2e2e2;
	border-radius: 0px;
  resize: none;
}

section .comments-wrap form .form-item input::placeholder,
section .comments-wrap form .form-item textarea::placeholder {
  color: var(--main-black);
}

section .comments-wrap form .form-item button {
	margin-right: auto;
  font-size: 1.125em;
  line-height: 100%;
  font-weight: 400;
  color: var(--main-white);
  background-color: var(--main-red);
  border: 1px solid  var(--main-red);
  display: flex;
  align-items: center;
  justify-content: center;
	border-radius: 0px;
	text-transform: uppercase;
  padding: 15px 30px 12px;
}

section .comments-wrap .comments-sorting {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  align-self: flex-start;
  margin-bottom: 16px;
}

section .comments-wrap .comments-sorting .sorting-btn {
  display: flex;
  align-items: center;
  font-size: 1.125em;
  line-height: 100%;
  font-weight: 400;
  color: var(--main-black);
  text-decoration: none;
}

section .comments-wrap .comments-sorting .sorting-btn::before {
  content: '';
  width: 20px;
	min-width: 20px;
  height: 20px;
  background-image: url(../img/sorting-icon-black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 10px;
}

section .comments-wrap .comments-sorting .sorting-options {
  position: absolute;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: var(--speed-fast);
  background-color: var(--main-white);
  left: 0px;
  top: calc(100% + 10px);
  border: 1px solid var(--main-dark);
  list-style: none;
  padding: 15px;
  margin: 0px;
	border-radius: 0px;
}

section .comments-wrap .comments-sorting.show .sorting-options {
  opacity: 1;
  user-select: auto;
  pointer-events: all;
}

section .comments-wrap .comments-sorting .sorting-options li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

section .comments-wrap .comments-sorting .sorting-options li:last-child {
  margin-bottom: 0px;
}

section .comments-wrap .comments-sorting .sorting-options li a {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--main-black);
  text-decoration: none;
	white-space: nowrap;
}

section .comments-wrap .comments-sorting .sorting-options li a span {
  position: relative;
}

section .comments-wrap .comments-sorting .sorting-options li a span::before {
  content: '';
  position: absolute;
  left: 0px;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background-color: var(--main-black);
  opacity: 0;
  transition: var(--speed-fast);
}

@media screen and (min-width: 576px) {
  section .comments-wrap .comments-sorting .sorting-options li a.active span::before,
  section .comments-wrap .comments-sorting .sorting-options li a:hover span::before {
    opacity: 1;
  }
}

section .comments-wrap .comments-list {
  display: flex;
  flex-direction: column;
}

section .comments-wrap .comments-list .list-item {
  display: flex;
  flex-direction: column;
}

section .comments-wrap .comments-list .list-item:not(:first-child) {
  margin-top: 20px;
}

section .comments-wrap .comments-list .list-item .item-wrap {
  background-color: #eaf6f9;
  padding: 16px;
  display: flex;
  flex-direction: column;
	border-radius: 0px;
}

section .comments-wrap .comments-list .list-item .item-wrap .user {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

section .comments-wrap .comments-list .list-item .item-wrap .user .img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
	min-width: 44px;
  height: 44px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 16px;
	border: 2px solid var(--main-green);
}

section .comments-wrap .comments-list .list-item .item-wrap .user .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section .comments-wrap .comments-list .list-item .item-wrap .user .img-wrap .avatar-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--main-white);
	border-radius: 100%;
	font-size: 1.125em;
	color: var(--main-black);
}

section .comments-wrap .comments-list .list-item .item-wrap .user span.name {
  font-size: 1.25em;
  line-height: 120%;
  font-weight: 700;
  color: var(--main-black);
  margin: 0px;
}

section .comments-wrap .comments-list .list-item .item-wrap .caption {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

section .comments-wrap .comments-list .list-item .item-wrap .caption p {
  font-size: 1.125em;
  line-height: 150%;
  font-weight: 400;
  color: var(--main-blue);
  margin: 0px;
}

section .comments-wrap .comments-list .list-item .item-wrap .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn {
	padding: 6px 12px;
	background-color: var(--main-red);
  font-size: 1.125em;
  line-height: 100%;
  font-weight: 400;
  color: var(--main-white);
  text-decoration: none;
  margin-right: 50px;
}

section .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn span {
  position: relative;
}

section .comments-wrap .comments-list .list-item .item-wrap .meta .vote {
  display: flex;
  align-items: center;
}

section .comments-wrap .comments-list .list-item .item-wrap .meta .vote .vote-item {
  display: flex;
  align-items: center;
  margin: 0px 10px;
}

section .comments-wrap .comments-list .list-item .item-wrap .meta .vote .vote-item a.vote-btn {
  width: 18px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0px;
  line-height: 100%;
  font-weight: 400;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

section .comments-wrap .comments-list .list-item .item-wrap .meta .vote .vote-item a.vote-btn.like-btn {
  background-image: url(../img/like-icon-black.svg);
}

section .comments-wrap .comments-list .list-item .item-wrap .meta .vote .vote-item a.vote-btn.dislike-btn {
  background-image: url(../img/dislike-icon-black.svg);
}

section .comments-wrap .comments-list .list-item .item-wrap .meta .vote .vote-item span.count {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--main-dark);
  margin-left: 6px;
}

section .comments-wrap .comments-list .list-item .item-wrap .meta .date {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--main-dark);
  margin-left: auto;
}

section .comments-wrap .comments-list .list-item .reply-wrap {
  display: flex;
  flex-direction: column;
  margin: 0px 0px 0px 32px;
}

section .comments-wrap .comments-list .list-item .reply-wrap .reply-comments {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 16px;
}

section .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list-btn {
  display: flex;
  align-items: center;
  font-size: 1.125em;
  line-height: 100%;
  font-weight: 400;
  color: var(--main-blue);
  text-decoration: none;
}

section .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list-btn .hide {
  display: none;
}

section .comments-wrap .comments-list .list-item .reply-wrap.open-comments .reply-comments .reply-list-btn .show {
  display: none;
}

section .comments-wrap .comments-list .list-item .reply-wrap.open-comments .reply-comments .reply-list-btn .hide {
  display: flex;
}

section .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list-btn::after {
  content: '';
  width: 24px;
  min-width: 24px;
  height: 19px;
  margin-left: 8px;
  position: relative;
  background-image: url(../img/filters-arrow-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* transition: var(--speed-fast); */
}

section .comments-wrap .comments-list .list-item .reply-wrap.open-comments .reply-comments .reply-list-btn::after {
  transform: rotate(-180deg);
}

section .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list {
  overflow: hidden;
  height: 100%;
  max-height: 0;
  -webkit-transition: all var(--speed-fast) ease-in-out;
  transition: all var(--speed-fast) ease-in-out;
}

section .comments-wrap .comments-list .list-item .reply-wrap.open-comments .reply-comments .reply-list {
  max-height: none;
}

section .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list .list-item {
  margin-top: 16px;
}

section .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list .list-item .item-wrap {
  background-color: #eaf6f9;
}

section .comments-wrap .comments-list .list-item .reply-wrap form {
  margin-top: 16px;
  display: none;
}

section .comments-wrap .comments-list .list-item.comments-item.open-form .reply-wrap form {
  display: flex;
}

section .comments-wrap .comments-list .list-item .reply-wrap .reply-comments:not(:has(.reply-list .reply-item)) {
  display: none;
}

section .comments-wrap > *:last-child {
	margin-bottom: 0px;
}

section.place-single .events-wrap {
	display: flex;
	flex-direction: column;
}

section.place-single .events-wrap .title-wrap {
	background-color: #336983;
	padding: 10px 40px;
	margin-bottom: 16px;
}

section.place-single .events-wrap .title-wrap h2 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-white);
	margin: 0px;
}

section.place-single .events-wrap .events-list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

section.place-single .events-wrap .events-list .event-item {
	width: calc((100% - 15px) / 2);
	display: flex;
	flex-direction: column;
}

section.place-single .events-wrap .events-list .event-item .item-link {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	border: 1px solid #deeef3;
	position: relative;
	height: 100%;
}

section.place-single .events-wrap .events-list .event-item .item-link::after {
	content: '';
	position: absolute;
	left: -5px;
	top: -5px;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	border-radius: 0px;
	border: 5px solid var(--main-yellow);
	opacity: 0;
	transition: var(--speed-fast);
	user-select: none;
	pointer-events: none;
}

@media screen and (min-width: 576px) {
	section.place-single .events-wrap .events-list .event-item .item-link:hover::after {
		opacity: 1;
	}
}

section.place-single .events-wrap .events-list .event-item .item-link .thumbnail {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

section.place-single .events-wrap .events-list .event-item .item-link .thumbnail .img-wrap {
	position: relative;
	width: 100%;
	padding-top: 60%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.place-single .events-wrap .events-list .event-item .item-link .thumbnail .img-wrap::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 50px;
	transition: all ease .3s;
	opacity: 0;
	background-color: #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-image: url(../img/thumbnail-icon.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 40px;
	z-index: 3;
}

@media screen and (min-width: 576px) {
	section.place-single .events-wrap .events-list .event-item .item-link:hover .thumbnail .img-wrap::after {
		transform: translate(-50%, -50%);
		opacity: 1;
		width: 70px;
		height: 70px;
	}
}

section.place-single .events-wrap .events-list .event-item .item-link .thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.place-single .events-wrap .events-list .event-item .item-link .caption {
	padding: 10px 15px;
	display: flex;
	flex-direction: column;
	width: 100%;
}

section.place-single .events-wrap .events-list .event-item .item-link .caption span.uppertitle {
	font-size: 1em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.place-single .events-wrap .events-list .event-item .item-link .caption p.h2 {
	font-size: 1.25em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.place-single .events-wrap .events-list .event-item .item-link .caption span.place {
	font-size: 1em;
	line-height: 150%;
	font-weight: 500;
	color: var(--main-green);
	margin-top: auto;
	margin-bottom: 0px;
	display: flex;
	align-items: center;
}

section.place-single .events-wrap .events-list .event-item .item-link .caption span.place::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url(../img/pin-icon-green.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	margin-right: 8px;
}

section.place-single .events-wrap .events-list .event-item .item-link .caption span.place span {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	width: 100%;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

section.place-single .new-posts-wrap {
	position: sticky;
	top: 100px;
	padding: 20px 30px;
	border: none;
	background-color: var(--main-white);
}

section.place-single .new-posts-wrap h2 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
	border: none;
	padding: 0px;
	margin-bottom: 16px;
	color: var(--main-blue);
}

section.place-single .new-posts-wrap ul {
	padding: 0px;
	margin: 0px;
	list-style: none;
	display: flex;
	flex-direction: column;
}

section.place-single .new-posts-wrap ul li {
	border-top: 1px solid #f0f0f0;
	background-color: var(--main-white);
	padding: 10px 0px;
	margin: 0px;
	font-size: 1em;
	position: relative;
	display: flex;
	flex-direction: column;
}

section.place-single .new-posts-wrap ul li:first-child {
	border-top: none;
	padding-top: 0px;
}

section.place-single .new-posts-wrap ul li a {
	display: flex;
	text-decoration: none;
}

section.place-single .new-posts-wrap ul li a .thumbnail {
	display: flex;
	flex-direction: column;
	width: 70px;
	min-width: 70px;
	height: 70px;
	border-radius: 100%;
	overflow: auto;
	margin-right: 15px;
	position: relative;
}

section.place-single .new-posts-wrap ul li a .thumbnail .img-wrap {
	display: flex;
	width: 100%;
	height: 100%;
}

section.place-single .new-posts-wrap ul li a .thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.place-single .new-posts-wrap ul li a .caption {
	display: flex;
	flex-direction: column;
}

section.place-single .new-posts-wrap ul li a .caption p.h2 {
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 400;
	color: #0c4c6b;
	white-space: normal;
	overflow: hidden;
	display: block;
	-webkit-line-clamp: 2;
	display: box;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	white-space: normal;
	margin-bottom: 10px;
}

@media screen and (min-width: 576px) {
	section.place-single .new-posts-wrap ul li a:hover .caption p.h2 {
		text-decoration: underline;
	}
}

section.place-single .new-posts-wrap ul li a .caption span.date {
	font-size: 0.875em;
	line-height: 120%;
	font-weight: 400;
	color: #bbbbbb;
	margin-top: 0px;
}

@media screen and (max-width: 1299px) {
	section.place-single {
		padding: 8px 0px 52px;
	}

	.breadcrumbs-wrap {
		margin-bottom: 8px;
	}

	section.place-single .single-wrapper .thumbnail-slider {
		margin-bottom: 14px;
	}

	section.place-single .single-content {
		margin-bottom: 28px;
	}

	section.place-single .single-content h1 {
		font-size: 1.75em;
	}

	section.place-single .single-content > .meta {
		margin-bottom: 14px;
		gap: 28px;
	}

	section.place-single .single-content > .meta span.favorites::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 4px;
	}

	section.place-single .single-content > .meta span.views::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 4px;
	}

	section.place-single .single-content > .meta span.shares::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 4px;
	}

	section.place-single .single-content .btns-wrap {
		gap: 8px;
		margin-bottom: 14px;
	}

	section.place-single .single-content .event-button .like-button {
		padding: 4px 10px;
	}

	section.place-single .single-content .event-button .like-button::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
		margin-right: 4px;
	}

	section.place-single .single-content .btn-direction {
		padding: 4px 10px;
	}

	section.place-single .single-content .btn-direction::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
		margin-right: 4px;
	}

	section.place-single .single-content .btn-share {
		padding: 4px 10px;
	}

	section.place-single .single-content .btn-share::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
		margin-right: 4px;
	}

	section.place-single .single-content .page-content {
		margin-bottom: 28px;
	}

	section.place-single .single-content .single-gallery h2 {
		font-size: 1.375em;
	}

	section.place-single .single-content .location-wrap {
		margin-bottom: 14px;
	}

	section.place-single .single-content .location-wrap .box-wrap {
		padding: 18px;
	}

	section.place-single .single-content .location-wrap .box-wrap .caption {
		gap: 14px;
	}

	section.place-single .single-content .location-wrap .box-wrap .caption a.place::before {
		width: 24px;
		min-width: 24px;
		height: 24px;
		margin-right: 6px;
	}

	section.place-single .single-content .location-wrap .box-wrap .caption a.site::before {
		width: 24px;
		min-width: 24px;
		height: 24px;
		margin-right: 6px;
	}

	section.place-single .single-content .location-wrap .box-wrap .caption a.phone::before {
		width: 24px;
		min-width: 24px;
		height: 24px;
		margin-right: 6px;
	}

	section.place-single .single-content .location-wrap .box-wrap .caption a.email::before {
		width: 24px;
		min-width: 24px;
		height: 24px;
		margin-right: 6px;
	}

	section .comments-wrap {
		margin-bottom: 28px;
	}

	section .comments-wrap h2 {
		font-size: 1.375em;
	}

	section .comments-wrap .comments-add {
		margin-bottom: 28px;
	}

	section .comments-wrap .comments-add .comments-user .image-wrap {
		width: 40px;
		min-width: 40px;
		height: 40px;
		margin-right: 14px;
	}

	section .comments-wrap .comments-add .comments-user span.name {
		font-size: 1em;
	}

	section .comments-wrap form .form-item input,
	section .comments-wrap form .form-item textarea {
		padding: 14px;
		border-radius: 0px;
	}

	section .comments-wrap form .form-item button {
		font-size: 1em;
		padding: 13px 25px 10px;
	}

	section .comments-wrap .comments-sorting .sorting-btn {
		font-size: 1em;
	}

	section .comments-wrap .comments-sorting .sorting-btn::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 8px;
	}

	section .comments-wrap .comments-sorting .sorting-options {
		padding: 12px;
		border-radius: 0px;
	}

	section .comments-wrap .comments-sorting .sorting-options li {
		margin-bottom: 12px;
	}

	section .comments-wrap .comments-list .list-item:not(:first-child) {
		margin-top: 28px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap {
		padding: 14px;
		border-radius: 0px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .user .img-wrap {
		width: 40px;
		min-width: 40px;
		height: 40px;
		margin-right: 14px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .user span.name {
		font-size: 1.125em;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .caption p {
		font-size: 1em;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn {
		font-size: 1em;
		margin-right: 42px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .meta .vote .vote-item a.vote-btn {
		width: 16px;
		height: 17px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .meta .vote .vote-item span.count {
		margin-left: 4px;
	}

	section .comments-wrap .comments-list .list-item .reply-wrap {
		margin: 0px 0px 0px 28px;
	}

	section .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list-btn {
		font-size: 1em;
	}

	section .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list-btn::after {
		width: 22px;
		min-width: 22px;
	}

	section .comments-wrap > *:last-child {
		margin-bottom: 0px;
	}

	section.place-single .events-wrap .title-wrap {
		padding: 8px 32px;
		margin-bottom: 14px;
	}

	section.place-single .events-wrap .title-wrap h2 {
		font-size: 1.375em;
	}

	section.place-single .events-wrap .events-list {
		gap: 14px;
	}

	section.place-single .events-wrap .events-list .event-item {
		width: calc((100% - 14px) / 2);
	}

	section.place-single .events-wrap .events-list .event-item .item-link .thumbnail .img-wrap::after {
		width: 40px;
		height: 40px;
		background-size: 35px;
	}

	@media screen and (min-width: 576px) {
		section.place-single .events-wrap .events-list .event-item .item-link:hover .thumbnail .img-wrap::after {
			width: 60px;
			height: 60px;
		}
	}

	section.place-single .events-wrap .events-list .event-item .item-link .caption {
		padding: 8px 13px;
	}

	section.place-single .events-wrap .events-list .event-item .item-link .caption span.uppertitle {
		margin-bottom: 14px;
	}

	section.place-single .events-wrap .events-list .event-item .item-link .caption p.h2 {
		font-size: 1.125em;
		margin-bottom: 14px;
	}

	section.place-single .events-wrap .events-list .event-item .item-link .caption span.place {
		font-size: 0.875em;
	}

	section.place-single .events-wrap .events-list .event-item .item-link .caption span.place::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 6px;
	}

	section.place-single .new-posts-wrap {
		top: 90px;
		padding: 18px 26px;
	}

	section.place-single .new-posts-wrap h2 {
		font-size: 1.375em;
		margin-bottom: 14px;
	}

	section.place-single .new-posts-wrap ul li {
		padding: 8px 0px;
	}

	section.place-single .new-posts-wrap ul li a .thumbnail {
		width: 60px;
		min-width: 60px;
		height: 60px;
		margin-right: 13px;
	}

	section.place-single .new-posts-wrap ul li a .caption p.h2 {
		font-size: 1em;
		margin-bottom: 8px;
	}
}

@media screen and (max-width: 1199px) {
	section.place-single {
		padding: 8px 0px 42px;
	}

	.breadcrumbs-wrap {
		margin-bottom: 8px;
	}

	section.place-single .single-content {
		margin-bottom: 24px;
	}

	section.place-single .single-content h1 {
		font-size: 1.625em;
	}

	section.place-single .single-content > .meta {
		margin-bottom: 12px;
		gap: 24px;
	}

	section.place-single .single-content > .meta span.favorites::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 3px;
	}

	section.place-single .single-content > .meta span.views::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 3px;
	}

	section.place-single .single-content > .meta span.shares::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 3px;
	}

	section.place-single .single-content .page-content {
		margin-bottom: 24px;
	}

	section.place-single .single-content .single-gallery h2 {
		font-size: 1.25em;
	}

	section.place-single .single-content .location-wrap .box-wrap {
		padding: 16px;
	}

	section.place-single .single-content .location-wrap .box-wrap .caption a.place::before {
		width: 22px;
		min-width: 22px;
		height: 22px;
		margin-right: 4px;
	}

	section.place-single .single-content .location-wrap .box-wrap .caption a.site::before {
		width: 22px;
		min-width: 22px;
		height: 22px;
		margin-right: 4px;
	}

	section.place-single .single-content .location-wrap .box-wrap .caption a.phone::before {
		width: 22px;
		min-width: 22px;
		height: 22px;
		margin-right: 4px;
	}

	section.place-single .single-content .location-wrap .box-wrap .caption a.email::before {
		width: 22px;
		min-width: 22px;
		height: 22px;
		margin-right: 4px;
	}

	section .comments-wrap {
		margin-bottom: 24px;
	}

	section .comments-wrap h2 {
		font-size: 1.25em;
	}

	section .comments-wrap .comments-add {
		margin-bottom: 24px;
	}

	section .comments-wrap .comments-add .comments-user .image-wrap {
		width: 36px;
		min-width: 36px;
		height: 36px;
		margin-right: 12px;
	}

	section .comments-wrap form .form-item input,
	section .comments-wrap form .form-item textarea {
		padding: 12px;
		border-radius: 0px;
	}

	section .comments-wrap form .form-item button {
		font-size: 0.875em;
		padding: 11px 20px 8px;
	}

	section .comments-wrap .comments-sorting .sorting-btn {
		font-size: 1em;
	}

	section .comments-wrap .comments-sorting .sorting-btn::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 6px;
	}

	section .comments-wrap .comments-sorting .sorting-options {
		padding: 10px;
		border-radius: 0px;
	}

	section .comments-wrap .comments-sorting .sorting-options li {
		margin-bottom: 10px;
	}

	section .comments-wrap .comments-list .list-item:not(:first-child) {
		margin-top: 24px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap {
		padding: 12px;
		border-radius: 0px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .user .img-wrap {
		width: 36px;
		min-width: 36px;
		height: 36px;
		margin-right: 12px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .user span.name {
		font-size: 1em;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn {
		margin-right: 32px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .meta .vote .vote-item a.vote-btn {
		width: 15px;
		height: 16px;
	}

	section .comments-wrap .comments-list .list-item .reply-wrap {
		margin: 0px 0px 0px 24px;
	}

	section .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list-btn {
		font-size: 1em;
	}

	section .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list-btn::after {
		width: 20px;
		min-width: 20px;
		height: 17px;
	}

	section .comments-wrap > *:last-child {
		margin-bottom: 0px;
	}

	section.place-single .events-wrap .title-wrap {
		padding: 8px 26px;
	}

	section.place-single .events-wrap .title-wrap h2 {
		font-size: 1.25em;
	}

	section.place-single .events-wrap .events-list .event-item .item-link .thumbnail .img-wrap::after {
		width: 34px;
		height: 34px;
		background-size: 28px;
	}

	@media screen and (min-width: 576px) {
		section.place-single .events-wrap .events-list .event-item .item-link:hover .thumbnail .img-wrap::after {
			width: 50px;
			height: 50px;
		}
	}

	section.place-single .events-wrap .events-list .event-item .item-link .caption span.uppertitle {
		margin-bottom: 12px;
	}

	section.place-single .events-wrap .events-list .event-item .item-link .caption p.h2 {
		margin-bottom: 12px;
	}

	section.place-single .events-wrap .events-list .event-item .item-link .caption span.place::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 4px;
	}

	section.place-single .new-posts-wrap {
		padding: 16px;
	}

	section.place-single .new-posts-wrap h2 {
		font-size: 1.25em;
	}

	section.place-single .new-posts-wrap ul li a .thumbnail {
		width: 50px;
		min-width: 50px;
		height: 50px;
		margin-right: 12px;
	}
}

@media screen and (max-width: 991px) {
	section.place-single {
		padding: 8px 0px 32px;
	}

	.breadcrumbs-wrap {
		margin-bottom: 8px;
	}

	section.place-single .single-content {
		margin-bottom: 22px;
	}

	section.place-single .single-content h1 {
		font-size: 1.5em;
	}

	section.place-single .single-content > .meta {
		gap: 20px;
	}

	section.place-single .single-content > .meta span.favorites::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 2px;
	}

	section.place-single .single-content > .meta span.views::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 2px;
	}

	section.place-single .single-content > .meta span.shares::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 2px;
	}

	section.place-single .single-content .page-content {
		margin-bottom: 22px;
	}

	section.place-single .single-content .single-gallery h2 {
		font-size: 1.125em;
	}

	section.place-single .single-content .location-wrap .box-wrap {
		padding: 14px;
	}

	section.place-single .single-content .location-wrap .box-wrap .caption {
		gap: 12px;
	}

	section.place-single .single-content .location-wrap .box-wrap .caption a.place::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
	}

	section.place-single .single-content .location-wrap .box-wrap .caption a.site::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
	}

	section.place-single .single-content .location-wrap .box-wrap .caption a.phone::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
	}

	section.place-single .single-content .location-wrap .box-wrap .caption a.email::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
	}

	section .comments-wrap {
		margin-bottom: 22px;
	}

	section .comments-wrap h2 {
		font-size: 1.125em;
	}

	section .comments-wrap .comments-add {
		margin-bottom: 22px;
	}

	section .comments-wrap .comments-add .comments-user .image-wrap {
		width: 34px;
		min-width: 34px;
		height: 34px;
		margin-right: 10px;
		border-width: 1px;
	}

	section .comments-wrap form .form-item input,
	section .comments-wrap form .form-item textarea {
		padding: 10px;
		border-radius: 0px;
	}

	section .comments-wrap form .form-item button {
		padding: 11px 20px 8px;
	}

	section .comments-wrap .comments-sorting .sorting-btn::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 4px;
	}

	section .comments-wrap .comments-sorting .sorting-options {
		padding: 8px;
		border-radius: 0px;
	}

	section .comments-wrap .comments-sorting .sorting-options li {
		margin-bottom: 8px;
	}

	section .comments-wrap .comments-list .list-item:not(:first-child) {
		margin-top: 22px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap {
		padding: 10px;
		border-radius: 0px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .user .img-wrap {
		width: 34px;
		min-width: 34px;
		height: 34px;
		margin-right: 10px;
		border-width: 1px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn {
		margin-right: 24px;
	}

	section .comments-wrap .comments-list .list-item .reply-wrap {
		margin: 0px 0px 0px 22px;
	}

	section .comments-wrap > *:last-child {
		margin-bottom: 0px;
	}

	section.place-single .events-wrap .title-wrap {
		padding: 6px 22px;
	}

	section.place-single .events-wrap .title-wrap h2 {
		font-size: 1.125em;
	}

	section.place-single .events-wrap .events-list .event-item .item-link .thumbnail .img-wrap::after {
		width: 30px;
		height: 30px;
		background-size: 24px;
	}

	@media screen and (min-width: 576px) {
		section.place-single .events-wrap .events-list .event-item .item-link:hover .thumbnail .img-wrap::after {
			width: 40px;
			height: 40px;
		}
	}

	section.place-single .events-wrap .events-list .event-item .item-link .caption span.uppertitle {
		margin-bottom: 10px;
	}

	section.place-single .events-wrap .events-list .event-item .item-link .caption p.h2 {
		margin-bottom: 10px;
	}

	section.place-single .events-wrap .events-list .event-item .item-link .caption span.place::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 3px;
	}

	section.place-single .new-posts-wrap {
		padding: 14px;
		margin-top: 22px;
	}

	section.place-single .new-posts-wrap h2 {
		font-size: 1.125em;
	}

	section.place-single .new-posts-wrap ul li a .thumbnail {
		width: 45px;
		min-width: 45px;
		height: 45px;
		margin-right: 10px;
	}
}

@media screen and (max-width: 767px) {
	section.place-single {
		padding: 8px 0px 24px;
	}

	.breadcrumbs-wrap {
		margin-bottom: 8px;
	}

	.breadcrumbs-wrap ul.breadcrumbs li a {
		font-size: 0.875em;
	}

	.breadcrumbs-wrap ul.breadcrumbs li:not(:last-child)::after {
		font-size: 0.875em;
	}

	section.place-single .single-content {
		margin-bottom: 20px;
	}

	section.place-single .single-content h1 {
		font-size: 1.375em;
		margin-bottom: 14px;
	}

	section.place-single .single-content > .meta {
		gap: 18px;
	}

	section.place-single .single-content .page-content {
		margin-bottom: 20px;
	}

	section.place-single .single-content .location-wrap .box-wrap {
		padding: 14px 12px;
	}

	section.place-single .single-content .location-wrap .box-wrap .caption {
		grid-template-columns: repeat(1, 1fr);
		gap: 8px;
	}

	section.place-single .single-content .location-wrap .box-wrap .caption a, 
	section.place-single .single-content .location-wrap .box-wrap .caption span {
		font-size: 0.875em;
	}

	section .comments-wrap {
		margin-bottom: 20px;
	}

	section .comments-wrap .comments-add {
		margin-bottom: 20px;
	}

	section .comments-wrap form .form-item input,
	section .comments-wrap form .form-item textarea {
		border-radius: 0px;
	}

	section .comments-wrap form .form-item button {
		padding: 10px 18px 7px;
	}

	section .comments-wrap .comments-list .list-item:not(:first-child) {
		margin-top: 20px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap {
		border-radius: 0px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn {
		margin-right: 20px;
	}

	section .comments-wrap .comments-list .list-item .reply-wrap {
		margin: 0px 0px 0px 20px;
	}

	section .comments-wrap > *:last-child {
		margin-bottom: 0px;
	}

	section.place-single .events-wrap .title-wrap {
		padding: 6px 16px;
	}

	section.place-single .events-wrap .events-list .event-item .item-link .caption span.uppertitle {
		font-size: 0.875em;
	}

	section.place-single .events-wrap .events-list .event-item .item-link .caption p.h2 {
		font-size: 1em;
	}

	section.place-single .new-posts-wrap {
		padding: 14px 12px;
		margin-top: 20px;
	}

	section.place-single .new-posts-wrap ul li a .thumbnail {
		width: 40px;
		min-width: 40px;
		height: 40px;
		margin-right: 8px;
	}
}

@media screen and (max-width: 575px) {
	.breadcrumbs-wrap {
		margin-bottom: 8px;
		margin-left: -15px;
		margin-right: -15px;
	}

	.breadcrumbs-wrap ul.breadcrumbs {
		overflow-x: auto;
		padding: 0px 15px;
	}

	.breadcrumbs-wrap ul.breadcrumbs::-webkit-scrollbar {
		height: 0px;
		width: 0px;
	}

	section.place-single .single-content h1 {
		font-size: 1.25em;
	}

	section.place-single .single-content > .meta {
		gap: 16px;
	}

	section.place-single .single-content > .meta span {
		font-size: 0.875em;
	}

	section.place-single .single-content .location-wrap .box-wrap {
		padding: 12px 10px;
	}

	section .comments-wrap .comments-add .comments-user {
		margin-bottom: 12px;
	}

	section .comments-wrap form .form-item {
		margin-bottom: 12px;
	}

	section .comments-wrap form .form-item input,
	section .comments-wrap form .form-item textarea {
		border-radius: 0px;
	}

	section .comments-wrap form .form-item button {
		width: 100%;
	}

	section .comments-wrap .comments-list .list-item .item-wrap {
		border-radius: 0px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .user {
		margin-bottom: 14px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .caption {
		margin-bottom: 14px;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .caption p {
		font-size: 0.875em;
	}

	section .comments-wrap .comments-list .list-item .item-wrap .meta {
    flex-wrap: wrap;
  }

  section .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn {
    order: 2;
		font-size: 0.875em;
    margin-top: 12px;
		margin-right: 0px;
  }

  section .comments-wrap .comments-list .list-item .item-wrap .meta .vote {
    margin-left: -10px;
    width: 50%;
  }

  section .comments-wrap .comments-list .list-item .item-wrap .meta .date {
    width: 50%;
    text-align: right;
		font-size: 0.875em;
  }

	section .comments-wrap .comments-list .list-item .reply-wrap {
		margin: 0px 0px 0px 16px;
	}

	section .comments-wrap .comments-list .list-item .reply-wrap .reply-comments {
		margin-top: 12px;
	}

	section .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list .list-item {
		margin-top: 12px;
	}

	section .comments-wrap .comments-list .list-item .reply-wrap form {
		margin-top: 12px;
	}

	section .comments-wrap .comments-list .list-item:not(:first-child) {
		margin-top: 16px;
	}

	section .comments-wrap > *:last-child {
		margin-bottom: 0px;
	}

	section.place-single .events-wrap .title-wrap {
		padding: 6px 14px;
	}

	section.place-single .events-wrap .title-wrap h2 {
		font-size: 1em;
	}

	section.place-single .events-wrap .events-list {
		gap: 10px;
	}

	section.place-single .events-wrap .events-list .event-item {
		width: 100%;
	}

	section.place-single .new-posts-wrap {
		padding: 12px 10px;
	}

	section.place-single .new-posts-wrap ul li a .caption p.h2 {
		font-size: 0.875em;
		margin-bottom: 6px;
	}

	section.place-single .new-posts-wrap ul li a .caption span.date {
		font-size: 0.75em;
	}

	section.place-single .single-content .single-gallery .img-box .slick-arrow {
		width: 24px;
		min-width: 24px;
		height: 24px;
		background-size: 10px;
	}
}








































.page-content h2 {
  font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
  color: var(--main-blue);
  margin-bottom: 16px;
}

.page-content h3 {
  font-size: 1.375em;
	line-height: 120%;
	font-weight: 700;
  color: var(--main-blue);
  margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
	margin-bottom: 16px;
	padding-left: 20px;
}

.page-content ul li,
.page-content ol li {
  font-size: 1.125em;
  line-height: 150%;
	font-weight: 400;
  margin-bottom: 8px;
  color: var(--main-blue);
}

.page-content p {
  font-size: 1.125em;
  line-height: 150%;
	font-weight: 400;
  color: var(--main-blue);
  word-break: break-word;
	margin-bottom: 16px;
}

.page-content a {
	color: var(--main-blue);
  text-decoration: underline;
}

@media screen and (min-width: 576px) {
	.page-content a:hover {
		color: #05aff2;
	}
}

.page-content p:has(.alignright) {
  clear: both;
  margin-bottom: 0px;
}

.page-content p img {
  width: 100%;
  border-radius: 0px;
	overflow: hidden;
}

.page-content p img.alignright {
  float: right;
  width: 50%;
  margin-left: 20px;
  margin-bottom: 24px;
}

.page-content p:has(.alignleft) {
  clear: both;
  margin-bottom: 0px;
}

.page-content p img.alignleft {
  float: left;
  width: 50%;
  margin-right: 20px;
  margin-bottom: 24px;
}

.page-content p:has(.aligncenter) {
  clear: both;
}

.page-content p img.aligncenter {
  width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-content p:has(iframe),
.page-content .sketchfab-embed-wrapper {
  clear: both;
  padding-top: 56.25%;
  position: relative;
}

.page-content p iframe,
.page-content .sketchfab-embed-wrapper iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
	overflow: hidden;
}

.page-content *:last-child {
	margin-bottom: 0px;
}

.page-content * + p:has(iframe),
.page-content * + .sketchfab-embed-wrapper {
  margin-top: 24px;
  margin-bottom: 24px;
}

.page-content * + p:has(img.alignright),
.page-content * + p:has(img.alignleft),
.page-content * + p:has(img.alignnone),
.page-content * + p:has(img.aligncenter) {
  margin-top: 24px;
}

.page-content figure {
  width: 100%!important;
  position: relative;
  margin-top: 24px;
  clear: both;
}

.page-content figure img {
  width: 100%;
}

.page-content figure figcaption {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 1em;
	line-height: 120%;
  font-weight: 400;
  color: var(--main-blue);
  display: flex;
  flex-direction: column;
  text-align: end;
  align-items: flex-end;
  word-spacing: 9999rem;
}

.page-content figure.aligncenter {
  width: 80%!important;
  margin-left: auto;
  margin-right: auto;
}

.page-content figure.alignleft {
  width: 50%!important;
  margin-right: 20px;
  float: left;
}
.page-content figure.alignleft + p {
  margin-top: 24px;
}
.page-content figure.alignright {
  width: 50%!important;
  margin-left: 20px;
  float: right;
}

.page-content figure.alignright + p {
  margin-top: 24px;
}

.page-content figure.alignright:first-child,
.page-content figure.alignleft:first-child {
  margin-top: 0px;
}

.page-content figure.alignright:first-child + p,
.page-content figure.alignleft:first-child + p {
  margin-top: 0px;
}

.page-content .gallery {
  display: flex;
  margin: 32px -12px;
}

.page-content .gallery.slick-slider {
  flex-direction: column;
}

.page-content .gallery.slick-slider .slick-list {
  overflow-y: clip;
  overflow-x: visible;
}

.page-content .gallery .gallery-item {
  width: 100%;
  padding: 0px 12px;
  display: flex;
  flex-direction: column;
}

.page-content .gallery .gallery-item .gallery-icon {
  width: 100%;
  padding-top: 85%;
  position: relative;
}

.page-content .gallery .gallery-item .gallery-icon a {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
}

.page-content .gallery .gallery-item .gallery-icon img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  object-fit: cover;
}

.page-content .gallery-slider-wrapper {
	margin-bottom: 16px;
}

.page-content .gallery-slider-wrapper .gallery-slider-content {
	width: 100%;
	position: relative;
}

.page-content .gallery-slider-wrapper .gallery-slider-content .slick-arrow {
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	min-width: 30px;
	height: 30px;
	border-radius: 50%;
	background-size: 14px;
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--main-red);
	border: none;
	font-size: 0px;
	color: transparent;
	overflow: hidden;
}

@media screen and (min-width: 576px) {
	.page-content .gallery-slider-wrapper .gallery-slider-content .slick-arrow:hover {
		background-color: var(--main-yellow);
	}
}

.page-content .gallery-slider-wrapper .gallery-slider-content .slick-arrow.slick-prev {
	left: -10px;
	background-image: url(../img/arrow-left-white.svg);
}

.page-content .gallery-slider-wrapper .gallery-slider-content .slick-arrow.slick-next {
	right: -10px;
	background-image: url(../img/arrow-right-white.svg);
}

@media screen and (max-width: 1299px) {
	.page-content h2 {
		font-size: 1.375em;
	}

	.page-content h3 {
		font-size: 1.25em;
	}

	.page-content ul li,
  .page-content ol li {
    font-size: 1em;
  }

  .page-content p {
    font-size: 1em;
  }
}

@media screen and (max-width: 1199px) {
  .page-content h2 {
    font-size: 1.375em;
  }

	.page-content h3 {
		font-size: 1.25em;
	}

  .page-content ul,
  .page-content ol {
    margin-bottom: 12px;
  }

  .page-content ul li,
  .page-content ol li {
    font-size: 1em;
  }

  .page-content p {
    font-size: 1em;
  }

  .page-content .gallery {
    margin: 24px -12px;
  }
}

@media screen and (max-width: 991px) {
  .page-content h2 {
    font-size: 1.375em;
  }

	.page-content h3 {
		font-size: 1.25em;
	}

	.page-content ul li,
	.page-content ol li {
		margin-bottom: 6px;
	}

	.page-content p img.alignright {
		margin-left: 16px;
		margin-bottom: 20px;
	}

	.page-content p img.alignleft {
		margin-right: 16px;
		margin-bottom: 20px;
	}

	.page-content * + p:has(iframe),
	.page-content * + .sketchfab-embed-wrapper {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.page-content * + p:has(img.alignright),
	.page-content * + p:has(img.alignleft),
	.page-content * + p:has(img.alignnone),
	.page-content * + p:has(img.aligncenter) {
		margin-top: 20px;
	}

	.page-content figure {
		margin-top: 20px;
	}

	.page-content figure.alignleft {
		margin-right: 16px;
	}

	.page-content figure.alignleft + p {
		margin-top: 20px;
	}

	.page-content figure.alignright {
		margin-left: 16px;
	}

	.page-content figure.alignright + p {
		margin-top: 20px;
	}

  .page-content .gallery {
    margin: 24px -8px;
  }
  
  .page-content .gallery .gallery-item {
    padding: 0px 8px;
  }
}

@media screen and (max-width: 767px) {
	.page-content h2 {
    font-size: 1.375em;
  }

	.page-content h3 {
		font-size: 1.25em;
	}

  .page-content p img.alignright {
    float: none;
    display: block;
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-content p img.alignleft {
    float: none;
    display: block;
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-content .center-column {
    width: 100%;
    max-width: 500px;
  }

  .page-content p img.alignnone {
    display: block;
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-content p img.aligncenter {
    width: 100%;
    max-width: 500px;
  }

  .page-content figure {
    margin-top: 20px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

	.page-content figure figcaption {
		font-size: 0.875em;
	}

  .page-content figure.aligncenter {
    width: 100%!important;
    max-width: 500px;
  }

  .page-content figure.alignleft {
    width: 100%!important;
    margin-right: auto;
    float: none;
  }

  .page-content figure.alignright {
    width: 100%!important;
    margin-left: auto;
    float: none;
  }

  .page-content .gallery {
    margin: 24px -20px;
  }

  .page-content .gallery .slick-list {
    padding: 0px 12px;
  }

  .page-content .gallery .gallery-item {
    width: 80vw;
  }

  .page-content .gallery .gallery-item .gallery-icon {
    padding-top: 0px;
  }

  .page-content .gallery .gallery-item .gallery-icon a {
    position: initial;
    height: auto;
  }

  .page-content .gallery .gallery-item .gallery-icon img {
    position: initial;
    height: auto;
  }
}

@media screen and (max-width: 575px) {
	.page-content h2 {
    font-size: 1.25em;
  }

	.page-content h3 {
		font-size: 1.125em;
	}

	.page-content ul li,
	.page-content ol li {
		font-size: 0.875em;
	}

	.page-content p {
		font-size: 0.875em;
	}

	.page-content p img.alignright {
		margin-left: 12px;
		margin-bottom: 16px;
	}

	.page-content p img.alignleft {
		margin-right: 12px;
		margin-bottom: 16px;
	}

	.page-content * + p:has(iframe),
	.page-content * + .sketchfab-embed-wrapper {
		margin-top: 16px;
		margin-bottom: 16px;
	}

	.page-content * + p:has(img.alignright),
	.page-content * + p:has(img.alignleft),
	.page-content * + p:has(img.alignnone),
	.page-content * + p:has(img.aligncenter) {
		margin-top: 16px;
	}

	.page-content figure {
		margin-bottom: 16px;
	}

	.page-content figure.alignleft {
		margin-right: 12px;
	}

	.page-content figure.alignleft + p {
		margin-top: 16px;
	}

	.page-content figure.alignright {
		margin-left: 12px;
	}

	.page-content figure.alignright + p {
		margin-top: 16px;
	}

	.page-content .gallery-slider-wrapper .gallery-slider-content .slick-arrow {
		width: 24px;
		min-width: 24px;
		height: 24px;
		background-size: 10px;
	}
}






































section.catalog .catalog-items-list:has(.event-item) {
	gap: 24px;
}

section.catalog .catalog-items-list .event-item {
	width: calc((100% - 24px) / 2);
}

section.catalog .catalog-items-list .event-item .item-link {
	background-color: var(--main-white);
	border-radius: 0px;
	overflow: hidden;
	position: relative;
	display: flex;
	text-decoration: none;
	height: 100%;
}

section.catalog .catalog-items-list .event-item .item-link .thumbnail {
	width: 45%;
	display: flex;
	align-items: center;
	position: relative;
}

section.catalog .catalog-items-list .event-item .item-link .thumbnail .img-wrap {
	width: 100%;
	height: 100%;
	padding-top: 50%;
	position: relative;
}

section.catalog .catalog-items-list .event-item .item-link .thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.catalog .catalog-items-list .event-item .item-link .caption {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 10px 15px;
	width: 55%;
}

section.catalog .catalog-items-list .event-item .item-link .caption p.h2 {
	font-size: 1.25em;
	line-height: 100%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.catalog .catalog-items-list .event-item .item-link .caption span.date {
	font-size: 1em;
	line-height: 150%;
	font-weight: 700;
	color: var(--main-green);
	margin-top: auto;
}

section.catalog .catalog-items-list .event-item .item-link .caption span.place {
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-green);
	margin-bottom: auto;
}

section.catalog .catalog-items-list .event-item .item-link .caption span.price {
	font-size: 1em;
	line-height: 100%;
	font-weight: 700;
	color: var(--main-green);
	margin-top: 16px;
}

section.catalog .catalog-items-list .event-item .item-link .caption .tag {
	margin-top: 16px;
	display: flex;
	align-items: center;
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-blue);
	background-color: #e9e9e9;
	padding: 8px 22px;
}

@media screen and (max-width: 1299px) {
	section.catalog .catalog-items-list .event-item .item-link .caption {
		padding: 8px 13px;
	}

	section.catalog .catalog-items-list .event-item .item-link .caption p.h2 {
		font-size: 1.125em;
		margin-bottom: 14px;
	}

	section.catalog .catalog-items-list .event-item .item-link .caption span.date {
		font-size: 1em;
	}

	section.catalog .catalog-items-list .event-item .item-link .caption span.place {
		font-size: 1em;
	}

	section.catalog .catalog-items-list .event-item .item-link .caption span.price {
		font-size: 1em;
		margin-top: 14px;
	}

	section.catalog .catalog-items-list .event-item .item-link .caption .tag {
		margin-top: 14px;
		font-size: 1em;
		padding: 6px 14px;
	}
}

@media screen and (max-width: 1199px) {
	section.catalog .catalog-items-list .event-item .item-link .caption p.h2 {
		font-size: 1.25em;
		margin-bottom: 12px;
	}

	section.catalog .catalog-items-list .event-item .item-link .caption span.date {
		font-size: 1em;
	}

	section.catalog .catalog-items-list .event-item .item-link .caption span.place {
		font-size: 1em;
	}

	section.catalog .catalog-items-list .event-item .item-link .caption span.price {
		font-size: 1em;
		margin-top: 12px;
	}

	section.catalog .catalog-items-list .event-item .item-link .caption .tag {
		margin-top: 12px;
		padding: 4px 10px;
	}
}

@media screen and (max-width: 991px) {
	section.catalog .catalog-items-list .event-item .item-link .caption p.h2 {
		font-size: 1.125em;
		margin-bottom: 10px;
	}

	section.catalog .catalog-items-list .event-item .item-link .caption span.price {
		margin-top: 10px;
	}

	section.catalog .catalog-items-list .event-item .item-link .caption .tag {
		margin-top: 10px;
		padding: 4px 8px;
	}
}

@media screen and (max-width: 767px) {
	section.catalog .catalog-items-list .event-item .item-link {
		flex-direction: column;
	}

	section.catalog .catalog-items-list .event-item .item-link .thumbnail {
		width: 100%;
	}

	section.catalog .catalog-items-list .event-item .item-link .caption {
		padding: 14px 20px 16px;
		width: 100%;
	}
}

@media screen and (max-width: 575px) {
	section.catalog .catalog-items-list .event-item {
		width: 100%;
	}

	section.catalog .catalog-items-list .event-item .item-link .caption {
		padding: 12px 15px 14px;
	}
}






















































section.event-single {
	padding: 40px 0px 60px;
	background-color: var(--main-bg);
}

section.event-single .single-thumbnail {
	display: flex;
	width: 100%;
}

section.event-single .single-thumbnail-wrap {
	position: sticky;
	top: 132px;
}

section.event-single .single-thumbnail .img-wrap {
	display: flex;
	width: 100%;
	padding-top: 120%;
	position: relative;
	border-radius: 0px;
	overflow: hidden;
}

section.event-single .single-thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.event-single .single-content {
	display: flex;
	flex-direction: column;
}

section.event-single .single-content .single-main {
	padding: 26px;
	background-color: var(--main-white);
	border-radius: 0px;
	margin-bottom: 32px;
}

section.event-single .single-content .single-main h1 {
	font-family: var(--font-header);
	font-size: 3em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-black);
	margin-bottom: 28px;
}

section.event-single .single-content .single-main .stats-wrap {
	display: flex;
	flex-direction: column;
}

section.event-single .single-content .single-main .stats-wrap .stats-item:not(:last-child) {
	margin-bottom: 32px;
}

section.event-single .single-content .single-main .stats-wrap .stats-item {
	display: flex;
}

section.event-single .single-content .single-main .stats-wrap .stats-item::before {
	content: '';
	width: 24px;
	min-width: 24px;
	height: 24px;
	margin-right: 25px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

section.event-single .single-content .single-main .stats-wrap .stats-item.date::before {
	background-image: url(../img/date-icon-black.svg);
}

section.event-single .single-content .single-main .stats-wrap .stats-item.place::before {
	background-image: url(../img/place-icon-black.svg);
}

section.event-single .single-content .single-main .stats-wrap .stats-item.score::before {
	background-image: url(../img/score-icon-black.svg);
}

section.event-single .single-content .single-main .stats-wrap .stats-item .caption {
	display: flex;
	flex-direction: column;
}

section.event-single .single-content .single-main .stats-wrap .stats-item .caption span.title {
	font-size: 1.25em;
	line-height: 100%;
	font-weight: 700;
	color: var(--main-black);
	margin-bottom: 6px;
}

section.event-single .single-content .single-main .stats-wrap .stats-item .caption span.desc {
	font-size: 1.25em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-gray);
}

section.event-single .single-content .page-content {
	padding: 40px;
	background-color: var(--main-white);
	border-radius: 0px;
	margin-bottom: 32px;
}

section.event-single .single-content .single-wrapper, .post-single .single-wrapper {
	display: flex;
	flex-direction: column;
	margin-bottom: 32px;
}

section.event-single .single-content .single-wrapper h2, .post-single .single-wrapper h2 {
	font-family: var(--font-header);
	font-size: 2em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-black);
	margin-bottom: 16px;
}

section.event-single .single-content .single-wrapper .img-box, .post-single .single-wrapper .img-box {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

section.event-single .single-content .single-wrapper .img-box .img-wrap, .post-single .single-wrapper .img-box .img-wrap {
	width: calc((100% - 16px) / 2);
	display: flex;
}

section.event-single .single-content .single-wrapper .img-box .img-wrap:first-child, .post-single .single-wrapper .img-box .img-wrap:first-child {
	width: 100%;
}

section.event-single .single-content .single-wrapper .img-box .img-wrap a, .post-single .single-wrapper .img-box .img-wrap a {
	position: relative;
	width: 100%;
	padding-top: 50%;
	border-radius: 0px;
	overflow: hidden;
}

section.event-single .single-content .single-wrapper .img-box .img-wrap a img, .post-single .single-wrapper .img-box .img-wrap a img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.event-single .single-content .single-wrapper .img-box .img-wrap a:has(iframe), .post-single .single-wrapper .img-box .img-wrap a:has(iframe) {
	padding-top: 56.25%;
}

section.event-single .single-content .single-wrapper .img-box .img-wrap a iframe, .post-single .single-wrapper .img-box .img-wrap a iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 1299px) {
	section.event-single {
		padding: 35px 0px 52px;
	}

	section.event-single .single-thumbnail {
		top: 116px;
	}

	section.event-single .single-thumbnail .img-wrap {
		border-radius: 0px;
	}

	section.event-single .single-content .single-main {
		padding: 22px;
		border-radius: 0px;
		margin-bottom: 28px;
	}

	section.event-single .single-content .single-main h1 {
		font-size: 2.625em;
		margin-bottom: 24px;
	}

	section.event-single .single-content .single-main .stats-wrap .stats-item:not(:last-child) {
		margin-bottom: 28px;
	}

	section.event-single .single-content .single-main .stats-wrap .stats-item::before {
		width: 22px;
		min-width: 22px;
		height: 22px;
		margin-right: 22px;
	}

	section.event-single .single-content .single-main .stats-wrap .stats-item .caption span.title {
		font-size: 1.125em;
		margin-bottom: 4px;
	}

	section.event-single .single-content .single-main .stats-wrap .stats-item .caption span.desc {
		font-size: 1.125em;
	}

	section.event-single .single-content .page-content {
		padding: 35px;
		border-radius: 0px;
		margin-bottom: 28px;
	}

	section.event-single .single-content .single-wrapper, .post-single .single-content .single-wrapper {
		margin-bottom: 28px;
	}

	section.event-single .single-content .single-wrapper h2, .post-single .single-content .single-wrapper h2 {
		font-size: 1.875em;
	}

	section.event-single .single-content .single-wrapper .img-box, .post-single .single-content .single-wrapper .img-box {
		gap: 14px;
	}

	section.event-single .single-content .single-wrapper .img-box .img-wrap, .post-single .single-content .single-wrapper .img-wrap .img-wrap {
		width: calc((100% - 14px) / 2);
	}

	section.event-single .single-content .single-wrapper .img-box .img-wrap a, .post-single .single-content .single-wrapper .img-wrap a {
		border-radius: 0px;
	}
}

@media screen and (max-width: 1199px) {
	section.event-single {
		padding: 28px 0px 42px;
	}

	section.event-single .single-thumbnail {
		top: 96px;
	}

	section.event-single .single-thumbnail .img-wrap {
		border-radius: 0px;
	}

	section.event-single .single-content .single-main {
		padding: 20px;
		border-radius: 0px;
		margin-bottom: 24px;
	}

	section.event-single .single-content .single-main h1 {
		font-size: 2.125em;
		margin-bottom: 22px;
	}

	section.event-single .single-content .single-main .stats-wrap .stats-item:not(:last-child) {
		margin-bottom: 24px;
	}

	section.event-single .single-content .single-main .stats-wrap .stats-item::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
		margin-right: 20px;
	}

	section.event-single .single-content .single-main .stats-wrap .stats-item .caption span.title {
		font-size: 1em;
		margin-bottom: 3px;
	}

	section.event-single .single-content .single-main .stats-wrap .stats-item .caption span.desc {
		font-size: 1em;
	}

	section.event-single .single-content .page-content {
		padding: 28px;
		border-radius: 0px;
		margin-bottom: 24px;
	}

	section.event-single .single-content .single-wrapper {
		margin-bottom: 24px;
	}

	section.event-single .single-content .single-wrapper h2 {
		font-size: 1.75em;
	}

	section.event-single .single-content .single-wrapper .img-box {
		gap: 12px;
	}

	section.event-single .single-content .single-wrapper .img-box .img-wrap {
		width: calc((100% - 12px) / 2);
	}

	section.event-single .single-content .single-wrapper .img-box .img-wrap a {
		border-radius: 0px;
	}
}

@media screen and (max-width: 991px) {
	section.event-single {
		padding: 24px 0px 32px;
	}

	section.event-single .single-thumbnail {
		position: relative;
		top: auto;
		margin-bottom: 22px;
	}

	section.event-single .single-thumbnail .img-wrap {
		border-radius: 0px;
	}

	section.event-single .single-content .single-main {
		padding: 18px;
		border-radius: 0px;
		margin-bottom: 22px;
	}

	section.event-single .single-content .single-main h1 {
		font-size: 1.875em;
		margin-bottom: 20px;
	}

	section.event-single .single-content .single-main .stats-wrap .stats-item:not(:last-child) {
		margin-bottom: 22px;
	}

	section.event-single .single-content .single-main .stats-wrap .stats-item::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 14px;
	}

	section.event-single .single-content .page-content {
		padding: 24px;
		border-radius: 0px;
		margin-bottom: 22px;
	}

	section.event-single .single-content .single-wrapper, .post-single .single-content .single-wrapper {
		margin-bottom: 22px;
	}

	section.event-single .single-content .single-wrapper h2, .post-single .single-content .single-wrapper h2 {
		font-size: 1.625em;
	}

	section.event-single .single-content .single-wrapper .img-box .img-wrap a, .post-single .single-content .single-wrapper .img-wrap a {
		border-radius: 0px;
	}
}

@media screen and (max-width: 767px) {
	section.event-single {
		padding: 20px 0px 24px;
	}

	section.event-single .single-thumbnail {
		margin-bottom: 20px;
	}

	section.event-single .single-thumbnail .img-wrap {
		border-radius: 0px;
	}

	section.event-single .single-content .single-main {
		padding: 16px;
		border-radius: 0px;
		margin-bottom: 20px;
	}

	section.event-single .single-content .single-main h1 {
		font-size: 1.625em;
		margin-bottom: 18px;
	}

	section.event-single .single-content .single-main .stats-wrap .stats-item:not(:last-child) {
		margin-bottom: 20px;
	}

	section.event-single .single-content .page-content {
		padding: 22px;
		border-radius: 0px;
		margin-bottom: 20px;
	}

	section.event-single .single-content .single-wrapper, .post-single .single-content .single-wrapper {
		margin-bottom: 20px;
	}

	section.event-single .single-content .single-wrapper h2, .post-single .single-content .single-wrapper h2 {
		font-size: 1.5em;
	}

	section.event-single .single-content .single-wrapper .img-box .img-wrap a, .post-single .single-content .single-wrapper .img-wrap a {
		border-radius: 0px;
	}
}

@media screen and (max-width: 575px) {
	section.event-single .single-thumbnail .img-wrap {
		border-radius: 0px;
	}

	section.event-single .single-content .single-main {
		padding: 14px 15px;
		border-radius: 0px;
		margin-bottom: 20px;
	}

	section.event-single .single-content .single-main h1 {
		font-size: 1.375em;
		margin-bottom: 16px;
	}

	section.event-single .single-content .single-main .stats-wrap .stats-item:not(:last-child) {
		margin-bottom: 16px;
	}

	section.event-single .single-content .single-main .stats-wrap .stats-item::before {
		margin-right: 10px;
	}

	section.event-single .single-content .page-content {
		padding: 14px 15px;
		border-radius: 0px;
		margin-bottom: 20px;
	}

	section.event-single .single-content .single-wrapper h2, .post-single .single-content .single-wrapper h2 {
		font-size: 1.25em;
	}

	section.event-single .single-content .single-wrapper .img-box, .post-single .single-content .single-wrapper .img-box {
		gap: 8px;
	}

	section.event-single .single-content .single-wrapper .img-box .img-wrap, .post-single .single-content .single-wrapper .img-wrap .img-wrap {
		width: calc((100% - 8px) / 2);
	}

	section.event-single .single-content .single-wrapper .img-box .img-wrap a, .post-single .single-content .single-wrapper .img-wrap a {
		border-radius: 0px;
	}
}













































section.blog {
	padding: 40px 0px 60px;
	background-color: var(--main-bg);
}

section.blog .catalog-items-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

section.blog .catalog-items-list .blog-item {
	display: flex;
	width: 100%;
}

section.blog .catalog-items-list .blog-item .item-link {
	display: flex;
	text-decoration: none;
	background-color: var(--main-white);
	border-radius: 0px;
	position: relative;
	width: 100%;
}

section.blog .catalog-items-list .blog-item .item-link::after {
	content: '';
	position: absolute;
	z-index: 2;
	left: -5px;
	top: -5px;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	border-radius: 0px;
	border: 5px solid var(--main-yellow);
	opacity: 0;
	transition: var(--speed-fast);
	user-select: none;
	pointer-events: none;
}

@media screen and (min-width: 576px) {
	section.blog .catalog-items-list .blog-item .item-link:hover::after {
		opacity: 1;
	}
}

section.blog .catalog-items-list .blog-item .item-link .caption {
	padding: 20px;
	width: calc(100% - 35%);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

section.blog .catalog-items-list .blog-item .item-link .caption p.h2 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.blog .catalog-items-list .blog-item .item-link .caption span.date {
	font-size: 1em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-red);
	margin-right: 0px;
}

section.blog .catalog-items-list .blog-item .item-link .thumbnail {
	display: flex;
	width: 35%;
	position: relative;
}

section.blog .catalog-items-list .blog-item .item-link .thumbnail .img-wrap {
	display: flex;
	width: 100%;
	padding-top: 45%;
	position: relative;
}

section.blog .catalog-items-list .blog-item .item-link .thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.blog .catalog-items-list .blog-item .item-link .thumbnail .img-wrap::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 50px;
	transition: all ease .3s;
	opacity: 0;
	background-color: #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-image: url(../img/thumbnail-icon.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 40px;
	z-index: 3;
}

@media screen and (min-width: 576px) {
	section.blog .catalog-items-list .blog-item .item-link:hover .thumbnail .img-wrap::after {
		transform: translate(-50%, -50%);
		opacity: 1;
		width: 70px;
		height: 70px;
	}
}

section.blog .catalog-items-list .blog-item .item-link .thumbnail span.date {
	position: absolute;
	left: 0px;
	top: 0px;
	font-size: 0.875em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-white);
	background-color: var(--main-red);
	padding: 8px 10px;
}

section.blog .catalog-items-list .blog-item.video-item {
	width: calc((100% - 20px) / 2);
}

section.blog .catalog-items-list .blog-item.video-item .item-link {
	flex-direction: column;
}

section.blog .catalog-items-list .blog-item.video-item .item-link .thumbnail {
	width: 100%;
}

section.blog .catalog-items-list .blog-item.video-item .item-link .thumbnail .img-wrap::before {
	content: '';
	width: 70px;
	min-width: 70px;
	height: 70px;
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-image: url(../img/video-icon-white.svg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center;
}

section.blog .catalog-items-list .blog-item.video-item .item-link .caption {
	width: 100%;
}

section.blog .catalog-items-list .blog-item.video-item .item-link .caption span.date {
	order: 1;
	margin-bottom: 16px;
	color: var(--main-blue);
}

section.blog .catalog-items-list .blog-item.video-item .item-link .caption p.h2 {
	order: 2;
	margin-bottom: 0px;
}

section.blog .catalog-items-list .blog-item.video-item .item-link .caption p.desc {
	order: 3;
	font-size: 1em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-blue);
	margin-top: 16px;
	margin-bottom: 0px;
}

section.blog .catalog-items-list .blog-item.legend-item .item-link .caption p.desc {
	margin-top: 0px;
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.blog .catalog-items-list .blog-item.virtual-tour-item {
	width: calc((100% - 60px) / 4);
}

section.blog .catalog-items-list .blog-item.virtual-tour-item .item-link {
	flex-direction: column;
}

section.blog .catalog-items-list .blog-item.virtual-tour-item .item-link .thumbnail	{
	width: 100%;
	position: relative;
}

section.blog .catalog-items-list .blog-item.virtual-tour-item .item-link .thumbnail .img-wrap {
	padding-top: 60%;
}

section.blog .catalog-items-list .blog-item.virtual-tour-item .item-link .thumbnail .img-wrap::before {
	content: '';
	width: 70px;
	min-width: 70px;
	height: 70px;
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-image: url(../img/3d.svg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center;
}

section.blog .catalog-items-list .blog-item.virtual-tour-item .item-link .thumbnail .date {
	position: absolute;
	left: 0px;
	top: 0px;
	font-size: 0.875em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-white);
	background-color: var(--main-red);
	padding: 8px 10px;
}

section.blog .catalog-items-list .blog-item.virtual-tour-item .item-link .caption	{
	width: 100%;
}

section.blog .catalog-items-list .blog-item.virtual-tour-item .item-link .caption	p.h2 {
	font-size: 1.125em;
	margin-bottom: 0px;
}

section.blog .catalog-items-list .blog-item.tour-item {
	width: calc((100% - 40px) / 3);
}

section.blog .catalog-items-list .blog-item.tour-item .item-link {
	flex-direction: column;
}

section.blog .catalog-items-list .blog-item.tour-item .item-link .thumbnail	{
	width: 100%;
	position: relative;
}

section.blog .catalog-items-list .blog-item.tour-item .item-link .caption	{
	width: 100%;
}

section.blog .catalog-items-list .blog-item.tour-item .item-link .caption	p.h2 {
	font-size: 1.375em;
	margin-bottom: 16px;
}

section.blog .catalog-items-list .blog-item.tour-item .item-link .caption span.place {
	font-size: 1em;
	line-height: 150%;
	font-weight: 500;
	color: var(--main-green);
	margin-top: auto;
	margin-bottom: 0px;
	display: flex;
	align-items: center;
}

section.blog .catalog-items-list .blog-item.tour-item .item-link .caption span.place::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url(../img/pin-icon-green.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	margin-right: 8px;
}

section.blog .catalog-items-list .blog-item.tour-item .item-link .caption span.place span {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	width: 100%;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

section.blog .right-side-wrap {
	display: flex;
	flex-direction: column;
}

section.blog .right-side-wrap section.locations-title-box {
	margin-bottom: 30px;
	background-color: var(--main-white);
}

section.blog .right-side-wrap section.locations-title-box .locations-wrap {
	margin-top: -80px;
	margin-bottom: 0px;
}

section.blog .right-side-wrap section.locations-title-box .locations-box {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	position: relative;
}

section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-wrap-header {
	width: 100%;
	padding: 15px;
	font-size: 1em;
	background-color: var(--main-red);
	color: var(--main-white);
	text-align: center;
	margin: 0px;
}

section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-wrap-header p {
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-white);
	margin: 0px;
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .locations-wrap-header {
	background-color: var(--main-green);
}

section.blog.tour-single .page-content h3 {
	font-size: 1.125em;
	background-color: var(--main-blue);
	color: var(--main-white);
	padding: 5px 10px;
	display: inline-block;
}

section.blog.tour-single .tour-route-section {
	margin-bottom: 32px;
}

section.blog.tour-single .tour-route-section h2 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 18px;
}

section.blog.tour-single .tour-route-section .route-start-point {
	margin-bottom: 20px;
	padding: 15px;
  border: 1px solid #b4cad1;
}

section.blog.tour-single .tour-route-section .route-start-point h3 {
	font-size: 1.25em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.blog.tour-single .tour-route-section .route-start-point p {
	font-size: 1em;
	line-height: 120%;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.blog.tour-single .tour-route-section .route-start-point p:last-child {
	margin-bottom: 0px;
}

section.blog.tour-single .tour-route-section .route-start-point .btn.btn-secondary {
	font-size: 1em;
	padding: 8px 14px 6px;
}

section.blog.tour-single .tour-route-section .route-points {
	padding: 15px;
  border: 1px solid #b4cad1;
}

section.blog.tour-single .tour-route-section .route-points h3 {
	font-size: 1.25em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.blog.tour-single .tour-route-section .route-points ol {
	padding-left: 20px;
	line-height: 150%;
	margin-bottom: 0px;
}

section.blog.tour-single .tour-route-section .route-points ol li {
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-blue);
	margin-bottom: 8px;
}

section.blog.tour-single .tour-route-section .route-points ol li:last-child {
	margin-bottom: 0px;
}

section.blog.tour-single .tour-dates-section {
	margin-bottom: 32px;
}

section.blog.tour-single .tour-dates-section h2 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 18px;
}

section.blog.tour-single .tour-dates-section .dates-list .date-item {
	padding: 15px;
  border: 1px solid #b4cad1;
	margin-bottom: 20px;
}

section.blog.tour-single .tour-dates-section .dates-list .date-item:last-child {
	margin-bottom: 0px;
}

section.blog.tour-single .tour-dates-section .dates-list .date-item p.title {
	font-size: 1em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.blog.tour-single .tour-dates-section .dates-list .date-item .time-wrap p.desc {
	font-size: 1em;
	line-height: 120%;
	font-weight: 400;
	color: #666666;
	margin-bottom: 16px;
}

section.blog.tour-single .tour-dates-section .dates-list .date-item .time-wrap .time-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

section.blog.tour-single .tour-dates-section .dates-list .date-item .time-wrap .time-tags span.time-item {
	padding: 4px 12px;
	border: 1px solid #dddddd;
	font-size: 0.875em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-black);
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details {
	border: 1px solid #b4cad1;
	padding: 30px;
	width: 100%;
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item {
	margin-bottom: 20px;
	color: #333333;
	display: flex;
	align-items: center;
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item::before {
	content: '';
	width: 45px;
	min-width: 45px;
	height: 45px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 40px auto;
	margin-right: 15px;
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item.calendar::before {
	background-image: url(../img/cal.svg);
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item.time::before {
	background-image: url(../img/time-icon.svg);
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item.location::before {
	background-image: url(../img/nav.svg);
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item.people::before {
	background-image: url(../img/tours-ico1.svg);
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item.price::before {
	background-image: url(../img/ticket.svg);
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item.phone::before {
	background-image: url(../img/tel.svg);
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item a {
	color: #333333;
	text-decoration: none;
}

@media screen and (min-width: 576px) {
	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item a:hover {
		text-decoration: underline;
	}
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .event-button {
	display: flex;
	width: calc((100% - 20px) / 2);
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .event-button .like-button {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875em;
	line-height: 100%;
	font-weight: 400;
	border: 1px solid var(--main-red);
	color: var(--main-red);
	background-color: var(--main-white);
	border-radius: 0px;
	padding: 6px 12px;
	cursor: pointer;
	width: 100%;
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .event-button .like-button::before {
	content: '';
	width: 22px;
	min-width: 22px;
	height: 22px;
	background-image: url(../img/heart-icon-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	-webkit-mask-image: url(../img/heart-icon-red-full.svg);
	mask-image: url(../img/heart-icon-red-full.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	margin-right: 6px;
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .event-button .like-button.in-wishlist::before {
	background-color: var(--main-red);
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .btn-share {
	border: 1px solid var(--main-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-blue);
	background-color: var(--main-white);
	border-radius: 0px;
	padding: 6px 12px;
	text-decoration: none;
	width: calc((100% - 20px) / 2);
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .btn-share::before {
	content: '';
	width: 22px;
	min-width: 22px;
	height: 22px;
	background-image: url(../img/share-icon-blue.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 6px;
}

section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap button.btn.btn-primary {
	width: 100%;
}

@media screen and (min-width: 576px) {
	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap button.btn.btn-primary:hover,
	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap button.btn.btn-primary:active {
		background-color: transparent;
		color: var(--main-red);
		border-color: var(--main-red);
	}
}

section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-item {
	width: calc(100% / 2);
}

section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-item:nth-child(1), 
section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-item:nth-child(2) {
	border-top: 1px solid #b4cad1;
}

section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-item:nth-child(4n + 1),
section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-item:nth-child(4n + 3) {
	border-left: 1px solid #b4cad1;
}

section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-item:nth-child(4n + 4) {
	border-right: 1px solid #b4cad1;
}

section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-item:nth-last-child(1), 
section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-item:nth-last-child(2), 
section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-item:nth-last-child(3), 
section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-item:nth-last-child(4) {
	border-bottom: 1px solid #b4cad1;
}

section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-item .item-link {
	padding: 20px;
}

section.blog .right-side-wrap section.locations-title-box .locations-wrap .contacts-info {
	border: 1px solid #b4cad1;
	padding: 30px;
	width: 100%;
}

section.blog .right-side-wrap section.locations-title-box .locations-wrap .contacts-info p {
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.blog .right-side-wrap section.locations-title-box .locations-wrap .contacts-info p a {
	color: var(--main-blue);
	text-decoration: none;
}

@media screen and (min-width: 576px) {
	section.blog .right-side-wrap section.locations-title-box .locations-wrap .contacts-info p a:hover {
		text-decoration: underline;
	}
}

section.blog .right-side-wrap section.locations-title-box .locations-wrap .contacts-info *:last-child {
	margin-bottom: 0px;
}

section.blog .right-side-wrap section.plan-your-trip .caption .caption-wrap {
	padding: 60px 30px;
}

section.blog .right-side-wrap section.plan-your-trip .caption .caption-wrap h2.main-h2 {
	font-size: 1.875em;
	margin-bottom: 40px;
}

section.blog .right-side-wrap section.plan-your-trip .caption .caption-wrap p {
	font-size: 1em;
}

section.blog .right-side-wrap section.plan-your-trip .caption .caption-wrap .btn {
	font-size: 1em;
}

section.blog .right-side-wrap > *:last-child {
	margin-bottom: 0px;
}

section.blog .post-single {
	display: flex;
	flex-direction: column;
	/* margin-bottom: 32px; */
}

section.blog .post-single > .meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 16px;
	gap: 30px;
}

section.blog .post-single > .meta span {
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-red);
	display: flex;
	align-items: center;
}

section.blog .post-single > .meta span.views {
	color: var(--main-green);
}

section.blog .post-single > .meta span.views::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url(../img/view-icon-green.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 6px;
}

section.blog .post-single .page-content {
	margin-bottom: 32px;
}

section.blog .post-single > h1.main-h1 {
	font-size: 2.5em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.blog .post-single .btns-wrap {
	display: flex;
}

section.blog .post-single .btns-wrap .btn-share {
	border: 1px solid var(--main-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-blue);
	background-color: var(--main-white);
	border-radius: 0px;
	padding: 6px 12px;
	text-decoration: none;
}

section.blog .post-single .btns-wrap .btn-share::before {
	content: '';
	width: 22px;
	min-width: 22px;
	height: 22px;
	background-image: url(../img/share-icon-blue.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 6px;
}

section.blog .post-single .single-gallery {
	margin-bottom: 32px;
}

section.blog .post-single .single-gallery:last-child {
	margin-bottom: 0px;
}

section.blog .post-single .single-gallery h2 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.blog .post-single .single-gallery .img-box {
	width: 100%;
	position: relative;
}

section.blog .post-single .single-gallery .img-box .slick-arrow {
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	min-width: 30px;
	height: 30px;
	border-radius: 50%;
	background-size: 14px;
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--main-red);
	border: none;
	font-size: 0px;
	color: transparent;
	overflow: hidden;
}

@media screen and (min-width: 576px) {
	section.blog .post-single .single-gallery .img-box .slick-arrow:hover {
		background-color: var(--main-yellow);
	}
}

section.blog .post-single .single-gallery .img-box .slick-arrow.slick-prev {
	left: -10px;
	background-image: url(../img/arrow-left-white.svg);
}

section.blog .post-single .single-gallery .img-box .slick-arrow.slick-next {
	right: -10px;
	background-image: url(../img/arrow-right-white.svg);
}

section.blog.more-posts h2 {
	font-size: 2.125em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 20px;
}

section.blog.more-posts .catalog-items-list .blog-item {
	width: calc((100% - 60px) / 4);
}

section.blog.more-posts .catalog-items-list .blog-item .item-link {
	flex-direction: column;
}

section.blog.more-posts .catalog-items-list .blog-item .item-link .thumbnail {
	width: 100%;
}

section.blog.more-posts .catalog-items-list .blog-item .item-link .caption {
	width: 100%;
	padding: 15px 20px;
}

section.blog.more-posts .catalog-items-list .blog-item .item-link .caption p.h2 {
	font-size: 1.125em;
	margin-bottom: 14px
}

section.blog.more-posts .catalog-items-list .blog-item.legend-item .item-link .caption p.h2 {
	margin-bottom: 0px
}

section.blog.more-posts .catalog-items-list .blog-item.video-item {
	width: calc((100% - 40px) / 3);
}

section.blog.more-posts .catalog-items-list .blog-item.video-item .item-link .thumbnail .img-wrap {
	padding-top: 65%;
}

section.blog.more-posts .catalog-items-list .blog-item.video-item .item-link .caption p.h2 {
	font-size: 1.5em;
	margin-bottom: 0px
}

section.blog.more-posts .catalog-items-list .blog-item.legend-item .item-link .caption p.desc {
	margin-top: 16px;
	font-size: 1em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-blue);
	margin-bottom: 0px;
}

section.blog.more-posts .catalog-items-list .blog-item.legend-item .item-link .caption span.date {
	margin-top: 16px;
}

section.blog.more-posts .catalog-items-list .blog-item.tour-item {
	width: calc((100% - 40px) / 3);
}

section.blog.more-posts .catalog-items-list .blog-item.tour-item .item-link .caption p.h2 {
	font-size: 1.375em;
	margin-bottom: 16px;
}

@media screen and (max-width: 1299px) {
	section.blog {
		padding: 35px 0px 52px;
	}

	section.blog .catalog-items-list {
		gap: 18px;
	}

	section.blog .catalog-items-list .blog-item .item-link .caption {
		padding: 16px;
	}

	section.blog .catalog-items-list .blog-item .item-link .caption p.h2 {
		font-size: 1.375em;
		margin-bottom: 14px;
	}

	section.blog .catalog-items-list .blog-item .item-link .thumbnail .img-wrap::after {
		width: 40px;
		height: 40px;
		background-size: 35px;
	}

	@media screen and (min-width: 576px) {
		section.blog .catalog-items-list .blog-item .item-link:hover .thumbnail .img-wrap::after {
			width: 60px;
			height: 60px;
		}
	}

	section.blog .catalog-items-list .blog-item .item-link .thumbnail span.date {
		padding: 6px 8px;
	}

	section.blog .catalog-items-list .blog-item.video-item {
		width: calc((100% - 18px) / 2);
	}

	section.blog .catalog-items-list .blog-item.video-item .item-link .thumbnail .img-wrap::before {
		width: 60px;
		min-width: 60px;
		height: 60px;
	}

	section.blog .catalog-items-list .blog-item.video-item .item-link .caption span.date {
		margin-bottom: 14px;
	}

	section.blog .catalog-items-list .blog-item.video-item .item-link .caption p.desc {
		margin-top: 14px;
	}

	section.blog .catalog-items-list .blog-item.legend-item .item-link .caption p.desc {
		margin-bottom: 14px;
	}

	section.blog .catalog-items-list .blog-item.virtual-tour-item {
		width: calc((100% - 54px) / 4);
	}

	section.blog .catalog-items-list .blog-item.virtual-tour-item .item-link .thumbnail .img-wrap::before {
		width: 60px;
		min-width: 60px;
		height: 60px;
	}

	section.blog .catalog-items-list .blog-item.virtual-tour-item .item-link .thumbnail .date {
		padding: 6px 8px;
	}

	section.blog .catalog-items-list .blog-item.tour-item {
		width: calc((100% - 36px) / 3);
	}

	section.blog .catalog-items-list .blog-item.tour-item .item-link .caption	p.h2 {
		font-size: 1.25em;
		margin-bottom: 14px;
	}

	section.blog .catalog-items-list .blog-item.tour-item .item-link .caption span.place {
		font-size: 0.875em;
	}

	section.blog .catalog-items-list .blog-item.tour-item .item-link .caption span.place::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 6px;
	}

	section.blog .right-side-wrap section.locations-title-box {
		margin-bottom: 28px;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap {
		margin-top: -75px;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-wrap-header {
		padding: 13px;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-wrap-header p {
		font-size: 1em;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details {
		padding: 28px;
	}

	section.blog.tour-single .page-content h3 {
		font-size: 1em;
		padding: 4px 8px;
	}

	section.blog.tour-single .tour-route-section {
		margin-bottom: 28px;
	}

	section.blog.tour-single .tour-route-section h2 {
		font-size: 1.375em;
		margin-bottom: 16px;
	}

	section.blog.tour-single .tour-route-section .route-start-point {
		margin-bottom: 18px;
		padding: 14px;
	}

	section.blog.tour-single .tour-route-section .route-start-point h3 {
		margin-bottom: 14px;
	}

	section.blog.tour-single .tour-route-section .route-start-point p {
		margin-bottom: 14px;
	}

	section.blog.tour-single .tour-route-section .route-start-point p:last-child {
		margin-bottom: 0px;
	}

	section.blog.tour-single .tour-route-section .route-start-point .btn.btn-secondary {
		padding: 6px 12px 4px;
	}

	section.blog.tour-single .tour-route-section .route-points {
		padding: 14px;
	}

	section.blog.tour-single .tour-route-section .route-points h3 {
		margin-bottom: 14px;
	}

	section.blog.tour-single .tour-route-section .route-points ol {
		padding-left: 16px;
	}

	section.blog.tour-single .tour-route-section .route-points ol li {
		margin-bottom: 6px;
	}

	section.blog.tour-single .tour-route-section .route-points ol li:last-child {
		margin-bottom: 0px;
	}

	section.blog.tour-single .tour-dates-section {
		margin-bottom: 28px;
	}

	section.blog.tour-single .tour-dates-section h2 {
		font-size: 1.375em;
		margin-bottom: 16px;
	}

	section.blog.tour-single .tour-dates-section .dates-list .date-item {
		padding: 14px;
		margin-bottom: 18px;
	}

	section.blog.tour-single .tour-dates-section .dates-list .date-item:last-child {
		margin-bottom: 0px;
	}

	section.blog.tour-single .tour-dates-section .dates-list .date-item p.title {
		margin-bottom: 14px;
	}

	section.blog.tour-single .tour-dates-section .dates-list .date-item .time-wrap p.desc {
		margin-bottom: 14px;
	}

	section.blog.tour-single .tour-dates-section .dates-list .date-item .time-wrap .time-tags {
		gap: 6px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item {
		margin-bottom: 18px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item::before {
		width: 42px;
		min-width: 42px;
		height: 42px;
		background-size: 38px auto;
		margin-right: 13px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap {
		gap: 18px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .event-button {
		width: calc((100% - 18px) / 2);
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .event-button .like-button {
		padding: 4px 10px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .event-button .like-button::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
		margin-right: 4px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .btn-share {
		padding: 4px 10px;
		width: calc((100% - 18px) / 2);
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .btn-share::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
		margin-right: 4px;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-item .item-link {
		padding: 18px;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .contacts-info {
		padding: 28px;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .contacts-info p {
		margin-bottom: 14px;
	}

	section.blog .right-side-wrap section.plan-your-trip .caption .caption-wrap {
		padding: 55px 28px;
	}

	section.blog .right-side-wrap section.plan-your-trip .caption .caption-wrap h2.main-h2 {
		font-size: 1.75em;
		margin-bottom: 36px;
	}

	section.blog .right-side-wrap section.plan-your-trip .caption .caption-wrap .btn {
		font-size: 0.875em;
	}

	section.blog .right-side-wrap > *:last-child {
    margin-bottom: 0px;
	}

	section.blog .post-single > .meta {
		gap: 28px;
		margin-bottom: 14px;
	}

	section.blog .post-single > .meta span.views::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 4px;
	}

	section.blog .post-single .page-content {
		margin-bottom: 28px;
	}

	section.blog .post-single > h1.main-h1 {
		font-size: 2.375em;
		margin-bottom: 14px;
	}

	section.blog .post-single .btns-wrap .btn-share {
		padding: 4px 10px;
	}

	section.blog .post-single .btns-wrap .btn-share::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
		margin-right: 4px;
	}
	
	section.blog .post-single .single-gallery {
		margin-bottom: 28px;
	}
	
	section.blog .post-single .single-gallery:last-child {
		margin-bottom: 0px;
	}

	section.blog .post-single .single-gallery h2 {
		font-size: 1.375em;
	}

	section.blog.more-posts h2 {
		font-size: 2em;
		margin-bottom: 18px;
	}

	section.blog.more-posts .catalog-items-list .blog-item {
		width: calc((100% - 54px) / 4);
	}

	section.blog.more-posts .catalog-items-list .blog-item .item-link .caption {
		padding: 13px 16px;
	}

	section.blog.more-posts .catalog-items-list .blog-item .item-link .caption p.h2 {
		font-size: 1em;
		margin-bottom: 12px;
	}

	section.blog.more-posts .catalog-items-list .blog-item.video-item {
		width: calc((100% - 36px) / 3);
	}

	section.blog.more-posts .catalog-items-list .blog-item.video-item .item-link .caption p.h2 {
		font-size: 1.375em;
	}

	section.blog.more-posts .catalog-items-list .blog-item.legend-item .item-link .caption p.desc {
		margin-top: 14px;
		font-size: 0.875em;
	}

	section.blog.more-posts .catalog-items-list .blog-item.legend-item .item-link .caption span.date {
		margin-top: 14px;
	}

	section.blog.more-posts .catalog-items-list .blog-item.tour-item {
		width: calc((100% - 36px) / 3);
	}

	section.blog.more-posts .catalog-items-list .blog-item.tour-item .item-link .caption p.h2 {
		font-size: 1.25em;
		margin-bottom: 14px;
	}
}

@media screen and (max-width: 1199px) {
	section.blog {
		padding: 28px 0px 42px;
	}

	section.blog .catalog-items-list {
		gap: 16px;
	}

	section.blog .catalog-items-list .blog-item .item-link .caption {
		padding: 14px;
	}

	section.blog .catalog-items-list .blog-item .item-link .caption p.h2 {
		font-size: 1.25em;
		margin-bottom: 12px;
	}

	section.blog .catalog-items-list .blog-item .item-link .caption span.date {
		font-size: 0.875em;
	}

	section.blog .catalog-items-list .blog-item .item-link .thumbnail .img-wrap::after {
		width: 34px;
		height: 34px;
		background-size: 28px;
	}

	@media screen and (min-width: 576px) {
		section.blog .catalog-items-list .blog-item .item-link:hover .thumbnail .img-wrap::after {
			width: 50px;
			height: 50px;
		}
	}

	section.blog .catalog-items-list .blog-item.video-item {
		width: calc((100% - 16px) / 2);
	}

	section.blog .catalog-items-list .blog-item.video-item .item-link .thumbnail .img-wrap::before {
		width: 50px;
		min-width: 50px;
		height: 50px;
	}

	section.blog .catalog-items-list .blog-item.video-item .item-link .caption span.date {
		font-size: 0.875em;
		margin-bottom: 12px;
	}

	section.blog .catalog-items-list .blog-item.video-item .item-link .caption p.desc {
		font-size: 0.875em;
		margin-top: 12px;
	}

	section.blog .catalog-items-list .blog-item.legend-item .item-link .caption p.desc {
		margin-bottom: 12px;
		font-size: 0.875em;
	}

	section.blog .catalog-items-list .blog-item.virtual-tour-item {
		width: calc((100% - 48px) / 4);
	}

	section.blog .catalog-items-list .blog-item.virtual-tour-item .item-link .thumbnail .img-wrap::before {
		width: 50px;
		min-width: 50px;
		height: 50px;
	}

	section.blog .catalog-items-list .blog-item.tour-item {
		width: calc((100% - 32px) / 3);
	}

	section.blog .catalog-items-list .blog-item.tour-item .item-link .caption	p.h2 {
		font-size: 1.125em;
		margin-bottom: 12px;
	}

	section.blog .catalog-items-list .blog-item.tour-item .item-link .caption span.place::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 4px;
	}

	section.blog .right-side-wrap section.locations-title-box {
		margin-bottom: 24px;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap {
		margin-top: -60px;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-wrap-header {
		padding: 10px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details {
		padding: 24px;
	}

	section.blog.tour-single .page-content h3 {
		padding: 3px 6px;
	}

	section.blog.tour-single .tour-route-section {
		margin-bottom: 24px;
	}

	section.blog.tour-single .tour-route-section h2 {
		font-size: 1.25em;
	}

	section.blog.tour-single .tour-route-section .route-start-point {
		margin-bottom: 16px;
		padding: 12px;
	}

	section.blog.tour-single .tour-route-section .route-start-point h3 {
		margin-bottom: 12px;
		font-size: 1.125em;
	}

	section.blog.tour-single .tour-route-section .route-start-point p {
		margin-bottom: 12px;
	}

	section.blog.tour-single .tour-route-section .route-start-point p:last-child {
		margin-bottom: 0px;
	}

	section.blog.tour-single .tour-route-section .route-start-point .btn.btn-secondary {
		font-size: 0.875em;
	}

	section.blog.tour-single .tour-route-section .route-points {
		padding: 12px;
	}

	section.blog.tour-single .tour-route-section .route-points h3 {
		font-size: 1.125em;
		margin-bottom: 12px;
	}

	section.blog.tour-single .tour-route-section .route-points ol {
		padding-left: 14px;
	}

	section.blog.tour-single .tour-dates-section {
		margin-bottom: 24px;
	}

	section.blog.tour-single .tour-dates-section h2 {
		font-size: 1.25em;
	}

	section.blog.tour-single .tour-dates-section .dates-list .date-item {
		padding: 12px;
		margin-bottom: 16px;
	}

	section.blog.tour-single .tour-dates-section .dates-list .date-item:last-child {
		margin-bottom: 0px;
	}

	section.blog.tour-single .tour-dates-section .dates-list .date-item p.title {
		margin-bottom: 12px;
	}

	section.blog.tour-single .tour-dates-section .dates-list .date-item .time-wrap p.desc {
		margin-bottom: 12px;
	}

	section.blog.tour-single .tour-dates-section .dates-list .date-item .time-wrap .time-tags {
		gap: 6px;
	}

	section.blog.tour-single .tour-dates-section .dates-list .date-item .time-wrap .time-tags span.time-item {
		padding: 3px 10px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item {
		margin-bottom: 16px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item::before {
		width: 35px;
		min-width: 35px;
		height: 35px;
		background-size: 32px auto;
		margin-right: 12px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap {
		gap: 16px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .event-button {
		width: calc((100% - 16px) / 2);
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .btn-share {
		width: calc((100% - 16px) / 2);
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-item .item-link {
		padding: 16px;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .contacts-info {
		padding: 24px;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .contacts-info p {
		margin-bottom: 12px;
	}

	section.blog .right-side-wrap section.plan-your-trip .caption .caption-wrap {
		padding: 45px 24px;
	}

	section.blog .right-side-wrap section.plan-your-trip .caption .caption-wrap h2.main-h2 {
		font-size: 1.5em;
		margin-bottom: 28px;
	}

	section.blog .right-side-wrap section.plan-your-trip .caption .caption-wrap .btn {
		font-size: 0.75em;
	}

	section.blog .right-side-wrap > *:last-child {
    margin-bottom: 0px;
	}

	section.blog .post-single > .meta {
		gap: 24px;
		margin-bottom: 12px;
	}

	section.blog .post-single > .meta span.views::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 3px;
	}

	section.blog .post-single .page-content {
		margin-bottom: 24px;
	}

	section.blog .post-single > h1.main-h1 {
		font-size: 1.875em;
		margin-bottom: 12px;
	}

	section.blog .post-single .single-gallery {
		margin-bottom: 24px;
	}
	
	section.blog .post-single .single-gallery:last-child {
		margin-bottom: 0px;
	}

	section.blog .post-single .single-gallery h2 {
		font-size: 1.25em;
	}

	section.blog.more-posts h2 {
		font-size: 1.875em;
		margin-bottom: 16px;
	}

	section.blog.more-posts .catalog-items-list .blog-item {
		width: calc((100% - 48px) / 4);
	}

	section.blog.more-posts .catalog-items-list .blog-item .item-link .caption {
		padding: 10px 13px;
	}

	section.blog.more-posts .catalog-items-list .blog-item.video-item {
		width: calc((100% - 32px) / 3);
	}

	section.blog.more-posts .catalog-items-list .blog-item.video-item .item-link .caption p.h2 {
		font-size: 1.25em;
	}

	section.blog.more-posts .catalog-items-list .blog-item.legend-item .item-link .caption p.desc {
		margin-top: 12px;
		font-size: 0.875em;
	}

	section.blog.more-posts .catalog-items-list .blog-item.legend-item .item-link .caption span.date {
		margin-top: 12px;
	}

	section.blog.more-posts .catalog-items-list .blog-item.tour-item {
		width: calc((100% - 32px) / 3);
	}

	section.blog.more-posts .catalog-items-list .blog-item.tour-item .item-link .caption p.h2 {
		font-size: 1.125em;
		margin-bottom: 12px;
	}
}

@media screen and (max-width: 991px) {
	section.blog {
		padding: 24px 0px 32px;
	}

	section.blog .catalog-items-list {
		gap: 16px;
	}

	section.blog .catalog-items-list .blog-item .item-link .caption {
		padding: 12px;
	}

	section.blog .catalog-items-list .blog-item .item-link .caption p.h2 {
		margin-bottom: 10px;
		font-size: 1.125em;
	}

	section.blog .catalog-items-list .blog-item .item-link .thumbnail .img-wrap::after {
		width: 30px;
		height: 30px;
		background-size: 24px;
	}

	@media screen and (min-width: 576px) {
		section.blog .catalog-items-list .blog-item .item-link:hover .thumbnail .img-wrap::after {
			width: 40px;
			height: 40px;
		}
	}

	section.blog .catalog-items-list .blog-item.video-item .item-link .thumbnail .img-wrap::before {
		width: 40px;
		min-width: 40px;
		height: 40px;
	}

	section.blog .catalog-items-list .blog-item.video-item .item-link .caption span.date {
		margin-bottom: 10px;
	}

	section.blog .catalog-items-list .blog-item.video-item .item-link .caption p.desc {
		margin-top: 10px;
	}

	section.blog .catalog-items-list .blog-item.legend-item .item-link .caption p.desc {
		margin-bottom: 10px;
	}

	section.blog .catalog-items-list .blog-item.virtual-tour-item {
		width: calc((100% - 32px) / 3);
	}

	section.blog .catalog-items-list .blog-item.virtual-tour-item .item-link .thumbnail .img-wrap::before {
		width: 40px;
		min-width: 40px;
		height: 40px;
	}

	section.blog .catalog-items-list .blog-item.tour-item {
		width: calc((100% - 16px) / 2);
	}

	section.blog .catalog-items-list .blog-item.tour-item .item-link .caption	p.h2 {
		font-size: 1em;
		margin-bottom: 10px;
	}

	section.blog .catalog-items-list .blog-item.tour-item .item-link .caption span.place::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 3px;
	}

	section.blog .right-side-wrap section.locations-title-box {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap {
		margin-top: 0px;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-wrap-header {
		padding: 8px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details {
		padding: 20px;
	}

	section.blog.tour-single .page-content h3 {
		margin-bottom: 14px;
	}

	section.blog.tour-single .tour-route-section {
		margin-bottom: 20px;
	}

	section.blog.tour-single .tour-route-section h2 {
		font-size: 1.125em;
	}

	section.blog.tour-single .tour-route-section .route-start-point h3 {
		font-size: 1em;
	}

	section.blog.tour-single .tour-route-section .route-start-point p {
		font-size: 0.875em;
	}

	section.blog.tour-single .tour-route-section .route-points ol li {
		font-size: 0.875em;
	}

	section.blog.tour-single .tour-route-section .route-points h3 {
		font-size: 1em;
	}

	section.blog.tour-single .tour-dates-section {
		margin-bottom: 20px;
	}

	section.blog.tour-single .tour-dates-section h2 {
		font-size: 1.125em;
	}

	section.blog.tour-single .tour-dates-section .dates-list .date-item p.title {
		font-size: 0.875em;
	}

	section.blog.tour-single .tour-dates-section .dates-list .date-item .time-wrap p.desc {
		font-size: 0.875em;
	}

	section.blog.tour-single .tour-dates-section .dates-list .date-item .time-wrap .time-tags span.time-item {
		font-size: 0.75em;
		padding: 3px 8px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item {
		margin-bottom: 14px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item::before {
		width: 28px;
		min-width: 28px;
		height: 28px;
		background-size: 24px auto;
		margin-right: 10px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap {
		gap: 14px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .event-button {
		width: calc((100% - 14px) / 2);
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .btn-share {
		width: calc((100% - 14px) / 2);
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-item .item-link {
		padding: 14px;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .contacts-info {
		padding: 20px;
	}

	section.blog .right-side-wrap section.plan-your-trip .caption .caption-wrap {
		padding: 35px 20px;
	}

	section.blog .right-side-wrap section.plan-your-trip .caption .caption-wrap h2.main-h2 {
		font-size: 1.375em;
		margin-bottom: 24px;
	}

	section.blog .right-side-wrap > *:last-child {
    margin-bottom: 0px;
	}

	section.blog .post-single > .meta {
		gap: 20px;
	}

	section.blog .post-single > .meta span.views::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 2px;
	}

	section.blog .post-single .page-content {
		margin-bottom: 22px;
	}

	section.blog .post-single > h1.main-h1 {
		font-size: 1.5em;
		margin-bottom: 12px;
	}

	section.blog .post-single .single-gallery {
		margin-bottom: 20px;
	}
	
	section.blog .post-single .single-gallery:last-child {
		margin-bottom: 0px;
	}

	section.blog .post-single .single-gallery h2 {
		font-size: 1.125em;
	}

	section.blog.more-posts h2 {
		font-size: 1.375em;
		margin-bottom: 14px;
	}

	section.blog.more-posts .catalog-items-list .blog-item {
		width: calc((100% - 16px) / 2);
	}

	section.blog.more-posts .catalog-items-list .blog-item.video-item {
		width: calc((100% - 16px) / 2);
	}

	section.blog.more-posts .catalog-items-list .blog-item.video-item .item-link .caption p.h2 {
		font-size: 1.125em;
	}

	section.blog.more-posts .catalog-items-list .blog-item.legend-item .item-link .caption p.desc {
		margin-top: 10px;
	}

	section.blog.more-posts .catalog-items-list .blog-item.legend-item .item-link .caption span.date {
		margin-top: 10px;
	}

	section.blog.more-posts .catalog-items-list .blog-item.tour-item {
		width: calc((100% - 16px) / 2);
	}

	section.blog.more-posts .catalog-items-list .blog-item.tour-item .item-link .caption p.h2 {
		font-size: 1em;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 767px) {
	section.blog {
		padding: 20px 0px 24px;
	}

	section.blog .catalog-items-list {
		gap: 14px;
	}

	section.blog .catalog-items-list .blog-item .item-link .caption {
		padding: 10px;
	}

	section.blog .catalog-items-list .blog-item .item-link .caption p.h2 {
		font-size: 1em;
	}

	section.blog .catalog-items-list .blog-item.virtual-tour-item {
		width: calc((100% - 14px) / 2);
	}

	section.blog .catalog-items-list .blog-item.tour-item {
		width: calc((100% - 14px) / 2);
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-wrap-header {
		padding: 6px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details {
		padding: 16px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item {
		margin-bottom: 12px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item::before {
		width: 24px;
		min-width: 24px;
		height: 24px;
		background-size: 20px auto;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap {
		gap: 12px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .event-button {
		width: calc((100% - 12px) / 2);
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .btn-share {
		width: calc((100% - 12px) / 2);
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-item .item-link {
		padding: 12px;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .contacts-info {
		padding: 16px;
	}

	section.blog .right-side-wrap section.plan-your-trip .caption .caption-wrap {
		padding: 26px 15px;
	}

	section.blog .right-side-wrap section.plan-your-trip .caption .caption-wrap h2.main-h2 {
		font-size: 1.25em;
		margin-bottom: 20px;
	}

	section.blog .right-side-wrap > *:last-child {
    margin-bottom: 0px;
	}

	section.blog .post-single > .meta {
		gap: 18px;
	}

	section.blog .post-single .page-content {
		margin-bottom: 20px;
	}

	section.blog .post-single > h1.main-h1 {
		font-size: 1.375em;
		margin-bottom: 10px;
	}

	section.blog.more-posts h2 {
		font-size: 1.25em;
		margin-bottom: 12px;
	}

	section.blog.more-posts .catalog-items-list .blog-item {
		width: calc((100% - 14px) / 2);
	}

	section.blog.more-posts .catalog-items-list .blog-item.video-item {
		width: calc((100% - 14px) / 2);
	}

	section.blog.more-posts .catalog-items-list .blog-item.video-item .item-link .caption p.h2 {
		font-size: 1em;
	}

	section.blog.more-posts .catalog-items-list .blog-item.tour-item {
		width: calc((100% - 14px) / 2);
	}
}

@media screen and (max-width: 575px) {
	section.blog .catalog-items-list .blog-item .item-link {
		flex-direction: column;
	}

	section.blog .catalog-items-list .blog-item .item-link .caption {
		width: 100%;
		padding: 10px 13px;
	}

	section.blog .catalog-items-list .blog-item .item-link .thumbnail {
		width: 100%;
	}

	section.blog .catalog-items-list .blog-item .item-link .thumbnail .img-wrap {
		padding-top: 50%;
	}

	section.blog .catalog-items-list .blog-item.video-item {
		width: 100%;
	}

	section.blog .catalog-items-list .blog-item.virtual-tour-item {
		width: 100%;
	}

	section.blog .catalog-items-list .blog-item.tour-item {
		width: 100%;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-wrap-header {
		padding: 4px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details {
		padding: 13px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item {
		font-size: 0.875em;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .detail-item::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
		background-size: 18px auto;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap {
		gap: 10px;
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .event-button {
		width: calc((100% - 10px) / 2);
	}

	section.blog.tour-single .right-side-wrap section.locations-title-box .locations-wrap .tour-details .btns-wrap .btn-share {
		width: calc((100% - 10px) / 2);
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .locations-item .item-link {
		padding: 10px;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .contacts-info {
		padding: 13px;
	}

	section.blog .right-side-wrap section.locations-title-box .locations-wrap .contacts-info p {
		font-size: 0.875em;
	}

	section.blog .right-side-wrap section.plan-your-trip .caption .caption-wrap {
		padding: 22px 13px;
	}

	section.blog .right-side-wrap section.plan-your-trip .caption .caption-wrap h2.main-h2 {
		font-size: 1.125em;
		margin-bottom: 18px;
	}

	section.blog .right-side-wrap > *:last-child {
    margin-bottom: 0px;
	}

	section.blog .post-single > .meta {
		gap: 16px;
	}

	section.blog .post-single > .meta span {
		font-size: 0.875em;
	}

	section.blog .post-single > h1.main-h1 {
		font-size: 1.25em;
	}

	section.blog .post-single .single-gallery .img-box .slick-arrow {
		width: 24px;
		min-width: 24px;
		height: 24px;
		background-size: 10px;
	}

	section.blog.more-posts h2 {
		font-size: 1.125em;
	}

	section.blog.more-posts .catalog-items-list .blog-item {
		width: 100%;
	}

	section.blog.more-posts .catalog-items-list .blog-item.video-item {
		width: 100%;
	}

	section.blog.more-posts .catalog-items-list .blog-item.video-item .item-link .thumbnail .img-wrap {
		padding-top: 50%;
	}

	section.blog.more-posts .catalog-items-list .blog-item.tour-item {
		width: 100%;
	}
}

































section.blog.products .catalog-items-list .product-item {
	width: calc((100% - 40px) / 3);
}

.product-item .item-link {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 0px;
	background-color: var(--main-white);
	border: 1px solid #deeef3;
	position: relative;
}

.product-item .item-link::after {
	content: '';
	position: absolute;
	left: -5px;
	top: -5px;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	border-radius: 0px;
	border: 5px solid var(--main-yellow);
	opacity: 0;
	transition: var(--speed-fast);
	user-select: none;
	pointer-events: none;
}

@media screen and (min-width: 576px) {
	.product-item .item-link:hover::after {
		opacity: 1;
	}
}

.product-item .item-link .thumbnail {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 0px 12%;
}

.product-item .item-link .thumbnail .img-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 133%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-item .item-link .thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-item .item-link .thumbnail .img-wrap .btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 1em;
  line-height: 100%;
  padding: 8px 14px 6px;
	opacity: 0;
}

@media screen and (min-width: 576px) {
	.product-item .item-link:hover .thumbnail .img-wrap .btn {
		opacity: 1;
	}
}

.product-item .item-link .caption {
	width: 100%;
	padding: 15px;
	display: flex;
	flex-direction: column;
}

.product-item .item-link .caption p.h2 {
	font-size: 1.375em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	text-align: center;
	margin: 0px
}

.product-item .item-link .caption .product-price {
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-item .item-link .caption span.price {
	font-size: 1em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-green);
}

@media screen and (max-width: 1299px) {
	section.blog.products .catalog-items-list .product-item {
		width: calc((100% - 36px) / 3);
	}

	.product-item .item-link .thumbnail .img-wrap .btn {
		padding: 6px 12px 4px;
	}

	.product-item .item-link .caption {
		padding: 13px;
	}

	.product-item .item-link .caption p.h2 {
		font-size: 1.25em;
	}
}

@media screen and (max-width: 1199px) {
	section.blog.products .catalog-items-list .product-item {
		width: calc((100% - 32px) / 3);
	}

	.product-item .item-link .thumbnail {
		padding: 0px 10%;
	}

	.product-item .item-link .thumbnail .img-wrap {
		padding-top: 120%;
	}

	.product-item .item-link .thumbnail .img-wrap .btn {
		font-size: 0.875em;
	}

	.product-item .item-link .caption {
		padding: 12px;
	}

	.product-item .item-link .caption p.h2 {
		font-size: 1.125em;
	}
}

@media screen and (max-width: 991px) {
	section.blog.products .catalog-items-list .product-item {
		width: calc((100% - 16px) / 2);
	}

	.product-item .item-link .thumbnail {
		padding: 0px 6%;
	}

	.product-item .item-link .thumbnail .img-wrap {
		padding-top: 115%;
	}
}

@media screen and (max-width: 767px) {
	section.blog.products .catalog-items-list .product-item {
		width: calc((100% - 14px) / 2);
	}

	.product-item .item-link .thumbnail {
		padding: 0px 4%;
	}

	.product-item .item-link .thumbnail .img-wrap {
		padding-top: 110%;
	}

	.product-item .item-link .caption {
		padding: 10px 12px;
	}

	.product-item .item-link .caption p.h2 {
		font-size: 1em;
	}

	.product-item .item-link .caption span.price {
		font-size: 0.875em;
	}
}

@media screen and (max-width: 575px) {
	section.blog.products .catalog-items-list .product-item {
		width: 100%;
	}

	.product-item .item-link .thumbnail {
		padding: 0px;
	}

	.product-item .item-link .thumbnail .img-wrap {
		padding-top: 105%;
	}
}












































section.place-single.product-single {
	background-color: #d9ebf1;
}

section.place-single.product-single .main-side-wrap {
	background-color: var(--main-white);
	width: 100%;
}

section.place-single.product-single .main-side-wrap .product-gallery {
	display: flex;
	flex-direction: column;
	width: 100%;
}

section.place-single.product-single .main-side-wrap .product-gallery .main-product-thumbnail {
	width: 100%;
}

section.place-single.product-single .main-side-wrap .product-gallery .main-product-thumbnail .img-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	padding-top: 60%;
	background-color: var(--main-white);
}

section.place-single.product-single .main-side-wrap .product-gallery .main-product-thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

section.place-single.product-single .main-side-wrap .product-gallery .main-product-gallery {
	width: 100%;
	position: relative;
}

section.place-single.product-single .main-side-wrap .product-gallery .main-product-gallery .img-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	padding-top: 60%;
	background-color: var(--main-white);
	opacity: 0.6;
}

section.place-single.product-single .main-side-wrap .product-gallery .main-product-gallery .slick-slide.slick-current .img-wrap {
	opacity: 1;
}

section.place-single.product-single .main-side-wrap .product-gallery .main-product-gallery .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
}

section.place-single.product-single .main-side-wrap .product-gallery .main-product-gallery .slick-arrow {
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	min-width: 30px;
	height: 30px;
	border-radius: 50%;
	background-size: 14px;
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--main-red);
	border: none;
	font-size: 0px;
	color: transparent;
	overflow: hidden;
}

@media screen and (min-width: 576px) {
	section.place-single.product-single .main-side-wrap .product-gallery .main-product-gallery .slick-arrow:hover {
		background-color: var(--main-yellow);
	}
}

section.place-single.product-single .main-side-wrap .product-gallery .main-product-gallery .slick-arrow.slick-prev {
	left: -10px;
	background-image: url(../img/arrow-left-white.svg);
}

section.place-single.product-single .main-side-wrap .product-gallery .main-product-gallery .slick-arrow.slick-next {
	right: -10px;
	background-image: url(../img/arrow-right-white.svg);
}

section.place-single.product-single .main-side-wrap .thumbnail {
	display: flex;
	flex-direction: column;
	width: 100%;
}

section.place-single.product-single .main-side-wrap .thumbnail .img-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	padding-top: 60%;
	background-color: var(--main-white);
}

section.place-single.product-single .main-side-wrap .thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

section.place-single.product-single .main-side-wrap .page-content {
	padding: 20px 30px;
}

section.place-single.product-single .right-side-wrap {
	position: sticky;
	top: 100px;
}

section.place-single.product-single .caption-wrap {
	padding: 20px 30px;
	background-color: var(--main-white);
}

section.place-single.product-single .caption-wrap h1.main-h1 {
	font-size: 1.75em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin: 0px;
}

section.place-single.product-single .caption-wrap .product-price-header {
	margin-top: 0px;
	display: flex;
	flex-direction: column;
}

section.place-single.product-single .caption-wrap .product-price-header span.price {
	font-size: 1.25em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-green);
	margin: 0px;
}

section.place-single.product-single .caption-wrap p.text-muted {
	font-size: 1em;
	line-height: 120%;
	font-weight: 400;
	margin: 16px 0px 0px;
}

section.related-products {
	padding: 40px 0px 60px;
	background-color: var(--main-bg);
}

section.related-products .similar-posts {
	display: flex;
	flex-direction: column;
	width: 100%;
}

section.related-products .similar-posts h2 {
	font-size: 2.125em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 20px;
}

section.related-products .similar-posts .blog-items {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

section.related-products .similar-posts .blog-items .product-item {
	width: calc((100% - 40px) / 3);
}

@media screen and (max-width: 1299px) {
	section.place-single.product-single .main-side-wrap .page-content {
		padding: 18px 28px;
	}

	section.place-single.product-single .right-side-wrap {
		top: 92px;
	}

	section.place-single.product-single .caption-wrap {
		padding: 18px 28px;
	}

	section.place-single.product-single .caption-wrap h1.main-h1 {
		font-size: 1.625em;
	}

	section.place-single.product-single .caption-wrap .product-price-header span.price {
		font-size: 1.125em;
	}

	section.place-single.product-single .caption-wrap p.text-muted {
		margin: 14px 0px 0px;
	}

	section.related-products {
		padding: 35px 0px 52px;
	}

	section.related-products .similar-posts h2 {
		font-size: 2em;
		margin-bottom: 18px;
	}

	section.related-products .similar-posts .blog-items {
		gap: 18px;
	}

	section.related-products .similar-posts .blog-items .product-item {
		width: calc((100% - 36px) / 3);
	}
}

@media screen and (max-width: 1199px) {
	section.place-single.product-single .main-side-wrap .page-content {
		padding: 16px 24px;
	}

	section.place-single.product-single .right-side-wrap {
		top: 76px;
	}

	section.place-single.product-single .caption-wrap {
		padding: 16px 24px;
	}

	section.place-single.product-single .caption-wrap h1.main-h1 {
		font-size: 1.5em;
	}

	section.place-single.product-single .caption-wrap .product-price-header span.price {
		font-size: 1em;
	}

	section.place-single.product-single .caption-wrap p.text-muted {
		margin: 12px 0px 0px;
	}

	section.related-products {
		padding: 28px 0px 42px;
	}

	section.related-products .similar-posts h2 {
		font-size: 1.875em;
		margin-bottom: 16px;
	}

	section.related-products .similar-posts .blog-items {
		gap: 16px;
	}

	section.related-products .similar-posts .blog-items .product-item {
		width: calc((100% - 32px) / 3);
	}
}

@media screen and (max-width: 991px) {
	section.place-single.product-single .main-side-wrap .page-content {
		padding: 14px 20px;
	}

	section.place-single.product-single .right-side-wrap {
		top: auto;
	}

	section.place-single.product-single .caption-wrap {
		padding: 14px 20px;
	}

	section.place-single.product-single .caption-wrap h1.main-h1 {
		font-size: 1.5em;
	}

	section.place-single.product-single .caption-wrap p.text-muted {
		margin: 10px 0px 0px;
	}

	section.related-products {
		padding: 24px 0px 32px;
	}

	section.related-products .similar-posts h2 {
		font-size: 1.375em;
		margin-bottom: 14px;
	}

	section.related-products .similar-posts .blog-items .product-item {
		width: calc((100% - 16px) / 2);
	}
}

@media screen and (max-width: 767px) {
	section.place-single.product-single .main-side-wrap .page-content {
		padding: 14px 16px;
	}

	section.place-single.product-single .caption-wrap {
		padding: 14px 16px;
	}

	section.place-single.product-single .caption-wrap h1.main-h1 {
		font-size: 1.375em;
	}

	section.place-single.product-single .caption-wrap p.text-muted {
		font-size: 0.875em;
	}

	section.related-products {
		padding: 20px 0px 24px;
	}

	section.related-products .similar-posts h2 {
		font-size: 1.25em;
		margin-bottom: 12px;
	}

	section.related-products .similar-posts .blog-items {
		gap: 14px;
	}

	section.related-products .similar-posts .blog-items .product-item {
		width: calc((100% - 14px) / 2);
	}
}

@media screen and (max-width: 575px) {
	section.place-single.product-single .main-side-wrap .thumbnail .img-wrap {
		padding-top: 100%;
	}

	section.place-single.product-single .main-side-wrap .product-gallery .main-product-thumbnail .img-wrap {
		padding-top: 100%;
	}

	section.place-single.product-single .main-side-wrap .product-gallery .main-product-gallery .slick-arrow {
		width: 24px;
		min-width: 24px;
		height: 24px;
		background-size: 10px;
	}

	section.place-single.product-single .main-side-wrap .page-content {
		padding: 13px;
	}

	section.place-single.product-single .caption-wrap {
		padding: 13px;
	}

	section.place-single.product-single .caption-wrap h1.main-h1 {
		font-size: 1.25em;
	}

	section.related-products .similar-posts h2 {
		font-size: 1.125em;
	}

	section.related-products .similar-posts .blog-items .product-item {
		width: 100%;
	}
}





































section.blog.guides .catalog-items-list .guide-item {
	width: calc((100% - 40px) / 3);
}

.guide-item .item-link {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 0px;
	background-color: var(--main-white);
	border: 1px solid #deeef3;
	position: relative;
	padding: 20px;
}

.guide-item .item-link .top-wrap {
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

.guide-item .item-link .top-wrap .thumbnail {
	width: 125px;
	min-width: 125px;
	border: 5px solid #f4f4f4;
	display: flex;
	flex-direction: column;
	margin-right: 16px;
	border-radius: 50%;
}

.guide-item .item-link .top-wrap .thumbnail .img-wrap {
	width: 100%;
	padding-top: 100%;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
}

.guide-item .item-link .top-wrap .thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.guide-item .item-link .top-wrap p.h2 {
	font-size: 1.375em;
	line-height: 120%;
	font-weight: 700;
	margin: 0px;
	color: var(--main-green);
}

@media screen and (min-width: 576px) {
	.guide-item .item-link:hover .top-wrap p.h2 {
		text-decoration: underline;
	}
}

.guide-item .item-link .top-wrap .stats-wrap {
	flex: 1;
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #bbbbbb;
}

.guide-item .item-link .top-wrap .stats-wrap .stats-item {
	display: flex;
	align-items: center;
	padding-bottom: 15px;
}

.guide-item .item-link .top-wrap .stats-wrap .stats-item span {
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 400;
	color: #bbbbbb;
}

.guide-item .item-link .top-wrap .stats-wrap .stats-item span span {
	font-size: 1em;
	color: var(--main-red);
}

.guide-item .item-link .caption {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.guide-item .item-link .caption p.h2 {
	font-size: 1.375em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-green);
	margin-bottom: 16px;
}

@media screen and (min-width: 576px) {
	.guide-item .item-link:hover .caption p.h2 {
		text-decoration: underline;
	}
}

.guide-item .item-link .caption p.experience {
	font-size: 1em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-blue);
	margin-bottom: 16px;
}

.guide-item .item-link .caption p.tours {
	font-size: 1em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-blue);
	margin-bottom: 16px;
}

.guide-item .item-link .caption p.text {
	font-size: 1em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-blue);
	margin-bottom: 0px;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	line-clamp: 4;
}

@media screen and (max-width: 1299px) {
	section.blog.guides .catalog-items-list .guide-item {
		width: calc((100% - 36px) / 3);
	}

	.guide-item .item-link {
		padding: 18px;
	}

	.guide-item .item-link .top-wrap {
		margin-bottom: 14px;
	}

	.guide-item .item-link .top-wrap .thumbnail {
		width: 115px;
		min-width: 115px;
		margin-right: 14px;
		border-width: 4px;
	}

	.guide-item .item-link .top-wrap p.h2 {
		font-size: 1.25em;
	}

	.guide-item .item-link .top-wrap .stats-wrap .stats-item {
		padding-bottom: 14px;
	}

	.guide-item .item-link .top-wrap .stats-wrap .stats-item span {
		font-size: 1em;
	}

	.guide-item .item-link .caption p.h2 {
		font-size: 1.25em;
		margin-bottom: 14px;
	}

	.guide-item .item-link .caption p.experience {
		margin-bottom: 14px;
	}
	
	.guide-item .item-link .caption p.tours {
		margin-bottom: 14px;
	}
}

@media screen and (max-width: 1199px) {
	section.blog.guides .catalog-items-list .guide-item {
		width: calc((100% - 32px) / 3);
	}

	.guide-item .item-link {
		padding: 16px;
	}

	.guide-item .item-link .top-wrap {
		margin-bottom: 12px;
	}

	.guide-item .item-link .top-wrap .thumbnail {
		width: 105px;
		min-width: 105px;
		margin-right: 12px;
		border-width: 3px;
	}

	.guide-item .item-link .top-wrap p.h2 {
		font-size: 1.125em;
	}

	.guide-item .item-link .top-wrap .stats-wrap .stats-item {
		padding-bottom: 12px;
	}

	.guide-item .item-link .top-wrap .stats-wrap .stats-item span {
		font-size: 0.875em;
	}

	.guide-item .item-link .caption p.h2 {
		font-size: 1.125em;
		margin-bottom: 12px;
	}

	.guide-item .item-link .caption p.experience {
		font-size: 0.875em;
		margin-bottom: 12px;
	}
	
	.guide-item .item-link .caption p.tours {
		font-size: 0.875em;
		margin-bottom: 12px;
	}

	.guide-item .item-link .caption p.text {
		font-size: 0.875em;
	}
}

@media screen and (max-width: 991px) {
	section.blog.guides .catalog-items-list .guide-item {
		width: calc((100% - 16px) / 2);
	}

	.guide-item .item-link {
		padding: 14px;
	}

	.guide-item .item-link .top-wrap .thumbnail {
		width: 95px;
		min-width: 95px;
		border-width: 2px;
	}
}

@media screen and (max-width: 767px) {
	section.blog.guides .catalog-items-list .guide-item {
		width: calc((100% - 14px) / 2);
	}

	.guide-item .item-link {
		padding: 12px;
	}

	.guide-item .item-link .top-wrap {
		margin-bottom: 10px;
	}

	.guide-item .item-link .top-wrap .thumbnail {
		width: 85px;
		min-width: 85px;
		margin-right: 10px;
		border-width: 1px;
	}

	.guide-item .item-link .top-wrap .stats-wrap .stats-item {
		padding-bottom: 10px;
	}

	.guide-item .item-link .caption p.h2 {
		margin-bottom: 10px;
	}

	.guide-item .item-link .caption p.experience {
		margin-bottom: 10px;
	}
	
	.guide-item .item-link .caption p.tours {
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 575px) {
	section.blog.guides .catalog-items-list .guide-item {
		width: 100%;
	}

	.guide-item .item-link {
		padding: 10px;
	}

	.guide-item .item-link .top-wrap .thumbnail {
		width: 72px;
		min-width: 72px;
	}

	.guide-item .item-link .top-wrap p.h2 {
		font-size: 1em;
	}

	.guide-item .item-link .caption p.h2 {
		font-size: 1em;
	}
}










































section.place-single.guide-single {
	background-color: #d9ebf1;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content {
	background-color: var(--main-white);
	margin-bottom: 20px;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .profile-header-bg {
	width: 100%;
	padding-top: 240px;
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../img/guide-bg.png);
	background-color: var(--main-white);
}

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .profile-header-bg::after {
	position: absolute;
	z-index: 2;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
}

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .profile-header-thumbnail {
	margin-top: -130px;
	margin-left: 50px;
	width: 192px;
	border: 10px solid var(--main-white);
	border-radius: 100%;
	position: relative;
	z-index: 2;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .profile-header-thumbnail .img-wrap {
	width: 100%;
	padding-top: 100%;
	border-radius: 100%;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .profile-header-thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption {
	padding: 20px;
	display: flex;
	flex-direction: column;
} 

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption h1 {
	font-size: 2.25em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-black);
	margin-bottom: 16px;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 16px;
	gap: 30px;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta span {
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-blue);
	display: flex;
	align-items: center;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta span.favorites::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url(../img/eye-star.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 6px;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta span.views::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url(../img/eye-stat.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 6px;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta span.shares::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url(../img/share-icon-gray.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 6px;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption .stats-wrap {
	display: flex;
	flex-wrap: wrap;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 16px;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption .stats-wrap .stats-item {
	display: flex;
	align-items: center;
	gap: 5px;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption .stats-wrap .stats-item span {
	font-size: 1em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-blue);
}

section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption .btns-wrap {
	margin-bottom: 0px;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .contacts-list {
	background-color: var(--main-white);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	padding: 20px;
	margin-bottom: 20px;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .contacts-list .contact-item {
	display: flex;
	align-items: center;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .contacts-list .contact-item a {
	display: flex;
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-blue);
	text-decoration: none;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .contacts-list .contact-item a::before {
	content: '';
	width: 26px;
	min-width: 26px;
	height: 26px;
	background-image: url(../img/nav-gray.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	margin-right: 8px;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .contacts-list .contact-item.phone a::before {
  background-image: url(../img/tel-gray.svg);
}

section.place-single.guide-single .single-wrapper .main-side-wrap .contacts-list .contact-item.email a::before {
  background-image: url(../img/email-gray.svg);
	background-size: 80% 80%;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .guide-bio {
	padding: 20px;
	background-color: var(--main-white);
	margin-bottom: 20px;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .guide-bio h2 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .location-gallery {
	padding: 20px;
	background-color: var(--main-white);
	margin-bottom: 20px;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .location-gallery h2 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .location-gallery .gallery-wrap .gallery-item {
	display: flex;
	flex-direction: column;
	width: 100%;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .location-gallery .gallery-wrap .gallery-item a {
	display: flex;
	flex-direction: column;
	width: 100%;
	text-decoration: none;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .location-gallery .gallery-wrap .gallery-item a .img-wrap {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding-top: 60%;
	position: relative;
}

section.place-single.guide-single .single-wrapper .main-side-wrap .location-gallery .gallery-wrap .gallery-item a .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.place-single.guide-single .single-wrapper .main-side-wrap > *:last-child {
	margin-bottom: 0px;
}

section.related-products .similar-posts .blog-items .guide-item {
	width: calc((100% - 40px) / 3);
}

@media screen and (max-width: 1299px) {
	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content {
		margin-bottom: 18px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .profile-header-bg {
		padding-top: 220px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .profile-header-thumbnail {
		margin-top: -120px;
		margin-left: 46px;
		width: 176px;
		border-width: 9px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption {
		padding: 18px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption h1 {
		font-size: 2.125em;
		margin-bottom: 14px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta {
		margin-bottom: 14px;
		gap: 28px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta span.favorites::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 4px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta span.views::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 4px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta span.shares::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 4px;
	}
	
	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption .stats-wrap {
		gap: 14px;
		margin-bottom: 14px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .contacts-list {
		gap: 14px;
		padding: 18px;
		margin-bottom: 18px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .contacts-list .contact-item a::before {
		width: 24px;
		min-width: 24px;
		height: 24px;
		margin-right: 6px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .guide-bio {
		padding: 18px;
		margin-bottom: 18px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .guide-bio h2 {
		font-size: 1.375em;
		margin-bottom: 14px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .location-gallery {
		padding: 18px;
		margin-bottom: 18px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .location-gallery h2 {
		font-size: 1.375em;
		margin-bottom: 14px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap > *:last-child {
		margin-bottom: 0px;
	}

	section.related-products .similar-posts .blog-items .guide-item {
		width: calc((100% - 36px) / 3);
	}
}

@media screen and (max-width: 1199px) {
	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content {
		margin-bottom: 16px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .profile-header-bg {
		padding-top: 180px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .profile-header-thumbnail {
		margin-top: -100px;
		margin-left: 38px;
		width: 146px;
		border-width: 8px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption {
		padding: 16px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption h1 {
		font-size: 1.875em;
		margin-bottom: 12px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta {
		margin-bottom: 12px;
		gap: 24px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta span.favorites::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 3px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta span.views::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 3px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta span.shares::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 3px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption .stats-wrap {
		gap: 12px;
		margin-bottom: 12px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .contacts-list {
		gap: 12px;
		padding: 16px;
		margin-bottom: 16px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .contacts-list .contact-item a::before {
		width: 22px;
		min-width: 22px;
		height: 22px;
		margin-right: 4px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .guide-bio {
		padding: 16px;
		margin-bottom: 16px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .guide-bio h2 {
		font-size: 1.25em;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .location-gallery {
		padding: 16px;
		margin-bottom: 16px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .location-gallery h2 {
		font-size: 1.25em;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap > *:last-child {
		margin-bottom: 0px;
	}

	section.related-products .similar-posts .blog-items .guide-item {
		width: calc((100% - 32px) / 3);
	}
}

@media screen and (max-width: 991px) {
	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .profile-header-bg {
		padding-top: 140px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .profile-header-thumbnail {
		margin-top: -75px;
		margin-left: 30px;
		width: 120px;
		border-width: 7px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption {
		padding: 14px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption h1 {
		font-size: 1.625em;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta {
		gap: 20px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta span.favorites::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 2px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta span.views::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 2px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta span.shares::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 2px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .contacts-list {
		padding: 14px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .contacts-list .contact-item a::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .guide-bio {
		padding: 14px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .guide-bio h2 {
		font-size: 1.125em;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .location-gallery {
		padding: 14px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .location-gallery h2 {
		font-size: 1.125em;
	}

	section.related-products .similar-posts .blog-items .guide-item {
		width: calc((100% - 16px) / 2);
	}
}

@media screen and (max-width: 767px) {
	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .profile-header-bg {
		padding-top: 105px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .profile-header-thumbnail {
		margin-left: calc(50% - 60px);
		width: 120px;
		border-width: 4px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption {
		padding: 13px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta {
		gap: 18px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption .stats-wrap .stats-item span {
		font-size: 0.875em;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption h1 {
		font-size: 1.375em;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .contacts-list {
		padding: 13px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .contacts-list .contact-item a {
		font-size: 0.875em;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .guide-bio {
		padding: 13px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .location-gallery {
		padding: 13px;
	}

	section.related-products .similar-posts .blog-items .guide-item {
		width: calc((100% - 14px) / 2);
	}
}

@media screen and (max-width: 575px) {
	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .profile-header-bg {
		padding-top: 100px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .profile-header-thumbnail {
		border-width: 2px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption h1 {
		font-size: 1.25em;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta {
		gap: 16px;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .single-content .caption > .meta span {
		font-size: 0.875em;
	}

	section.place-single.guide-single .single-wrapper .main-side-wrap .contacts-list {
		grid-template-columns: repeat(1, 1fr);
	}

	section.related-products .similar-posts .blog-items .guide-item {
		width: 100%;
	}
}






























section.virtual-tour-single {
	position: relative;
}

section.virtual-tour-single .back-pano-list {
	position: absolute;
	left: 10px;
	top: 80px;
	width: 40px;
	height: 40px;
	border: 2px solid var(--main-white);
	background-color: rgba(0, 0, 0, 0.4);
	background-image: url(../img/left.svg);
	background-size: 12px;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	cursor: pointer;
	font-size: 0px;
	overflow: hidden;
}

section.virtual-tour-single .list-pano-btns {
	position: absolute;
	right: 10px;
	top: 80px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

section.virtual-tour-single .list-pano-btns .show-pano-text {
	width: 40px;
	height: 40px;
	border: 2px solid var(--main-white);
	background-color: rgba(0, 0, 0, 0.4);
	background-image: url(../img/info-pano.svg);
	background-size: 20px auto;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	cursor: pointer;
	font-size: 0px;
	overflow: hidden;
}

section.virtual-tour-single .list-pano-btns .show-pano-text.active {
	background-color: var(--main-red);
}

section.virtual-tour-single .list-pano-btns .pano-text-container {
	position: absolute;
	top: 0px;
	right: 50px;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 20px;
	border-radius: 12px;
	width: 350px;
	opacity: 0;
	user-select: none;
	pointer-events: none;
	transition: opacity var(--speed-fast);
}

section.virtual-tour-single .list-pano-btns .pano-text-container.active {
	opacity: 1;
	user-select: auto;
	pointer-events: all;
}

section.virtual-tour-single .list-pano-btns .pano-text-container p.h2 {
	font-size: 1.25em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.virtual-tour-single .list-pano-btns .pano-text-container .pano-text-wrap {
	display: flex;
	flex-direction: column;
}

section.virtual-tour-single .list-pano-btns .pano-text-container .pano-text-wrap p {
	font-size: 1em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.virtual-tour-single .list-pano-btns .pano-text-container .pano-text-wrap *:last-child {
	margin-bottom: 0px;
}

section.virtual-tour-single .list-pano-btns .autoplay-pano {
	width: 40px;
	height: 40px;
	border: 2px solid var(--main-white);
	background-color: rgba(0, 0, 0, 0.4);
	background-image: url(../img/rotating-pano.svg);
	background-size: 20px auto;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	cursor: pointer;
	font-size: 0px;
	overflow: hidden;
}

section.virtual-tour-single .list-pano-btns .autoplay-pano.active {
	background-color: var(--main-red);
}

section.virtual-tour-single .list-pano-btns .btn-share {
	width: 40px;
	height: 40px;
	border: 2px solid var(--main-white);
	background-color: rgba(0, 0, 0, 0.4);
	background-image: url(../img/share-bold.svg);
	background-size: 20px auto;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	cursor: pointer;
	font-size: 0px;
	overflow: hidden;
}

section.virtual-tour-single .street-view-container {
	height: calc(100svh - 61px);
	width: 100%;
	display: flex;
}

section.virtual-tour-single .street-view-container iframe {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 1299px) {
	section.virtual-tour-single .back-pano-list {
		width: 38px;
		height: 38px;
	}

	section.virtual-tour-single .list-pano-btns {
		top: 60px;
	}

	section.virtual-tour-single .list-pano-btns .show-pano-text {
		width: 38px;
		height: 38px;
		background-size: 18px auto;
	}

	section.virtual-tour-single .list-pano-btns .pano-text-container {
		padding: 18px;
		border-radius: 10px;
	}

	section.virtual-tour-single .list-pano-btns .pano-text-container p.h2 {
		font-size: 1.125em;
		margin-bottom: 14px;
	}

	section.virtual-tour-single .list-pano-btns .pano-text-container .pano-text-wrap p {
		margin-bottom: 14px;
	}

	section.virtual-tour-single .list-pano-btns .pano-text-container .pano-text-wrap *:last-child {
		margin-bottom: 0px;
	}

	section.virtual-tour-single .list-pano-btns .autoplay-pano {
		width: 38px;
		height: 38px;
		background-size: 18px auto;
	}

	section.virtual-tour-single .list-pano-btns .btn-share {
		width: 38px;
		height: 38px;
		background-size: 18px auto;
	}
}

@media screen and (max-width: 1199px) {
	section.virtual-tour-single .back-pano-list {
		width: 36px;
		height: 36px;
	}

	section.virtual-tour-single .list-pano-btns .show-pano-text {
		width: 36px;
		height: 36px;
		background-size: 16px auto;
	}

	section.virtual-tour-single .list-pano-btns .pano-text-container {
		padding: 16px;
		border-radius: 8px;
		right: 46px;
	}

	section.virtual-tour-single .list-pano-btns .pano-text-container p.h2 {
		margin-bottom: 12px;
	}

	section.virtual-tour-single .list-pano-btns .pano-text-container .pano-text-wrap p {
		margin-bottom: 12px;
	}

	section.virtual-tour-single .list-pano-btns .pano-text-container .pano-text-wrap *:last-child {
		margin-bottom: 0px;
	}

	section.virtual-tour-single .list-pano-btns .autoplay-pano {
		width: 36px;
		height: 36px;
		background-size: 16px auto;
	}

	section.virtual-tour-single .list-pano-btns .btn-share {
		width: 36px;
		height: 36px;
		background-size: 16px auto;
	}

	section.virtual-tour-single .street-view-container {
		height: calc(100svh - 51px);
	}
}

@media screen and (max-width: 991px) {
	section.virtual-tour-single .back-pano-list {
		width: 34px;
		height: 34px;
		background-size: 10px;
	}

	section.virtual-tour-single .list-pano-btns .show-pano-text {
		width: 34px;
		height: 34px;
		background-size: 14px auto;
	}

	section.virtual-tour-single .list-pano-btns .pano-text-container {
		padding: 14px;
		border-radius: 6px;
		right: 44px;
	}

	section.virtual-tour-single .list-pano-btns .autoplay-pano {
		width: 34px;
		height: 34px;
		background-size: 14px auto;
	}

	section.virtual-tour-single .list-pano-btns .btn-share {
		width: 34px;
		height: 34px;
		background-size: 14px auto;
	}
}

@media screen and (max-width: 767px) {
	section.virtual-tour-single .back-pano-list {
		width: 32px;
		height: 32px;
		background-size: 10px;
		border-width: 1px;
	}

	section.virtual-tour-single .list-pano-btns .show-pano-text {
		width: 32px;
		height: 32px;
		background-size: 12px auto;
		border-width: 1px;
	}

	section.virtual-tour-single .list-pano-btns .pano-text-container {
		padding: 12px;
		border-radius: 6px;
		right: 42px;
	}

	section.virtual-tour-single .list-pano-btns .autoplay-pano {
		width: 32px;
		height: 32px;
		background-size: 12px auto;
		border-width: 1px;
	}

	section.virtual-tour-single .list-pano-btns .btn-share {
		width: 32px;
		height: 32px;
		background-size: 12px auto;
		border-width: 1px;
	}
}

@media screen and (max-width: 575px) {
	section.virtual-tour-single .list-pano-btns .pano-text-container {
		padding: 10px;
		border-radius: 4px;
		right: 40px;
		width: 260px;
	}

	section.virtual-tour-single .list-pano-btns .pano-text-container p.h2 {
		font-size: 1em;
	}

	section.virtual-tour-single .list-pano-btns .pano-text-container .pano-text-wrap p {
		font-size: 0.875em;
	}
}





































section.contacts {
	padding: 60px 0px;
	background-color: var(--main-white);
}

section.contacts .contacts-wrap .csm-logo {
	/* height: 130px; */
	width: 100%;
}

section.contacts .contacts-wrap .csm-logo img {
	/* height: 100%;
	width: auto; */
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: left;
}

section.contacts .contacts-wrap h3 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.contacts .contacts-wrap p {
	font-size: 1.125em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.contacts .contacts-wrap p a {
	color: var(--main-blue);
	text-decoration: none;
}

@media screen and (min-width: 576px) {
	section.contacts .contacts-wrap p a:hover {
		text-decoration: underline;
	}
}

section.contacts .contacts-wrap *:last-child {
	margin-bottom: 0px;
}

section.map {
	position: relative;
	width: 100%;
	height: 400px;
}

section.map iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 1299px) {
	section.contacts {
		padding: 52px 0px;
	}

	section.contacts .contacts-wrap h3 {
		font-size: 1.375em;
		margin-bottom: 14px;
	}

	section.contacts .contacts-wrap p {
		font-size: 1em;
		margin-bottom: 14px;
	}

	section.map {
		height: 360px;
	}
}

@media screen and (max-width: 1199px) {
	section.contacts {
		padding: 42px 0px;
	}

	section.contacts .contacts-wrap h3 {
		font-size: 1.25em;
	}

	section.map {
		height: 300px;
	}
}

@media screen and (max-width: 991px) {
	section.contacts {
		padding: 32px 0px;
	}

	section.contacts .contacts-wrap h3 {
		font-size: 1.125em;
	}

	section.map {
		height: 240px;
	}
}

@media screen and (max-width: 767px) {
	section.contacts {
		padding: 24px 0px;
	}

	section.contacts .contacts-wrap {
		margin-bottom: 20px;
	}

	section.map {
		height: 200px;
	}
}




































section.static-page {
	padding: 40px 0px 60px;
	background-color: var(--main-bg);
	position: relative;
}

section.static-page .page-content {
	background-color: var(--main-white);
	margin-bottom: 0px;
}

section.static-page .page-content:not(:last-child) {
	margin-bottom: 32px;
}

@media screen and (max-width: 1299px) {
	section.static-page {
		padding: 35px 0px 52px;
	}
}

@media screen and (max-width: 1199px) {
	section.static-page {
		padding: 28px 0px 42px;
	}
}

@media screen and (max-width: 991px) {
	section.static-page {
		padding: 24px 0px 32px;
	}
}

@media screen and (max-width: 767px) {
	section.static-page {
		padding: 20px 0px 24px;
	}
}

@media screen and (max-width: 575px) {
	section.static-page {
		padding: 20px 0px 24px;
	}
}























section.profile-page {
	padding: 0px;
	background-color: #f4f4f4;
	display: flex;
}

section.profile-page .profile-side-menu {
	position: sticky;
	top: 61px;
	width: 300px;
	height: calc(100svh - 61px);
	background-color: var(--main-white);
	padding: 20px 10px 20px 20px;
	overflow-y: auto;
	scrollbar-color: transparent transparent;
	scrollbar-width: thin;
	scrollbar-gutter: stable;
}

section.profile-page .profile-side-menu::-webkit-scrollbar {
	width: 0px;
	height: 0px;
}

section.profile-page .profile-side-menu:hover {
	scrollbar-color: var(--main-blue) transparent;
}

section.profile-page .profile-side-menu .profile-caption {
	display: flex;
	align-items: center;
	margin-bottom: 32px;
}

section.profile-page .profile-side-menu .profile-caption .thumbnail {
	width: 44px;
	min-width: 44px;
	height: 44px;
	border: 2px solid var(--main-green);
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--main-white);
	overflow: hidden;
	margin-right: 20px;
}

section.profile-page .profile-side-menu .profile-caption .thumbnail .img-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

section.profile-page .profile-side-menu .profile-caption .thumbnail .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.profile-page .profile-side-menu .profile-caption .thumbnail .img-wrap .avatar-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25em;
	width: 100%;
	height: 100%;
	background-color: var(--main-white);
	color: var(--main-black);
}

section.profile-page .profile-side-menu .profile-caption span.name {
	font-size: 1.25em;
	line-height: 150%;
	font-weight: 700;
	color: var(--main-blue);
	margin: 0px;
}

section.profile-page .profile-side-menu ul.profile-menu {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item a {
	padding: 10px 16px;
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-blue);
	display: flex;
	align-items: center;
	background-color: var(--main-white);
	text-decoration: none;
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item a:hover {
	background-color: #f2f2f2;
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item a::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	margin-right: 16px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-profile a::before {
	background-image: url(../img/user-profile-blue.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-favorites a::before {
	background-image: url(../img/user-favorites-blue.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-discounts a::before {
	background-image: url(../img/user-discounts-blue.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-events a::before {
	background-image: url(../img/user-events-blue.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-locations a::before {
	background-image: url(../img/user-locations-blue.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-products a::before {
	background-image: url(../img/user-products-blue.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-artists a::before {
	background-image: url(../img/user-profile-blue.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-articles a::before {
	background-image: url(../img/user-articles-blue.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-reviews a::before {
	background-image: url(../img/user-reviews-blue.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-orders a::before {
	background-image: url(../img/user-orders-blue.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-booking a::before {
	background-image: url(../img/user-booking-blue.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.active a {
	background-color: var(--main-blue);
	color: var(--main-white);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-profile.active a::before {
	background-image: url(../img/user-profile-white.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-favorites.active a::before {
	background-image: url(../img/user-favorites-white.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-discounts.active a::before {
	background-image: url(../img/user-discounts-white.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-events.active a::before {
	background-image: url(../img/user-events-white.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-locations.active a::before {
	background-image: url(../img/user-locations-white.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-products.active a::before {
	background-image: url(../img/user-products-white.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-artists.active a::before {
	background-image: url(../img/user-profile-white.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-articles.active a::before {
	background-image: url(../img/user-articles-white.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-reviews.active a::before {
	background-image: url(../img/user-reviews-white.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-orders.active a::before {
	background-image: url(../img/user-orders-white.svg);
}

section.profile-page .profile-side-menu ul.profile-menu li.menu-item.user-booking.active a::before {
	background-image: url(../img/user-booking-white.svg);
}

section.profile-page .profile-main-body {
	width: calc(100vw - 300px);
	min-height: calc(100svh - 61px);
	background-color: transparent;
	padding: 20px 30px;
}

section.profile-page .profile-main-body .my-profile {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	max-width: 600px;
	width: 100%;
	margin: 40px auto 0px;
	position: relative;
	padding: 40px 30px 30px;
	background-color: var(--main-white);
	color: var(--main-blue);
}

section.profile-page .profile-main-body .my-profile p {
	font-size: 1em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.profile-page .profile-main-body .my-profile p.h3 {
	font-size: 1.25em;
	font-weight: 700;
}

section.profile-page .profile-main-body .my-profile p.phone {
	color: var(--main-black);
}

section.profile-page .profile-main-body .my-profile p.email {
	color: var(--main-black);
}

section.profile-page .profile-main-body .my-profile .thumbnail {
	width: 125px;
	min-width: 125px;
	height: 125px;
	border-radius: 50%;
	overflow: hidden;
	background-color: #f2f2f2;
	border: 2px solid var(--main-green);
	margin: 0px auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.profile-page .profile-main-body .my-profile .thumbnail .img-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

section.profile-page .profile-main-body .my-profile .thumbnail .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.profile-page .profile-main-body .my-profile .thumbnail .img-wrap .avatar-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25em;
	width: 100%;
	height: 100%;
	background-color: var(--main-white);
	color: var(--main-black);
}

section.profile-page .profile-main-body .my-profile a.btn-save {
	font-size: 1em;
	line-height: 120%;
	font-weight: 700;
	text-transform: uppercase;
	background-color: var(--main-red);
	color: var(--main-white);
	padding: 8px 12px;
	text-decoration: none;
	display: inline-block;
	margin-top: 16px;
}

section.profile-page .profile-main-body .my-profile a.btn-edit {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 50px;
	min-width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	background-color: var(--main-blue);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 40% 40%;
	background-image: url(../img/edit-white.svg);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0px;
	color: transparent;
}

section.profile-page .profile-main-body .my-profile a.btn-edit:hover {
	background-color: var(--main-red);
}

section.profile-page .profile-main-body .profile-main-wrap p.h2 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 20px;
}

section.profile-page .profile-main-body .profile-main-wrap .nav-tabs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border: none;
	gap: 20px;
	margin-bottom: 20px;
}

section.profile-page .profile-main-body .profile-main-wrap .nav-tabs button {
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-black);
	padding: 0px;
	border: none;
	background-color: transparent;
	border-bottom: 1px solid transparent;
	transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
	section.profile-page .profile-main-body .profile-main-wrap .nav-tabs button:hover {
		color: var(--main-red);
	}
}

section.profile-page .profile-main-body .profile-main-wrap .nav-tabs button.active {
	color: var(--main-red);
	border-color: var(--main-red);
}

section.profile-page .catalog-items-list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 20px;
}

section.profile-page .catalog-items-list .place-item,
section.profile-page .catalog-items-list .event-item {
	display: flex;
	width: calc((100% - 40px) / 3);
}

section.profile-page .catalog-items-list .place-item .item-link,
section.profile-page .catalog-items-list .event-item .item-link {
	width: 100%;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	border-radius: 0px;
	background-color: var(--main-white);
	border: 1px solid #deeef3;
	position: relative;
}

section.profile-page .catalog-items-list .place-item .item-link::after,
section.profile-page .catalog-items-list .event-item .item-link::after {
	content: '';
	position: absolute;
	left: -5px;
	top: -5px;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	border-radius: 0px;
	border: 5px solid var(--main-yellow);
	opacity: 0;
	transition: var(--speed-fast);
	user-select: none;
	pointer-events: none;
}

@media screen and (min-width: 576px) {
	section.profile-page .catalog-items-list .place-item .item-link:hover::after,
	section.profile-page .catalog-items-list .event-item .item-link:hover::after {
		opacity: 1;
	}
}

section.profile-page .catalog-items-list .place-item .item-link .thumbnail,
section.profile-page .catalog-items-list .event-item .item-link .thumbnail {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

section.profile-page .catalog-items-list .place-item .item-link .thumbnail .img-wrap,
section.profile-page .catalog-items-list .event-item .item-link .thumbnail .img-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 60%;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.profile-page .catalog-items-list .place-item .item-link .thumbnail .img-wrap::after,
section.profile-page .catalog-items-list .event-item .item-link .thumbnail .img-wrap::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 50px;
	transition: all ease .3s;
	opacity: 0;
	background-color: #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-image: url(../img/thumbnail-icon.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 40px;
	z-index: 3;
}

@media screen and (min-width: 576px) {
	section.profile-page .catalog-items-list .place-item .item-link:hover .thumbnail .img-wrap::after,
	section.profile-page .catalog-items-list .event-item .item-link:hover .thumbnail .img-wrap::after {
		transform: translate(-50%, -50%);
		opacity: 1;
		width: 70px;
		height: 70px;
	}
}

section.profile-page .catalog-items-list .place-item .item-link .thumbnail .img-wrap img,
section.profile-page .catalog-items-list .event-item .item-link .thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.profile-page .catalog-items-list .place-item .item-link .thumbnail .event-button,
section.profile-page .catalog-items-list .event-item .item-link .thumbnail .event-button {
	position: absolute;
	top: 18px;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.profile-page .catalog-items-list .place-item .item-link .thumbnail .event-button .like-button,
section.profile-page .catalog-items-list .event-item .item-link .thumbnail .event-button .like-button {
	width: 30px;
	min-width: 30px;
	height: 30px;
	border-radius: 0px;
	background-color: var(--main-white);
	font-size: 0px;
	line-height: 100%;
	font-weight: 400;
	color: transparent;
	overflow: hidden;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.profile-page .catalog-items-list .place-item .item-link .thumbnail .event-button .like-button span,
section.profile-page .catalog-items-list .event-item .item-link .thumbnail .event-button .like-button span {
	width: 60%;
	min-width: 60%;
	height: 50%;
	background-image: url(../img/heart-icon-black.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	-webkit-mask-image: url(../img/heart-icon-black-full.svg);
  mask-image: url(../img/heart-icon-black-full.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	margin-top: 0.5%;
	transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
	section.profile-page .catalog-items-list .place-item .item-link .thumbnail .event-button .like-button:hover span,
	section.profile-page .catalog-items-list .event-item .item-link .thumbnail .event-button .like-button:hover span {
		background-color: #d9d9d9;
	}
}

section.profile-page .catalog-items-list .place-item .item-link .thumbnail .event-button .like-button.in-wishlist span,
section.profile-page .catalog-items-list .event-item .item-link .thumbnail .event-button .like-button.in-wishlist span {
	background-color: var(--main-black);
}

section.profile-page .catalog-items-list .place-item .item-link .caption,
section.profile-page .catalog-items-list .event-item .item-link .caption {
	width: 100%;
	padding: 10px 15px;
	display: flex;
	flex-direction: column;
}

section.profile-page .catalog-items-list .place-item .item-link .caption span.uppertitle,
section.profile-page .catalog-items-list .event-item .item-link .caption span.uppertitle {
	font-size: 1em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.profile-page .catalog-items-list .place-item .item-link .caption p.h2,
section.profile-page .catalog-items-list .event-item .item-link .caption p.h2 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.profile-page .catalog-items-list .place-item .item-link .caption p.text,
section.profile-page .catalog-items-list .event-item .item-link .caption p.text {
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.profile-page .catalog-items-list .place-item .item-link .caption span.date,
section.profile-page .catalog-items-list .event-item .item-link .caption span.date {
	font-size: 1em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.profile-page .catalog-items-list .place-item .item-link .caption span.place,
section.profile-page .catalog-items-list .event-item .item-link .caption span.place {
	font-size: 1em;
	line-height: 150%;
	font-weight: 500;
	color: var(--main-green);
	margin-top: auto;
	margin-bottom: 0px;
	display: flex;
	align-items: center;
}

section.profile-page .catalog-items-list .place-item .item-link .caption span.place::before,
section.profile-page .catalog-items-list .event-item .item-link .caption span.place::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url(../img/pin-icon-green.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	margin-right: 8px;
}

section.profile-page .catalog-items-list .place-item .item-link .caption span.place span,
section.profile-page .catalog-items-list .event-item .item-link .caption span.place span {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	width: 100%;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

section.profile-page .catalog-items-list .place-item .item-link .caption span.price,
section.profile-page .catalog-items-list .event-item .item-link .caption span.price {
	font-size: 1em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-green);
	margin-top: 16px;
}

section.profile-page .catalog-items-list .place-item .item-link .caption span.time,
section.profile-page .catalog-items-list .event-item .item-link .caption span.time {
	font-size: 1em;
	line-height: 150%;
	font-weight: 500;
	color: var(--main-green);
	display: flex;
	align-items: center;
}

section.profile-page .catalog-items-list .place-item .item-link .caption span.time::before,
section.profile-page .catalog-items-list .event-item .item-link .caption span.time::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url(../img/time-icon-green.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	margin-right: 8px;
}

section.profile-page .profile-main-body .profile-main-wrap .empty-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 50px;
	width: 100%;
	text-align: center;
}

section.profile-page .profile-main-body .profile-main-wrap .empty-list::before {
	content: '';
	width: 160px;
	min-width: 160px;
	height: 160px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../img/user-events-gray.svg);
	margin-bottom: 32px;
}

section.profile-page .profile-main-body .profile-main-wrap .empty-list.empty-events::before {
	background-image: url(../img/user-events-gray.svg);
}

section.profile-page .profile-main-body .profile-main-wrap .empty-list.empty-locations::before {
	background-image: url(../img/user-locations-gray.svg);
}

section.profile-page .profile-main-body .profile-main-wrap .empty-list.empty-discounts::before {
	background-image: url(../img/user-discounts-gray.svg);
}

section.profile-page .profile-main-body .profile-main-wrap .empty-list.empty-products::before {
	background-image: url(../img/user-products-gray.svg);
}

section.profile-page .profile-main-body .profile-main-wrap .empty-list.empty-artists::before {
	background-image: url(../img/user-profile-gray.svg);
}

section.profile-page .profile-main-body .profile-main-wrap .empty-list.empty-articles::before {
	background-image: url(../img/user-articles-gray.svg);
}

section.profile-page .profile-main-body .profile-main-wrap .empty-list.empty-reviews::before {
	background-image: url(../img/user-reviews-gray.svg);
}

section.profile-page .profile-main-body .profile-main-wrap .empty-list.empty-orders::before {
	background-image: url(../img/user-orders-gray.svg);
}

section.profile-page .profile-main-body .profile-main-wrap .empty-list.empty-booking::before {
	background-image: url(../img/user-booking-gray.svg);
}

section.profile-page .profile-main-body .profile-main-wrap .empty-list p {
	font-size: 1em;
	line-height: 120%;
	font-weight: 400;
	color: #777777;
	margin-bottom: 16px;
}

section.profile-page .profile-main-body .profile-main-wrap .empty-list p.h2 {
	font-size: 1.375em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 20px;
}

section.profile-page .profile-main-body .profile-main-wrap .empty-list a.btn-link {
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 700;
	padding: 12px 20px 10px;
	border: 2px solid var(--main-red);
	background-color: transparent;
	color: var(--main-red);
	text-decoration: none;
	text-transform: uppercase;
}

section.profile-page .profile-main-body .profile-main-wrap .empty-list a.btn-link:hover {
	background-color: var(--main-red);
	color: var(--main-white);
}

section.profile-page-old {
	padding: 40px 0px 60px;
  background-color: var(--main-white);
}

section.profile-page-old h1 {
	font-family: var(--font-header);
	font-size: 3.25em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 50px;
}

section.profile-page-old .profile-caption {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

section.profile-page-old .profile-caption .thumbnail {
	width: 175px;
	display: flex;
	margin-bottom: 20px;
}

section.profile-page-old .profile-caption .thumbnail .img-wrap {
	display: flex;
	width: 100%;
	padding-top: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 100%;
}

section.profile-page-old .profile-caption .thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.profile-page-old .profile-caption span.name {
	font-size: 2.25em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-black);
	margin-bottom: 16px;
}

section.profile-page-old .profile-caption span.email {
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-blue);
	margin-bottom: 24px;
}

section.profile-page-old .profile-caption a.btn-edit {
	border: 1px solid var(--main-blue);
	border-radius: 0px;
	background-color: var(--main-white);
	color: var(--main-blue);
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	padding: 8px 16px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	transition: var(--speed-fast);
}

@media screen and (min-width: 576px) {
	section.profile-page-old .profile-caption a.btn-edit:hover {
		background-color: var(--main-blue);
		color: var(--main-white);
	}
}

section.profile-page-old .nav-tabs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border: none;
	gap: 20px;
	margin-bottom: 20px;
}

section.profile-page-old .nav-tabs button {
	font-size: 1.375em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-black);
	padding: 0px;
	border: none;
	background-color: transparent;
	border-bottom: 2px solid transparent;
	transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
	section.profile-page-old .nav-tabs button:hover {
		border-color: var(--main-red);
	}
}

section.profile-page-old .nav-tabs button.active {
	color: var(--main-red);
	border-color: var(--main-red);
}

section.profile-page-old .profile-wrap {
	border-radius: 0px;
	border: 1px solid #e2e2e2;
	background-color: var(--main-white);
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	/* justify-content: space-around;
	min-height: 200px; */
}

section.profile-page-old .profile-wrap p.h2 {
	font-size: 1.25em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 20px;
	width: 100%;
}

section.profile-page-old .profile-wrap a.btn-link {
	font-size: 1.125em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-white);
	background-color: var(--main-dark);
	padding: 15px 30px 12px;
	border-radius: 0px;
	text-decoration: none;
	text-transform: uppercase;
}

section.profile-page-old .profile-wrap .catalog-items-list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 26px;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item,
section.profile-page-old .profile-wrap .catalog-items-list .event-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link {
	width: 100%;
	text-decoration: none;
	display: flex;
	border-radius: 0px;
	background-color: var(--main-white);
	border: 1px solid #deeef3;
	position: relative;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link::after,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link::after {
	content: '';
	position: absolute;
	left: -5px;
	top: -5px;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	border-radius: 0px;
	border: 5px solid var(--main-yellow);
	opacity: 0;
	transition: var(--speed-fast);
	user-select: none;
	pointer-events: none;
}

@media screen and (min-width: 576px) {
	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link:hover::after,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link:hover::after {
		opacity: 1;
	}
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail {
	width: 32%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail .img-wrap,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail .img-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail .img-wrap::after,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail .img-wrap::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 50px;
	transition: all ease .3s;
	opacity: 0;
	background-color: #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-image: url(../img/thumbnail-icon.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 40px;
	z-index: 3;
}

@media screen and (min-width: 576px) {
	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link:hover .thumbnail .img-wrap::after,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link:hover .thumbnail .img-wrap::after {
		transform: translate(-50%, -50%);
		opacity: 1;
		width: 70px;
		height: 70px;
	}
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail .img-wrap img,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail .event-button,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail .event-button {
	position: absolute;
	top: 18px;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail .event-button .like-button,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail .event-button .like-button {
	width: 30px;
	min-width: 30px;
	height: 30px;
	border-radius: 0px;
	background-color: var(--main-white);
	font-size: 0px;
	line-height: 100%;
	font-weight: 400;
	color: transparent;
	overflow: hidden;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail .event-button .like-button span,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail .event-button .like-button span {
	width: 60%;
	min-width: 60%;
	height: 50%;
	background-image: url(../img/heart-icon-black.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	-webkit-mask-image: url(../img/heart-icon-black-full.svg);
  mask-image: url(../img/heart-icon-black-full.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	margin-top: 0.5%;
	transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail .event-button .like-button:hover span,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail .event-button .like-button:hover span {
		background-color: #d9d9d9;
	}
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail .event-button .like-button.in-wishlist span,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail .event-button .like-button.in-wishlist span {
	background-color: var(--main-black);
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption {
	width: 68%;
	padding: 10px 15px;
	display: flex;
	flex-direction: column;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.uppertitle,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.uppertitle {
	font-size: 1em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption p.h2,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption p.h2 {
	font-size: 1.25em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption p.text,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption p.text {
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.date,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.date {
	font-size: 1em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-blue);
	margin-bottom: 16px;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.place,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.place {
	font-size: 1em;
	line-height: 150%;
	font-weight: 500;
	color: var(--main-green);
	margin-top: auto;
	margin-bottom: 0px;
	display: flex;
	align-items: center;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.place::before,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.place::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url(../img/pin-icon-green.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	margin-right: 8px;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.place span,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.place span {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	width: 100%;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.price,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.price {
	font-size: 1em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-green);
	margin-top: 16px;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.time,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.time {
	font-size: 1em;
	line-height: 150%;
	font-weight: 500;
	color: var(--main-green);
	display: flex;
	align-items: center;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.time::before,
section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.time::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url(../img/time-icon-green.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	margin-right: 8px;
}

@media screen and (max-width: 1299px) {
	section.profile-page .profile-side-menu {
		width: 280px;
		padding: 18px 8px 18px 18px;
	}

	section.profile-page .profile-side-menu .profile-caption {
		margin-bottom: 28px;
	}

	section.profile-page .profile-side-menu .profile-caption .thumbnail {
		width: 40px;
		min-width: 40px;
		height: 40px;
		margin-right: 18px;
	}

	section.profile-page .profile-side-menu .profile-caption .thumbnail .img-wrap .avatar-placeholder {
		font-size: 1.125em;
	}

	section.profile-page .profile-side-menu .profile-caption span.name {
		font-size: 1.125em;
	}

	section.profile-page .profile-side-menu ul.profile-menu li.menu-item a {
		padding: 8px 14px;
		font-size: 1em;
	}

	section.profile-page .profile-side-menu ul.profile-menu li.menu-item a::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 14px;
	}

	section.profile-page .profile-main-body {
		width: calc(100vw - 280px);
		padding: 18px 26px;
	}

	section.profile-page .profile-main-body .my-profile {
		max-width: 560px;
		margin: 36px auto 0px;
		padding: 36px 26px 26px;
	}

	section.profile-page .profile-main-body .my-profile p {
		margin-bottom: 14px;
	}

	section.profile-page .profile-main-body .my-profile p.h3 {
		font-size: 1.125em;
	}

	section.profile-page .profile-main-body .my-profile .thumbnail {
		width: 115px;
		min-width: 115px;
		height: 115px;
		margin: 0px auto 18px;
	}

	section.profile-page .profile-main-body .my-profile .thumbnail .img-wrap .avatar-placeholder {
		font-size: 1.125em;
	}

	section.profile-page .profile-main-body .my-profile a.btn-save {
		padding: 6px 10px;
		margin-top: 14px;
	}

	section.profile-page .profile-main-body .my-profile a.btn-edit {
		top: 12px;
		right: 12px;
		width: 46px;
		min-width: 46px;
		height: 46px;
	}

	section.profile-page .profile-main-body .profile-main-wrap p.h2 {
		font-size: 1.375em;
		margin-bottom: 18px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .nav-tabs {
		gap: 18px;
		margin-bottom: 18px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .nav-tabs button {
		font-size: 1em;
	}

	section.profile-page .catalog-items-list {
		gap: 18px;
	}

	section.profile-page .catalog-items-list .place-item,
	section.profile-page .catalog-items-list .event-item {
		width: calc((100% - 36px) / 3);
	}

	section.profile-page .catalog-items-list .place-item .item-link .thumbnail .img-wrap::after,
	section.profile-page .catalog-items-list .event-item .item-link .thumbnail .img-wrap::after {
		width: 40px;
		height: 40px;
		background-size: 35px;
	}

	@media screen and (min-width: 576px) {
		section.profile-page .catalog-items-list .place-item .item-link:hover .thumbnail .img-wrap::after,
		section.profile-page .catalog-items-list .event-item .item-link:hover .thumbnail .img-wrap::after {
			width: 60px;
			height: 60px;
		}
	}

	section.profile-page .catalog-items-list .place-item .item-link .thumbnail .event-button,
	section.profile-page .catalog-items-list .event-item .item-link .thumbnail .event-button {
		top: 16px;
		right: 14px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption,
	section.profile-page .catalog-items-list .event-item .item-link .caption {
		padding: 8px 13px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.uppertitle,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.uppertitle {
		margin-bottom: 14px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption p.h2,
	section.profile-page .catalog-items-list .event-item .item-link .caption p.h2 {
		font-size: 1.375em;
		margin-bottom: 14px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption p.text,
	section.profile-page .catalog-items-list .event-item .item-link .caption p.text {
		font-size: 1em;
		margin-bottom: 14px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.date,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.date {
		font-size: 0.875em;
		margin-bottom: 14px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.place,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.place {
		font-size: 0.875em;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.place::before,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.place::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 6px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.price,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.price {
		font-size: 0.875em;
		margin-bottom: 14px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.time,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.time {
		font-size: 0.875em;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.time::before,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.time::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 6px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list {
		padding: 46px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list::before {
		width: 140px;
		min-width: 140px;
		height: 140px;
		margin-bottom: 28px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list p {
		margin-bottom: 14px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list p.h2 {
		font-size: 1.25em;
		margin-bottom: 18px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list a.btn-link {
		font-size: 1em;
		padding: 10px 18px 8px;
	}

	section.profile-page-old {
		padding: 35px 0px 52px;
	}

	section.profile-page-old h1 {
		font-size: 3em;
		margin-bottom: 30px;
	}

	section.profile-page-old .profile-caption .thumbnail {
		width: 150px;
		margin-bottom: 18px;
	}

	section.profile-page-old .profile-caption span.name {
		font-size: 2.125em;
		margin-bottom: 14px;
	}

	section.profile-page-old .profile-caption span.email {
		font-size: 1em;
		margin-bottom: 22px;
	}

	section.profile-page-old .profile-caption a.btn-edit {
		border-radius: 0px;
		padding: 6px 14px;
	}

	section.profile-page-old .nav-tabs {
		gap: 18px;
		margin-bottom: 18px;
	}

	section.profile-page-old .nav-tabs button {
		font-size: 1.25em;
		border-bottom-width: 2px;
	}

	section.profile-page-old .profile-wrap {
		border-radius: 0px;
		padding: 18px;
	}

	section.profile-page-old .profile-wrap p.h2 {
		font-size: 1.125em;
		margin-bottom: 18px;
	}

	section.profile-page-old .profile-wrap a.btn-link {
		font-size: 1em;
		padding: 13px 25px 10px;
		border-radius: 0px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list {
		gap: 24px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail .img-wrap::after,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail .img-wrap::after {
		width: 40px;
		height: 40px;
		background-size: 35px;
	}

	@media screen and (min-width: 576px) {
		section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link:hover .thumbnail .img-wrap::after,
		section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link:hover .thumbnail .img-wrap::after {
			width: 60px;
			height: 60px;
		}
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail .event-button,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail .event-button {
		top: 16px;
		right: 14px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption {
		padding: 8px 13px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.uppertitle,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.uppertitle {
		margin-bottom: 14px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption p.h2,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption p.h2 {
		font-size: 1.125em;
		margin-bottom: 14px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption p.text,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption p.text {
		font-size: 1em;
		margin-bottom: 14px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.date,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.date {
		font-size: 0.875em;
		margin-bottom: 14px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.place,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.place {
		font-size: 0.875em;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.place::before,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.place::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 6px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.price,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.price {
		font-size: 0.875em;
		margin-bottom: 14px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.time,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.time {
		font-size: 0.875em;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.time::before,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.time::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 6px;
	}
}

@media screen and (max-width: 1199px) {
	section.profile-page .profile-side-menu {
		width: 250px;
		padding: 16px 6px 16px 16px;
		top: 51px;
		height: calc(100svh - 51px);
	}

	section.profile-page .profile-side-menu .profile-caption {
		margin-bottom: 24px;
	}

	section.profile-page .profile-side-menu .profile-caption .thumbnail {
		width: 38px;
		min-width: 38px;
		height: 38px;
		margin-right: 16px;
		border-width: 1px;
	}

	section.profile-page .profile-side-menu .profile-caption .thumbnail .img-wrap .avatar-placeholder {
		font-size: 1em;
	}

	section.profile-page .profile-side-menu .profile-caption span.name {
		font-size: 1em;
	}

	section.profile-page .profile-side-menu ul.profile-menu li.menu-item a {
		padding: 6px 12px;
	}

	section.profile-page .profile-side-menu ul.profile-menu li.menu-item a::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 12px;
	}

	section.profile-page .profile-main-body {
		width: calc(100vw - 250px);
		min-height: calc(100svh - 51px);
		padding: 16px 24px;
	}

	section.profile-page .profile-main-body .my-profile {
		max-width: 520px;
		margin: 32px auto 0px;
		padding: 32px 22px 22px;
	}

	section.profile-page .profile-main-body .my-profile p {
		margin-bottom: 12px;
	}

	section.profile-page .profile-main-body .my-profile .thumbnail {
		width: 90px;
		min-width: 90px;
		height: 90px;
		margin: 0px auto 16px;
		border-width: 1px;
	}

	section.profile-page .profile-main-body .my-profile .thumbnail .img-wrap .avatar-placeholder {
		font-size: 1em;
	}

	section.profile-page .profile-main-body .my-profile a.btn-save {
		padding: 4px 8px;
		margin-top: 12px;
	}

	section.profile-page .profile-main-body .my-profile a.btn-edit {
		top: 10px;
		right: 10px;
		width: 42px;
		min-width: 42px;
		height: 42px;
	}

	section.profile-page .profile-main-body .profile-main-wrap p.h2 {
		font-size: 1.25em;
		margin-bottom: 16px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .nav-tabs {
		gap: 16px;
		margin-bottom: 16px;
	}

	section.profile-page .catalog-items-list {
		gap: 16px;
	}

	section.profile-page .catalog-items-list .place-item,
	section.profile-page .catalog-items-list .event-item {
		width: calc((100% - 16px) / 2);
	}

	section.profile-page .catalog-items-list .place-item .item-link .thumbnail .img-wrap::after,
	section.profile-page .catalog-items-list .event-item .item-link .thumbnail .img-wrap::after {
		width: 34px;
		height: 34px;
		background-size: 28px;
	}

	@media screen and (min-width: 576px) {
		section.profile-page .catalog-items-list .place-item .item-link:hover .thumbnail .img-wrap::after,
		section.profile-page .catalog-items-list .event-item .item-link:hover .thumbnail .img-wrap::after {
			width: 50px;
			height: 50px;
		}
	}

	section.profile-page .catalog-items-list .place-item .item-link .thumbnail .event-button,
	section.profile-page .catalog-items-list .event-item .item-link .thumbnail .event-button {
		top: 14px;
		right: 12px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption,
	section.profile-page .catalog-items-list .event-item .item-link .caption {
		padding: 8px 13px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.uppertitle,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.uppertitle {
		margin-bottom: 12px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption p.h2,
	section.profile-page .catalog-items-list .event-item .item-link .caption p.h2 {
		font-size: 1.25em;
		margin-bottom: 12px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption p.text,
	section.profile-page .catalog-items-list .event-item .item-link .caption p.text {
		font-size: 1em;
		margin-bottom: 12px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.date,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.date {
		font-size: 0.875em;
		margin-bottom: 12px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.place,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.place {
		font-size: 0.875em;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.place::before,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.place::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 4px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.price,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.price {
		font-size: 0.875em;
		margin-bottom: 12px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.time,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.time {
		font-size: 0.875em;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.time::before,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.time::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 4px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list {
		padding: 40px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list::before {
		width: 120px;
		min-width: 120px;
		height: 120px;
		margin-bottom: 24px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list p {
		margin-bottom: 12px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list p.h2 {
		font-size: 1.125em;
		margin-bottom: 16px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list a.btn-link {
		padding: 8px 14px 6px;
		border-width: 1px;
	}

	section.profile-page-old {
		padding: 28px 0px 42px;
	}

	section.profile-page-old h1 {
		font-size: 2.5em;
		margin-bottom: 25px;
	}

	section.profile-page-old .profile-caption .thumbnail {
		width: 125px;
		margin-bottom: 16px;
	}

	section.profile-page-old .profile-caption span.name {
		font-size: 1.875em;
		margin-bottom: 12px;
	}

	section.profile-page-old .profile-caption span.email {
		font-size: 1em;
		margin-bottom: 20px;
	}

	section.profile-page-old .profile-caption a.btn-edit {
		border-radius: 0px;
		padding: 4px 12px;
	}

	section.profile-page-old .nav-tabs {
		gap: 16px;
		margin-bottom: 16px;
	}

	section.profile-page-old .nav-tabs button {
		font-size: 1.125em;
		border-bottom-width: 2px;
	}

	section.profile-page-old .profile-wrap {
		border-radius: 0px;
		padding: 16px;
	}

	section.profile-page-old .profile-wrap p.h2 {
		margin-bottom: 16px;
	}

	section.profile-page-old .profile-wrap a.btn-link {
		font-size: 0.875em;
		padding: 11px 20px 8px;
		border-radius: 0px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list {
		gap: 20px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail .img-wrap::after,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail .img-wrap::after {
		width: 34px;
		height: 34px;
		background-size: 28px;
	}

	@media screen and (min-width: 576px) {
		section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link:hover .thumbnail .img-wrap::after,
		section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link:hover .thumbnail .img-wrap::after {
			width: 50px;
			height: 50px;
		}
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail .event-button,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail .event-button {
		top: 14px;
		right: 12px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption {
		padding: 8px 13px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.uppertitle,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.uppertitle {
		margin-bottom: 12px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption p.h2,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption p.h2 {
		font-size: 1.125em;
		margin-bottom: 12px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption p.text,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption p.text {
		font-size: 1em;
		margin-bottom: 12px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.date,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.date {
		font-size: 0.875em;
		margin-bottom: 12px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.place,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.place {
		font-size: 0.875em;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.place::before,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.place::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 4px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.price,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.price {
		font-size: 0.875em;
		margin-bottom: 12px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.time,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.time {
		font-size: 0.875em;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.time::before,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.time::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 4px;
	}
}

@media screen and (max-width: 991px) {
	section.profile-page .profile-side-menu {
		display: none;
	}

	section.profile-page .profile-main-body {
		width: 100%;
		padding: 14px 20px;
	}

	section.profile-page .profile-main-body .my-profile {
		max-width: 480px;
		margin: 26px auto 0px;
		padding: 26px 18px 18px;
	}

	section.profile-page .profile-main-body .my-profile .thumbnail {
		width: 70px;
		min-width: 70px;
		height: 70px;
		margin: 0px auto 14px;
	}

	section.profile-page .profile-main-body .my-profile a.btn-edit {
		width: 36px;
		min-width: 36px;
		height: 36px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .nav-tabs {
		gap: 14px;
		margin-bottom: 14px;
	}

	section.profile-page .catalog-items-list {
		gap: 14px;
	}

	section.profile-page .catalog-items-list .place-item,
	section.profile-page .catalog-items-list .event-item {
		width: calc((100% - 14px) / 2);
	}

	section.profile-page .catalog-items-list .place-item .item-link .thumbnail .img-wrap::after,
	section.profile-page .catalog-items-list .event-item .item-link .thumbnail .img-wrap::after {
		width: 30px;
		height: 30px;
		background-size: 24px;
	}

	@media screen and (min-width: 576px) {
		section.profile-page .catalog-items-list .place-item .item-link:hover .thumbnail .img-wrap::after,
		section.profile-page .catalog-items-list .event-item .item-link:hover .thumbnail .img-wrap::after {
			width: 40px;
			height: 40px;
		}
	}

	section.profile-page .catalog-items-list .place-item .item-link .thumbnail .event-button,
	section.profile-page .catalog-items-list .event-item .item-link .thumbnail .event-button {
		top: 12px;
		right: 10px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption,
	section.profile-page .catalog-items-list .event-item .item-link .caption {
		padding: 8px 13px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.uppertitle,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.uppertitle {
		margin-bottom: 10px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption p.h2,
	section.profile-page .catalog-items-list .event-item .item-link .caption p.h2 {
		font-size: 1.125em;
		margin-bottom: 10px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption p.text,
	section.profile-page .catalog-items-list .event-item .item-link .caption p.text {
		font-size: 1em;
		margin-bottom: 10px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.date,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.date {
		font-size: 0.875em;
		margin-bottom: 10px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.place,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.place {
		font-size: 0.875em;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.place::before,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.place::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 3px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.price,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.price {
		font-size: 0.875em;
		margin-bottom: 10px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.time,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.time {
		font-size: 0.875em;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.time::before,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.time::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 3px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list {
		padding: 30px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list::before {
		width: 100px;
		min-width: 100px;
		height: 100px;
		margin-bottom: 20px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list p.h2 {
		margin-bottom: 14px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list a.btn-link {
		font-size: 0.875em;
	}

	section.profile-page-old {
		padding: 24px 0px 32px;
	}

	section.profile-page-old h1 {
		font-size: 2em;
		margin-bottom: 24px;
	}

	section.profile-page-old .profile-caption {
		margin-bottom: 20px;
	}

	section.profile-page-old .profile-caption .thumbnail {
		width: 100px;
		margin-bottom: 14px;
	}

	section.profile-page-old .profile-caption span.name {
		font-size: 1.625em;
	}

	section.profile-page-old .profile-caption span.email {
		font-size: 1em;
		margin-bottom: 16px;
	}

	section.profile-page-old .profile-caption a.btn-edit {
		border-radius: 0px;
		padding: 3px 10px;
	}

	section.profile-page-old .nav-tabs {
		gap: 14px;
		margin-bottom: 16px;
	}

	section.profile-page-old .nav-tabs button {
		font-size: 1em;
		border-bottom-width: 1px;
	}

	section.profile-page-old .profile-wrap {
		border-radius: 0px;
		padding: 14px;
	}

	section.profile-page-old .profile-wrap p.h2 {
		margin-bottom: 16px;
	}

	section.profile-page-old .profile-wrap a.btn-link {
		padding: 10px 18px 8px;
		border-radius: 0px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list {
		gap: 16px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail .img-wrap::after,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail .img-wrap::after {
		width: 30px;
		height: 30px;
		background-size: 24px;
	}

	@media screen and (min-width: 576px) {
		section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link:hover .thumbnail .img-wrap::after,
		section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link:hover .thumbnail .img-wrap::after {
			width: 40px;
			height: 40px;
		}
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail .event-button,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail .event-button {
		top: 12px;
		right: 10px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption {
		padding: 8px 13px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.uppertitle,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.uppertitle {
		margin-bottom: 10px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption p.h2,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption p.h2 {
		font-size: 1.125em;
		margin-bottom: 10px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption p.text,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption p.text {
		font-size: 1em;
		margin-bottom: 10px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.date,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.date {
		font-size: 0.875em;
		margin-bottom: 10px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.place,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.place {
		font-size: 0.875em;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.place::before,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.place::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 3px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.price,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.price {
		font-size: 0.875em;
		margin-bottom: 10px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.time,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.time {
		font-size: 0.875em;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.time::before,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.time::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 3px;
	}
}

@media screen and (max-width: 767px) {
	section.profile-page .profile-main-body {
		padding: 14px 16px;
	}

	section.profile-page .profile-main-body .my-profile {
		margin: 16px auto 0px;
		padding: 16px;
	}

	section.profile-page .catalog-items-list {
		gap: 12px;
	}

	section.profile-page .catalog-items-list .place-item,
	section.profile-page .catalog-items-list .event-item {
		width: calc((100% - 12px) / 2);
	}

	section.profile-page .catalog-items-list .place-item .item-link .thumbnail .img-wrap,
	section.profile-page .catalog-items-list .event-item .item-link .thumbnail .img-wrap {
		padding-top: 60%;
	}

	section.profile-page .catalog-items-list .place-item .item-link .thumbnail .event-button .like-button,
	section.profile-page .catalog-items-list .event-item .item-link .thumbnail .event-button .like-button {
		width: 25px;
		min-width: 25px;
		height: 25px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption,
	section.profile-page .catalog-items-list .event-item .item-link .caption {
		padding: 10px 13px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.uppertitle,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.uppertitle {
		font-size: 0.875em;
		margin-bottom: 10px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption p.h2,
	section.profile-page .catalog-items-list .event-item .item-link .caption p.h2 {
		font-size: 1em;
		margin-bottom: 10px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption p.text,
	section.profile-page .catalog-items-list .event-item .item-link .caption p.text {
		font-size: 0.875em;
		margin-bottom: 10px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.date,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.date {
		font-size: 0.875em;
		margin-bottom: 10px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.place,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.place {
		font-size: 0.875em;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.price,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.price {
		font-size: 0.875em;
		margin-bottom: 10px;
	}

	section.profile-page .catalog-items-list .place-item .item-link .caption span.time,
	section.profile-page .catalog-items-list .event-item .item-link .caption span.time {
		font-size: 0.875em;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list {
		padding: 20px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list::before {
		width: 80px;
		min-width: 80px;
		height: 80px;
		margin-bottom: 16px;
	}

	section.profile-page-old {
		padding: 20px 0px 24px;
	}

	section.profile-page-old h1 {
		font-size: 1.75em;
		margin-bottom: 18px;
	}

	section.profile-page-old .profile-caption {
		margin-bottom: 16px;
	}

	section.profile-page-old .profile-caption .thumbnail {
		margin-bottom: 12px;
	}

	section.profile-page-old .profile-caption span.name {
		font-size: 1.375em;
	}

	section.profile-page-old .profile-caption span.email {
		font-size: 1em;
		margin-bottom: 14px;
	}

	section.profile-page-old .nav-tabs {
		gap: 14px;
		margin-bottom: 16px;
	}

	section.profile-page-old .nav-tabs button {
		font-size: 1em;
	}

	section.profile-page-old .profile-wrap {
		border-radius: 0px;
		padding: 12px;
	}

	section.profile-page-old .profile-wrap p.h2 {
		margin-bottom: 14px;
	}

	section.profile-page-old .profile-wrap a.btn-link {
		padding: 8px 16px 6px;
		border-radius: 0px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list {
		gap: 14px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail .img-wrap,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail .img-wrap {
		padding-top: 60%;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail .event-button .like-button,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail .event-button .like-button {
		width: 25px;
		min-width: 25px;
		height: 25px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption {
		padding: 10px 13px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.uppertitle,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.uppertitle {
		font-size: 0.875em;
		margin-bottom: 10px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption p.h2,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption p.h2 {
		font-size: 1em;
		margin-bottom: 10px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption p.text,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption p.text {
		font-size: 0.875em;
		margin-bottom: 10px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.date,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.date {
		font-size: 0.875em;
		margin-bottom: 10px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.place,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.place {
		font-size: 0.875em;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.price,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.price {
		font-size: 0.875em;
		margin-bottom: 10px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption span.time,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption span.time {
		font-size: 0.875em;
	}
}

@media screen and (max-width: 575px) {
	section.profile-page .profile-main-body {
		padding: 14px 15px;
		min-height: auto;
	}

	section.profile-page .profile-main-body .my-profile {
		margin: 10px auto 0px;
		padding: 14px;
	}

	section.profile-page .catalog-items-list .place-item,
	section.profile-page .catalog-items-list .event-item {
		width: 100%;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list {
		padding: 16px;
	}

	section.profile-page .profile-main-body .profile-main-wrap .empty-list::before {
		width: 60px;
		min-width: 60px;
		height: 60px;
		margin-bottom: 14px;
	}

	section.profile-page-old h1 {
		font-size: 1.5em;
		margin-bottom: 16px;
	}

	section.profile-page-old .profile-caption {
		margin-bottom: 16px;
	}

	section.profile-page-old .profile-caption .thumbnail {
		margin-bottom: 10px;
	}

	section.profile-page-old .profile-caption span.name {
		font-size: 1.25em;
		margin-bottom: 10px;
	}

	section.profile-page-old .profile-caption span.email {
		margin-bottom: 12px;
	}

	section.profile-page-old .nav-tabs {
		gap: 10px;
		margin-bottom: 16px;
	}

	section.profile-page-old .nav-tabs button {
		font-size: 0.875em;
	}

	section.profile-page-old .profile-wrap {
		border-radius: 0px;
		padding: 12px;
	}

	section.profile-page-old .profile-wrap p.h2 {
		margin-bottom: 12px;
	}

	section.profile-page-old .profile-wrap a.btn-link {
		padding: 6px 12px 4px;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link {
		flex-direction: column;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .thumbnail,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .thumbnail {
		width: 100%;
	}

	section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link .caption,
	section.profile-page-old .profile-wrap .catalog-items-list .event-item .item-link .caption {
		width: 100%;
	}
}



.reply-list {
  width: 100%;
}

section.profile-page-old .profile-wrap .catalog-items-list .place-item .item-link {
  width: 100%;
}

.stats-item {
	text-decoration: none;
}

























.search-page-title {
	padding: 70px 0px;
	background-color: #f6006a;
	position: relative;
}

.search-page-title::before {
	content: '';
	position: absolute;
	z-index: 1;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
}

.search-page-title .container-fluid {
	position: relative;
	z-index: 2;
}

.search-page-title h1.main-h1 {
	font-size: 3.25em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-white);
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.search-page-title h1.main-h1::after {
	content: '';
	position: absolute;
	width: 80px;
	height: 11px;
	bottom: -15px;
	background-color: var(--main-yellow);
	-ms-transform: rotate(-4deg);
	-webkit-transform: rotate(-4deg);
	transform: rotate(-4deg);
	left: 50%;
	margin-left: -40px;
}

.search-page-title .search-page-form {
	display: flex;
	flex-direction: column;
	margin: 0px;
}

.search-page-title .search-page-form form.form-page {
	position: relative;
	z-index: 2;
  display: flex;
	align-items: center;
	padding: 15px;
	border-radius: 0px;
	background-color: rgba(0, 0, 0, 0.3);
	margin: 0px;
}

.search-page-title .search-page-form form.form-page input {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-size: 1.25em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-black);
	border-radius: 0px;
	background-color: var(--main-white);
	border: none;
	box-shadow: none;
	width: 100%;
	padding: 15px 15px 15px 55px;
	outline: none;
	background-image: url(../img/search-icon-black.svg);
	background-position: left 15px center;
	background-repeat: no-repeat;
	background-size: 25px 25px;
}

.search-page-form input:focus {
	box-shadow: none;
	outline: none;
}

.search-page-title .search-page-form form.form-page button.search-btn {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-size: 1.25em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-white);
	border-radius: 0px;
	background-color: var(--main-red);
	border: none;
	box-shadow: none;
	padding: 15px 50px;
	outline: none;
	margin-left: 15px;
}

@media screen and (min-width: 576px) {
	.search-page-title .search-page-form form.form-page button.search-btn:hover {
		background-color: var(--main-yellow);
	}
}

section.static-page.search-page .page-content {
	padding: 0px;
	border-radius: 0px;
}

.search_result {
	color: var(--main-blue);
	font-size: 1em;
	line-height: 120%;
	font-weight: 400;
	margin-bottom: 20px;
}

.search-tabs {
	margin: 20px 0;
	position: relative;
	overflow-x: auto;
	scroll-behavior: smooth;
}
  
.search-tabs .search-tabs-wrapper {
	display: flex;
	gap: 0;
	/* flex-wrap: wrap; */
}
  
.search-tabs .search-tabs-wrapper .search-tab {
	padding: 12px 10px;
	text-decoration: none;
	color: var(--main-blue);
	border: 1px solid rgba(226, 226, 226, 1);
	white-space: nowrap;
	background: var(--main-white);
	border-radius: 0px;
	transition: all 0.3s ease;
	font-size: 1em;
	margin: 0px 5px;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
}
 
@media screen and (min-width: 576px) {
	.search-tabs .search-tabs-wrapper .search-tab:hover {
		background: var(--main-white);
		color: var(--main-blue);
		text-decoration: none;
	}
}
  
.search-tabs .search-tabs-wrapper .search-tab.active {
	background: rgba(233, 233, 250, 1);
	border-color: rgba(233, 233, 250, 1);
}
  
.search-tabs-wrapper .search-tab:first-child {
	margin-left: 0px;
}
  
.search-tabs-wrapper .search-tab:last-child {
	margin-right: 0px;
}

.search_lists {
	display: block;
	margin-top: 20px;
}

.search_lists .search-item {
	margin-bottom: 15px;
}

.search_lists .search-item a.search-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 15px;
	padding: 20px;
	background-color: #eaf6f9;
}

@media screen and (min-width: 576px) {
	.search_lists .search-item a.search-link:hover {
		text-decoration: none;
	}
}

.search_lists .search-item a.search-link .search-type {
	display: flex;
}

.search_lists .search-item a.search-link .search-name {
	color: var(--main-blue);
	font-size: 1.25em;
	line-height: 120%;
	font-weight: 700;
}

.type-badge {
	width: 40px;
	min-width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-size: auto 20px;
	background-position: center;
	border-radius: 50%;
	background-color: var(--main-white);
	font-size: 0px;
	overflow: hidden;
	color: transparent;
}

.type-event {
	background-image: url(../img/user-place-blue.svg);
}

.type-location {
	background-image: url(../img/user-place-blue.svg);
}

.type-blog {
	background-image: url(../img/user-articles-blue.svg);
}

.filter_val_list.filter-checkbox label {
	flex-basis: 100%;
}

section.static-page .search-not-found {
	font-size: 1.25em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin: 0px;
}

@media screen and (max-width: 1299px) {
	.search-page-title {
		padding: 64px 0px;
	}

	.search-page-title h1.main-h1 {
		font-size: 3em;
		margin-bottom: 30px;
	}

	.search-page-title h1.main-h1::after {
		width: 70px;
		height: 10px;
		bottom: -10px;
		margin-left: -35px;
	}

	.search-page-title .search-page-form form.form-page {
		padding: 13px;
	}

	.search-page-title .search-page-form form.form-page input {
		font-size: 1.125em;
		padding: 13px 13px 13px 50px;
		background-position: left 13px center;
		background-size: 23px 23px;
	}

	.search-page-title .search-page-form form.form-page button.search-btn {
		font-size: 1.125em;
		padding: 13px 46px;
		margin-left: 13px;
	}

	.search_result {
		margin-bottom: 18px;
	}

	.search-tabs {
		margin: 18px 0px;
	}

	.search-tabs .search-tabs-wrapper .search-tab {
		padding: 10px 8px;
		margin: 0px 4px;
	}

	.search_lists {
		margin-top: 18px;
	}

	.search_lists .search-item {
		margin-bottom: 14px;
	}

	.search_lists .search-item a.search-link {
		gap: 14px;
		padding: 18px;
	}

	.search_lists .search-item a.search-link .search-name {
		font-size: 1.125em;
	}

	.type-badge {
		width: 36px;
		min-width: 36px;
		height: 36px;
		background-size: auto 18px;
	}

	section.static-page .search-not-found {
		font-size: 1.125em;
	}
}

@media screen and (max-width: 1199px) {
	.search-page-title {
		padding: 52px 0px;
	}

	.search-page-title h1.main-h1 {
		font-size: 2.5em;
		margin-bottom: 25px;
	}

	.search-page-title h1.main-h1::after {
		width: 58px;
		height: 8px;
		bottom: -10px;
		margin-left: -28px;
	}

	.search-page-title .search-page-form form.form-page {
		padding: 10px;
	}

	.search-page-title .search-page-form form.form-page input {
		font-size: 1em;
		padding: 10px 10px 10px 40px;
		background-position: left 10px center;
		background-size: 18px 18px;
	}

	.search-page-title .search-page-form form.form-page button.search-btn {
		font-size: 1em;
		padding: 10px 38px;
		margin-left: 10px;
	}

	.search_result {
		margin-bottom: 16px;
	}

	.search-tabs {
		margin: 16px 0px;
	}

	.search_lists {
		margin-top: 16px;
	}

	.search_lists .search-item {
		margin-bottom: 12px;
	}

	.search_lists .search-item a.search-link {
		gap: 12px;
		padding: 16px;
	}

	.search_lists .search-item a.search-link .search-name {
		font-size: 1em;
	}

	.type-badge {
		width: 32px;
		min-width: 32px;
		height: 32px;
		background-size: auto 16px;
	}

	section.static-page .search-not-found {
		font-size: 1em;
	}
}

@media screen and (max-width: 991px) {
	.search-page-title {
		padding: 40px 0px;
	}

	.search-page-title h1.main-h1 {
		font-size: 2em;
		margin-bottom: 24px;
	}

	.search-page-title h1.main-h1::after {
		width: 46px;
		height: 6px;
		bottom: -10px;
		margin-left: -23px;
	}

	.search-page-title .search-page-form form.form-page {
		flex-direction: column;
	}

	.search-page-title .search-page-form form.form-page button.search-btn {
		width: 100%;
		margin-left: 0px;
		margin-top: 10px;
	}

	.search_result {
		margin-bottom: 14px;
	}

	.search-tabs {
		margin: 14px 0px;
	}

	.search_lists {
		margin-top: 14px;
	}

	.type-badge {
		width: 28px;
		min-width: 28px;
		height: 28px;
		background-size: auto 14px;
	}
}

@media screen and (max-width: 767px) {
	.search-page-title {
		padding: 30px 0px;
	}
	
	.search-page-title h1.main-h1 {
		font-size: 1.75em;
		margin-bottom: 20px;
	}

	.search_lists a {
		border-width: 1px;
		padding: 14px 0px;
	}

	.search-link {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.search-type {
		margin-left: 0;
	}
}

@media screen and (max-width: 575px) {
	.search-page-title h1.main-h1 {
		font-size: 1.5em;
	}
}






























section.errors {
	padding: 100px 0px;
}

section.errors .error-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

section.errors .error-wrap.error-404::before {
	content: '';
	height: 260px;
	width: 460px;
	margin: 0px auto 30px;
	background-image: url(../img/error.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

section.errors .error-wrap h1 {
	font-size: 0px;
	margin: 0px;
}

section.errors .error-wrap p {
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-blue);
	margin: 0px;
}

@media screen and (max-width: 1299px) {
	section.errors {
		padding: 92px 0px;
	}

	section.errors .error-wrap.error-404::before {
		height: 240px;
		width: 420px;
		margin-bottom: 26px;
	}

	section.errors .error-wrap p {
		font-size: 1em;
	}
}

@media screen and (max-width: 1199px) {
	section.errors {
		padding: 76px 0px;
	}

	section.errors .error-wrap.error-404::before {
		height: 200px;
		width: 350px;
		margin-bottom: 24px;
	}
}

@media screen and (max-width: 991px) {
	section.errors {
		padding: 58px 0px;
	}

	section.errors .error-wrap.error-404::before {
		height: 150px;
		width: 260px;
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 767px) {
	section.errors {
		padding: 42px 0px;
	}

	section.errors .error-wrap.error-404::before {
		height: 120px;
		width: 200px;
		margin-bottom: 18px;
	}
}

@media screen and (max-width: 575px) {
	section.errors {
		padding: 24px 0px;
	}

	section.errors .error-wrap.error-404::before {
		height: 70px;
		width: 120px;
		margin-bottom: 16px;
	}
}





























/* Фон затемнення */
.popup-overlay {
	position: fixed;
	z-index: 999;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: #1B1B1B80;
	backdrop-filter: blur(12px);
	display: none;
  }
  
  /* Попап */
  .share-popup {
	position: fixed;
	z-index: 1000;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 40px;
	width: 400px;
	max-width: calc(100% - 32px);
	text-align: center;
	display: none;
	background-color: var(--bg-gray-100);
	border: 1px solid var(--color-gray-10);
	border-radius: 0px;
	text-align: left;
  }
  
  .share-popup p.h2 {
	font-size: 1.375em;
	line-height: 100%;
	font-weight: 700;
	color: #ffffff;
	margin: 0px;
  }
  
  /* Кнопки всередині попапа */
  .share-popup button,
  .share-popup a {
	border: none;
	background: transparent;
	color: #ffffff;
	text-decoration: none;
	cursor: pointer;
	width: 100%;
	display: flex;
	align-items: center;
	text-align: left;
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	transition: var(--speed-slow);
	padding: 13px 30px;
	border: 1px solid #ffffff;
	border-radius: 0px;
  }
  
  @media screen and (min-width: 576px) {
	.share-popup button:hover,
	.share-popup a:hover {
	  color: #000;
	  border-color: #000;
	}
  }
  
  .share-popup button img,
  .share-popup a img {
	width: 24px;
	margin-right: 14px;
	height: auto;
	display: none;
  }
  
  .share-popup button::before,
  .share-popup a::before {
	content: '';
	width: 24px;
	min-width: 24px;
	height: 24px;
	margin-right: 14px;
	mask-repeat: no-repeat;
	mask-size: contain;
	background-color: #ffffff;
	transition: var(--speed-slow);
  }
  
  @media screen and (min-width: 576px) {
	.share-popup button:hover::before,
	.share-popup a:hover::before {
	  background-color: #000;
	}
  }
  
  .share-popup button.copy-link::before {
	mask-image: url(/social/link.png);
  }
  
  .share-popup a.share-facebook::before {
	mask-image: url(/social/facebook.png);
  }
  
  .share-popup a.share-twitter::before {
	mask-image: url(/social/twitter.png);
  }
  
  .share-popup > *:not(:first-child) {
	margin-top: 16px;
  }
  
  .share-popup .close-share-btn {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 24px;
	min-width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	text-decoration: none;
	color: transparent;
	font-size: 0px;
	line-height: 100%;
	font-weight: 400;
	background-image: url(/img/filter-cross.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transition: var(--speed-slow);
	margin: 0px!important;
	cursor: pointer;
  }
  
  @media screen and (min-width: 576px) {
	.share-popup .close-share-btn:hover {
	  opacity: 0.8;
	}
  }
  
  /* Кнопка закриття */
  .close-popup {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
  }
  
  @media screen and (max-width: 1399px) {
	.share-popup {
	  padding: 38px;
	}
  
	.share-popup > *:not(:first-child) {
	  margin-top: 25px;
	}
  }
  
  @media screen and (max-width: 1199px) {
	.share-popup {
	  padding: 34px;
	}
  
	.share-popup button img,
	.share-popup a img {
	  margin-right: 12px;
	}
  
	.share-popup button::before,
	.share-popup a::before {
	  margin-right: 12px;
	}
  
	.share-popup > *:not(:first-child) {
	  margin-top: 26px;
	}
  }
  
  @media screen and (max-width: 991px) {
	.share-popup {
	  padding: 26px;
	}
  
	.share-popup p.h2 {
	  font-size: 1.25em;
	}
  
	.share-popup button, 
	.share-popup a {
	  padding: 10px 20px;
	  font-size: 0.875em;
	}
  
	.share-popup > *:not(:first-child) {
	  margin-top: 22px;
	}
  }
  
  @media screen and (max-width: 767px) {
	.share-popup {
	  padding: 22px;
	}
  
	.share-popup p.h2 {
	  font-size: 1.125em;
	}
  
	.share-popup > *:not(:first-child) {
	  margin-top: 16px;
	}
  }
  
  @media screen and (max-width: 575px) {
	.subscribe-message {
	  padding: 6px 10px;
	}
  
	.share-popup {
	  padding: 16px;
	}
  
	.share-popup p.h2 {
	  font-size: 1em;
	}
  
	.share-popup button img,
	.share-popup a img {
	  width: 22px;
	  margin-right: 10px;
	}
  
	.share-popup button::before,
	.share-popup a::before {
	  width: 22px;
	  min-width: 22px;
	  height: 22px;
	  margin-right: 10px;
	}
  }
  



	.share-popup {
	background-color: #ffffff;
	border-color: #E7E7E7;
  }
  
  .share-popup .close-share-btn {
	filter: invert(1);
  }
  
  .share-popup p.h2 {
	color: #1b1b1b;
  }
  
  .share-popup button,
  .share-popup a {
	color: #1b1b1b;
	border-color: #1b1b1b;
  }
  
  @media screen and (min-width: 576px) {
	.share-popup button:hover,
	.share-popup a:hover {
	  color: #000;
	  border-color: #000;
	}
  }
  
  .share-popup button::before,
 .share-popup a::before {
	background-color: #1b1b1b;
  }
  
  @media screen and (min-width: 576px) {
	.share-popup button:hover::before,
	.share-popup a:hover::before {
	  background-color: #000;
	}
}








































/* Стилі для карти */
section.map-section {
	padding: 0px;
	position: relative;
  z-index: 1;
	height: calc(100svh - 61px);
}

.map-layout {
	width: 100%;
	height: 100%;
	display: flex;
	gap: 0px;
	align-items: flex-start;
}

.map-wrapper {
	flex: 1;
	width: calc(100% - 400px);
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.map-sidebar {
	width: 400px;
	flex-shrink: 0;
	height: 100%;
	overflow-y: auto;
	padding: 20px 5px 20px 20px;
	background-color: var(--main-white);
	scrollbar-color: transparent transparent;
}

@media screen and (min-width: 576px) {
	.map-sidebar:hover {
		scrollbar-color: var(--main-blue) transparent;
	}
}

/* .map-sidebar::-webkit-scrollbar {
	width: 0px;
	height: 0px;
} */

.map-sidebar h1 {
	font-size: 2em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 20px;
}

.map-sidebar .locations-cards-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.map-sidebar .map-card-item {
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 0px;
	border: 1px solid #deeef3;
	position: relative;
}

.map-sidebar .map-card-item::after {
	content: '';
	position: absolute;
	left: -5px;
	top: -5px;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	border-radius: 0px;
	border: 5px solid var(--main-yellow);
	opacity: 0;
	transition: var(--speed-fast);
	user-select: none;
	pointer-events: none;
}

@media screen and (min-width: 576px) {
	.map-sidebar .map-card-item:hover::after {
		opacity: 1;
	}
}

.map-sidebar .map-card-item.active::after {
	opacity: 1;
}

.map-sidebar .map-card-item .details-btn {
	color: var(--main-red);
	background: var(--main-white);
	border: 1px solid var(--main-red);
	border-radius: 0px;
	padding: 10px 20px;
	font-size: 1em;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	margin-top: 16px;
}

@media screen and (min-width: 576px) {
	.map-sidebar .map-card-item .details-btn:hover {
		background: var(--main-red);
		color: var(--main-white);
	}
}

/* Стилі для карточок локацій у правій колонці карти */
.map-sidebar .map-card-item .item-link {
	display: flex;
	flex-direction: column;
	background-color: var(--main-white);
	border-radius: 0px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
}

.map-sidebar .map-card-item .item-link .thumbnail {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.map-sidebar .map-card-item .item-link .thumbnail .img-wrap {
	width: 100%;
	height: 100%;
}

.map-sidebar .map-card-item .item-link .thumbnail .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.map-sidebar .map-card-item .item-link .caption {
	padding: 10px 15px;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.map-sidebar .map-card-item .item-link .caption span.uppertitle {
	font-size: 1em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-blue);
	margin-bottom: 16px;
}

.map-sidebar .map-card-item .item-link .caption p.h2 {
	font-size: 1.25em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 16px;
}

.map-sidebar .map-card-item .item-link .caption p.text {
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-blue);
	margin-bottom: 16px;
}

.map-sidebar .map-card-item .item-link .caption span.place,
.map-sidebar .map-card-item .item-link .caption span.time {
	display: block;
	font-size: 1em;
	line-height: 150%;
	font-weight: 500;
	color: var(--main-green);
	margin-top: auto;
	margin-bottom: 0px;
	display: flex;
	align-items: center;
}

.map-sidebar .map-card-item .item-link .caption span.place::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	background-image: url(../img/pin-icon-green.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	margin-right: 8px;
}

.map-sidebar .map-card-item .item-link .caption span.place span {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	width: 100%;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

/* Стилі для блоку фільтрів карти */
.map-filters {
	margin-bottom: 20px;
}

.map-filters #side-input-group {
	display: flex;
	margin-bottom: 16px;
	position: relative;
}

.map-filters #side-input-group .form-control {
	flex: 1;
	padding: 10px 40px 10px 15px;
	border: 1px solid var(--main-blue);;
	border-radius: 0px;
	font-size: 1em;
	color: var(--main-blue);
}

.map-filters #side-input-group .form-control::placeholder {
	color: var(--main-blue);
}

.map-filters #side-input-group .input-group-addon {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
	color: #666;
	font-size: 1em;
	z-index: 10;
}

@media screen and (min-width: 576px) {
	.map-filters #side-input-group .input-group-addon:hover {
		color: #007bff;
	}
}

.map-filters #side-input-group #side-search-clear {
	right: 35px;
}

.map-filters #side-input-group #side-user-location {
	right: 5px;
}

.map-filters #side-filter-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.map-filters #side-filter-group .custom-select {
	padding: 10px 15px;
	border: 1px solid var(--main-blue);;
	border-radius: 0px;
	font-size: 1em;
	background-color: #fff;
	color: var(--main-blue);
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 35px;
}

.map-filters #side-filter-group .custom-select:focus {
	outline: none;
	/* border-color: #007bff;
	box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25); */
}

#map {
	width: 100%;
	height: 100%;
}

/* Стилі для Leaflet popup */
.leaflet-container a.leaflet-popup-close-button {
	display: none;
}

.leaflet-popup-content-wrapper {
	border-radius: 0px;
	padding: 0;
}

.leaflet-popup .leaflet-popup-content-wrapper .leaflet-popup-content {
	margin: 0;
	min-width: 250px;
	max-width: 350px;
	font-size: 1em;
}

.leaflet-container .popup-content {
	padding: 0px;
}

.leaflet-container .popup-content img {
	width: 100%;
	/* max-height: 150px; */
	object-fit: cover;
	border-radius: 0px;
	margin-bottom: 10px;
	aspect-ratio: 16 / 9;
}

.leaflet-container .popup-content h3 {
	margin: 0 0 16px 0;
	font-size: 1.25em;
	font-weight: 700;
	color: var(--main-blue);
}

.leaflet-container .popup-content p {
	margin: 0px 0px 16px 0px;
	font-size: 1em;
	line-height: 150%;
	color: var(--main-green);
}

.leaflet-container .popup-content strong {
	color: var(--main-green);
}

.leaflet-container .popup-content a {
	display: inline-block;
	margin-top: 0px;
	padding: 10px 20px;
	background-color: var(--main-white);
	color: var(--main-red);
	border: 1px solid var(--main-red);
	border-radius: 0px;
	text-decoration: none;
	font-size: 1em;
	font-weight: 700;
}

.map-wrapper .leaflet-container {
	font-size: 1em;
}

.leaflet-popup .leaflet-popup-content-wrapper {
	border-radius: 0px;
}

.leaflet-popup-content {
	margin: 0 !important;
	overflow: hidden;
	font-size: 1em;
}

.leaflet-container .popup-content {
  padding: 0;
}

.leaflet-container .popup-content img {
	border-radius: 0px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	margin-bottom: 0px;
}

.leaflet-popup-content-wrapper {
  padding: 0 !important;
}

a.leaflet-popup-close-button {
  color: #000 !important;
}

.leaflet-container .popup-content-inner {
  padding: 10px 15px;
	font-size: 1em;
}

.leaflet-container .popup-content-inner a {
	color: var(--main-red);
	background: var(--main-white);
	border: 1px solid var(--main-red);
	border-radius: 0px;
	padding: 10px 20px;
	width: 100%;
	text-align: center;
	font-size: 1em;
	line-height: 150%;
}

@media screen and (min-width: 576px) {
	.leaflet-container .popup-content-inner a:hover {
		background-color: var(--main-red);
		color: var(--main-white);
	}
}

.show-list-btn {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
	padding: 15px 26px;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	display: inline-block;
	color: var(--main-white);
	border: 1px solid var(--main-red);
	background-color: var(--main-red);
	border-radius: 0px;
	font-size: 1em;
	line-height: 100%;
	font-weight: 700;
}

@media screen and (min-width: 576px) {
	.show-list-btn:hover {
		color: var(--main-white);
		background-color: var(--main-yellow);
		border-color: var(--main-yellow);
	}
}

@media screen and (max-width: 768px) {
	.show-list-btn {
		bottom: 15px;
		padding: 10px 20px;
		font-size: 14px;
	}
}

.leaflet-bottom.leaflet-right {
	display: none;
}

.leaflet-top.leaflet-left {
	display: none;
}

.map-filters #side-input-group #side-search-btn {
	right: 45px;
	border-right: 1px solid var(--main-blue) !important;
	height: 44px;
}

@media screen and (max-width: 1299px) {
	.map-wrapper {
		width: calc(100% - 360px);
	}

	.map-sidebar {
		width: 360px;
		padding: 15px 5px 15px 15px;
	}

	.map-sidebar h1 {
		font-size: 1.75em;
		margin-bottom: 16px;
	}

	.map-sidebar .locations-cards-list {
		gap: 16px;
	}

	.map-sidebar .map-card-item .details-btn {
		padding: 8px 16px;
		margin-top: 14px;
	}

	.map-sidebar .map-card-item .item-link .caption {
		padding: 10px 13px;
	}

	.map-sidebar .map-card-item .item-link .caption span.uppertitle {
		margin-bottom: 14px;
	}

	.map-sidebar .map-card-item .item-link .caption p.h2 {
		font-size: 1.125em;
		margin-bottom: 14px;
	}

	.map-sidebar .map-card-item .item-link .caption p.text {
		font-size: 1em;
		margin-bottom: 14px;
	}

	.map-sidebar .map-card-item .item-link .caption span.place,
	.map-sidebar .map-card-item .item-link .caption span.time {
		font-size: 0.875em;
	}

	.map-sidebar .map-card-item .item-link .caption span.place::before {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-right: 6px;
	}

	.map-filters {
		margin-bottom: 16px;
	}

	.map-filters #side-input-group {
		margin-bottom: 14px;
	}
	
	.map-filters #side-input-group .form-control {
		padding: 8px 36px 8px 13px;
	}

	.map-filters #side-filter-group {
		gap: 14px;
	}

	.map-filters #side-filter-group .custom-select {
		padding: 8px 13px;
		padding-right: 32px;
	}

	.leaflet-container .popup-content h3 {
		margin: 0px 0px 14px 0px;
		font-size: 1.125em;
	}

	.leaflet-container .popup-content p {
		margin: 0px 0px 14px 0px;
		font-size: 0.875em;
	}

	.leaflet-container .popup-content a {
		padding: 8px 16px;
	}

	.leaflet-container .popup-content-inner {
		padding: 8px 13px;
	}

	.leaflet-container .popup-content-inner a {
		font-size: 8px 16px;
	}

	.show-list-btn {
		padding: 13px 23px;
	}
}

@media screen and (max-width: 1199px) {
	section.map-section {
		height: calc(100svh - 51px);
	}

	.map-wrapper {
		width: calc(100% - 300px);
	}

	.map-sidebar {
		width: 300px;
		padding: 15px 5px 15px 15px;
	}

	.map-sidebar h1 {
		font-size: 1.5em;
	}

	.map-sidebar .locations-cards-list {
		gap: 14px;
	}

	.map-sidebar .map-card-item .details-btn {
		padding: 6px 12px;
		font-size: 0.875em;
		margin-top: 12px;
	}

	.map-sidebar .map-card-item .item-link .caption span.uppertitle {
		margin-bottom: 12px;
	}

	.map-sidebar .map-card-item .item-link .caption p.h2 {
		margin-bottom: 12px;
	}

	.map-sidebar .map-card-item .item-link .caption p.text {
		margin-bottom: 12px;
	}

	.map-sidebar .map-card-item .item-link .caption span.place::before {
		width: 16px;
		min-width: 16px;
		height: 16px;
		margin-right: 4px;
	}

	.map-filters {
		margin-bottom: 14px;
	}

	.map-filters #side-input-group {
		margin-bottom: 12px;
	}

	.map-filters #side-input-group .form-control {
		padding: 6px 32px 6px 12px;
	}

	.map-filters #side-input-group #side-search-btn {
		height: 36px;
	}

	.map-filters #side-filter-group {
		gap: 12px;
	}

	.map-filters #side-filter-group .custom-select {
		padding: 6px 12px;
	}

	.leaflet-container .popup-content h3 {
		margin-bottom: 12px;
	}

	.leaflet-container .popup-content p {
		margin-bottom: 12px;
	}

	.leaflet-container .popup-content a {
		padding: 6px 12px;
		font-size: 0.875em;
	}

	.leaflet-container .popup-content-inner a {
		padding: 6px 12px;
		font-size: 0.875em;
	}

	.show-list-btn {
		padding: 12px 22px;
		font-size: 0.875em;
	}
}

@media screen and (max-width: 991px) {
	.map-wrapper {
		width: calc(100% - 280px);
	}

	.map-sidebar {
		width: 280px;
	}

	.map-sidebar h1 {
		font-size: 1.375em;
		margin-bottom: 14px;
	}

	.leaflet-popup .leaflet-popup-content-wrapper .leaflet-popup-content {
		max-width: 280px;
	}

	.map-filters #side-input-group .form-control {
		font-size: 0.875em;
	}

	.map-filters #side-filter-group .custom-select {
		font-size: 0.875em;
	}

	.map-filters #side-input-group #side-search-btn {
		height: 34px;
		padding: 5px;
	}

	.show-list-btn {
		padding: 10px 20px;
	}
}

@media screen and (max-width: 767px) {
	section.map-section {
		height: auto;
	}

	.map-layout {
		flex-direction: column;
	}

	.map-wrapper {
		width: 100%;
		padding-top: 60%;
		position: relative;
	}

	.map-wrapper .leaflet-container {
		position: absolute!important;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
	}

	.map-sidebar {
		padding: 15px 20px;
		width: 100%;
		overflow-y: visible;
		height: auto;
	}

	.map-sidebar .map-card-item .item-link .caption p.h2 {
		font-size: 1em;
		margin-bottom: 10px;
	}

	.leaflet-container .popup-content h3 {
		font-size: 1em;
		margin-bottom: 10px;
	}

	.leaflet-container .popup-content p {
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 576px) {
	.map-wrapper {
		padding-top: 120%;
	}

	.leaflet-popup .leaflet-popup-content-wrapper .leaflet-popup-content {
		max-width: 250px;
	}

	.map-sidebar {
		padding: 15px;
	}

	.map-sidebar .map-card-item .details-btn {
		padding: 4px 10px;
	}

	.leaflet-container .popup-content-inner a {
		padding: 4px 10px;
	}

	.show-list-btn {
		padding: 8px 16px;
	}
}

























































button.btn-submit {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	font: inherit;
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-white);
	border-radius: 0px;
	background-color: var(--main-red);
	border: none;
	box-shadow: none;
	padding: 15px 30px 12px;
	outline: none;
	text-transform: uppercase;
}

a.btn-cancel {
	font-size: 1em;
	padding: 15px 30px 12px;
	border: 1px solid var(--main-green);
	color: var(--main-green);
	text-decoration: none;
	text-transform: uppercase;
}

a.btn-cancel:hover {
	background-color: var(--main-green);
	color: var(--main-white);
}


.request-status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 0px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.request-status-badge.status-pending {
    background-color: #ffc107;
    color: #000;
}

.request-status-badge.status-approved {
    background-color: #28a745;
    color: #fff;
}

.request-status-badge.status-rejected {
    background-color: #dc3545;
    color: #fff;
}

.request-actions {
    margin-top: 10px;
}

.btn-accelerate {
    background-color: #ffc107;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 0px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

@media screen and (min-width: 576px) {
	.btn-accelerate:hover {
			background-color: #e0a800;
	}
}

.btn-view-link {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

@media screen and (min-width: 576px) {
	.btn-view-link:hover {
			background-color: #0056b3;
	}
}

.rejection-reason {
    margin-top: 10px;
    padding: 10px;
    background-color: #f8d7da;
    border-radius: 0px;
    color: #721c24;
    font-size: 14px;
}

.fast-moderation-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.fast-moderation-popup.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fast-moderation-popup.show .popup-overlay {
    display: block;
}

.fast-moderation-popup .popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 10000;
}

.close-fast-moderation-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
}

.price-info {
    font-size: 18px;
    margin: 15px 0;
}

.form-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.btn-pay {
    flex: 1;
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 0px;
    font-weight: 600;
    cursor: pointer;
}

@media screen and (min-width: 576px) {
	.btn-pay:hover {
			background-color: #218838;
	}
}

.request-status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 0px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.request-status-badge.status-pending {
    background-color: #ffc107;
    color: #000;
}

.request-status-badge.status-approved {
    background-color: #28a745;
    color: #fff;
}

.request-status-badge.status-rejected {
    background-color: #dc3545;
    color: #fff;
}

.request-actions {
    margin-top: 10px;
}

.btn-accelerate {
    background-color: #ffc107;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 0px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

@media screen and (min-width: 576px) {
	.btn-accelerate:hover {
			background-color: #e0a800;
	}
}

.btn-view-link {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

@media screen and (min-width: 576px) {
	.btn-view-link:hover {
			background-color: #0056b3;
	}
}

.rejection-reason {
    margin-top: 10px;
    padding: 10px;
    background-color: #f8d7da;
    border-radius: 0px;
    color: #721c24;
    font-size: 14px;
}

.fast-moderation-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.fast-moderation-popup.show {
    display: flex;
    align-items: center;
    justify-content: center;
}


.fast-moderation-popup .popup-box {
    position: relative;
    background: #fff;
    border-radius: 0px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
}

.fast-moderation-popup .popup-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.fast-moderation-popup .popup-title {
    font-size: 20px;
    font-weight: 600;
}

.fast-moderation-popup .close-fast-moderation-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
}

.fast-moderation-popup .popup-content {
    padding: 20px;
}

.fast-moderation-popup .price-info {
    font-size: 18px;
    margin: 15px 0;
}

.fast-moderation-popup .form-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.fast-moderation-popup .btn-pay {
    flex: 1;
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 0px;
    font-weight: 600;
    cursor: pointer;
}

@media screen and (min-width: 576px) {
	.fast-moderation-popup .btn-pay:hover {
			background-color: #218838;
	}
}

.fast-moderation-popup .btn-cancel {
    background-color: #6c757d;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 0px;
    font-weight: 600;
    cursor: pointer;
}

@media screen and (min-width: 576px) {
	.fast-moderation-popup .btn-cancel:hover {
			background-color: #5a6268;
	}
}


.catalog-items-list {
	transition: opacity 0.2s ease;
}
.catalog-items-list.list-view {
	display: block;
}
.catalog-items-list.grid-view {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.catalog-items-list .location-tags {
	margin-top: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.catalog-items-list .location-tag-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	background-color: rgba(22, 22, 22, 0.08);
	color: #161616;
	font-size: 0.85rem;
	font-weight: 500;
	line-height: 1;
}

.catalog-items-list.list-view .location-tags {
	margin-top: 16px;
}

.catalog-items-list.list-view .event-item, .catalog-items-list.grid-view .event-item {
	margin-bottom: 24px;
}
.catalog-empty {
	padding: 2rem 1rem;
	text-align: center;
	font-size: 1.1rem;
	color: #515151;
}
.date-range-filter {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	width: 100%;
}
.date-range-input {
	width: 100%;
	border: 1px solid var(--main-dark);
	border-radius: 0px;
	padding: 0.45rem 1rem;
	font-size: 0.9rem;
	background-color: #fff;
	cursor: pointer;
}
.date-range-input:focus-visible {
	outline: none;
	border-color: var(--main-dark);
	box-shadow: 0 0 0 3px rgba(22, 22, 22, 0.1);
}
@media (max-width: 991px) {
	.catalog-items-list.grid-view {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
		gap: 16px;
	}
}

.daterangepicker {
	border-radius: 0px;
	border: 1px solid #d9d9d9;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
	font-family: inherit;
	color: var(--main-dark);
	overflow: hidden;
}
.daterangepicker:before,
.daterangepicker:after {
	display: none;
}
.daterangepicker.show-calendar .calendar-table {
	border: none;
	background-color: #fff;
}
.daterangepicker .calendar-table {
	border: none;
}
.daterangepicker .calendar-table tbody tr td {
	border-radius: 0px;
	font-weight: 500;
	color: var(--main-dark);
}
@media screen and (min-width: 576px) {
	.daterangepicker .calendar-table tbody tr td:hover {
		background-color: rgba(22, 22, 22, 0.08);
	}
}
.daterangepicker td.active,
.daterangepicker td.active:hover,
.daterangepicker .calendar-table tbody td.start-date,
.daterangepicker .calendar-table tbody td.end-date {
	background-color: var(--main-dark);
	color: #fff;
}
.daterangepicker td.in-range {
	background-color: rgba(22, 22, 22, 0.08);
	color: var(--main-dark);
}
.daterangepicker .drp-buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 18px;
	background-color: #f7f7f7;
}
.daterangepicker .drp-buttons .btn {
	border-radius: 999px;
	padding: 8px 22px;
	font-weight: 600;
}
.daterangepicker .drp-buttons .btn-secondary {
	background-color: transparent;
	border-color: transparent;
	color: var(--main-dark);
}

@media screen and (min-width: 576px) {
	.daterangepicker .drp-buttons .btn-secondary:hover,
	.daterangepicker .drp-buttons .btn-secondary:focus {
		background-color: rgba(22, 22, 22, 0.08);
		border-color: transparent;
		color: var(--main-dark);
	}
}

.daterangepicker .drp-buttons .btn-primary {
	background-color: var(--main-dark);
	border-color: var(--main-dark);
}
@media screen and (min-width: 576px) {
	.daterangepicker .drp-buttons .btn-primary:hover,
	.daterangepicker .drp-buttons .btn-primary:focus {
		background-color: var(--main-dark);
		border-color: var(--main-dark);
	}
}
.daterangepicker .drp-selected {
	font-weight: 500;
	color: #5c5c5c;
}
.daterangepicker .calendar-table th {
	font-weight: 600;
	color: #5c5c5c;
}
.daterangepicker td.off {
	color: #b5b5b5;
}
.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
	border: none;
}

div#events-list.list-view > div {
    width: 100%;
}

div#locations-list.grid-view > div a {
    border-radius: 0px;
    flex-direction: column;
    height: 100%;
}

div#locations-list.grid-view > div {
    width: calc(33.33% - 16px);
    height: auto;
    margin-top: 0px !important;
    align-items: baseline;
}

div#locations-list.grid-view > div a .thumbnail {
    width: 100%;
}

div#locations-list.grid-view > div a .caption {
    width: 100%;
    height: 100%;
}

div#locations-list.grid-view > div a .thumbnail .img-wrap {
    padding-top: 60%;
}

@media (max-width: 1199px) {
	div#locations-list.grid-view > div {
		width: calc(50% - 16px);
	}
}

@media (max-width: 991px) {
	div#locations-list.grid-view > div {
		width: 100%;
	}
}


h2.section-title {
    font-family: var(--font-header);
    font-size: 2em;
    line-height: 120%;
    font-weight: 400;
    color: var(--main-black);
    margin-bottom: 16px;
}

@media (max-width: 1299px) {
	h2.section-title {
		font-size: 1.875em;
	}

	button.btn-submit {
		font-size: 1em;
		padding: 13px 25px 10px;
	}

	a.btn-cancel {
		padding: 13px 25px 10px;
	}
}

@media (max-width: 1199px) {
	h2.section-title {
		font-size: 1.75em;
	}

	button.btn-submit {
		font-size: 0.875em;
		padding: 11px 20px 8px;
	}

	a.btn-cancel {
		font-size: 0.875em;
		padding: 11px 20px 8px;
	}
}

@media (max-width: 991px) {
	h2.section-title {
		font-size: 1.625em;
	}
}

@media (max-width: 768px) {
	h2.section-title {
		font-size: 1.5em;
	}
}

div#collapseMonth label span {
    text-transform: capitalize;
}

input#side-pac-input {
    padding-right: 85px !important;
}

input#side-pac-input:focus {
	outline: none !important;
	box-shadow: none !important;
}

/* YouTube embed responsive styles */
.api-embeded.youtube {
    position: relative;
    padding-bottom: 52.44%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin: 20px 0;
}

.api-embeded.youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-price-header {
    margin-top: 15px;
}

.product-price-header .price {
    font-size: 28px;
    font-weight: bold;
    color: #2563eb;
}

.product-price {
    margin-top: 10px;
}

.product-price .price {
    font-size: 20px;
    font-weight: bold;
    color: #2563eb;
}

.featured-products {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.featured-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.featured-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.featured-item p {
    font-weight: 600;
    margin-bottom: 5px;
}

.featured-item .price {
    font-size: 16px;
    font-weight: bold;
    color: #2563eb;
}





/* ПАНЕЛЬ */
#a11y-panel {
	position: fixed;
	right: 20px;
	bottom: 20px;
	max-width: 500px;
	width: 100%;
	max-height: calc(100svh - 100px);
	overflow-y: auto;
	background: var(--main-white);
	border-radius: 0px;
	padding: 20px;
	display: none;
	z-index: 9999;
	flex-wrap: wrap;
	gap: 20px;
	border: 1px solid var(--main-bg-gray);
	box-shadow: 0 0 10px #0000001a;
}

#a11y-panel.open {
	display: flex;
}

#a11y-panel .top-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 20px;
}

#a11y-panel .top-wrap .a11y-close {
	width: 48px;
	min-width: 48px;
	height: 48px;
	background-image: url(../img/menu-burger-close.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 40% 40%;
	border: none;
	background-color: var(--main-white);
	border-radius: 0px;
	filter: invert(1);
}

#a11y-panel .top-wrap p.h2 {
	font-size: 1.125em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-white);
	background-color: var(--main-black);
	padding: 10px 16px;
	flex: 1;
	text-align: center;
	border-radius: 0px;
	margin: 0px;
}

/* КНОПКИ */
.a11y-btn {
	width: calc((100% - 40px) / 3);
	background: var(--main-white);
	border-radius: 0px;
	padding: 25px 12px 12px;
	color: var(--main-black);
	border: 1px solid var(--main-black);
	text-align: center;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.a11y-btn:hover {
	box-shadow: 0 0 5px #00000080;
}

.a11y-btn::before {
	content: '';
	width: 30px;
	min-width: 30px;
	height: 30px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../img/a11y-text-icon-black.svg);
	margin-bottom: 10px;
}

.a11y-btn.text::before {
	background-image: url(../img/a11y-text-icon-black.svg);
}

.a11y-btn.line::before {
	background-image: url(../img/a11y-line-icon-black.svg);
}

.a11y-btn.letter::before {
	background-image: url(../img/a11y-letter-icon-black.svg);
}

.a11y-btn.align::before {
	background-image: url(../img/a11y-align-icon-black.svg);
}

.a11y-btn.invert::before {
	background-image: url(../img/a11y-invert-icon-black.svg);
}

.a11y-btn.grayscale::before {
	background-image: url(../img/a11y-grayscale-icon-black.svg);
}

.a11y-btn.saturation::before {
	background-image: url(../img/a11y-saturation-icon-black.svg);
}

.a11y-btn.contrast::before {
	background-image: url(../img/a11y-contrast-icon-black.svg);
}

.a11y-btn.highlight::before {
	background-image: url(../img/a11y-highlight-icon-black.svg);
}

.a11y-btn.text:has(.indicator span.active)::before {
	background-image: url(../img/a11y-text-icon-white.svg);
}

.a11y-btn.line:has(.indicator span.active)::before {
	background-image: url(../img/a11y-line-icon-white.svg);
}

.a11y-btn.letter:has(.indicator span.active)::before {
	background-image: url(../img/a11y-letter-icon-white.svg);
}

.a11y-btn.align:has(.indicator span.active)::before {
	background-image: url(../img/a11y-align-icon-white.svg);
}

.a11y-btn.invert:has(.indicator.single).active::before {
	background-image: url(../img/a11y-invert-icon-white.svg);
}

.a11y-btn.grayscale:has(.indicator.single).active::before {
	background-image: url(../img/a11y-grayscale-icon-white.svg);
}

.a11y-btn.saturation:has(.indicator span.active)::before {
	background-image: url(../img/a11y-saturation-icon-white.svg);
}

.a11y-btn.contrast:has(.indicator span.active)::before {
	background-image: url(../img/a11y-contrast-icon-white.svg);
}

.a11y-btn.highlight:has(.indicator.single).active::before {
	background-image: url(../img/a11y-highlight-icon-white.svg);
}

.a11y-btn .label {
	font-size: 1em;
	line-height: 120%;
	word-break: break-word;
}

/* ІНДИКАТОР */
.indicator {
	width: 100%;
	margin: 10px auto 0;
	display: flex;
	gap: 6px;
	justify-content: center;
}

.indicator span {
	height: 3px;
	width: 100%;
	flex: 1;
	background: rgba(255,255,255,.35);
	border-radius: 0px;
}

.indicator span.active {
	background: var(--main-white);
}

.a11y-btn:has(.indicator span.active) {
	background-color: var(--main-black);
	color: var(--main-white);
}

/* ОДИНАРНИЙ ІНДИКАТОР */
.indicator.single {
	width: 100%;
	height: 3px;
	background: rgba(255,255,255,.35);
	border-radius: 0px;
	margin: 10px auto 0;
}

.a11y-btn:has(.indicator.single).active {
	background-color: var(--main-black);
	color: var(--main-white);
}

.a11y-btn.active .indicator.single {
	background: var(--main-white);
}

/* RESET */
#a11y-reset {
	width: 100%;
	background: var(--main-black);
	color: var(--main-white);
	border: none;
	border-radius: 0px;
	padding: 0.75em 1em;
	cursor: pointer;
}

/* ===== ACCESSIBILITY CLASSES ===== */

.a11y-text-1 > * { font-size: 110%!important; }
.a11y-text-2 > * { font-size: 120%!important; }
.a11y-text-3 > * { font-size: 130%!important; }

.a11y-line-1 * { line-height: 1.5!important; }
.a11y-line-2 * { line-height: 1.8!important; }
.a11y-line-3 * { line-height: 2!important; }

.a11y-letter-1 * { letter-spacing: .1rem!important; }
.a11y-letter-2 * { letter-spacing: .15rem!important; }
.a11y-letter-3 * { letter-spacing: .2rem!important; }

.a11y-align-1 * { text-align: left!important; }
.a11y-align-2 * { text-align: center!important; }
.a11y-align-3 * { text-align: right!important; }

.a11y-highlight-links *:not(.thumbnail) > a { background: yellow!important; color: black!important; outline: 2px solid #000!important; }

.a11y-contrast-1 > * { filter: contrast(0.8)!important; }
.a11y-contrast-2 > * { filter: contrast(1.5)!important; }
.a11y-contrast-3 > * { filter: contrast(2)!important; }

.a11y-sat-low > * { filter: saturate(0.2)!important; }
.a11y-sat-high > * { filter: saturate(2)!important; }

.a11y-invert > * { filter: invert(1) hue-rotate(180deg)!important; }
.a11y-grayscale > * { filter: grayscale(1)!important; }

.a11y-contrast-1.a11y-sat-low > * { filter: contrast(0.8) saturate(0.2)!important; }
.a11y-contrast-1.a11y-sat-high > * { filter: contrast(0.8) saturate(2)!important; }
.a11y-contrast-2.a11y-sat-low > * { filter: contrast(1.5) saturate(0.2)!important; }
.a11y-contrast-2.a11y-sat-high > * { filter: contrast(1.5) saturate(2)!important; }
.a11y-contrast-3.a11y-sat-low > * { filter: contrast(2) saturate(0.2)!important; }
.a11y-contrast-3.a11y-sat-high > * { filter: contrast(2) saturate(2)!important; }

.a11y-contrast-1.a11y-invert > * { filter: contrast(0.8) invert(1) hue-rotate(180deg)!important; }
.a11y-contrast-2.a11y-invert > * { filter: contrast(1.5) invert(1) hue-rotate(180deg)!important; }
.a11y-contrast-3.a11y-invert > * { filter: contrast(2) invert(1) hue-rotate(180deg)!important; }

.a11y-contrast-1.a11y-grayscale > * { filter: contrast(0.8) grayscale(1)!important; }
.a11y-contrast-2.a11y-grayscale > * { filter: contrast(1.5) grayscale(1)!important; }
.a11y-contrast-3.a11y-grayscale > * { filter: contrast(2) grayscale(1)!important; }

.a11y-sat-low.a11y-invert > * { filter: saturate(0.2) invert(1) hue-rotate(180deg)!important; }
.a11y-sat-high.a11y-invert > * { filter: saturate(2) invert(1) hue-rotate(180deg)!important; }

.a11y-sat-low.a11y-grayscale > * { filter: saturate(0.2) grayscale(1)!important; }
.a11y-sat-high.a11y-grayscale > * { filter: saturate(2) grayscale(1)!important; }

.a11y-invert.a11y-grayscale > * { filter: invert(1) hue-rotate(180deg) grayscale(1)!important; }

.a11y-contrast-1.a11y-sat-low.a11y-invert > * { filter: contrast(0.8) saturate(0.2) invert(1) hue-rotate(180deg)!important; }
.a11y-contrast-1.a11y-sat-high.a11y-invert > * { filter: contrast(0.8) saturate(2) invert(1) hue-rotate(180deg)!important; }
.a11y-contrast-1.a11y-sat-low.a11y-grayscale > * { filter: contrast(0.8) saturate(0.2) grayscale(1)!important; }
.a11y-contrast-1.a11y-sat-high.a11y-grayscale > * { filter: contrast(0.8) saturate(2) grayscale(1)!important; }
.a11y-contrast-1.a11y-invert.a11y-grayscale > * { filter: contrast(0.8) invert(1) hue-rotate(180deg) grayscale(1)!important; }
.a11y-contrast-2.a11y-sat-low.a11y-invert > * { filter: contrast(1.5) saturate(0.2) invert(1) hue-rotate(180deg)!important; }
.a11y-contrast-2.a11y-sat-high.a11y-invert > * { filter: contrast(1.5) saturate(2) invert(1) hue-rotate(180deg)!important; }
.a11y-contrast-2.a11y-sat-low.a11y-grayscale > * { filter: contrast(1.5) saturate(0.2) grayscale(1)!important; }
.a11y-contrast-2.a11y-sat-high.a11y-grayscale > * { filter: contrast(1.5) saturate(2) grayscale(1)!important; }
.a11y-contrast-2.a11y-invert.a11y-grayscale > * { filter: contrast(1.5) invert(1) hue-rotate(180deg) grayscale(1)!important; }
.a11y-contrast-3.a11y-sat-low.a11y-invert > * { filter: contrast(2) saturate(0.2) invert(1) hue-rotate(180deg)!important; }
.a11y-contrast-3.a11y-sat-high.a11y-invert > * { filter: contrast(2) saturate(2) invert(1) hue-rotate(180deg)!important; }
.a11y-contrast-3.a11y-sat-low.a11y-grayscale > * { filter: contrast(2) saturate(0.2) grayscale(1)!important; }
.a11y-contrast-3.a11y-sat-high.a11y-grayscale > * { filter: contrast(2) saturate(2) grayscale(1)!important; }
.a11y-contrast-3.a11y-invert.a11y-grayscale > * { filter: contrast(2) invert(1) hue-rotate(180deg) grayscale(1)!important; }

@media screen and (max-width: 1199px) {
	#a11y-panel {
		right: 15px;
		bottom: 15px;
		max-height: calc(100svh - 90px);
	}

	.a11y-btn::before {
		width: 28px;
		min-width: 28px;
		height: 28px;
	}
}

@media screen and (max-width: 767px) {
	#a11y-panel {
		left: 10px;
		right: 10px;
		bottom: 10px;
		max-width: none;
		width: auto;
		padding: 16px;
		gap: 16px;
	}

	.a11y-btn {
		width: calc((100% - 32px) / 3);
	}

	#a11y-panel .top-wrap {
		gap: 16px;
	}

	.a11y-btn::before {
		width: 26px;
		min-width: 26px;
		height: 26px;
	}
}

@media screen and (max-width: 575px) {
	#a11y-panel {
		left: 0px;
		right: 0px;
		bottom: 0px;
		top: 0px;
		padding: 12px;
		gap: 12px;
		max-height: none;
		flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
		width: 100%;
    border-radius: 0px;
	}

	#a11y-panel .top-wrap {
		gap: 12px;
	}

	#a11y-panel .top-wrap .a11y-close {
		width: 35px;
		min-width: 35px;
		height: 35px;
	}

	#a11y-panel .top-wrap p.h2 {
		font-size: 1em;
		padding: 5px 10px;
	}

	.a11y-btn {
		width: calc((100% - 12px) / 2);
		font-size: 0.875em;
		padding: 16px 8px 8px;
		border-radius: 0px;
	}

	.a11y-btn::before {
		width: 24px;
		min-width: 24px;
		height: 24px;
	}

	.indicator {
		margin-top: 6px;
	}

	.indicator span {
		height: 2px;
	}

	.indicator.single {
		height: 2px;
		margin-top: 6px;
	}

	#a11y-reset {
		font-size: 0.875em;
		padding: 0.5em 0.875em;
	}
}





/* ===================================
   Product Order & Checkout Styles
   =================================== */

/* Блок покупки товару */
.product-purchase-block {
  margin-top: 20px;
}

.product-price-quantity {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	gap: 16px;
}

.product-quantity-selector {
	display: flex;
	align-items: center;
	background: white;
	border: 1px solid #e2e2e2;
	overflow: hidden;
}

.quantity-btn {
	width: 30px;
	height: 30px;
	background: white;
	border: none;
	font-size: 1.25em;
	line-height: 120%;
	font-weight: 400;
	color: #6c757d;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quantity-btn:hover {
	background: #f4f4f4;
	color: #2c3e50;
}

.quantity-btn:active {
  background: #e9ecef;
}

.quantity-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.quantity-input {
	width: 60px;
	height: 30px;
	border: none;
	border-left: 1px solid #e2e2e2;
	border-right: 1px solid #e2e2e2;
	text-align: center;
	font-size: 1em;
	font-weight: 400;
	color: #2c3e50;
	background: white;
}

.quantity-input:focus {
  outline: none;
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.quantity-input[type=number] {
  -moz-appearance: textfield;
}

.add-to-cart-form {
  width: 100%;
}

.btn-add-to-cart {
	width: 100%;
}

@media screen and (min-width: 576px) {
	.btn-add-to-cart:hover,
	.btn.btn-add-to-cart:active {
		background-color: transparent;
		color: var(--main-red);
		border-color: var(--main-red);
	}
}

.btn-add-to-cart:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

/* Мобільні стилі */
@media (max-width: 767px) {
	.product-purchase-block {
		margin-top: 14px;
	}
	
	.product-price-quantity {
		gap: 14px;
		margin-bottom: 14px;
	}
}

/* Checkout Page Styles */
.checkout-page {
	padding: 40px 0px 60px;
	background: #f4f4f4;
}

.checkout-page h1.main-h1 {
	font-size: 2.75em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 20px;
}

.checkout-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.checkout-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.checkout-section {
	background: white;
	padding: 26px;
	margin-bottom: 20px;
}

.checkout-section:last-child {
	margin-bottom: 0px;
}

.checkout-section h2 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 700;
	color: var(--main-blue);
	margin-bottom: 20px;
}

.form-group:last-child {
	margin-bottom: 0px;
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.invalid-feedback {
	color: #dc3545;
	font-size: 0.875em;
	margin-top: 6px;
}

.payment-methods {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.payment-option {
	display: flex;
	align-items: center;
	padding: 16px;
	border: 1px solid #e2e2e2;
	cursor: pointer;
	transition: all 0.2s;
	position: relative;
}

.payment-option:hover {
	border-color: var(--main-blue);
}

.payment-option input[type="radio"] {
	margin-right: 12px;
	width: 20px;
	height: 20px;
	filter: hue-rotate(140deg);
}

.payment-option label {
	cursor: pointer;
	margin: 0;
	font-weight: 500;
}

.payment-option label::after {
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.payment-security-text {
	margin-top: 16px;
	padding: 12px;
	background: #e7f3ff;
	font-size: 0.875em;
	color: #495057;
}

.order-summary {
	position: sticky;
	top: 81px;
}

.order-items-table {
	width: 100%;
	margin-bottom: 20px;
}

.order-items-table th {
	padding: 10px;
	text-align: left;
	border-bottom: 1px solid #e2e2e2;
	font-weight: 600;
	color: var(--main-blue);
}

.order-items-table td {
	padding: 10px;
	border-bottom: 1px solid #e2e2e2;
	color: var(--main-black);
}

.order-items-table .item-name {
  font-weight: 500;
}

.order-items-table .item-quantity {
  text-align: center;
}

.order-items-table .item-total {
	text-align: right;
	font-weight: 600;
}

.order-total {
	margin: 20px 0;
	padding: 16px;
	background: #f4f4f4;
}

.order-total-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	font-size: 1em;
}

.order-total-row.final {
	font-weight: 700;
	font-size: 1.25em;
	color: var(--main-blue);
	padding-top: 10px;
	border-top: 1px solid #e2e2e2;
	margin-bottom: 0px;
}

.commission-note {
	font-size: 0.875em;
	color: #6c757d;
	margin-top: 6px;
	font-style: italic;
	margin-bottom: 0px;
}

.btn-submit-order {
	width: 100%;
}

@media screen and (min-width: 576px) {
	.btn-submit-order:hover,
	.btn.btn-submit-order:active {
		border-color: var(--main-red);
		background-color: transparent;
		color: var(--main-red);
	}
}

.terms-text {
	text-align: center;
	font-size: 0.875em;
	color: #6c757d;
	margin-top: 16px;
	line-height: 120%;
	margin-bottom: 0px;
}

.terms-text a {
	color: var(--main-red);
}

/* Mobile Styles */
@media (max-width: 1299px) {
	.checkout-page {
		padding: 35px 0px 52px;
	}

	.checkout-page h1.main-h1 {
		font-size: 2.5em;
		margin-bottom: 18px;
	}

	.checkout-section {
		padding: 24px;
	}

	.checkout-section h2 {
		font-size: 1.375em;
		margin-bottom: 18px;
	}

	.form-group:last-child {
		margin-bottom: 0px;
	}

	.payment-option {
		padding: 14px;
	}

	.payment-option input[type="radio"] {
		margin-right: 10px;
		width: 18px;
		height: 18px;
	}

	.payment-security-text {
		padding: 10px;
	}
}

@media (max-width: 1199px) {
	.checkout-page {
		padding: 28px 0px 42px;
	}

	.checkout-page h1.main-h1 {
		font-size: 2em;
		margin-bottom: 16px;
	}

	.checkout-section {
		padding: 20px;
	}

	.checkout-section h2 {
		font-size: 1.25em;
		margin-bottom: 16px;
	}

	.form-group:last-child {
		margin-bottom: 0px;
	}

	.payment-option {
		padding: 12px;
	}

	.payment-option input[type="radio"] {
		margin-right: 8px;
		width: 16px;
		height: 16px;
	}

	.order-total-row.final {
		font-size: 1.125em;
	}
}

@media (max-width: 991px) {
	.checkout-container {
		padding: 0px 24px;
	}

	.checkout-page {
		padding: 24px 0px 32px;
	}

	.checkout-page h1.main-h1 {
		font-size: 1.625em;
	}

	.checkout-section {
		padding: 18px;
	}

	.checkout-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.checkout-section h2 {
		font-size: 1.125em;
		margin-bottom: 14px;
	}
	
	.order-summary {
		position: static;
	}

	.form-group:last-child {
		margin-bottom: 0px;
	}

	.payment-option {
		padding: 10px;
	}

	.payment-option input[type="radio"] {
		margin-right: 6px;
		width: 14px;
		height: 14px;
	}

	.order-summary {
		top: 71px;
	}
}

@media (max-width: 767px) {
	.checkout-container {
		padding: 0px 20px;
	}

	.checkout-page {
		padding: 20px 0px 24px;
	}

	.checkout-page h1.main-h1 {
		font-size: 1.5em;
	}

	.checkout-section {
		padding: 16px;
		margin-bottom: 16px;
	}

	.checkout-section:last-child {
		margin-bottom: 0px;
	}
	
	.order-items-table th,
	.order-items-table td {
		padding: 6px 4px;
		font-size: 0.875em;
	}

	.form-group:last-child {
		margin-bottom: 0px;
	}

	.order-total {
		padding: 12px;
		margin: 16px 0px;
	}

	.order-total-row {
		font-size: 0.875em;
	}

	.order-total-row.final {
		font-size: 1em;
	}

	.terms-text {
		margin-top: 12px;
	}

	.payment-methods {
		gap: 10px;
	}

	.payment-option label {
		font-size: 0.875em;
	}

	.checkout-grid {
		gap: 16px;
	}
}

@media (max-width: 575px) {
	.checkout-container {
		padding: 0px 15px;
	}

	.checkout-page {
		padding: 20px 0px 24px;
	}

	.checkout-section {
		padding: 14px;
	}

	.checkout-page h1.main-h1 {
		font-size: 1.375em;
	}

	.form-group:last-child {
		margin-bottom: 0px;
	}
}

.checkout-section .check-icon {
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.checkout-section .check-icon svg {
	width: 80px;
	height: 80px;
}

.checkout-section p.undertitle {
	font-size: 1.125em;
}

.checkout-section .order-items-table:last-child {
	margin-bottom: 0px;
}

.checkout-section p:last-child {
	margin-bottom: 0px;
}

.checkout-section .btns-wrap {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.checkout-section h3 {
	font-size: 1.375em;
}

@media screen and (max-width: 1299px) {
	.checkout-section .check-icon {
		margin-bottom: 28px;
	}

	.checkout-section .check-icon svg {
		width: 70px;
		height: 70px;
	}
}

@media screen and (max-width: 1199px) {
	.checkout-section .check-icon {
		margin-bottom: 26px;
	}

	.checkout-section .check-icon svg {
		width: 60px;
		height: 60px;
	}

	.checkout-section h3 {
		font-size: 1.25em;
	}
}

@media screen and (max-width: 991px) {
	.checkout-section .check-icon {
		margin-bottom: 24px;
	}

	.checkout-section .check-icon svg {
		width: 50px;
		height: 50px;
	}

	.checkout-section h3 {
		font-size: 1.125em;
	}
}

@media screen and (max-width: 767px) {
	.checkout-section .checkout-section {
		padding: 0px;
	}

	.checkout-section .checkout-section:has(h3) {
		padding: 12px;
	}

	.checkout-section .check-icon {
		margin-bottom: 18px;
	}

	.checkout-section p.undertitle {
		font-size: 1em;
	}

	.checkout-section h3 {
		font-size: 1em;
	}
}

@media screen and (max-width: 575px) {
	.checkout-section .check-icon {
		margin-bottom: 14px;
	}

	.checkout-section p.undertitle {
		font-size: 0.875em;
	}

	.checkout-section p {
		margin-bottom: 14px;
		font-size: 0.875em;
	}

	.checkout-section .btns-wrap {
		gap: 14px;
	}
}

/* Повідомлення про успіх/помилку */
.alert {
	padding: 12px 16px;
	margin-bottom: 20px;
	font-size: 0.875em;
	border-radius: 0px;
}

.alert-success {
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

.alert-error,
.alert-danger {
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

@media screen and (max-width: 767px) {
	.alert {
		padding: 6px 12px;
		margin-bottom: 16px;
	}
}

figure img.mfp-img {
	max-height: 100svh!important;
}