input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.booking-form * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.booking-form .row {
    margin-left: -5px;
    margin-right: -5px;
}
.booking-form .title {
	background-color: #8e6e5b;
	margin: -16px -16px 16px -16px;
	color: aliceblue;
	text-align: center;
	font-size: 20px;
	line-height: 2.5em;
}
.booking-form .row:after {
    content: '';
    display: block;
    clear: both;
}

.booking-form .row > .col {
    float: left;
    padding-left: 5px;
    padding-right: 5px;
}

.booking-form .row.cols-3 > .col {
    width: 33.33%;
}

.booking-form .field {
    display: inline-block;
    position: relative;
}

.booking-form .label {
    position: absolute;
    left: 0;
    top: -22px;
}

.booking-form .input-text,
.booking-form .input-select {
    height: 32px;
	font-size: 15px;
    line-height: 32px;
    background-color: #fff;
    padding-left: 6px;
    padding-right: 6px;
	border: 1px solid #151715;
	
	-webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.booking-form .button {
    display: inline-block;
    text-align: center;
    height: 42px !important;
    line-height: 42px !important;
    border: 0;
    background-color: #7a504d;
    color: #fff;
    width: 140px;
    cursor: pointer;
	font-size: 18px;
}

.booking-form .button:hover {
	color: #fff !important;
    background-color: #7a504d !important;
}

.booking-form input.hasDatepicker {
    background-image: url(img/icon-cal.png);
    background-position: right 6px center;
    background-repeat: no-repeat;
    padding-right: 28px;
}

.booking-form a {
	display: inline-block;
	margin: 10px 0;
}

/* Vertical Style */
.booking-form.form-vertical {
	display: inherit;
    width: 100%;
	font-size: 13px;
	padding: 0 10px;
	background-color: rgba(255,255,255,1.00);
}

.booking-form.form-vertical .form-group {
    margin-top: 10px;
	margin-bottom: 0;
}

.booking-form.form-vertical .form-group:last-of-type {
    margin-bottom: 0;
}

.booking-form.form-vertical .field {
    width: 100%;
}

.booking-form.form-vertical .input-text,
.booking-form.form-vertical .input-select,
.booking-form.form-vertical .button {
    width: 100%;
}


/* Horizon Style */
.booking-form.form-horizon .form-group,
.booking-form.form-horizon .field {
    display: inline-block;
    vertical-align: middle;
}


/* Form with Label */
.booking-form.form-with-label {
    padding-top: 22px
}