@import url(base.css);

.no-scroll {
	overflow: hidden;
}

.no-scroll .scrollbar {
	display: none !important;
}

.scrollbar {
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	width: 12px;
	background: transparent;
	z-index: 100;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.scrollbar.visible,
.scrollbar:hover {
	opacity: 1;
}

.thumb {
	position: absolute;
	width: 12px;
	opacity: 0.5;
	transition: opacity 0.3s ease;
	cursor: pointer;
}

.thumb:before {
	content: "";
	position: absolute;
	inset: 2.5px;
	border-radius: 10em;
	background: var(--black);
	outline: 1px solid rgb(255 255 255 / 50%);
}

.thumb:hover {
	opacity: 1;
}

html,
body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	scrollbar-width: none;
}

main.content {
	flex: 1;
}

.container-medium {
	max-width: 800px;
	margin: 0 auto;
}

.header {
	padding: 15px 0 10px;
}

.header-sticky {
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 20;
}

.header,
.hero-content,
.main-search,
.main-search-mobile {
	background: var(--black);
}

.main-search-mobile {
	display: none;
}

.logo svg {
	color: var(--white);
}

.header-partnership {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 40px;
	background: rgba(var(--base-white), 0.1);
	color: var(--white);
	border-radius: 12px;
	padding: 2px 0 0;
	transition: all 0.2s ease;
}

.header-partnership:hover {
	background: rgba(var(--base-white), 0.2);
}

.header-partnership svg {
	width: 22px;
	height: 22px;
}

.header-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hero-content {
	padding: 66px 0 24px;
}

.hero-content h1 {
	font-size: 40px;
	line-height: 1;
	text-align: center;
	margin-bottom: 20px;
	color: var(--white);
}

.hero-content p {
	color: var(--white);
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
	font-size: 15px;
	font-weight: 300;
	line-height: 22px;
}

.main-search {
	position: sticky;
	top: 0;
	padding: 10px 0;
	z-index: 10;
}

.main-search form {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.main-search-field {
	position: relative;
	flex: 1 0 0;
}

.main-search-field .main-search-input-svg {
	position: absolute;
	width: 24px;
	height: 24px;
	top: 18px;
	left: 14px;
	pointer-events: none;
}

.main-search input {
	width: 100%;
	height: 60px;
	border: 0;
	font-size: 15px;
	padding: 0 30px 0 45px;
	background: var(--white);
	box-shadow: 0 2px 6px 0 rgba(var(--base-black), 0.15);
	outline: 2px solid transparent;
	outline-offset: -2px;
	-webkit-appearance: none;
	appearance: none;
	transition: outline-color 0.2s ease-in-out;
	cursor: pointer;
}

.main-search input:focus {
	outline-color: var(--orange);
}

.main-search input.input-location {
	border-radius: 16px 0 0 16px;
}

.main-search input::placeholder {
	color: rgba(var(--base-black), 0.65);
}

.main-search .main-search-btn {
	height: 60px;
	border: 0;
	font-size: 20px;
	padding: 0 40px 0 35px;
	border-radius: 0 16px 16px 0;
	background: var(--blue);
	cursor: pointer;
	color: var(--white);
	box-shadow: 0 2px 6px 0 rgba(var(--base-black), 0.15);
	transition: background 0.2s ease;
}

.main-search .main-search-btn:hover {
	background: var(--blue-hover);
}

.input-popup {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	background: var(--white);
	padding: 16px 0;
	border-radius: 16px;
	width: 340px;
	top: 64px;
	box-shadow: 0px 4px 10px rgba(var(--base-black), 0.1);
	transform: translate3d(0, 10px, 0);
	transition: all 0.2s ease;
	z-index: 10;
}

.input-popup.active {
	visibility: visible;
	opacity: 1;
	transform: none;
}

.input-popup .regions {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 4px 20px 12px;
}

.input-popup .regions .location-btn {
	padding: 10px;
	background: var(--light);
	justify-content: center;
	border-radius: 10px;
}

.input-popup .regions .location-btn:hover {
	background: var(--gray);
}

.location-popup ul {
	margin-bottom: -3px;
}

.input-popup .location-btn {
	background: transparent;
	border: none;
	gap: 10px;
	display: flex;
	align-items: center;
	text-align: left;
	padding: 7px 20px;
	width: 100%;
	cursor: pointer;
	transition: background 0.2s ease;
}

.input-popup .location-btn .location-icon {
	width: 40px;
	height: 40px;
	background: var(--light);
	color: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	transition: background 0.2s ease;
}

.input-popup .location-btn svg {
	width: 20px;
	height: 20px;
}

.input-popup .location-btn:hover {
	background: var(--light);
}

.input-popup .location-btn:hover .location-icon {
	background: var(--gray);
}

.input-popup .location-btn p {
	font-size: 16px;
	color: var(--black);
}

.input-popup .location-btn span {
	display: block;
	font-size: 12px;
	color: rgba(var(--base-black), 0.5);
}

.input-popup .no-results {
	text-align: center;
	padding: 10px 20px;
}

.search-calendar {
	padding: 4px 20px;
}

.search-calendar .calendar-control {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.search-calendar .calendar-control button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	border: none;
	background: transparent;
	cursor: pointer;
	transition: background 0.2s ease;
}

.search-calendar .calendar-control button:hover {
	background: var(--light);
}

.search-calendar .calendar-control button svg {
	width: 20px;
	height: 20px;
	color: var(--black);
}

.search-calendar .calendar-header {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	margin-bottom: 5px;
}

.search-calendar .calendar-header div {
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	opacity: 0.5;
}

.search-calendar .calendar-header div.weekend {
	opacity: 1;
}

.search-calendar .calendar-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 3px;
}

.search-calendar .calendar-day {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	font-size: 14px;
	border-radius: 10px;
	cursor: default;
	transition: background 0.2s ease, color 0.2s ease;
}

.calendar-day.interactive {
	cursor: pointer;
}

.calendar-day.interactive:hover {
	background: var(--light);
}

.search-calendar .calendar-day.selected {
	background: var(--blue);
	color: var(--white);
}

.search-calendar .calendar-day.in-range {
	background: rgba(0, 109, 255, 0.1);
}

.search-calendar .calendar-day.disabled {
	opacity: 0.5;
}

.booking-type-popup {
	padding: 16px 30px;
}

.booking-type-popup .radio-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	padding: 10px 0;
	border-bottom: 1px solid var(--gray);
}

.booking-type-popup .radio-button:last-child {
	border: none;
}

.booking-type-popup .radio-button input {
	display: none;
}

.booking-type-popup .radio-button .radio-checkmark {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border: 1px solid rgba(var(--base-black), 0.5);
	border-radius: 50%;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.booking-type-popup .radio-button .radio-checkmark:after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	background: transparent;
	border-radius: 50%;
	transition: background 0.2s ease;
}

.booking-type-popup .radio-button input:checked + .radio-checkmark {
	background: var(--blue);
	border-color: var(--blue);
}

.booking-type-popup .radio-button input:checked + .radio-checkmark::after {
	background: var(--white);
}

.booking-type-popup .radio-button:hover .radio-checkmark {
	background: var(--light);
}

.installment-plan {
	position: relative;
	padding: 64px 0;
	z-index: 1;
}

.installment-plan::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: var(--black);
	z-index: -1;
}

.installment-plan-container {
	position: relative;
	background: linear-gradient(0deg, #dde0e3, var(--white));
	padding: 30px;
	border-radius: 20px;
	text-align: center;
}

.installment-plan-container img {
	width: 80px;
	margin: -70px auto 10px;
	filter: drop-shadow(0px 0px 5px var(--white));
}

.installment-plan-container h2 {
	font-size: 32px;
	line-height: 1;
	margin-bottom: 15px;
}

.installment-plan-container p {
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 15px;
}

.installment-plan-button {
	display: table;
	text-align: center;
	background: var(--orange);
	border: none;
	border-radius: 16px;
	color: var(--white);
	font-size: 18px;
	line-height: 1;
	padding: 20px 60px;
	margin: 30px auto 10px;
	cursor: pointer;
	box-shadow: 0 0 5px var(--white);
	transition: background 0.2s ease;
}

.installment-plan-button:hover {
	background: var(--orange-hover);
}

.platforms {
	padding-bottom: 64px;
}

.platforms-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.platforms-grid .platform-card {
	position: relative;
	aspect-ratio: 1;
	border-radius: 20px;
	overflow: hidden;
	padding: 20px;
	display: flex;
	align-items: end;
	z-index: 1;
}

.platforms-grid .platform-card:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 160px;
	background: linear-gradient(
		0deg,
		rgba(var(--base-black), 0.8),
		transparent
	);
	z-index: -1;
}

.platforms-grid .platform-card img {
	position: absolute;
	width: 100%;
	height: 100%;
	inset: 0;
	object-fit: cover;
	z-index: -1;
	transition: transform 0.5s ease;
	will-change: transform;
}

.platforms-grid .platform-card:hover img {
	transform: scale(1.1);
}

.platform-card-installment-plan {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--orange);
	color: var(--white);
	padding: 0 10px;
	font-size: 14px;
	font-weight: 300;
	line-height: 24px;
	z-index: 2;
	border-radius: 8px;
}

.platform-card-location {
	display: flex;
	align-items: center;
	gap: 3px;
	color: var(--white);
	font-size: 14px;
	line-height: 24px;
	margin-left: -1px;
	text-shadow: 0 0 5px rgba(var(--base-black), 0.5);
}

.platform-card-location svg {
	width: 15px;
	height: 15px;
}

.platform-card-content h3 {
	color: var(--white);
	font-size: 30px;
	line-height: 34px;
	margin-bottom: 5px;
	text-shadow: 0 0 5px rgba(var(--base-black), 0.5);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	line-clamp: 1;
	word-wrap: anywhere;
}

.platform-card-content p {
	color: var(--white);
	font-size: 15px;
	font-weight: 300;
	line-height: 22px;
	text-shadow: 0 0 5px rgba(var(--base-black), 0.5);
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-partneship {
	padding-bottom: 64px;
}

.home-partneship-grid {
	background: url(./../img/partnership.svg) var(--black);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	padding: 30px;
}

.home-partneship-grid img {
	width: 90px;
	margin: 0 auto 20px;
}

.home-partneship-grid h2 {
	color: var(--white);
	text-align: center;
	font-size: 32px;
	line-height: 1.1;
	margin-bottom: 10px;
}

.home-partneship-grid p {
	color: var(--white);
	text-align: center;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.4;
}

.home-partneship-btn {
	display: table;
	text-align: center;
	background: var(--blue);
	border: none;
	border-radius: 16px;
	color: var(--white);
	font-size: 18px;
	line-height: 1;
	padding: 20px 60px;
	margin: 40px auto 15px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.home-partneship-btn:hover {
	background: var(--blue-hover);
}

.home-partneship-grid .home-partneship-url {
	display: table;
	margin: 0 auto;
	color: var(--white);
	font-weight: 300;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease;
}

.home-partneship-grid .home-partneship-url:hover {
	border-color: var(--white);
}

.top-partneship-page {
	padding: 50px 0 0;
}

.top-partneship-page .home-partneship-grid {
	border-radius: 20px 20px 0 0;
}

.search-page {
	padding-top: 30px;
	border-top: 10px solid var(--black);
}

.search-grid {
	display: grid;
	grid-template-columns: 290px 1fr;
	align-items: start;
	gap: 20px;
}

.mobile-filters-trigger {
	display: none;
}

.search-filters-sidebar {
	background: var(--white);
	padding: 25px 25px 5px;
	border-radius: 20px;
}

.search-filters {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.filter-group .filter-name {
	display: block;
	line-height: 1;
	font-size: 15px;
}

.filter-group .input-range-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-top: 10px;
}

.filter-group .input-range-grid:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 1px;
	background: var(--gray);
}

.input-group {
	position: relative;
}

.filter-group .input-range {
	position: relative;
	background: transparent;
	border-radius: 10px;
	width: 100%;
	height: 40px;
	padding: 0 15px 0 36px;
	appearance: none;
	-webkit-appearance: none;
	font-size: 15px;
	font-weight: 400;
	color: var(--black);
	border: 1px solid var(--gray);
	outline: none;
	transition: border-color 0.2s ease;
}

.filter-group .input-range:focus {
	border-color: var(--blue);
}

.input-group label {
	position: absolute;
	top: 9px;
	left: 15px;
	font-size: 15px;
	font-weight: 300;
	color: rgba(var(--base-black), 0.65);
	pointer-events: none;
}

.filter-group .checkbox-group .filter-name {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.filter-group .checkbox-group input {
	display: none;
}

.filter-group .checkmark {
	position: relative;
	width: 22px;
	height: 22px;
	border: 1px solid var(--gray);
	border-radius: 6px;
}

.filter-group .checkmark:after {
	content: "";
	position: absolute;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 18 18'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m4 8 4 4 6-6'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	inset: 0;
	opacity: 0;
}

.filter-group .checkbox-group input:checked + .checkmark {
	background: var(--blue);
	border-color: transparent;
}

.filter-group .checkbox-group input:checked + .checkmark:after {
	opacity: 1;
}

.option-switch {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 9px 9px 9px 14px;
	border-radius: 10px;
	background: var(--light);
	cursor: pointer;
}

.option-switch input {
	display: none !important;
}

.option-switch-checkmark {
	position: relative;
	width: 36px;
	height: 22px;
	border-radius: 11px;
	background: rgba(var(--base-black), 0.3);
	border: 2px solid transparent;
}

.option-switch-checkmark:after {
	content: "";
	position: absolute;
	background: transparent;
	width: 18px;
	height: 18px;
	top: 0;
	left: 0;
	background: var(--white);
	border-radius: 50%;
	opacity: 1;
	transition: all 0.2s ease;
	will-change: transform;
}

.option-switch input:checked + .option-switch-checkmark {
	background: var(--orange);
}

.option-switch input:checked + .option-switch-checkmark:after {
	transform: translateX(14px);
}

.filters-control-btns {
	position: sticky;
	bottom: 0;
	background: var(--white);
	padding: 20px 0;
	margin-top: -20px;
}

.filters-btn {
	display: block;
	width: 100%;
	height: 40px;
	border-radius: 10px;
	border: 0;
	background: var(--black);
	color: var(--white);
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
	transition: background 0.2s ease;
}

.filters-btn:hover {
	background: var(--blue);
}

.reset-filters-btn {
	display: none;
	background: transparent;
	height: auto;
	color: rgba(var(--base-black), 0.65);
	margin: 10px 0 -5px;
	padding: 5px 0;
	transition: color 0.2s ease;
}

.reset-filters-btn.active {
	display: block;
}

.reset-filters-btn:hover {
	background: transparent;
	color: var(--black);
}

.search-results-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px 30px;
	margin-bottom: -10px;
}

.search-results-top h1 {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	padding-left: 3px;
}

.sort-links {
	background: var(--white);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 4px;
	padding: 4px;
}

.sort-links a {
	color: var(--black);
	font-size: 12px;
	padding: 0 12px;
	border-radius: 10em;
	text-align: center;
	line-height: 24px;
	transition: background 0.2s ease;
}

.sort-links a.active {
	color: var(--white);
	background: var(--black);
	cursor: default;
	pointer-events: none;
}

.sort-links a:not(.active):hover {
	background: var(--light);
}

.search-not-found {
	position: sticky;
	top: 110px;
	text-align: center;
}

.search-not-found svg {
	color: rgba(var(--base-black), 0.3);
	width: 70px;
	height: 70px;
	margin: 0 auto 10px;
}

.search-not-found h2 {
	font-size: 24px;
}

.search-not-found p {
	color: rgba(var(--base-black), 0.75);
	font-size: 15px;
	font-weight: 300;
	line-height: 22px;
}

.not-found-reset-filters-btn {
	display: block;
	height: 40px;
	background: var(--gray);
	width: 240px;
	margin: 20px auto 0;
	color: var(--black);
}

.not-found-reset-filters-btn:hover {
	background: var(--gray);
}

.search-results {
	display: grid;
	gap: 20px;
}

.platform-item {
	position: relative;
	background: var(--white);
	border-radius: 20px;
	display: grid;
	grid-template-columns: 200px 1fr;
	overflow: hidden;
	gap: 15px;
	transition: box-shadow 0.2s ease;
}

.platform-item:hover {
	box-shadow: 0px 3px 8px rgba(var(--base-black), 0.08);
}

.platform-item-installment-plan {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--orange);
	color: var(--white);
	font-size: 12px;
	line-height: 22px;
	padding: 0 8px;
	z-index: 2;
	border-radius: 8px;
}

.platform-item-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 16 / 13;
	border-radius: 20px;
	border: 4px solid var(--white);
}

.platform-item-content {
	padding: 10px 20px 18px 0;
}

.platform-item-start {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 5px;
}

.platform-item h3 {
	color: var(--black);
	font-size: 22px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	line-clamp: 1;
	word-wrap: anywhere;
}

.platform-item-price {
	font-size: 16px;
	color: var(--black);
	flex-shrink: 0;
}

.platform-item-price span {
	font-size: 14px;
	font-weight: 300;
	color: rgba(var(--base-black), 0.75);
}

.platform-item p {
	color: rgba(var(--base-black), 0.75);
	font-size: 15px;
	font-weight: 300;
	line-height: 22px;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 10px;
}

.platform-item-data-with-icons {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	color: var(--black);
	margin-bottom: 2px;
}

.platform-item-data-with-icons:last-child {
	margin-bottom: 0;
}

.platform-item-data-with-icons:last-child span {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	line-clamp: 1;
	word-wrap: anywhere;
}

.platform-item-data-with-icons svg {
	flex-shrink: 0;
	width: 15px;
	height: 15px;
}

.platform-item-data-with-icons span {
	color: var(--blue);
}

.platform-item-data-with-icons span.platform-item-capacity {
	color: var(--green);
}

.footer {
	margin-top: 80px;
	padding: 50px 0;
	background: var(--white);
	text-align: center;
}

.footer-menu {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 10px;
}

.footer-menu a {
	color: var(--black);
	transition: color 0.2s ease;
}

.footer-menu a:hover {
	color: var(--blue);
}

.footer p {
	font-size: 14px;
	color: rgba(var(--base-black), 0.75);
}

.footer .develop {
	margin-top: 10px;
}

.footer .develop a {
	text-transform: uppercase;
	color: var(--blue);
	transition: color 0.2s ease;
}

.footer .develop a:hover {
	color: var(--blue-hover);
}

.platform {
	margin-top: 40px;
}

.platform-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	margin-bottom: 15px;
}

.platform h1 {
	font-size: 30px;
	line-height: 34px;
}

.platform-top .share-btn {
	display: none;
	flex-shrink: 0;
	border: none;
	background: transparent;
	padding: 4px;
	color: var(--black);
	cursor: pointer;
	transition: color 0.2s ease;
}

.platform-top .share-btn:hover {
	color: var(--blue);
}

.platform-top .share-btn svg {
	width: 26px;
	height: 26px;
}

.platform-photo-slider {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 20px;
	background: var(--white);
	border: 1px solid var(--white);
}

.platform-photo-slider a {
	position: relative;
	cursor: zoom-in;
}

.platform-photo-slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

.platform-photo-slider .swiper-pagination-bullet {
	background: var(--white);
	opacity: 0.75;
}

.platform-photo-slider .swiper-pagination-bullet-active {
	opacity: 1;
}

.platform-photo-slider .swiper-navigation {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 5;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}

.platform-photo-slider:hover .swiper-navigation {
	visibility: visible;
	opacity: 1;
	padding: 0 20px;
}

.platform-photo-slider .swiper-navigation-button {
	pointer-events: all;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--base-white), 0.75);
	border: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	box-shadow: 0 0 15px rgba(var(--base-black), 0.1);
	cursor: pointer;
	transition: all 0.2s ease;
}

.platform-photo-slider .swiper-navigation-button:hover {
	background: var(--white);
}

.platform-photo-slider .swiper-navigation-button.prev {
	padding-right: 2px;
}

.platform-photo-slider .swiper-navigation-button.next {
	padding-left: 2px;
}

.platform-photo-slider .swiper-button-disabled {
	visibility: hidden;
	opacity: 0;
}

.platform-photo-slider .swiper-navigation-button svg {
	width: 20px;
	height: 20px;
}

.fancybox__thumb,
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
	border-radius: 10px !important;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
	border: 3px solid var(--red) !important;
}

.platform-content-grid {
	display: grid;
	grid-template-columns: 1fr 290px;
	align-items: start;
	gap: 20px;
}

.platform-content-grid .grid-item {
	display: grid;
}

.platform-content {
	background: var(--white);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 20px;
}

.platform-content:last-child {
	margin-bottom: 0;
}

.platform-content h2 {
	line-height: 1;
	margin-bottom: 10px;
	font-size: 24px;
}

.platform-content.installment-content h2 {
	color: var(--orange);
}

.installment-conditions {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin: 15px 0;
	margin-left: -1px;
	width: calc(100% + 2px);
}

.installment-conditions-item {
	position: relative;
	background: rgb(251 116 51 / 10%);
	padding: 15px 20px;
	border-radius: 12px;
	font-weight: 300;
	overflow: hidden;
	z-index: 1;
}

.installment-conditions-item::before {
	content: "";
	position: absolute;
	inset: 0 0 0 0;
	transform: scaleX(0);
	transform-origin: left;
	background: linear-gradient(
		90deg,
		rgb(251 116 51 / 10%),
		rgb(251 116 51 / 15%)
	);
	z-index: -1;
}

.installment-conditions-item:nth-child(1)::before {
	animation: fill-1 11s ease-in-out infinite;
}
.installment-conditions-item:nth-child(2)::before {
	animation: fill-2 11s ease-in-out infinite;
}
.installment-conditions-item:nth-child(3)::before {
	animation: fill-3 11s ease-in-out infinite;
}

@keyframes fill-1 {
	0% {
		transform: scaleX(0);
	}
	18.2% {
		transform: scaleX(1);
	}
	100% {
		transform: scaleX(1);
	}
}
@keyframes fill-2 {
	0%,
	18.1% {
		transform: scaleX(0);
	}
	36.4% {
		transform: scaleX(1);
	}
	100% {
		transform: scaleX(1);
	}
}
@keyframes fill-3 {
	0%,
	36.3% {
		transform: scaleX(0);
	}
	54.6% {
		transform: scaleX(1);
	}
	100% {
		transform: scaleX(1);
	}
}

.installment-conditions-item br {
	display: none;
}

.installment-conditions-item span {
	display: block;
	color: var(--orange);
}

.installment-conditions-text p:first-child {
	margin-bottom: 10px;
}

.installment-conditions-text a {
	white-space: nowrap;
	color: var(--orange);
	font-weight: 500;
}

.platform-content p {
	color: rgba(var(--base-black), 0.75);
	font-weight: 300;
}

.attr-grid {
	border-top: 1px solid var(--light);
	padding-top: 20px;
	margin-top: 15px;
}

.attr-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 10px;
}

.attr-cards .item-card {
	position: relative;
	overflow: hidden;
	background: var(--light);
	padding: 20px;
	text-align: center;
	border-radius: 10px;
}

.attr-cards .item-card::before {
	content: "";
	position: absolute;
	top: -25px;
	left: -25px;
	width: 50px;
	height: 50px;
	transform: rotate(45deg);
}

.attr-cards .item-card-capacity::before {
	background: var(--green);
}

.attr-cards .item-card-floors::before {
	background: var(--blue);
}

.attr-cards .item-card .item-card-value {
	color: var(--white);
	border-radius: 10px;
	margin: 0 auto 10px;
	display: table;
	padding: 8px 16px;
	font-weight: 700;
}

.attr-cards .item-card-capacity .item-card-value {
	background: var(--green);
}

.attr-cards .item-card-floors .item-card-value {
	background: var(--blue);
}

.attr-cards .item-card span {
	display: block;
	line-height: 1;
	font-weight: 500;
}

.attr-grid .other-attrs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.attr-grid .other-attr-item {
	background: var(--light);
	padding: 6px 10px;
	border-radius: 10px;
	color: var(--black);
	display: flex;
	align-items: center;
	gap: 5px;
}

.attr-grid .other-attr-item svg {
	width: 20px;
	height: 20px;
}

.attr-grid .other-attr-item-yes svg {
	color: var(--green);
}

.attr-grid .other-attr-item-no svg {
	color: var(--red);
}

.attr-grid .other-attr-item span {
	font-weight: 300;
	color: rgba(var(--base-black), 0.75);
}

.attr-grid .other-attr-item-no span {
	color: rgba(var(--base-black), 0.5);
}

.platform-sidebar {
	position: sticky;
	top: 100px;
	z-index: 10;
}

.sidebar-info {
	background: var(--white);
	border-radius: 20px;
	padding: 30px;
}

.sidebar-info .booking-price {
	font-size: 20px;
	line-height: 1;
	margin-bottom: 20px;
}

.sidebar-info .booking-price span {
	font-size: 16px;
	font-weight: 300;
	color: rgba(var(--base-black), 0.75);
}

.booking-type {
	margin-bottom: 20px;
}

.booking-type-switcher {
	display: flex;
	align-items: center;
	border: 1px solid var(--gray);
	border-radius: 10px;
	padding: 2px;
}

.booking-type-switcher .booking-type-option {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 0 0;
	cursor: pointer;
	height: 34px;
	border-radius: 7px;
	color: var(--black);
	font-size: 14px;
}

.booking-type-switcher .booking-type-option.active {
	background: var(--blue);
	color: var(--white);
}

.sidebar-info h3 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 8px;
	line-height: 1;
}

.booking-date {
	position: relative;
}

.booking-date .input-popup {
	top: 70px;
	right: 0;
}

.input-booking-date {
	width: 100%;
	height: 40px;
	border-radius: 10px;
	border: 1px solid var(--gray);
	font-size: 14px;
	padding: 0 16px;
	outline: none;
	transition: border-color 0.2s ease;
}

.input-booking-date:focus {
	border-color: var(--blue);
}

.input-booking-date.invalid {
	border-color: var(--red);
}

.sidebar-support {
	position: relative;
	padding: 25px 30px 0;
	margin-top: 30px;
}

.sidebar-support::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: calc(100% - 60px);
	height: 1px;
	background: var(--gray);
	transform: translateX(-50%);
}

.sidebar-support p {
	font-size: 12px;
	text-align: center;
	font-weight: 300;
	line-height: 1.4;
	margin-bottom: 15px;
	color: rgba(var(--base-black), 0.5);
}

.sidebar-support a {
	display: block;
	height: 40px;
	background: #25d366;
	font-size: 14px;
	line-height: 40px;
	color: #fff;
	border-radius: 10px;
	text-align: center;
	transition: background 0.2s ease;
}

.sidebar-support a:hover {
	background: #22c05d;
}

.popup {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	inset: 0;
	background: rgba(var(--base-black), 0.5);
	display: grid;
	align-items: center;
	padding: 20px;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 20;
}

.popup.active {
	visibility: visible;
	opacity: 1;
}

.popup-wrap {
	position: relative;
	background: #fff;
	width: 100%;
	margin: 0 auto;
	border-radius: 30px;
	padding: 30px;
	transform: translate3d(0, 100vh, 0);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.popup.active .popup-wrap {
	transform: none;
	opacity: 1;
}

.popup:not(.active) .popup-wrap {
	opacity: 0;
	transition: opacity 0.2s ease;
}

.popup-body {
	overflow-y: auto;
	max-height: calc(100vh - 200px);
	max-height: calc(100dvh - 100px);
	scrollbar-width: none;
}

.popup-booking .popup-wrap,
.popup-calendar-tasks .popup-wrap {
	max-width: 440px;
}

.popup-close {
	border: 0;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 15px;
	right: 15px;
	border-radius: 50%;
	background: var(--light);
	color: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
}

.popup-close svg {
	pointer-events: none;
	width: 24px;
	height: 24px;
	will-change: transform;
	transition: transform 0.2s ease, background 0.2s ease;
}

.popup-close:hover svg {
	transform: rotate(90deg);
}

.popup-body .popup-title {
	line-height: 30px;
	margin-top: -4px;
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	padding: 0 20px;
	margin-bottom: 20px;
}

.popup-booking form input {
	display: block;
	width: 100%;
	height: 50px;
	border: 0;
	background: var(--light);
	border-radius: 15px;
	font-size: 16px;
	padding: 0 20px;
	margin-bottom: 15px;
	transition: all 0.2s ease;
	border: 1px solid transparent;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
}

.popup-booking form input:focus {
	border-color: var(--black);
	background: #fff;
}

.booking-installment-plan label {
	height: 50px;
	padding: 0 14px 0 20px;
	border-radius: 15px;
	margin-bottom: 15px;
}

.mobile-popup .booking-installment-plan label {
	background: transparent;
	border: 1px solid var(--gray);
}

.popup-booking form button {
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 15px;
	border: 0;
	background: var(--black);
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.popup-booking form button:hover {
	background: var(--blue);
}

.popup-booking .popup-wrap {
	max-width: 440px;
}

.search-calendar .calendar-day.booked {
	background-color: var(--red);
	color: var(--white);
}

.booking-action button {
	display: block;
	width: 100%;
	height: 40px;
	border-radius: 10px;
	border: 0;
	background: var(--black);
	color: var(--white);
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
	transition: background 0.2s ease;
	margin-top: 20px;
}

.booking-action button:hover {
	background: var(--blue);
}

.booking-action-phone a {
	width: 100%;
	height: 40px;
	border-radius: 10px;
	border: 0;
	background: var(--light);
	color: var(--black);
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
	transition: background 0.2s ease;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.booking-action-phone a:hover {
	background: var(--gray);
}

.booking-action-phone a .booking-action-phone-mobile {
	display: none;
}

.popup-booking-alert .popup-wrap {
	max-width: 440px;
}

.popup-booking-alert .alert {
	text-align: center;
}

.popup-booking-alert .alert svg {
	width: 80px;
	height: 80px;
	margin: 0 auto;
}

.popup-booking-alert .alert-success svg {
	color: var(--green);
}

.popup-booking-alert .alert-error svg {
	color: var(--red);
}

.popup-booking-alert .alert h3 {
	font-size: 22px;
	text-align: center;
	margin: 10px 0;
	line-height: 1;
}

.popup-booking-alert .alert p {
	line-height: 1.3;
	color: rgba(var(--base-black), 0.75);
}

.content-page {
	padding-top: 50px;
}

.partnership-page {
	padding-top: 0 !important;
}

.content-page .content-body {
	background: var(--white);
	padding: 30px;
	border-radius: 20px;
}

.content-page h1 {
	font-size: 30px;
	line-height: 1.1;
	margin-bottom: 20px;
}

.content-page h3 {
	font-size: 19px;
	line-height: 1.4;
	margin-bottom: 15px;
	margin-top: 30px;
}

.content-page p {
	margin-bottom: 15px;
	font-weight: 300;
}

.content-page ul li {
	position: relative;
	font-weight: 300;
	margin-bottom: 15px;
}

.content-page ul li b {
	font-weight: 500;
}

.content-page ul li {
	padding-left: 15px;
}

.content-page ul li::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 6px;
	height: 6px;
	background: rgba(var(--base-black), 0.4);
	border-radius: 50%;
}

.content-page a {
	color: var(--blue);
	border-bottom: 1px solid var(--blue);
	transition: all 0.2s ease;
}

.content-page a:hover {
	border-color: transparent;
}

.partnership-page .content-body {
	border-radius: 0 0 20px 20px;
}

.partnership-login-url {
	display: table;
	margin: 0 auto 10px;
	color: var(--blue);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease;
}

.partnership-login-url:hover {
	border-color: var(--blue);
}

.mobile-popup {
	display: none;
}

.pagination {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px;
	justify-content: center;
	background: var(--white);
	border-radius: 20px;
	width: max-content;
	margin: 0 auto;
}

.pagination a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(var(--base-black), 0.05);
	color: var(--black);
	transition: all 0.2s ease;
}

.pagination .active a {
	background: var(--blue);
	color: var(--white);
	cursor: default;
}

.pagination li:not(.active) a:hover {
	background: rgba(var(--base-black), 0.1);
}

@media (max-width: 920px) {
	.search-results-top {
		flex-direction: column;
	}

	.search-results-top h1 {
		padding-left: 0;
	}

	.platform {
		margin-top: 20px;
	}
}

@media (max-width: 840px) {
	.main-search,
	.search-filters-sidebar {
		display: none;
	}

	.hero-content {
		padding: 30px 0 15px;
	}

	.hero-content h1 {
		font-size: 30px;
	}

	.main-search-mobile {
		display: block;
		position: sticky;
		top: 0;
		z-index: 10;
		padding: 10px 0;
	}

	.mobile-search-trigger {
		position: relative;
		width: 100%;
		height: 50px;
		background: var(--white);
		border: 0;
		border-radius: 16px;
		padding: 0 18px;
		font-size: 16px;
		color: rgba(var(--base-black), 0.75);
		text-align: left;
		cursor: pointer;
	}

	.search-trigger-btn {
		position: absolute;
		top: 3px;
		right: 3px;
		width: 44px;
		height: 44px;
		background: var(--blue);
		border: 0;
		border-radius: 13px;
		color: var(--white);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.search-trigger-btn svg {
		width: 22px;
		height: 22px;
	}

	.mobile-search-request .location {
		font-size: 15px;
		color: var(--black);
		margin: 1px 0 -3px;
	}

	.mobile-search-request span {
		font-size: 11px;
	}

	.mobile-popup {
		display: flex;
		justify-content: center;
		align-items: end;
		position: fixed;
		inset: 0;
		background: rgba(var(--base-black), 0.5);
		backdrop-filter: blur(0px);
		-webkit-backdrop-filter: blur(0px);
		transition: background 0.3s ease, backdrop-filter 0.3s ease,
			-webkit-backdrop-filter 0.3s ease;
		visibility: hidden;
		will-change: transform, background, backdrop-filter,
			-webkit-backdrop-filter;
		z-index: 20;
	}

	.mobile-popup-body {
		position: relative;
		width: 100%;
		background: var(--white);
		border-radius: 24px 24px 0 0;
		display: flex;
		flex-direction: column;
		height: calc(100vh - 150px);
		height: calc(100dvh - 50px);
		touch-action: none;
		transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
		transform: translateY(100%);
		will-change: transform;
	}

	.mobile-popup-header {
		position: relative;
		touch-action: pan-y;
		border-bottom: 1px solid var(--gray);
		padding: 10px 20px 20px;
	}

	.mobile-popup-header .handle {
		width: 40px;
		height: 4px;
		background: rgba(var(--base-black), 0.2);
		border-radius: 4px;
		margin: 0px auto 20px;
	}

	.mobile-popup-header .back-btn {
		visibility: hidden;
		opacity: 0;
		position: absolute;
		top: 28px;
		left: 15px;
		background: 0;
		border: 0;
		padding: 5px;
		color: var(--black);
		cursor: pointer;
		transition: all 0.2s ease;
	}

	.mobile-popup-header .back-btn.active {
		visibility: visible;
		opacity: 1;
	}

	.mobile-popup-header .back-btn svg {
		width: 20px;
		height: 20px;
	}

	.mobile-popup-header h2 {
		text-align: center;
		font-size: 18px;
		font-weight: 500;
		line-height: 1;
	}

	.mobile-popup-content {
		overflow-y: auto;
		padding: 20px;
		flex: 1;
		overscroll-behavior: none;
		-webkit-overflow-scrolling: touch;
	}

	.mobile-popup .search-form {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.mobile-popup .search-form input {
		width: 100%;
		height: 50px;
		border-radius: 14px;
		border: none;
		font-size: 16px;
		padding: 0 16px 0 44px;
		background: var(--white);
		border: 1px solid var(--gray);
		outline: none;
	}

	.mobile-popup .main-search-field .main-search-input-svg {
		width: 22px;
		height: 22px;
		top: 14px;
		left: 14px;
	}

	.mobile-popup .mobile-popup-footer {
		padding: 10px 20px 20px;
		padding-bottom: max(20px, env(safe-area-inset-bottom));
		width: 100%;
		background: var(--white);
	}

	.mobile-popup .mobile-popup-btn {
		display: block;
		width: 100%;
		height: 50px;
		border-radius: 14px;
		border: 0;
		background: var(--blue);
		color: var(--white);
		font-size: 16px;
		font-weight: 400;
		cursor: pointer;
	}

	.mobile-popup .mobile-popup-btn.mobile-booking-btn {
		background: var(--black);
	}

	.mobile-popup .input-popup {
		position: fixed;
		overflow-y: auto;
		width: 100%;
		height: calc(100% - 73px);
		z-index: 15;
		left: 0;
		top: 73px;
		border-radius: 0;
		padding: 0;
		box-shadow: none;
		transform: none;
	}

	.mobile-input-popup-header {
		display: flex;
		align-items: center;
		padding: 20px;
		gap: 10px;
		position: sticky;
		top: 0;
		background: var(--white);
		z-index: 5;
	}

	.mobile-input-popup-header .h-i-wrap {
		position: relative;
		width: 100%;
	}

	.mobile-input-popup-header .h-i-wrap .input-date-text {
		border: 0;
		background: transparent;
		padding: 0;
		height: auto;
		border-radius: 0;
		margin: 0;
		text-align: center;
	}

	.input-popup .regions {
		padding-top: 0;
	}

	.mobile-popup .location-popup ul {
		padding-bottom: 13px;
	}

	.mobile-popup .search-calendar {
		padding: 0 20px 20px;
	}

	.mobile-popup .search-calendar .calendar-day {
		aspect-ratio: initial;
		height: 40px;
	}

	.booking-type-wrap {
		padding: 10px 22px;
	}

	.platforms-grid {
		gap: 15px;
	}

	.search-page {
		padding-top: 20px;
	}

	.search-grid {
		grid-template-columns: 1fr;
	}

	.mobile-filters-trigger {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
		gap: 10px;
		padding: 10px 25px 10px 20px;
		background: var(--black);
		border: 0;
		color: var(--white);
		border-radius: 10px;
		position: sticky;
		top: 75px;
		font-size: 14px;
		box-shadow: 0px 4px 10px rgba(var(--base-white), 0.3);
		z-index: 5;
	}

	.mobile-filters-trigger svg {
		width: 20px;
		height: 20px;
	}

	.search-filters {
		padding: 0;
	}

	.mobile-filters-popup .filters-btn-apply {
		height: 50px;
		font-size: 16px;
		border-radius: 14px;
	}

	.search-not-found {
		margin-top: 20px;
	}

	.platform-content-grid {
		grid-template-columns: 1fr;
	}

	.platform-photo-slider img {
		aspect-ratio: 4 / 2;
	}

	.platform-photo-slider .swiper-navigation {
		display: none;
	}

	.sidebar-info {
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		border-radius: 0;
		top: auto;
		padding-top: 15px;
		padding-left: max(15px, env(safe-area-inset-left));
		padding-right: max(15px, env(safe-area-inset-right));
		padding-bottom: max(15px, env(safe-area-inset-bottom));
		display: grid;
		grid-template-columns: 136px 1fr;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
		box-shadow: 0px 0px 10px rgba(var(--base-black), 0.05);
		z-index: 20;
	}

	.booking-date {
		display: none;
	}

	.sidebar-info .booking-price {
		font-size: 14px;
		margin-bottom: 6px;
	}

	.sidebar-info .booking-price span {
		font-size: 12px;
	}

	.booking-type {
		margin-bottom: 0;
		margin-left: -2px;
	}

	.booking-type h3 {
		display: none;
	}

	.booking-type-switcher {
		border-radius: 8px;
	}

	.booking-type-switcher .booking-type-option {
		height: 22px;
		border-radius: 5px;
		font-size: 10px;
		width: 66px;
	}

	.booking-action button {
		height: 46px;
		margin-top: 0;
		padding: 0 22px;
		line-height: 1;
		border-radius: 12px;
	}

	.booking-action-phone {
		position: fixed;
		left: 0;
		bottom: 78px;
		width: 100%;
		z-index: 10;
		padding-left: max(15px, env(safe-area-inset-left));
		padding-right: max(15px, env(safe-area-inset-right));
		padding-bottom: max(15px, env(safe-area-inset-bottom));
	}

	.booking-action-phone a {
		background: var(--blue);
		color: var(--white);
		width: 220px;
		height: 46px;
		margin: 0 auto;
		line-height: 1;
		border-radius: 12px;
	}

	.booking-action-phone a .booking-action-phone-mobile {
		display: flex;
	}

	.booking-action-phone a .booking-action-phone-desktop {
		display: none;
	}

	.mobile-booking-popup form input {
		width: 100%;
		height: 50px;
		border-radius: 14px;
		border: none;
		font-size: 16px;
		padding: 0 20px;
		background: var(--white);
		border: 1px solid var(--gray);
		margin-bottom: 10px;
		outline: none;
		transition: border-color 0.2s ease;
	}

	.mobile-booking-popup form input:focus {
		border-color: var(--black);
	}

	.sidebar-support {
		margin-top: 10px;
	}
}

@media (max-width: 767px) {
	.container-medium {
		max-width: 440px;
	}

	.platforms-grid {
		gap: 10px;
	}

	.platforms-grid .platform-card {
		padding: 15px 17px;
	}

	.platform-card-location {
		font-size: 12px;
		line-height: 22px;
		gap: 2px;
		margin-left: -2px;
		margin-bottom: 2px;
	}

	.platform-card-location svg {
		width: 13px;
		height: 13px;
	}

	.platform-card-installment-plan {
		top: 10px;
		left: 10px;
		font-size: 12px;
		line-height: 22px;
		padding: 0 8px;
	}

	.platform-card-content h3 {
		font-size: 16px;
		line-height: 18px;
		margin-bottom: 0;
		line-clamp: 1;
		word-wrap: anywhere;
	}

	.platform-card-content p {
		display: none;
	}

	.platforms-grid .platform-card:after {
		height: 90px;
	}

	.installment-plan-container p {
		font-size: 16px;
	}
}

@media (max-width: 550px) {
	.platform-item {
		display: flex;
		flex-direction: column;
		gap: 10px;
		max-width: 440px;
		margin: 0 auto;
	}

	.platform-item-cover {
		aspect-ratio: 5 / 3;
	}

	.platform-item-content {
		padding: 0 15px 15px;
	}

	.platform-item h3 {
		font-size: 20px;
		line-height: 24px;
	}

	.platform-item-start {
		flex-direction: column;
		align-items: start;
		gap: 0;
		margin-bottom: 5px;
	}

	.platform-item-price {
		color: rgba(var(--base-black), 0.75);
	}

	.platform-top {
		margin-bottom: 10px;
	}

	.platform h1 {
		font-size: 24px;
		line-height: 26px;
	}

	.platform-top .share-btn {
		padding: 0 4px;
	}

	.platform-photo-slider {
		border-radius: 15px;
	}

	.platform-photo-slider img {
		aspect-ratio: 4 / 3;
	}

	.platform-content {
		border-radius: 15px;
		padding: 20px;
	}

	.platform-content h2 {
		font-size: 20px;
	}

	.platform-content p {
		font-size: 15px;
	}

	.installment-conditions {
		gap: 7px;
	}

	.installment-conditions-item {
		font-size: 13px;
		padding: 12px;
		line-height: 1.2;
	}

	.installment-conditions-item br {
		display: block;
	}

	.installment-conditions-item span {
		margin-top: 8px;
	}

	.installment-conditions-text p {
		font-size: 14px;
	}

	.content-page {
		padding-top: 15px;
	}

	.home-partneship.top-partneship-page {
		padding: 15px 0 0;
	}

	.top-partneship-page .home-partneship-grid {
		border-radius: 15px 15px 0 0;
	}

	.content-page .content-body {
		padding: 20px;
		border-radius: 15px;
	}

	.partnership-page .content-body {
		border-radius: 0 0 15px 15px;
	}

	.content-page h1 {
		font-size: 26px;
		text-align: center;
	}

	.content-page h2 {
		font-size: 20px;
	}

	.content-page h3 {
		font-size: 17px;
	}

	.content-page p,
	.content-page ul li {
		font-size: 15px;
	}

	.popup-booking .popup-wrap {
		padding: 20px;
	}

	.popup-body .popup-title {
		font-size: 20px;
	}

	.partnership-btn-big {
		border-radius: 14px;
		font-size: 16px;
		padding: 15px 30px;
		width: 100%;
		margin-bottom: 10px;
	}

	.partnership-login-url {
		margin-bottom: 0;
	}

	.attr-cards,
	.attr-grid .other-attrs {
		grid-template-columns: 1fr;
	}

	.attr-grid .other-attr-item {
		font-size: 15px;
	}

	.sidebar-support {
		padding: 25px 20px 0;
	}

	.sidebar-support::before {
		width: calc(100% - 40px);
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 26px;
	}

	.mobile-search-trigger {
		height: 44px;
		border-radius: 12px;
		font-size: 14px;
	}

	.search-trigger-btn {
		width: 38px;
		height: 38px;
		border-radius: 9px;
	}

	.search-trigger-btn svg {
		width: 20px;
		height: 20px;
	}

	.mobile-filters-trigger {
		top: 70px;
	}

	.mobile-popup .search-calendar .calendar-day {
		aspect-ratio: 1;
		height: auto;
	}

	.installment-plan {
		padding-bottom: 40px;
	}

	.installment-plan-container h2 {
		font-size: 26px;
	}

	.installment-plan-container {
		padding: 20px;
	}

	.installment-plan-container img {
		margin-top: -60px;
	}

	.platforms,
	.home-partneship {
		padding-bottom: 40px;
	}

	.home-partneship-grid {
		padding: 20px;
	}

	.home-partneship-grid img {
		width: 60px;
		margin: 0 auto 15px;
	}

	.home-partneship-grid h2 {
		font-size: 26px;
	}

	.home-partneship-grid p {
		font-size: 16px;
	}

	.installment-plan-button,
	.home-partneship-btn {
		border-radius: 14px;
		font-size: 16px;
		padding: 17px 30px;
		width: 100%;
		margin: 30px auto 10px;
	}
}

@media (hover: none) and (pointer: coarse) {
	.header-partnership:hover {
		background: rgba(var(--base-white), 0.1);
	}

	.main-search .main-search-btn:hover {
		background: var(--blue);
	}

	.input-popup .regions .location-btn:hover {
		background: var(--light);
	}

	.input-popup .location-btn:hover .location-icon {
		background: var(--light);
	}

	.input-popup .location-btn:hover,
	.search-calendar .calendar-control button:hover,
	.booking-type-popup .radio-button:hover .radio-checkmark {
		background: transparent;
	}

	.platforms-grid .platform-card:hover img {
		transform: scale(1);
	}

	.platform-item:hover {
		box-shadow: none;
	}

	.footer .develop a:hover {
		color: var(--blue);
	}

	.popup-close:hover svg {
		transform: none;
	}

	.filters-btn:hover,
	.popup-booking form button:hover,
	.booking-action button:hover {
		background: var(--black);
	}

	.reset-filters-btn:hover {
		background: transparent;
		color: rgba(var(--base-black), 0.65);
	}

	.not-found-reset-filters-btn:hover {
		background: var(--gray);
		color: var(--black);
	}

	.platform-top .share-btn:hover {
		color: var(--black);
	}

	.partnership-btn:hover {
		background: var(--light);
	}

	.partnership-btn-big:hover {
		background: var(--blue);
	}

	.partnership-login-url:hover {
		border-color: transparent;
	}

	.sort-links a:not(.active):hover {
		background: transparent;
	}

	.home-partneship-btn:hover {
		background: var(--blue);
	}

	.home-partneship-grid .home-partneship-url:hover {
		border-color: transparent;
	}

	.sidebar-support a:hover {
		background: #25d366;
	}

	.content-page a:hover {
		border-color: var(--blue);
	}

	.installment-plan-button:hover {
		background: var(--orange);
	}

	.booking-action-phone a:hover {
		background: var(--blue);
	}
}
