@font-face {
  font-family: 'pt_sansregular';
  src: url("/css/fonts/ptsansreg-webfont.eot");
  src: url("/css/fonts/ptsansreg-webfont.eot?#iefix") format("embedded-opentype"), url("/css/fonts/ptsansreg-webfont.woff") format("woff"), url("/css/fonts/ptsansreg-webfont.ttf") format("truetype"), url("/css/fonts/ptsansreg-webfont.svg#pt_sansregular") format("svg");
  font-weight: normal;
  font-style: normal; }

/********************************************************************/
/*                          GLOBAL STYLES                           */
/********************************************************************/

/* See http://stackoverflow.com/a/16575811 for usage of .notransition */
.notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  -ms-transition: none !important;
  transition: none !important;
}

/* Make widths behave as you expect! via @mikehall314 & http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    font-family: "PT Sans",sans-serif;
}
A {
    color: inherit;
    text-decoration: none;
}
A IMG {
    /* Remove annoying border that MSIE gives to images in an A tag */
    border: none;
}

BODY {
    margin: 0;
    padding: 0;
    background-color: #000;
    background-image: url('https://gardenplannerwebsites.azureedge.net/bbh/website/BBH_BG_90.jpg');
    background-position: center center;
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    transition-delay: 0s;
    transition-duration: 1s;
    transition-property: background-position;
    transition-timing-function: default;
}
@media (min-width: 1024px) {
    BODY {
        background-position: top center;
    }
}
@media (min-width: 1600px) {
    BODY {
        background-position: center -100px;
    }
}
@media (max-width: 1399px) {
    BODY {
        background-size: 110%;
    }
}
@media (max-width: 1199px) {
    BODY {
        background-size: 135%;
    }
}
@media (max-width: 999px) {
    BODY {
        background-size: 180%;
    }
}
@media (max-width: 1599px) {
    BODY {
        background-position: top center;
    }
}
HTML {
    height: 100%;
    width: 100%;
}

#panels {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  transition-delay: 0s;
  transition-duration: 0.5s;
  transition-property: top;
  transition-timing-function: default;
}
.panel {
  position: absolute;
  height: 100%;
  width: 100%;
  display: none;

}
/* In iOS Safari at least, the height of the viewport changes as soon as you scroll (address bar and footer shrink) */
/* So we use the 'vh' unit to acheive a 'fill the window' effect on these browsers */
/* http://caniuse.com/#feat=viewport-units */
/* Really this one does want device detection, but I am using device width as a crude proxy */
/* This should catch everything from iPad down. */
/* It may also catch some netbooks etc, but that's OK, it's not going to break anything */
@media only screen 
  and (max-device-width: 1024px) {
  .panel {
    height: 100vh;
  }
}


.formButton {
  cursor: pointer;
  margin-top: 20px;
  min-width: 150px;
  height: 40px;
  display: block;
  border: 0;
  border-radius: 10px;
  font-size: 14pt;
  background: #E3B25F;
  color: #FFF;
}
.formButton.close {
  background: #AA4244;
}
.formButton.submit {
  background: #609B57;
}

/********************************************************************/
/*                       AUTOCOMPLETE STYLES                        */
/********************************************************************/
.autocomplete-suggestions { border: 1px solid #999; background: #FFF; overflow: auto; }
.autocomplete-suggestion { padding: 2px 5px; white-space: nowrap; overflow: hidden; }
.autocomplete-selected { background: #F0F0F0; }
.autocomplete-suggestions strong { font-weight: normal; color: #3399FF; }
.autocomplete-group { padding: 2px 5px; }
.autocomplete-group strong { display: block; border-bottom: 1px solid #000; }

/* All phones Landscape */
@media (max-device-width : 767px) and (orientation: landscape) {
  body {
    background-position: center;
  }
}