
#booking {
  padding-top: 0;
	padding-bottom: 60px;
	padding-right: 0;
	padding-left: 0;
}

#booking .booking-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
}

#booking .booking-form label.error {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#booking .booking-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#booking .booking-form .error-message br + br {
  margin-top: 25px;
}

#booking .booking-form .sent-message {
  display: none;
  color: #fff;
  background: #C8A548;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#booking .booking-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#booking .booking-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #C8A548;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#booking .booking-form input, #booking .booking-form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#booking .booking-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#booking .booking-form input::focus, #booking .booking-form textarea::focus {
  background-color: #C8A548;
}

#booking .booking-form button[type="submit"]:hover {
  background: #13a456;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
