

/* iframe */
.previo-reservation-form {
    /*margin-top: -90px;*/
}

/* booking */
.b-html .b-c{
	overflow: visible;
}

.booking {
	/* background: #7c3f1f; */
	background: #b52500;
	color: #fff;
	padding: 20px;
	position: absolute;
	top: -80px;
	left: -40px;
	right: -40px;
	line-height: 1.6;
	font-size: .9rem;
}

.booking-form-row{
	display: flex;
	gap: 15px;
	padding: 0 10px;
	align-items: center;
	justify-content: center;
}

.booking input, .booking button{
	border-radius: 3px;
	border: 1px solid #000;
	padding: 6px 10px;
}
.booking button{
	border-radius: 3px;
	border: 1px solid #fd9f3a;
	background-color: #fd9f3a;
	padding: 7px 10px;
	cursor: pointer;

}
.booking button:hover{
	background-color: #db8529;
}

@media screen and (max-width: 500px) {
	.booking{
		font-size: 0.75rem;
		padding: 10px 0;
		top: -100px;
		left: -10px;
		right: -10px;
		line-height: 1.3;

	}
	.booking input, .booking button{
		width: 100%;
		vertical-align: middle;
	}	
	.booking input{
		width: 100%;
		display: block;
	}

	.booking-form-row{
		flex-wrap: wrap;
		gap: 5px;

	}
	.booking-form-row-col{
		flex: 1 45%;
	}
	
	input[type="date"]{
		display:block;
		-webkit-appearance: textfield;
		-moz-appearance: textfield;
		/* min-height: 2rem; */
		line-height: 3;
		min-width: 90%;
		height: 2rem;
	}
	
}
