/* MÁSCARA DE RESERVAS */
.bookingForm {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 2px;
	width: var(--neobookings-mask-width);
	margin: 0px auto;
}

.bookingForm .field {
	background-color: rgba(var(--secondary-color-rgb), .85);
	color: #51504D;
	height: 60px;
	display: flex;
	width: calc(42.5% - 2px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.bookingForm .field:has(.neobookings-submit-btn) {
	width: calc(25% - 2px);
}
.bookingForm .field input {
	background-color: transparent;
	border: 0;
	text-align: center;
}

.bookingForm .field .date_range_picker {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	gap: 5px;
	padding: 5px;
}


.bookingForm .field .date_range_picker input {
	width: calc(50% - 9.5px);
}
.bookingForm .field .date_range_picker input::placeholder {
	color: #51504D;
}

.bookingForm .field .date_range_picker i {
	width: 20px;
	height: 20px;
}
.bookingForm .field .neobookings-submit-btn {
	background-color: var(--primary-color);
	width: 100%;
	height: 100%;
	border: 0;
	color: white;
}
/* FIN MÁSCARA DE RESERVAS */


/* FECHAS */
.litepicker .container__days .day-item.is-end-date,
.litepicker .container__days .day-item.is-start-date {
	background-color: var(--primary-color);
}
/* FIN FECHAS */

#reservar-btn {
	display: none;
}

.bookingForm__close {
	display: none;
}
@media (max-width: 992px) {

	.bookingForm {
		max-width: 85vw;
		margin: 0 auto;
	}
	.bookingForm__close {
		display: block;
		color: black;
	}
	.services-header-block .neobookings-services {
		display: none;
	}
	#reservar-btn {
		z-index: 100;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 50px;
		background-color: rgba(var(--primary-color-rgb), 0.9);
		color: white;
		font-size: 16px;
		border: none;
		cursor: pointer;
		display: block;
	}
	.neobookings-mask-container {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: white;
		z-index: 200;
		display: none;
	}

	.neobookings-mask-container.open {
		display: block;
	}

	.neobookings-mask-container .bookingForm {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		width: 100%;
		height: 100%;
	}
	.neobookings-mask-container .bookingForm .field {
		width: 100%;
		min-height: 25px;
		margin: 15px;
	}


	.litepicker {
		width: 100%;
		left: 0 !important;
	}

	.litepicker .container__main {
		width: 100%;
		align-items: center;
		justify-content: center;
	}



}