.booking-form {
	max-width: 440px;
	width: 100%;
	margin: auto;
}

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

.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;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.booking-form .form-control {
	background-color: #fff;
	height: 50px;
	padding: 22px 20px 0px;
	border-radius: 0px;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #0e2753;
	border: 1px solid #dddee9;
	/*border-bottom: 0px;*/
	font-size: 16px;
	/*font-weight: 700;*/
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}

.booking-form [class*="col-"]+[class*="col-"] .form-group .form-control {
	border-left: 0px;
}

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

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

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

.booking-form .form-control:focus {
	background: #f9f9f9;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.booking-form input[type="date"].form-control:invalid {
	color: #dddee9;
}

.booking-form select.form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.booking-form select.form-control:invalid {
	color: #dddee9;
}

.booking-form select.form-control option {
	color: #0e2753;
}

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

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

.booking-form .form-label {
	position: absolute;
	left: 20px;
	top: 5px;
	color: #d9630c;
	font-weight: 400;
	line-height: 24px;
	height: 24px;
	font-size: 14px;
}

.booking-form .submit-btn {
	color: #fff;
	background-color: #d9630c;
	font-weight: 700;
	height: 50px;
	font-size: 18px;
	text-transform: uppercase;
	border: none;
	width: 100%;
  	border-radius:0;
}

/*#booking.fixed .booking-form {
  	float:right;
  	width:225px;
}

#booking.fixed .col-sm-6 {
  	width:98%;
}
#booking.fixed .booking-form .form-control {
  	border-left: 1px solid #dddee9;
}*/

@media only screen and (max-width: 767px) {
	.booking-form [class*="col-"]+[class*="col-"] .form-group .form-control {
		border-left: 1px solid #dddee9;
	}
}