/* Control Holder */
.booking_wr {
  position: relative;
  right: 0;
  width: 510px;
  float: right;
}

.booking_wr h2 {
  font-size: 50px;
}

.booking_wr h4 {
  text-transform: uppercase;
}

.booking_wr h4 + * {
  margin-top: 36px;
}

.booking_wr h2 + h4 {
  margin-top: 4px;
}

.booking_wr small {
  font:
    300 22px "Open Sans Condensed",
    sans-serif;
  text-transform: uppercase;
  text-align: left !important;
  color: #686868;
}

.booking_wr * + p {
  margin-top: 29px;
}

@media (max-width: 1199px) {
  .booking_wr {
    position: absolute;
    top: 286px;
    left: 0;
    right: 0;
    width: auto;
  }
}

@media (max-width: 767px) {
  .booking_wr {
    position: static;
    width: 100%;
    margin-top: 44px;
  }
  .booking_wr h2 {
    font-size: 35px;
    line-height: 38px;
  }
  .booking_wr small {
    font-size: 15px;
  }
  .booking_wr .booking-form .tmInput input {
    font-size: 18px;
  }
}

.booking-form {
  position: absolute;
  top: -449px;
  right: 0;
  display: inline-block;
  width: 510px;
  padding: 50px 50px 56px;
  background: #fff;
  z-index: 2;
}

.booking-form:after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: url(../images/shadow.png);
  z-index: 1;
}

@media (max-width: 479px) {
  .booking-form {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1199px) {
  .booking-form {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -255px;
  }
  .booking-form:after {
    display: none;
  }
}

@media (max-width: 1199px) and (max-width: 767px) {
  .booking-form {
    position: relative;
    left: 0;
    width: 100%;
    margin-left: 0;
  }
}

.booking-form button {
  display: block;
  width: 100%;
  border: none;
  margin-top: 30px;
  padding: 21px 17px 25px;
  cursor: pointer;
  display: block;
  color: #fff;
  background: #ff6738;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
  font-size: 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  text-transform: uppercase;
  -moz-transition: 0.3s box-shadow ease;
  -o-transition: 0.3s box-shadow ease;
  -webkit-transition: 0.3s box-shadow ease;
  transition: 0.3s box-shadow ease;
}

.booking-form button:hover {
  -webkit-box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}

.booking-form button:active {
  background: #ff5f2e;
}

@media (max-width: 479px) {
  .booking-form button {
    font-size: 18px;
  }
}

.booking-form button:focus {
  outline: none;
}

.form-label {
  position: absolute;
  top: 33px;
  left: 0;
  right: 0;
  padding-left: 19px;
  padding-right: 19px;
  font-size: 24px;
  line-height: 32px;
  font-family: "Open Sans Condensed", sans-serif;
  pointer-events: none;
  text-align: left;
  z-index: 9;
  text-transform: uppercase;
  transition: 0.25s;
  will-change: transform;
  transform: translateY(-50%);
}

.form-label.focus {
  opacity: 0;
}

.form-label.auto-fill {
  color: #4d4d4d;
}

.form-input {
  outline: none;
  padding: 13px 19px;
  font-size: 24px;
  line-height: 32px;
  font-family: "Open Sans Condensed", sans-serif;
  text-transform: uppercase;
  height: 67px;
  width: 100%;
  color: #4d4d4d;
  border: 1px solid #c7c7c7;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

textarea.form-input {
  resize: none;
}

.form-wrap {
  position: relative;
  font-size: 0;
  line-height: 0;
}

.form-wrap + .form-wrap {
  margin-top: 10px;
}

.form-wrap.has-error .form-input {
  border-color: #f5543f;
}

.form-wrap.has-focus .form-input {
  border-color: #2dcb74;
}

.form-validation {
  position: absolute;
  right: 8px;
  top: 0;
  z-index: 11;
  margin-top: 2px;
  font-size: 9px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0;
  color: #f5543f;
  transition: 0.3s;
}

#form-output-global {
  position: fixed;
  bottom: 30px;
  left: 15px;
  z-index: 2000;
  visibility: hidden;
  transform: translate3d(-500px, 0, 0);
  transition: 0.3s all ease;
}

#form-output-global.active {
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 480px) {
  #form-output-global {
    left: 30px;
  }
}

.form-output {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 2px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.form-output.active {
  opacity: 1;
  visibility: visible;
}

.form-output.error {
  color: #f5543f;
}

.form-output.success {
  color: #98bf44;
}

.snackbars {
  padding: 9px 16px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  text-align: left;
  background-color: #151515;
  border-radius: 0;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
  font-size: 14px;
}

.snackbars .icon-xxs {
  font-size: 18px;
}

.snackbars p span:last-child {
  padding-left: 14px;
}

.snackbars-left {
  display: inline-block;
  margin-bottom: 0;
}

.snackbars-right {
  display: inline-block;
  float: right;
  text-transform: uppercase;
}

.snackbars-right:hover {
  text-decoration: underline;
}

@media (min-width: 480px) {
  .snackbars {
    max-width: 540px;
    padding: 12px 15px;
    font-size: 15px;
  }
}
