

/* Start:/local/components/basmanovdg/booking.calendar/templates/.default/style.css?17689879615946*/
.booking-calendar__inner {
	position: relative;
}

.booking-calendar__inner.preloader:before {
	content: '';
	background: #fff;
	height: 100%;
	position: absolute;
	width: 100%;
	z-index: 10;
	opacity: 0.9;
}

/* Обновленные стили для drag-функциональности */
.booking-calendar__days {
	width: 100%;
	overflow: hidden;
	cursor: grab;
}

.booking-calendar__days.dragging {
	cursor: grabbing;
}

.booking-calendar__days .swiper-wrapper {
	display: flex;
	transition: transform 1s cubic-bezier(0.66, 0, 0.33, 1);
	will-change: transform;
}

.booking-calendar__days .swiper-wrapper.dragging {
	transition: none;
}

.booking-calendar__room-slider {
	cursor: grab;
	overflow: hidden;
}

.booking-calendar__room-slider.dragging {
	cursor: grabbing;
}

.booking-calendar__room-prices {
	display: flex;
	transition: transform 1s cubic-bezier(0.66, 0, 0.33, 1);
	will-change: transform;
}

.booking-calendar__room-prices.dragging {
	transition: none;
}

.booking-calendar__day {
	width: 77.4px;
	height: 68px;
	flex-shrink: 0;
	background-color: #fff;
	border: 1px solid rgba(164, 165, 165, 0.3);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 500;
	color: #000;
	border-radius: 8px;
	padding: 10px 15px;
	white-space: nowrap;
	user-select: none;
}

.booking-calendar__day._is-selected {
	background-color: #007bff;
	border-color: #007bff;
	color: #fff;
}

.booking-calendar__room-price {
	position: relative;
	width: 77.4px;
	height: 48px;
	flex-shrink: 0;
	background-color: #fff;
	border: 1px solid rgba(164, 165, 165, 0.3);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 500;
	color: #000;
	border-radius: 8px;
	padding: 10px;
	user-select: none;
}

.booking-calendar__room-price input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 0;
	background-color: transparent;
	color: transparent;
	border: none;
	font-size: 0;
	padding: 0;
	cursor: pointer;
}

.booking-calendar__room-price._is-selected {
	background-color: rgba(0, 123, 255, 0.1);
	border-color: rgba(0, 123, 255, 0.3);
}

.booking-calendar__room-price._is-selected::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #007bff;
}

.booking-calendar__room-price._is-booked {
	background-color: #f5f5f5;
	padding: 0;
	border-radius: 8px;
	overflow: hidden;
	opacity: 0.6;
}

.booking-calendar__room-price._is-booked::before {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	background: repeating-linear-gradient(
			45deg,
			transparent,
			transparent 2px,
			rgba(0, 0, 0, 0.1) 2px,
			rgba(0, 0, 0, 0.1) 4px
	);
}

/* Дополнительные стили для controls */
.booking-calendar__days-controls {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.booking-calendar__days-prev,
.booking-calendar__days-next {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #007bff;
	text-decoration: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px 0;
}

.booking-calendar__days-prev:disabled,
.booking-calendar__days-next:disabled {
	opacity: 0.6;
	pointer-events: none;
}

.booking-calendar__days-prev svg,
.booking-calendar__days-next svg {
	display: block;
	width: 13px;
	height: 10px;
}

.booking-calendar__rooms {
	padding-top: 24px;
	border-top: 1px solid rgba(164, 165, 165, 0.3);
	overflow-x: hidden;
}

.booking-calendar__room {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.booking-calendar__room:not(:last-of-type) {
	margin-bottom: 24px;
}

.booking-calendar__room-title {
	font-size: 20px;
	line-height: 1;
	font-weight: 600;
}

.booking-calendar__room-subtitle {
	font-size: 13px;
	line-height: 1.2;
	color: #666;
}

/* Стили для календаря */
.daterangepicker-single {
	width: 499px;
}

.daterangepicker-single .drp-calendar.left {
	width: 100%;
}

.daterangepicker {
	display: none;
}

.daterangepicker.show-calendar {
	display: block;
}

.price-loader {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	border: 1px solid #efefef;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}
.price-loader::after {
	content: '';
	box-sizing: border-box;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid transparent;
	border-bottom-color: #1B9673;
}
.corpus-loader {
	width: 100px;
	height: 100px;
	flex: 0 0 100px;
	border: 2px solid #efefef;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	position: fixed;
	top: 50%;
	z-index: 12;
	left: 50%;
	translate: -50% -50%;
}
.corpus-loader::after {
	content: '';
	box-sizing: border-box;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 2px solid transparent;
	border-bottom-color: #1B9673;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.booking-calendar__inner .booking__panel-inner {
	box-shadow: none;
	padding: 0;
	border: none;
	margin-bottom: 0;
}
.booking-calendar__inner .hotel-card__corpus {
	color: #1b9673;
	border: 1px solid #1b9673;
	background-color: transparent;
	font-size: .75rem;
	font-family: 'Montserrat';
}

.booking-calendar__room-title {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.off.disabled.not-price {
	color: #ddd !important;
	background: #fff !important;
	pointer-events: none !important;
}

.active.start-date {
	pointer-events: none !important;
}
/* End */
/* /local/components/basmanovdg/booking.calendar/templates/.default/style.css?17689879615946 */
