.section {
	position: relative;
	/* height: 20vh; */
	margin-bottom:10px;
}

#booking {
	font-family: 'Poppins', sans-serif;
	background-size: cover;
	background-position: center;
}

#booking::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.15);
}

.booking-form {
	background: #dfe6e9;/*lightpink*/
	border-radius: 5px;
}

.booking-form>form .row.no-margin {
	margin-right: 0px;
	margin-left: 0px;
}

.booking-form>form .row.no-margin>[class*="col-"] {
	padding-right: 0px;
	padding-left: 0px;
}

.booking-form .form-group {
	position: relative;
	padding: 25px;
	margin-bottom: 0px;
}

.booking-form .form-group:after {
	content: '';
	background: rgba(129, 131, 144, 0.15);
	position: absolute;
	top: 25px;
	bottom: 100px;
	right: 0px;
	width: 2px;
	height: 75px;
}

.booking-form .form-control {
	background-color:white;
	border-radius: 0px;
	border: none;
	height: 30px;
	-webkit-box-shadow: none;
	box-shadow: #500c47;
	/*font-size: 20px;*/
	color: #333333 !important;
	font-weight: 400;
}

.booking-form .form-control::-webkit-input-placeholder {
	color: #818390;
}

.booking-form .form-control:-ms-input-placeholder {
	color: #818390;
}

.booking-form .form-control::placeholder {
	color: #818390;
}

.booking-form input.form-control:invalid {
	color: #818390;
	font-size:1.3rem;
}
/*[type="date"]*/

.booking-form select.form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 1.3rem;
}
.booking-form option {
	margin-left:5px;
}

.booking-form select.form-control+.select-arrow {
	position: absolute;
	right: 0px;
	bottom: 30px;
	width: 32px;
	line-height: 32px;
	height: 32px;
	text-align: center;
	pointer-events: none;
	color: #818390;
	font-size: 1.3rem;
}

.booking-form select.form-control+.select-arrow:after {
	content: '\279C';
	display: block;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	font-size: 1.3rem;
}

.booking-form .form-label {
	color: #500c47;
	display: block;
	font-weight: 400;
	height: 25px;
	line-height: 25px;
	font-size: 1.5rem;
}

.booking-form .form-btn {
	padding: 25px;
}

.booking-form .submit-btn {
	background: orangered;/*#0984e3;#b91ba4*/
	border: none;
	text-transform: capitalize;
	display: block;
	border-radius: 2px;
	width: 100%;
	height: 50px;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
}
.booking-form .submit-btn:hover {
    color: #000;
	background: #e05a00;/*#74b9ff;#b91ba4*/

}
.form-option {
    text-align: left;
    color:#333333;
    padding: 0 0 0 5px;

}