


  
  .booking-btn:hover {
    background: #ffa012;
    color: #fff;
  }
  
  @media (max-width: 992px) {
    .booking-btn {
      margin: 0 15px 0 0;
      padding: 8px 20px;
      letter-spacing: 1px;
    }
  }
.booking .php-email-form {
    width: 100%;
    padding: 30px;
    background: #fff;
  }
  
  .booking .php-email-form .form-group {
    padding-bottom: 8px;
  }
  
  .booking .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
  }
  
  .booking .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .booking .php-email-form .error-message br+br {
    margin-top: 25px;
  }
  
  .booking .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .booking .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .booking .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
  }
  
  .booking .php-email-form input,
  .booking .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
  }
  
  .booking .php-email-form input {
    height: 44px;
  }
  
  .booking .php-email-form textarea {
    padding: 10px 12px;
  }
  
