/*==================== Layout ====================*/
.booking-form .controlHolder + .controlHolder {
  margin-top: 10px;
}
.booking-form * + .btn {
  margin-top: 20px;
}
.booking-form * + p {
  margin-top: 15px;
}
/*==================== Styles ====================*/
.booking-form {
  position: relative;
}
.booking-form input {
  color: #888888;
  height: 61px;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  border: none;
  font-size: 16px;
  line-height: 61px;
  padding: 0 18px;
  border-radius: 3px;
  outline: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 979px) {
  .booking-form input {
    height: 51px;
  }
}
.booking-form a[data-type='submit'] {
  display: block;
  padding: 13px 0 17px;
  border-radius: 3px;
}
.booking-form *::-webkit-input-placeholder {
  color: #888888;
  opacity: 1;
}
.booking-form *:-moz-placeholder {
  color: #888888;
  opacity: 1;
}
.booking-form *::-moz-placeholder {
  color: #888888;
  opacity: 1;
}
.booking-form *:-ms-input-placeholder {
  color: #888888;
  opacity: 1;
}
.tmInput,
.tmSelect {
  position: relative;
}
.tmSelect {
  display: block;
}
.tmSelect input {
  padding-right: 50px;
}
.controlHolder {
  position: relative;
}
/* Messages */
.error-message {
  position: absolute;
  top: 3px;
  left: 3px;
  font-weight: normal;
  text-align: left;
  width: 100%;
  font-size: 10px;
  line-height: 10px;
  z-index: 4;
  color: red;
}
.success-message {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #00bbd3;
  color: #fff;
  text-align: left;
  font-size: 14px;
  line-height: 15px;
  padding: 20px;
  border-radius: 3px;
}
/* transformSelect CSS */
.tmSelect {
  clear: both;
  width: 100%;
  margin: 0px;
}
.tmSelect li {
  position: relative;
  list-style: none;
}
.tmSelect span,
.tmSelect input[type=text] {
  position: relative;
  cursor: pointer;
  display: block;
  left: 0;
  top: 0;
  margin: 0;
}
.tmSelect.auto {
  cursor: pointer;
  padding: 0;
  margin: 0 0 20px 0;
  line-height: 20px;
}
.tmSelect.auto span {
  background: transparent;
}
.tmSelect.auto ul {
  margin: 1px 0 0;
  width: 100%;
  background: #F9F9F9;
}
.tmSelect.auto > li:first-child > span {
  padding: 7px 12px;
  width: 35px;
  height: 100%;
}
.tmSelect ul,
.tmSelect .transformSelectDropdown {
  width: 100%;
  position: absolute;
  top: 100%;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 35px;
  overflow: hidden;
  z-index: 10;
}
.tmSelect ul span,
.tmSelect .transformSelectDropdown span {
  border: 0;
  color: #000;
  padding: 5px 13px;
}
