/* custom vars */
/* colors */
/* orange dark*/
/* lighten colors */
/* dark blue -> green */
/* footer colors */
/* fonts */
/* custom style 1.0
Large desktop
@media (min-width: 1200px) { ... }

Portrait tablet to landscape and desktop
@media (min-width: 768px) and (max-width: 979px) { ... }

Landscape phone to portrait tablet
@media (max-width: 767px) { ... }

Landscape phones and down
@media (max-width: 480px) { ... }
*/
/*background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)), to(rgba(105, 210, 231, 0.2)));
    background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(105, 210, 231, 0.2) 95%);*/
body {
  background: none;
  margin: 0; }

#bookingForm {
  margin: 10px 0;
  background-image: url(../img/layout/booking.gif);
  background-position: right bottom;
  background-repeat: no-repeat; }
  @media only screen and (max-width: smallpx) {
    #bookingForm {
      background-position: right bottom; } }

/* buttons */
.btn {
  -webkit-transition-property: background-color, color, box-shadow;
  -moz-transition-property: background-color, color, box-shadow;
  -o-transition-property: background-color, color, box-shadow;
  transition-property: background-color, color, box-shadow;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  font: 13px "Open Sans", sans-serif;
  background-color: #eeeeee;
  border: medium none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  color: #666666;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6em;
  margin-bottom: 10px !important;
  margin-right: 10px;
  padding: 10px 12px;
  text-align: center;
  vertical-align: middle; }

.btn-primary {
  background-color: #f3a108;
  color: #eeeeee; }

.btn-primary:hover {
  background-color: #f27405;
  color: #eeeeee; }

.book.btn {
  padding: 10px 12px; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 100; }

h1 {
  font-size: 110%;
  font-weight: 200;
  color: #188095;
  /*    color: rgb(243,161,8)*/ }

.form-group label {
  font-family: "Open Sans", sans-serif;
  color: #188095; }
