/*Fonts*/
/*Colors*/
/*Mobile Styles*/
/*Gradients*/
html {
  box-shadow: inset 0 0 300px rgba(0, 0, 0, 0.1); }

body {
  font-family: "Droid Sans", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  padding: 0;
  margin: 0;
  background: #FFF; }

#application,
#availability {
  display: block;
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
  padding-bottom: 50px; }

#header {
  display: block;
  background: #000;
  color: #FFF;
  padding: 10px 25px;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: right;
  flex-wrap: nowrap; }

p {
  padding: 0;
  margin: 4px 0; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .1ex;
  color: #0e3847; }

h1 {
  font-size: 40px;
  padding: 20px 0;
  margin: 0;
  text-align: center;
  font-weight: normal; }
  @media (max-width: 800px) {
    h1 {
      font-size: 20px; } }

h2 {
  font-size: 14px;
  padding: 0;
  margin: 0; }
  @media (max-width: 800px) {
    h2 {
      font-size: 12px; } }

h3 {
  font-size: 18px;
  padding: 16px 0 5px 0;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400; }
  @media (max-width: 800px) {
    h3 {
      font-size: 14px; } }

h4 {
  color: #0090B4; }

img {
  max-width: 100%; }

.button {
  color: #FFF;
  background: #0e3847;
  display: inline-block;
  padding: 12px 20px;
  margin: 12px 0;
  border-radius: 3px;
  text-decoration: none; }
  .button:hover {
    background: #0090B4; }

/*Forms*/
label {
  width: 20%;
  display: block;
  float: left;
  padding: 0;
  margin: 0 0 10px 0;
  position: relative;
  font-size: 13px; }
  #property_search_form label {
    width: 16%; }
  @media (max-width: 800px) {
    label {
      width: auto;
      float: none; } }
  table label {
    width: 100%; }

label.full-width {
  width: 100%; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 90%;
  display: block;
  padding: 6px;
  margin: 2px 0 0 0;
  border-radius: 3px;
  border: solid 1px #CCC;
  background: #FFF;
  -webkit-box-sizing: border-box;
  /* For Safari 5.1 to 6.0 */
  -o-box-sizing: border-box;
  /* For Opera 11.1 to 12.0 */
  -moz-box-sizing: border-box;
  /* For Firefox 3.6 to 15 */
  box-sizing: border-box;
  /* Standard syntax */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none; }

select {
  background: url(images/select.png) no-repeat;
  background-position: right center; }
  label.full-width select {
    width: 200px; }

.required {
  color: red; }

input[type="submit"] {
  margin-top: 21px;
  padding: 7px 20px;
  border: none;
  border-radius: 3px;
  color: #FFF;
  transition: all .2s;
  background: #0e3847; }

input[type="submit"]:hover {
  background: #0090B4; }

.req {
  color: red; }

table,
tr,
tbody {
  width: 100%;
  padding: 0;
  margin: 0; }

.search_result {
  display: block;
  height: 80px;
  margin: 0 0 10px 0;
  padding: 10px;
  position: relative;
  font-size: .9em;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); }
  @media (max-width: 800px) {
    .search_result {
      height: auto;
      text-align: center; } }
  .search_result h3 {
    padding-top: 0;
    margin-top: 0; }
  .search_result p {
    color: #FF6E00;
    padding: 3px 0;
    margin: 0; }
  .search_result:hover {
    background: #FFF; }
  .search_result a,
  .search_result a:hover {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none; }
  .search_result img {
    width: 150px;
    height: 80px;
    float: left;
    margin-right: 20px;
    padding: 0; }
    @media (max-width: 800px) {
      .search_result img {
        float: none;
        margin: 0 auto 10px auto; } }
  .search_result ul {
    list-style-type: none;
    padding: 0;
    margin: 0; }
    @media (max-width: 800px) {
      .search_result ul {
        display: inline-block;
        margin: 0 auto; } }
    .search_result ul li {
      display: block;
      float: left;
      margin-right: 30px; }
      @media (max-width: 800px) {
        .search_result ul li {
          float: none;
          margin: 0; } }
  .search_result .more-info-link {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-style: italic;
    color: #008CFF; }
    @media (max-width: 800px) {
      .search_result .more-info-link {
        position: static; } }

/*Unit detail page*/
#unit-detail table {
  width: 100%; }
#unit-detail h3 {
  padding: 25px 0 10px 0; }
#unit-detail ul {
  display: block;
  padding: 0 0 0 20px;
  margin: 0;
  position: relative; }
  #unit-detail ul li {
    line-height: 1.5em; }

#unit-details {
  display: block;
  width: 47%;
  float: left;
  position: relative; }
  @media (max-width: 800px) {
    #unit-details {
      float: none;
      width: auto; } }

#unit-photos {
  display: block;
  width: 47%;
  float: right;
  position: relative; }
  @media (max-width: 800px) {
    #unit-photos {
      float: none;
      width: auto; } }

.thumbnails a {
  display: block;
  float: left;
  width: 70px;
  height: 70px;
  margin: 10px 10px 0 0; }
  .thumbnails a.main-photo {
    display: block;
    float: none;
    width: 100%;
    height: auto;
    margin: 0; }
    .thumbnails a.main-photo img {
      display: block;
      float: none;
      width: 100%;
      height: auto;
      margin: 0; }

.google_map iframe {
  width: 100%;
  height: 300px;
  border: none; }

.soliloquy-pager {
  display: none; }

.hidden {
  display: none !important; }
