@charset "UTF-8";
/* smc kimarus wcms */

.description__lightbox {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	box-sizing: border-box;
	z-index: 9999;
	background-color: #000000e6;
	opacity: 0;
	cursor: grab;
	touch-action: none;
	transition: opacity 250ms ease;
}

.description__lightbox[hidden] {
	display: none;
}

.description__lightbox.is-open {
	opacity: 1;
}

.description__lightbox:active {
	cursor: grabbing;
}

.description__lightbox-image {
	box-sizing: border-box;
	max-width: 90%;
	max-height: 90%;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 0px 10px 40px 0px #00000080;
	transform: scale(0.95);
	user-select: none;
	-webkit-user-drag: none;
	transition: transform 200ms ease;
}

.description__lightbox.is-open .description__lightbox-image {
	transform: scale(1);
}

.description__lightbox-close,
.description__lightbox-prev,
.description__lightbox-next {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 12px 14px 12px 14px;
	border: none;
	border-radius: 8px 8px 8px 8px;
	background-color: #00000080;
	color: #ffffffff;
	cursor: pointer;
	transition: background-color 300ms ease;
}

.description__lightbox-close:hover,
.description__lightbox-prev:hover,
.description__lightbox-next:hover {
	background-color: #ffffff4d;
}

.description__lightbox-close-icon,
.description__lightbox-arrow-icon {
	box-sizing: border-box;
	width: 22px;
	height: 22px;
}

.description__lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10000;
}

.description__lightbox-prev,
.description__lightbox-next {
	position: absolute;
	top: 50%;
	z-index: 10000;
	transform: translateY(-50%);
}

.description__lightbox-prev {
	left: 20px;
}

.description__lightbox-next {
	right: 20px;
}

.description__lightbox-counter {
	position: absolute;
	bottom: 24px;
	left: 50%;
	box-sizing: border-box;
	padding: 6px 14px 6px 14px;
	border-radius: 20px 20px 20px 20px;
	background-color: #00000080;
	color: #ffffffff;
	font-family: 'Arial', sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	transform: translateX(-50%);
}

.description__calendar-overlay {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	box-sizing: border-box;
	padding: 20px 20px 20px 20px;
	z-index: 9999;
	background-color: #1f2937b3;
}

.description__calendar-overlay[hidden] {
	display: none;
}

.description__calendar-panel {
	position: relative;
	box-sizing: border-box;
	width: 360px;
	max-width: 100%;
	max-height: 90vh;
	padding: 64px 24px 24px 24px;
	overflow-y: auto;
	border-radius: 16px 16px 16px 16px;
	background-color: #ffffffff;
	box-shadow: 0px 20px 50px 0px #00000040;
}

.description__calendar-close {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 16px;
	right: 16px;
	box-sizing: border-box;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 8px 8px 8px 8px;
	background-color: #f3f4f6ff;
	color: #6b7280ff;
	cursor: pointer;
}

.description__calendar-close:hover {
	background-color: #e5e7ebff;
}

.description__calendar-close-icon {
	box-sizing: border-box;
	width: 16px;
	height: 16px;
}

.description__calendar-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	width: auto;
	margin: 0 0 16px 0;
}

.description__calendar-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 8px 8px 8px 8px;
	background-color: #f3f4f6ff;
	color: #1a2b4aff;
	cursor: pointer;
}

.description__calendar-nav:hover {
	background-color: #e5e7ebff;
}

.description__calendar-nav-icon {
	box-sizing: border-box;
	width: 16px;
	height: 16px;
}

.description__calendar-month-label {
	color: #1a2b4aff;
	font-family: 'Georgia', serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1;
	text-transform: capitalize;
}

.description__calendar-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	box-sizing: border-box;
	width: auto;
	margin: 0 0 6px 0;
}

.description__calendar-weekday {
	box-sizing: border-box;
	text-align: center;
	color: #9ca3afff;
	font-family: 'Arial', sans-serif;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.description__calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	row-gap: 4px;
	column-gap: 4px;
	box-sizing: border-box;
	width: auto;
	margin: 0 0 20px 0;
}

.description__calendar-day {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 2px;
	box-sizing: border-box;
	aspect-ratio: 1 / 1;
	width: auto;
	padding: 4px 2px 4px 2px;
	border: none;
	border-radius: 8px 8px 8px 8px;
	background-color: #ffffffff;
	color: #374151ff;
	font-family: 'Arial', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
}

.description__calendar-day-number {
	line-height: 1;
}

.description__calendar-day-price {
	color: #9ca3afff;
	font-size: 10px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
}

.description__calendar-day:hover:not(:disabled) {
	background-color: #f3f4f6ff;
}

.description__calendar-day:disabled {
	color: #d1d5dbff;
	cursor: not-allowed;
}

.description__calendar-day.is-empty {
	visibility: hidden;
}

.description__calendar-day.is-busy {
	color: #d1d5dbff;
	text-decoration-line: line-through;
	text-decoration-style: solid;
	text-decoration-color: #d1d5dbff;
}

.description__calendar-day.is-checkin .description__calendar-day-price,
.description__calendar-day.is-checkout .description__calendar-day-price,
.description__calendar-day.is-in-range .description__calendar-day-price {
	color: #ffffffcc;
}

.description__calendar-day.is-in-range .description__calendar-day-price {
	color: #1a2b4a99;
}

.description__calendar-day.is-today {
	box-shadow: inset 0 0 0 1.5px #d4a24eff;
}

.description__calendar-day.is-in-range {
	border-radius: 0 0 0 0;
	background-color: #d4a24e26;
	color: #1a2b4aff;
}

.description__calendar-day.is-checkin,
.description__calendar-day.is-checkout {
	background-color: #d4a24eff;
	color: #ffffffff;
	font-weight: 700;
}

.description__calendar-minstay-error {
	display: block;
	box-sizing: border-box;
	margin: 0 0 12px 0;
	color: #ef4444ff;
	font-family: 'Arial', sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
}

.description__calendar-minstay-error[hidden] {
	display: none;
}

.description__calendar-selection {
	display: flex;
	flex-direction: row;
	column-gap: 12px;
	box-sizing: border-box;
	width: auto;
	margin: 0 0 16px 0;
}

.description__calendar-selection-item {
	display: flex;
	flex-direction: column;
	flex-basis: 0px;
	flex-grow: 1;
	flex-shrink: 1;
	row-gap: 2px;
	box-sizing: border-box;
	padding: 10px 12px 10px 12px;
	border: 1px solid #e5e7ebff;
	border-radius: 10px 10px 10px 10px;
}

.description__calendar-selection-label {
	color: #9ca3afff;
	font-family: 'Arial', sans-serif;
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
}

.description__calendar-selection-value {
	color: #1a2b4aff;
	font-family: 'Arial', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.description__calendar-selection-item span:last-child {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex: 1 1 auto;
}

.description__calendar-payment-note {
	display: block;
	box-sizing: border-box;
	margin: 0 0 16px 0;
	color: #9ca3afff;
	font-family: 'Arial', sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
}

.description__calendar-reset {
	display: block;
	box-sizing: border-box;
	width: 100%;
	margin: 0 0 16px 0;
	padding: 10px 12px 10px 12px;
	border: 1px solid #e5e7ebff;
	border-radius: 8px 8px 8px 8px;
	background-color: #ffffffff;
	color: #6b7280ff;
	font-family: 'Arial', sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	cursor: pointer;
}

.description__calendar-reset:hover {
	background-color: #f3f4f6ff;
	color: #374151ff;
}

.description__calendar-form {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
	box-sizing: border-box;
	width: auto;
}

.description__calendar-form[hidden] {
	display: none;
}

.description__calendar-guests {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	width: auto;
	padding: 10px 12px 10px 12px;
	border: 1px solid #e5e7ebff;
	border-radius: 8px 8px 8px 8px;
}

.description__calendar-guests-label {
	color: #374151ff;
	font-family: 'Arial', sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
}

.description__calendar-guests-control {
	display: flex;
	flex-direction: row;
	align-items: center;
	column-gap: 12px;
	box-sizing: border-box;
}

.description__calendar-guests-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 26px;
	height: 26px;
	border: none;
	border-radius: 6px 6px 6px 6px;
	background-color: #f3f4f6ff;
	color: #1a2b4aff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
}

.description__calendar-guests-btn:hover:not(:disabled) {
	background-color: #e5e7ebff;
}

.description__calendar-guests-btn:disabled {
	color: #d1d5dbff;
	cursor: not-allowed;
}

.description__calendar-guests-value {
	min-width: 16px;
	color: #1a2b4aff;
	font-family: 'Arial', sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.description__calendar-consent {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	column-gap: 10px;
	box-sizing: border-box;
	width: auto;
	cursor: pointer;
}

.description__calendar-consent-input {
	flex-shrink: 0;
	box-sizing: border-box;
	width: 18px;
	height: 18px;
	margin-top: 1px;
	border: 1px solid #d1d5dbff;
	border-radius: 4px 4px 4px 4px;
	accent-color: #d4a24eff;
	cursor: pointer;
}

.description__calendar-consent-text {
	color: #6b7280ff;
	font-family: 'Arial', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
}

.description__calendar-consent.is-invalid .description__calendar-consent-text {
	color: #ef4444ff;
}

.description__calendar-consent-error {
	margin: -6px 0 0 0;
	color: #ef4444ff;
	font-family: 'Arial', sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
}

.description__calendar-consent-error[hidden] {
	display: none;
}

.description__calendar-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.description__calendar-input,
.description__calendar-textarea {
	box-sizing: border-box;
	width: 100%;
	padding: 10px 12px 10px 12px;
	border: 1px solid #e5e7ebff;
	border-radius: 8px 8px 8px 8px;
	background-color: #ffffffff;
	color: #374151ff;
	font-family: 'Arial', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.description__calendar-textarea {
	min-height: 60px;
	resize: vertical;
}

.description__calendar-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 12px 20px 12px 20px;
	border: none;
	border-radius: 10px 10px 10px 10px;
	background-color: #d4a24eff;
	color: #ffffffff;
	font-family: 'Arial', sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
}

.description__calendar-submit:hover {
	background-color: #c4913dff;
}

.description__calendar-body[hidden] {
	display: none;
}

.description__calendar-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	width: auto;
	padding: 12px 0 12px 0;
	text-align: center;
}

.description__calendar-success[hidden] {
	display: none;
}

.description__calendar-success-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 48px;
	height: 48px;
	margin: 0 0 16px 0;
	border-radius: 50% 50% 50% 50%;
	background-color: #d4a24e26;
	color: #d4a24eff;
}

.description__calendar-success-icon svg {
	width: 24px;
	height: 24px;
}

.description__calendar-success-title {
	margin: 0 0 6px 0;
	color: #1a2b4aff;
	font-family: "Georgia", serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.description__calendar-success-text {
	margin: 0 0 0 0;
	color: #6b7280ff;
	font-family: "Arial", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.feedback__overlay {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	box-sizing: border-box;
	padding: 20px 20px 20px 20px;
	z-index: 9999;
	background-color: #1f2937b3;
}

.feedback__overlay[hidden] {
	display: none;
}

.feedback__panel {
	position: relative;
	box-sizing: border-box;
	width: 360px;
	max-width: 100%;
	max-height: 90vh;
	padding: 64px 24px 24px 24px;
	overflow-y: auto;
	border-radius: 16px 16px 16px 16px;
	background-color: #ffffffff;
	box-shadow: 0px 20px 50px 0px #00000040;
}

.feedback__close {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 16px;
	right: 16px;
	box-sizing: border-box;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 8px 8px 8px 8px;
	background-color: #f3f4f6ff;
	color: #6b7280ff;
	cursor: pointer;
}

.feedback__close:hover {
	background-color: #e5e7ebff;
}

.feedback__close-icon {
	box-sizing: border-box;
	width: 16px;
	height: 16px;
}

.feedback__header {
	display: block;
	box-sizing: border-box;
	width: auto;
	margin: 0 0 20px 0;
}

.feedback__title {
	display: block;
	margin: 0 0 6px 0;
	color: #1a2b4aff;
	font-family: "Georgia", serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.feedback__subtitle {
	margin: 0 0 0 0;
	color: #6b7280ff;
	font-family: "Arial", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.feedback__form {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
	box-sizing: border-box;
	width: auto;
}

.feedback__form[hidden] {
	display: none;
}

.feedback__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.feedback__input,
.feedback__textarea {
	box-sizing: border-box;
	width: 100%;
	padding: 10px 12px 10px 12px;
	border: 1px solid #e5e7ebff;
	border-radius: 8px 8px 8px 8px;
	background-color: #ffffffff;
	color: #374151ff;
	font-family: "Arial", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.feedback__textarea {
	min-height: 80px;
	resize: vertical;
}

.feedback__consent {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	column-gap: 10px;
	box-sizing: border-box;
	width: auto;
	cursor: pointer;
}

.feedback__consent-input {
	flex-shrink: 0;
	box-sizing: border-box;
	width: 18px;
	height: 18px;
	margin-top: 1px;
	border: 1px solid #d1d5dbff;
	border-radius: 4px 4px 4px 4px;
	accent-color: #d4a24eff;
	cursor: pointer;
}

.feedback__consent-text {
	color: #6b7280ff;
	font-family: "Arial", sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
}

.feedback__consent.is-invalid .feedback__consent-text {
	color: #ef4444ff;
}

.feedback__consent-error {
	margin: -6px 0 0 0;
	color: #ef4444ff;
	font-family: "Arial", sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
}

.feedback__consent-error[hidden] {
	display: none;
}

.feedback__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 12px 20px 12px 20px;
	border: none;
	border-radius: 10px 10px 10px 10px;
	background-color: #d4a24eff;
	color: #ffffffff;
	font-family: "Arial", sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
}

.feedback__submit:hover {
	background-color: #c4913dff;
}

.feedback__success {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	width: auto;
	padding: 12px 0 12px 0;
	text-align: center;
}

.feedback__success[hidden] {
	display: none;
}

.feedback__success-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 48px;
	height: 48px;
	margin: 0 0 16px 0;
	border-radius: 50% 50% 50% 50%;
	background-color: #d4a24e26;
	color: #d4a24eff;
}

.feedback__success-icon svg {
	width: 24px;
	height: 24px;
}

.feedback__success-title {
	margin: 0 0 6px 0;
	color: #1a2b4aff;
	font-family: "Georgia", serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.feedback__success-text {
	margin: 0 0 0 0;
	color: #6b7280ff;
	font-family: "Arial", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.rating__overlay {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	box-sizing: border-box;
	padding: 20px 20px 20px 20px;
	z-index: 9999;
	background-color: #1f2937b3;
}

.rating__overlay[hidden] {
	display: none;
}

.rating__panel {
	position: relative;
	box-sizing: border-box;
	width: 360px;
	max-width: 100%;
	max-height: 90vh;
	padding: 64px 24px 24px 24px;
	overflow-y: auto;
	border-radius: 16px 16px 16px 16px;
	background-color: #ffffffff;
	box-shadow: 0px 20px 50px 0px #00000040;
}

.rating__close {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 16px;
	right: 16px;
	box-sizing: border-box;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 8px 8px 8px 8px;
	background-color: #f3f4f6ff;
	color: #6b7280ff;
	cursor: pointer;
}

.rating__close:hover {
	background-color: #e5e7ebff;
}

.rating__close-icon {
	box-sizing: border-box;
	width: 16px;
	height: 16px;
}

.rating__header {
	display: block;
	box-sizing: border-box;
	width: auto;
	margin: 0 0 20px 0;
}

.rating__title {
	display: block;
	margin: 0 0 6px 0;
	color: #1a2b4aff;
	font-family: "Georgia", serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.rating__subtitle {
	margin: 0 0 0 0;
	color: #6b7280ff;
	font-family: "Arial", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.rating__form {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
	box-sizing: border-box;
	width: auto;
}

.rating__form[hidden] {
	display: none;
}

.rating__stars {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	column-gap: 6px;
	box-sizing: border-box;
	width: auto;
	margin: 0 0 4px 0;
}

.rating__star {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 8px 8px 8px 8px;
	background-color: transparent;
	color: #e5e7ebff;
	cursor: pointer;
	transition: color 150ms ease;
}

.rating__star svg {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

.rating__star:hover,
.rating__star.is-preview {
	color: #f0c988ff;
}

.rating__star.is-active {
	color: #d4a24eff;
}

.rating__stars.is-invalid .rating__star {
	color: #ef4444ff;
}

.rating__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.rating__input,
.rating__textarea {
	box-sizing: border-box;
	width: 100%;
	padding: 10px 12px 10px 12px;
	border: 1px solid #e5e7ebff;
	border-radius: 8px 8px 8px 8px;
	background-color: #ffffffff;
	color: #374151ff;
	font-family: "Arial", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.rating__textarea {
	min-height: 80px;
	resize: vertical;
}

.rating__consent {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	column-gap: 10px;
	box-sizing: border-box;
	width: auto;
	cursor: pointer;
}

.rating__consent-input {
	flex-shrink: 0;
	box-sizing: border-box;
	width: 18px;
	height: 18px;
	margin-top: 1px;
	border: 1px solid #d1d5dbff;
	border-radius: 4px 4px 4px 4px;
	accent-color: #d4a24eff;
	cursor: pointer;
}

.rating__consent-text {
	color: #6b7280ff;
	font-family: "Arial", sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
}

.rating__consent.is-invalid .rating__consent-text {
	color: #ef4444ff;
}

.rating__consent-error {
	margin: -6px 0 0 0;
	color: #ef4444ff;
	font-family: "Arial", sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
}

.rating__consent-error[hidden] {
	display: none;
}

.rating__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 12px 20px 12px 20px;
	border: none;
	border-radius: 10px 10px 10px 10px;
	background-color: #d4a24eff;
	color: #ffffffff;
	font-family: "Arial", sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
}

.rating__submit:hover {
	background-color: #c4913dff;
}

.rating__success {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	width: auto;
	padding: 12px 0 12px 0;
	text-align: center;
}

.rating__success[hidden] {
	display: none;
}

.rating__success-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 48px;
	height: 48px;
	margin: 0 0 16px 0;
	border-radius: 50% 50% 50% 50%;
	background-color: #d4a24e26;
	color: #d4a24eff;
}

.rating__success-icon svg {
	width: 24px;
	height: 24px;
}

.rating__success-title {
	margin: 0 0 6px 0;
	color: #1a2b4aff;
	font-family: "Georgia", serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.rating__success-text {
	margin: 0 0 0 0;
	color: #6b7280ff;
	font-family: "Arial", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.mini-weather {
	display: flex;
	flex-direction: column;
	width: 260px;
	gap: 16px;
	padding: 22px 22px 22px 22px;
	border-radius: 22px 22px 22px 22px;
	background-color: #fdfbf7e8;
	box-shadow: 0 4px 20px 0 #1a2b4514;
	text-decoration: none;
	cursor: pointer;
	font-family: Arial, sans-serif;
	transition: box-shadow 200ms ease, transform 200ms ease;
}

.mini-weather:hover {
	box-shadow: 0 8px 28px 0 #1a2b451f;
	text-decoration: none;
}

.mini-weather__location {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 0 0 16px 0;
	border-bottom: 1px solid #e7e2d8ff;
}

.mini-weather__pin-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin: 2px 0 0 0;
	color: #e8963fff;
}

.mini-weather__location-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mini-weather__city {
	color: #1b2a3fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.mini-weather__coastline {
	color: #8f97a8ff;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
}

.mini-weather__main {
	display: flex;
	align-items: stretch;
	padding: 4px 0 16px 0;
	border-bottom: 1px solid #e7e2d8ff;
}

.mini-weather__air {
	display: flex;
	flex: 1 1 50%;
	flex-direction: column;
	align-items: center;
	padding: 0 12px 0 0;
	text-align: center;
}

.mini-weather__sea {
	display: flex;
	flex: 1 1 50%;
	flex-direction: column;
	align-items: center;
	padding: 0 0 0 12px;
	border-left: 1px solid #e7e2d8ff;
	text-align: center;
}

.mini-weather__air-icon,
.mini-weather__sea-icon {
	margin: 0 0 8px 0;
	width: 24px;
	height: 24px;
	color: #e8963fff;
}

.mini-weather__air-temp {
	margin: 0 0 4px 0;
	color: #1b2a3fff;
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
}

.mini-weather__air-condition {
	color: #8f97a8ff;
	font-size: 14px;
	font-weight: 400;
}

.mini-weather__sea-label {
	margin: 0 0 4px 0;
	color: #8f97a8ff;
	font-size: 15px;
	font-weight: 400;
}

.mini-weather__sea-temp {
	color: #1b2a3fff;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}

.mini-weather__footer {
	display: flex;
	align-items: center;
	gap: 8px;
}

.mini-weather__clock-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	color: #e8963fff;
}

.mini-weather__updated {
	color: #8f97a8ff;
	font-size: 14px;
	font-weight: 400;
}

.noncontact {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 24px;
	background-color: #1e2b4acc;
}

.noncontact--open {
	display: flex;
}

.noncontact__container {
	position: relative;
	width: 100%;
	max-width: 440px;
	max-height: 90vh;
	padding: 40px;
	overflow-y: auto;
	background-color: #ffffffff;
	border-radius: 24px;
	box-shadow: 0 12px 40px 0 #1e2b4a33;
}

.noncontact__close {
	display: flex;
	position: absolute;
	top: 20px;
	right: 20px;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: transparent;
	border: none;
	border-radius: 50% 50% 50% 50%;
	color: #6b7280ff;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.noncontact__close:hover {
	background-color: #fdf5edff;
}

.noncontact__close svg {
	width: 18px;
	height: 18px;
}

.noncontact__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.noncontact__step[hidden] {
	display: none;
}

.noncontact__step>[data-role] {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.noncontact__step>[data-role][hidden] {
	display: none;
}


.noncontact__lock {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin: 0 0 16px 0;
	color: #d98e34ff;
}

.noncontact__lock svg {
	width: 40px;
	height: 40px;
}

.noncontact__title {
	margin: 0 0 8px 0;
	color: #1e2b4aff;
	font-size: 22px;
	font-weight: 600;
	text-align: center;
}

.noncontact__subtitle {
	margin: 0 0 28px 0;
	color: #6b7280ff;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
}

.noncontact__form {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.noncontact__field {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	margin: 0 0 16px 0;
	padding: 14px 16px;
	background-color: #ffffffff;
	border: 1px solid #ece7deff;
	border-radius: 12px;
}

.noncontact__field-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin: 0 12px 0 0;
	color: #d98e34ff;
}

.noncontact__field-input {
	width: 100%;
	background-color: transparent;
	border: none;
	color: #1e2b4aff;
	font-size: 15px;
}

.noncontact__field-input::placeholder {
	color: #9ca3afff;
}

.noncontact__field-input:focus {
	outline: none;
}

.noncontact__field-hint {
	margin: -8px 0 20px 0;
	color: #9ca3afff;
	font-size: 12px;
	text-align: center;
}

.noncontact__consent {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	margin: 0 0 20px 0;
	cursor: pointer;
}

.noncontact__consent-input {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 1px;
	border: 1px solid #ece7deff;
	border-radius: 4px;
	accent-color: #d98e34ff;
	cursor: pointer;
}

.noncontact__consent-text {
	color: #6b7280ff;
	font-size: 13px;
	line-height: 1.4;
}

.noncontact__consent.is-invalid .noncontact__consent-text {
	color: #ef4444ff;
}

.noncontact__consent-error {
	margin: -12px 0 20px 0;
	color: #ef4444ff;
	font-size: 12px;
	line-height: 1.4;
}

.noncontact__consent-error[hidden] {
	display: none;
}

.noncontact__submit {
	width: 100%;
	padding: 16px 32px;
	background-color: #d98e34ff;
	border: none;
	border-radius: 12px;
	color: #ffffffff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.noncontact__submit:hover {
	background-color: #c17e2cff;
}

.noncontact__retry {
	width: 100%;
	margin: 4px 0 0 0;
	padding: 14px 32px;
	background-color: transparent;
	border: 1px solid #d98e34ff;
	border-radius: 12px;
	color: #d98e34ff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.noncontact__retry:hover {
	background-color: #fdf5edff;
}

.noncontact__help {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 24px 0 0 0;
}

.noncontact__help-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	color: #d98e34ff;
}

.noncontact__help-links {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.noncontact__help-link {
	color: #1e2b4aff;
	font-size: 13px;
	text-decoration: underline;
}

.noncontact__help-link--phone {
	color: #d98e34ff;
	font-weight: 600;
	text-decoration: none;
}

.noncontact__code {
	display: flex;
	flex-direction: row;
	gap: 8px;
	margin: 0 0 16px 0;
}

.noncontact__code-digit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 52px;
	background-color: #fdf5edff;
	border: 1px solid #ece7deff;
	border-radius: 10px;
	color: #1e2b4aff;
	font-size: 22px;
	font-weight: 600;
}

.noncontact__timer {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	margin: 0 0 28px 0;
	color: #9ca3afff;
	font-size: 13px;
}

.noncontact__timer-icon {
	flex-shrink: 0;
	width: 14px;
	height: 14px;
}

.noncontact__instructions {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 20px;
	background-color: #fdf5edff;
	border-radius: 14px;
}

.noncontact__instructions-title {
	margin: 0 0 14px 0;
	color: #1e2b4aff;
	font-size: 15px;
	font-weight: 600;
}

.noncontact__instructions-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.noncontact__instructions-item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}

.noncontact__instructions-number {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin: 0 12px 0 0;
	background-color: #f5e0c2ff;
	border-radius: 50% 50% 50% 50%;
	color: #d98e34ff;
	font-size: 11px;
	font-weight: 600;
}

.noncontact__instructions-text {
	color: #374151ff;
	font-size: 14px;
	line-height: 1.4;
}