body {
	background: #F9F7F7;
	color: #000000;
	font-size: 16px;
	font-weight: normal;
	font-family: "PT Root UI";
	line-height: 1.4;
	margin: 0;
}

button,
input {
	-webkit-appearance: none;
}

* {
	font-family: "PT Root UI";
	outline: 0;
	box-sizing: border-box;
	text-decoration: none;
}

a {
	color: #080808;
}

input::placeholder {
	color: #9f9e9f;
}

.nice-select:after {
	border-color: #19191B;
}

.wrapper {
	position: relative;
	max-width: 1320px;
	padding: 0 15px;
	margin: 0 auto;
}

.btn {
	background: #60A4A5;
	border-radius: 4px;
	border: none;
	padding: 20px 23px;
	color: white;
	font-weight: bold;
	font-size: 16px;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s;
}

.btn:hover {
	background: #a0c8c9;
}

.btn.disabled {
	opacity: 0.7;
	cursor: not-allowed;
	background: #a0c8c9 !important;
}

[class^=icon-],
[class*=" icon-"] {
	width: 24px;
	height: 24px;
	flex: 24px 0 0;
	margin-right: 5px;
	position: relative;
	line-height: 1;
	vertical-align: middle;
	display: inline-block;
}

header {
	position: relative;
	z-index: 1;
}

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

header .header-menu {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style-type: none;
}

header .header-menu li {
	padding: 0 22px;
}

header .header-menu li a {
	font-weight: normal;
	font-size: 16px;
	text-transform: uppercase;
	transition: all 0.3s;
}

header .header-menu li a:hover {
	color: #60A4A5;
}

header .header-menu li.current-menu-item a {
	color: #60A4A5;
}

header .header-right {
	display: flex;
	align-items: center;
}

header .header-phone {
	/*  width: 185px;*/
	position: relative;
	/*  padding-right: 26px;*/
}

header .header-phone .arrow-down {
	width: 18px;
	height: 18px;
	background: url(../images/arrow-down.svg) no-repeat center;
	filter: invert(1);
	position: absolute;
	top: 3px;
	right: 0;
	cursor: pointer;
	transition: all 0.3s;
}

header .header-phone .arrow-down.active {
	transform: rotate(-180deg);
}

header .header-phone a {
	font-weight: normal;
	font-size: 20px;
	display: block;
}

header .header-phone a.hide {
	display: none;
	position: absolute;
	top: 100%;
}

.home header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.home .header-top {
	border-color: rgba(255, 255, 255, 0.2);
}

.home .header-menu li a,
.home .header-phone a {
	color: white;
}

.home .header-phone .arrow-down {
	filter: invert(0);
}

.main-screen {
	position: relative;
	max-width: 100%;
	min-height: 768px;
	padding: 278px 0 75px;
}

.main-screen:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(0 0 0 / 13%);
}

.main-screen .intro-title {
	color: white;
	font-weight: bold;
	font-size: 84px;
	line-height: 93px;
	margin: 0;
	text-shadow: 0px 4px 11px #000000bf;
}

.main-screen .intro-text {
	margin: -35px 0 33px auto;
	color: #4758a5;
	font-weight: 500;
	font-size: 20px;
	line-height: 25px;
	text-align: right;

	padding: 10px 15px;
	background: #ffffffcc;
	border-radius: 4px;
	display: table;
}

.slider-main {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
}

.slider-main .slick-slide img {
	margin: 0 auto;
}

.slider-nav {
	display: flex;
}

.slider-nav .slick-arrow {
	width: 18px;
	height: 18px;
}

.slider-nav .slick-arrow.slick-prev {
	background: url(../images/arrow-prev.svg) no-repeat center;
}

.slider-nav .slick-arrow.slick-next {
	background: url(../images/arrow-next.svg) no-repeat center;
}

.slider-nav .slides-numbers {
	display: flex;
	align-items: center;
}

.slider-nav .slides-numbers span {
	color: white;
	font-size: 14px;
	margin: 0 11px;
	display: block;
}

.slider-nav .progress {
	position: relative;
	background: rgba(255, 255, 255, 0.2);
	width: 60px;
	height: 1px;
}

.slider-nav .progress:before {
	content: "";
	background: white;
	width: 50%;
	height: 1px;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	animation: progress 4s;
	animation-fill-mode: forwards;
}

@keyframes progress {
	from {
		width: 0%;
	}

	to {
		width: 100%;
	}
}

.slick-arrow {
	width: 24px;
	height: 24px;
	cursor: pointer;
	padding: 0;
	margin: 0;
	border: none;
	font-size: 0;
}

.custom-arrow {
	position: absolute;
	top: 45%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-arrow.slick-prev {
	left: -30px;
}

.custom-arrow.slick-next {
	right: -30px;
}

.booking-form {
	background: white;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	padding: 20px 20px;
	margin-top: 36px;
	display: flex;
	justify-content: space-between;
}

.booking-form .error-message {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	max-width: 100%;
	background: white;
	padding: 5px;
	text-align: center;
	border-radius: 3px;
	box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 3%);
}

.booking-form .booking-group {
	position: relative;
	width: 16.6%;
}

.booking-form .booking-group:not(:first-child) {
	padding-left: 30px;
	border-left: 1px solid #e8e8e8;
}

.booking-form .booking-label {
	color: #757576;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	margin: 5px 0;
}

.booking-form .booking-control,
.booking-form input {
	height: 30px;
	line-height: 30px;
	border: none;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}

.booking-form .quantity-input {
	border: none;
}

.booking-form input::placeholder {
	color: #19191B;
}

.nice-select.booking-control {
	padding-left: 0;
}

.form-wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.form-wrap .field-group {
	width: 50%;
	padding: 0 10px;
}

.form-wrap .field-group .field-control {
	width: 100%;
	line-height: 60px;
}

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

.field-group .field-label {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.field-group .field-control {
	width: 100%;
	background: #F9F7F7;
	border-radius: 4px;
	height: 60px;
	border: 1px solid transparent;
	padding: 0 18px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.3s;
}

.field-group .field-control:focus {
	border-color: #60a4a5;
}

.quantity {
	position: relative;
	display: flex;
	align-items: center;
}

.quantity .quantity-btn {
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.quantity .quantity-btn.minus {
	background: url(../images/minus.svg) no-repeat center;
}

.quantity .quantity-btn.plus {
	background: url(../images/plus.svg) no-repeat center;
}

.quantity .quantity-input {
	width: 30px;
	text-align: center;
}

.quantity-wrap {
	display: flex;
	margin: 0 -15px;
}

.quantity-wrap .quantity-group {
	padding: 0 15px;
}

.quantity-wrap .field-label {
	font-size: 12px;
}

.quantity-wrap .field-control {
	width: 110px !important;
	padding: 0;
}

.quantity-wrap .quantity-btn {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

.quantity-wrap .quantity-btn.minus {
	left: 10px;
}

.quantity-wrap .quantity-btn.plus {
	right: 10px;
}

.section-title {
	font-weight: normal;
	font-size: 44px;
	margin: 0 0 30px;
	border-bottom: 1px solid #cccbcb;
}

.section-title span {
	padding: 0 144px 24px 0;
	display: inline-block;
	border-right: 1px solid #cccbcb;
}

.title {
	font-size: 44px;
	font-weight: 500;
	margin: 0 0 30px;
}

.breadcrumbs {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0 0 10px;
	list-style-type: none;
	font-size: 14px;
}

.breadcrumbs .separator {
	display: inline-block;
	margin: 0 8px;
}

.breadcrumbs span {
	opacity: 0.4;
}

section {
	padding: 40px 0;
}

.rooms-list .room-card {
	background: #FFFFFF;
	border-radius: 10px;
	padding: 24px;
	margin-bottom: 24px;
	display: flex;
	transition: box-shadow ease-out 0.2s;
}

.rooms-list .room-card:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.rooms-list .room-card .room-image {
	overflow: hidden;
	border-radius: 4px;
	max-height: 234px;
	flex: 407px 0 0;
	position: relative;
	margin-right: 30px;
}

.rooms-list .room-card .room-image img {
	width: 100%;
	object-fit: cover;
	object-position: bottom;
	border-radius: 4px;
	display: block;
	overflow: hidden;
	cursor: pointer;
	transition: opacity 0.35s, transform 0.35s;
	transform: scale(1.1);
}

.rooms-list .room-card .room-image:before {
	content: "";
	width: 202px;
	height: 1px;
	background: rgba(255, 255, 255, 0.6);
	position: absolute;
	left: 27px;
	bottom: 35px;
}

.rooms-list .room-card .room-image:hover img {
	opacity: 0.8;
	transform: translate3d(0, 0, 0);
}

.rooms-list .room-card .all-photos {
	background: rgba(25, 25, 27, 0.4);
	border-radius: 100px;
	padding: 10px 20px;
	color: white;
	font-size: 14px;
	position: absolute;
	right: 18px;
	bottom: 15px;
	cursor: pointer;
}

.rooms-list .room-card .room-name {
	color: #000000;
	font-size: 30px;
	display: block;
	margin-bottom: 5px;
}

.rooms-list .room-card .room-info {
	display: flex;
}

.rooms-list .room-card .room-details {
	width: 74.5%;
	padding: 20px 30px 0 40px;
	border-right: 1px solid #e8e8e8;
}

.rooms-list .room-card .room-description {
	font-size: 16px;
	line-height: 1.4;
	height: 123px;
	border-bottom: 1px solid #e8e8e8;
	overflow-y: auto;
}

.rooms-list .room-card .room-description::-webkit-scrollbar {
	width: 8px;
}

.rooms-list .room-card .room-description::-webkit-scrollbar-track {
	background: #ffffff;
	border-radius: 4px;
}

.rooms-list .room-card .room-description::-webkit-scrollbar-thumb {
	background: #ebecec;
	border-radius: 4px;
}

.rooms-list .room-card .room-services {
	padding: 25px 0 0 0;
	margin: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.rooms-list .room-card .room-services li {
	position: relative;
	cursor: pointer;
	margin-bottom: 5px;
}

.rooms-list .room-card .room-services li:hover::before {
	content: attr(data-hint);
	background-color: #60a4a5;
	border-radius: 4px;
	color: white;
	font-size: 14px;
	left: 50%;
	line-height: 18px;
	max-width: 270px;
	padding: 5px 10px;
	position: absolute;
	text-align: left;
	top: -11px;
	transform: translate(-50%, -100%);
	width: 270px;
	width: -webkit-max-content;
	width: max-content;
	z-index: 11;
}

.rooms-list .room-card .room-services li:hover::after {
	border-color: #60a4a5 transparent transparent transparent;
	border-style: solid;
	border-width: 11px 11px 0 11px;
	content: "";
	height: 0;
	left: 50%;
	position: absolute;
	top: -5px;
	transform: translateZ(0) scale(1) translate(-50%, -100%);
	width: 0;
	z-index: 1;
}

.rooms-list .room-card .room-services li:not(:last-child) {
	margin-right: 30px;
}

.rooms-list .room-card .room-list {
	width: 230px;
	padding-left: 30px;
}

.rooms-list .room-card .room-list li {
	font-size: 16px;
	display: flex;
	align-items: center;
}

.rooms-list .room-card .room-list li:not(:last-child) {
	margin-bottom: 17px;
}

.rooms-list .room-card .room-gallery {
	display: none;
}

.banner-list {
	display: flex;
	margin: 0 -15px;
}

.banner-item {
	padding: 0 15px;
}

.banner-item img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
}

.about-subtitle {
	color: #60A4A5;
	font-size: 18px;
	margin-bottom: 12px;
}

.about-title {
	font-size: 44px;
	line-height: 1.4;
	letter-spacing: -0.01em;
	margin-bottom: 24px;
}

.about-text {
	font-size: 18px;
	letter-spacing: -0.01em;
	margin-bottom: 55px;
}

.about-wrap {
	display: flex;
	justify-content: space-between;
}

.about-list {
	width: 100%;
	background: white;
	display: flex;
	padding: 27px 32px;
}

.about-item:not(:last-child) {
	padding-right: 40px;
}

.about-icon {
	padding-bottom: 10px;
	margin-bottom: 17px;
	border-bottom: 1px solid #e8e8e8;
}

.about-name span {
	font-size: 28px;
}

.about-left {
	width: 51.6%;
	padding-top: 19px;
}

.about-right {
	display: flex;
}

.about-right img {
	display: block;
}

.about-big {
	margin-top: 46px;
	position: relative;
	margin-right: -24px;
	z-index: -1;
}

.gallery-section {
	margin-bottom: 60px;
}

.gallery-title {
	font-size: 24px;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #cccbcb;
}

.gallery-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.gallery-list .gallery-item {
	width: 33.3%;
	padding: 15px;
}

.gallery-list .gallery-item img {
	width: 100%;
	max-width: 100%;
	height: 230px;
	object-fit: cover;
	display: block;
	transition: opacity 0.35s, transform 0.35s;
	transform: scale(1.1);
}

.gallery-list .gallery-inner {
	overflow: hidden;
}

.gallery-list .gallery-inner:hover img {
	opacity: 0.8;
	transform: translate3d(0, 0, 0);
}

.reviews-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -25px;
}

.reviews-list .review-item {
	width: 33.3%;
	padding: 15px 25px;
}

.reviews-list .review-inner {
	position: relative;
	background: white;
	border: 1px solid rgba(25, 25, 27, 0.4);
	border-radius: 10px;
	padding: 24px;
}

.reviews-list .review-inner:after {
	content: "";
	width: 100%;
	height: 100%;
	background: #E3F0EA;
	border-radius: 10px;
	transform: rotate(-2.62deg);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.reviews-list .review-text {
	margin-bottom: 16px;
}

.reviews-list .review-name {
	font-weight: 600;
	margin-bottom: 3px;
}

.reviews-list .review-date {
	color: #797979;
	font-size: 14px;
}

.all-reviews {
	position: absolute;
	top: 9px;
	right: 0;
	padding: 14px 26px;
	display: table;
	background: transparent;
	border-radius: 4px;
	border: 1px solid #60A4A5;
	color: #60A4A5;
}

.all-reviews:hover {
	background: #60A4A5;
	color: white;
}

.all-reviews:before {
	content: "";
	width: 1px;
	height: 70px;
	background: #cccbcb;
	position: absolute;
	left: -49px;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

.reviews-btn {
	background: white;
	border: 1px solid #60A4A5;
	color: #60A4A5;
	display: table;
	margin: 45px auto 0;
}

.reviews-btn:hover {
	background: #60A4A5;
	color: white;
}

.contacts-wrap {
	display: flex;
}

.contact-label {
	margin-bottom: 16px;
}

.contact-phone {
	font-weight: 500;
}

.contact-phone,
.contact-email,
.contact-address {
	display: flex;
}

.contact-flex {
	display: flex;
	margin: 49px 0 30px;
}

.contact-flex .contact-item:nth-child(2) {
	padding-left: 80px;
}

.contact-right {
	width: 629px;
	margin: 0 0 0 auto;
}

#map {
	background: white;
	width: 100%;
	height: 318px;
	border-radius: 6px;
}

.contact-social a:not(:last-child) {
	margin-right: 20px;
}

.icon-hairdryer {
	background: url(../images/hairdryer.svg) no-repeat center;
}

.icon-iron {
	background: url(../images/iron.svg) no-repeat center;
}

.icon-mirror {
	background: url(../images/mirror.svg) no-repeat center;
}

.icon-safe {
	background: url(../images/safe.svg) no-repeat center;
}

.icon-thermometer {
	background: url(../images/thermometer.svg) no-repeat center;
}

.icon-tv {
	background: url(../images/tv.svg) no-repeat center;
}

.icon-wifi {
	background: url(../images/wifi.svg) no-repeat center;
}

.icon-guest {
	background: url(../images/guest.svg) no-repeat center;
}

.icon-area {
	background: url(../images/area.svg) no-repeat center;
}

.icon-price {
	background: url(../images/price.svg) no-repeat center;
	background-size: 34px;
}

.icon-phone {
	background: url(../images/phone.svg) no-repeat center;
}

.icon-email {
	background: url(../images/email.svg) no-repeat center;
}

.icon-address {
	background: url(../images/address.svg) no-repeat center;
}

.icon-vk {
	background: url(../images/vk.svg) no-repeat center;
}

.icon-inst {
	background: url(../images/inst.svg) no-repeat center;
}

.icon-fb {
	background: url(../images/fb.svg) no-repeat center;
}

.icon-airport {
	background: url(../images/airport.svg) no-repeat center;
}

.icon-station {
	background: url(../images/station.svg) no-repeat center;
}

.icon-calendar {
	background: url(../images/black-calendar.svg) no-repeat center;
	position: absolute;
	top: 0;
	right: 19px;
	bottom: 0;
	/*  margin: auto 0;*/
}

.icon-calendar:before {
	content: "";
	width: 1px;
	height: 26px;
	background: #e8e8e8;
	position: absolute;
	top: 0;
	left: -20px;
	bottom: 0;
	margin: auto 0;
}

.fancybox-button svg {
	fill: white;
}

.news-tabs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0;
	margin: 0 0 15px;
	list-style-type: none;
}

.news-tabs li {
	background: white;
	border-radius: 4px;
	padding: 16px 24px;
	font-size: 18px;
	font-weight: 500;
	cursor: pointer;
	margin-bottom: 10px;
}

.news-tabs li:not(:last-child) {
	margin-right: 8px;
}

.news-tabs li.current {
	background: #60A4A5;
	color: white;
}

.news-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.news-list .news-item {
	width: 33.3%;
	padding: 15px;
}

.news-list .news-inner {
	background: white;
	padding: 16px;
	border-radius: 8px;
	transition: box-shadow ease-out 0.2s;
}

.news-list .news-inner:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.news-list .news-title {
	font-size: 18px;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 19px;
}

.news-list .news-image {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}

.news-list .news-image img {
	display: block;
	width: 100%;
	height: 427px;
	object-fit: cover;
}

.news-list .news-image a:before {
	content: "";
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 59.29%, rgba(0, 0, 0, 0.6) 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.news-list .news-image:after {
	content: "";
	width: 242px;
	height: 1px;
	background: rgba(255, 255, 255, 0.6);
	position: absolute;
	right: 18px;
	bottom: 34px;
}

.news-list .news-more {
	position: absolute;
	left: 19px;
	bottom: 26px;
	color: white;
	font-size: 14px;
}

.page-template-template-service h2 {
	font-size: 24px;
	font-weight: normal;
	margin: 0 0 15px;
}

.page-template-template-service h4 {
	font-weight: 500;
	margin: 0 0 15px;
}

.attraction {
	margin-top: 60px;
}

.attraction h2 {
	margin-bottom: 30px;
}

.attraction-wrap {
	display: flex;
	justify-content: space-between;
}

.attraction-wrap .attraction-left {
	width: 300px;
}

.attraction-wrap .attraction-right {
	width: 73.7%;
}

.attraction-tabs {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.attraction-tabs li {
	display: flex;
	align-items: center;
	padding: 20px;
	font-size: 18px;
	font-weight: 500;
	cursor: pointer;
}

.attraction-tabs li.current {
	background: white;
	color: #60A4A5;
}

.attraction-tabs .flag {
	width: 30px;
	height: 30px;
	margin-right: 20px;
}

.attractions-list {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
}

.attractions-list .attraction-item {
	width: 33.3%;
	padding: 15px;
}

.attractions-list .attraction-image {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}

.attractions-list .attraction-image img {
	width: 100%;
	height: 285px;
	object-fit: cover;
	display: block;
	transition: opacity 0.35s, transform 0.35s;
	transform: scale(1.1);
}

.attractions-list .attraction-image a:before {
	content: "";
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50.42%), linear-gradient(180deg, rgba(0, 0, 0, 0) 59.29%, rgba(0, 0, 0, 0.6) 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.attractions-list .attraction-image:after {
	content: "";
	width: 159px;
	height: 1px;
	background: rgba(255, 255, 255, 0.6);
	position: absolute;
	right: 18px;
	bottom: 34px;
}

.attractions-list .attraction-title {
	color: white;
	font-size: 18px;
	font-weight: 500;
	position: absolute;
	top: 20px;
	left: 18px;
}

.attractions-list .attraction-more {
	position: absolute;
	left: 13px;
	bottom: 25px;
	color: white;
	font-size: 14px;
}

.attractions-list .attraction-inner {
	overflow: hidden;
}

.attractions-list .attraction-inner:hover img {
	opacity: 0.8;
	transform: translate3d(0, 0, 0);
}

footer {
	padding: 0 0 23px;
}

footer .footer-top {
	display: flex;
	border-top: 1px solid #cccbcb;
}

footer .footer-logo {
	border-right: 1px solid #cccbcb;
	padding-right: 8px;
	padding-top: 26px;
}

footer .footer-right {
	width: 85.5%;
	padding-left: 30px;
	padding-top: 35px;
}

.footer-menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	margin: 0 0 35px;
	list-style-type: none;
}

.footer-menu li a {
	color: #19191B;
	font-weight: normal;
	font-size: 16px;
	text-transform: uppercase;
}

.footer-copyright {
	display: flex;
	justify-content: space-between;
}

.siteup img {
	display: inline-block;
	position: relative;
	top: 1px;
	margin-left: 25px;
}

.modal-form {
	background: white;
	width: 448px;
	max-width: 100%;
	padding: 30px;
	border-radius: 10px;
	display: none;
}

.modal-form .modal-close {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 30px;
	right: 30px;
	opacity: 0.4;
	cursor: pointer;
	transition: all 0.3s;
}

.modal-form .modal-close:hover {
	opacity: 1;
}

.modal-form .fancybox-close-small {
	display: none;
}

.modal-form .modal-title {
	font-size: 24px;
	font-weight: 500;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e8e8e8;
}

.modal-form .modal-top {
	border-bottom: 1px solid #e8e8e8;
	margin-bottom: 20px;
}

.modal-form .modal-bottom {
	display: flex;
	align-items: center;
}

.modal-form .modal-agreement a {
	text-decoration: underline;
}

.modal-form .control-wrap {
	position: relative;
}

.modal-form .required {
	color: #dc1818;
}

.modal-form.modal-show {
	display: inline-block;
}

#booking-modal {
	width: 862px;
	max-width: 100%;
}

#booking-modal .modal-agreement {
	margin-left: 30px;
}

#modal-thank .modal-title {
	padding-bottom: 0;
	margin-bottom: 0;
	border: none;
	text-align: center;
}

#modal-thank .modal-img {
	display: block;
	margin: 0 auto;
}

.extra-place {
	color: #585658;
	font-weight: bold;
	margin-bottom: 10px;
}

.total-booking {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
}

.ui-datepicker {
	width: auto !important;
	background: white;
	box-shadow: 0px 6px 40px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	padding: 20px;
}

.ui-datepicker .ui-datepicker-month {
	font-size: 20px;
	font-weight: 500;
}

.ui-datepicker .ui-datepicker-year {
	display: none;
}

.ui-datepicker thead span {
	color: #a9abb5;
	text-transform: uppercase;
}

.ui-datepicker thead span[title=Sunday],
.ui-datepicker thead span[title=Saturday] {
	color: #e7a7a7;
}

.ui-datepicker td {
	position: relative;
	padding: 0;
}

.ui-datepicker .ui-state-default {
	width: 50px;
	height: 50px;
	flex: 50px 0 0;
	padding: 7px 0;
	color: #292C45;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	display: flex;
	justify-content: center;
}

.ui-datepicker .ui-state-disabled {
	opacity: 0.3;
}

.ui-datepicker .selected .ui-state-default {
	background: #E6EBF3;
}

.ui-datepicker .selected-start .ui-state-active,
.ui-datepicker .selected-end .ui-state-active {
	background: #60A4A5;
	color: white;
}

.ui-datepicker .selected-start[title]::after,
.ui-datepicker .selected-end[title]::after {
	color: white;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev {
	background: url(../images/arrow-left.svg) no-repeat center;
	top: 0;
	left: 0;
}

.ui-datepicker .ui-datepicker-next {
	background: url(../images/arrow-right.svg) no-repeat center;
	top: 0;
	right: 0;
}

.ui-datepicker [data-handler=selectDay] {
	cursor: pointer;
}

.datepicker-front .ui-state-default {
	align-items: center;
}

.ui-datepicker td[title]::after {
	content: attr(title);
	display: block;
	color: #7f808f;
	font-size: 10px;
	font-weight: 500;
	text-align: center;
	line-height: 1;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 7px;
}

.restaurant-table {
	margin: 0 -15px;
}

.restaurant-table tr td {
	padding: 0 15px;
	vertical-align: top;
}

.service-table {
	width: 960px;
	max-width: 100%;
	border-spacing: 0;
	background: white;
	float: left;
	margin-right: 50px;
}

.service-table td {
	border-right: 1px solid #cccbcb;
	border-bottom: 1px solid #cccbcb;
	padding: 15px 20px;
	font-weight: 500;
}

.hidden,
.hide {
	display: none;
}

[class*=copyrights-pane] {
	display: none !important;
}

.clear {
	clear: both;
}

.entry-content ul li,
.entry-content ol li {
	line-height: 20px;
	margin-bottom: 15px;
}

.error-message,
.error {
	width: 100%;
	color: #f84c4c;
	font-size: 14px;
	display: table;
	margin: 5px 0;
}

.overlay-bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
}

.attention {
	font-weight: bold;
	margin-top: 10px;
}

.modal-help {
	color: #f84c4c;
	font-weight: bold;
	margin: 10px 0;
}


.social {
	display: flex;
	gap: 5px;
	align-items: center;
	margin-top: 10px;
}

footer .social {
	margin-top: 0;
}

@media(max-width: 767px) {
	footer .social {
		margin-top: 10px;
	}
}

.link-youtube {
	position: relative;
}

.link-youtube:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	width: 60px;
	height: 60px;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMC8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvVFIvMjAwMS9SRUMtU1ZHLTIwMDEwOTA0L0RURC9zdmcxMC5kdGQnPjxzdmcgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMzIgMzIiIGhlaWdodD0iMzJweCIgaWQ9IkxheWVyXzEiIHZlcnNpb249IjEuMCIgdmlld0JveD0iMCAwIDMyIDMyIiB3aWR0aD0iMzJweCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGc+PHBhdGggZD0iTTMxLjY3LDkuMTc5YzAsMC0wLjMxMi0yLjM1My0xLjI3MS0zLjM4OWMtMS4yMTctMS4zNTgtMi41OC0xLjM2Ni0zLjIwNS0xLjQ0M0MyMi43MTcsNCwxNi4wMDIsNCwxNi4wMDIsNCAgIGgtMC4wMTVjMCwwLTYuNzE1LDAtMTEuMTkxLDAuMzQ3QzQuMTcxLDQuNDI0LDIuODA5LDQuNDMyLDEuNTkxLDUuNzlDMC42MzMsNi44MjYsMC4zMiw5LjE3OSwwLjMyLDkuMTc5UzAsMTEuOTQsMCwxNC43MDF2Mi41ODggICBjMCwyLjc2MywwLjMyLDUuNTIzLDAuMzIsNS41MjNzMC4zMTIsMi4zNTIsMS4yNzEsMy4zODZjMS4yMTgsMS4zNTgsMi44MTUsMS4zMTcsMy41MjcsMS40NTlDNy42NzcsMjcuOTE5LDE1Ljk5NSwyOCwxNS45OTUsMjggICBzNi43MjItMC4wMTIsMTEuMTk5LTAuMzU1YzAuNjI1LTAuMDgsMS45ODgtMC4wODgsMy4yMDUtMS40NDZjMC45NTgtMS4wMzQsMS4yNzEtMy4zODYsMS4yNzEtMy4zODZzMC4zMi0yLjc2MSwwLjMyLTUuNTIzdi0yLjU4OCAgIEMzMS45OSwxMS45NCwzMS42Nyw5LjE3OSwzMS42Nyw5LjE3OXoiIGZpbGw9IiNFMDJGMkYiLz48cG9seWdvbiBmaWxsPSIjRkZGRkZGIiBwb2ludHM9IjEyLDEwIDEyLDIyIDIyLDE2ICAiLz48L2c+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PC9zdmc+) center / contain no-repeat
}
