.module-floor-plans {
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
}

.no-floor-plans {
  padding: 0 15px;
}

.floor-plans-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 240px;
  padding: 30px 15px;
  background: #f1f1f1;
  z-index: 9;
  border-right: 1px solid #ccc;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transform: translateX(-100%);
}

.toggle-search-sidebar {
  background: red;
  color: #fff;
  border: 0;
  position: absolute;
  top: 15px;
  left: 100%;
  width: 50px;
  height: 50px;
  padding: 4px 0 0;
}

.fp-filter-form fieldset {
  margin-bottom: 1em;
}

.fp-filter-form label {
  display: block;
}

.fp-filter-form label + label {
  font-weight: normal;
}

.fp-filter-form .select-wrapper {
  display: block;
  background: #fff;
  background-image: url(../images/Layout1/down-chevron.png);
  background-repeat: no-repeat;
  background-position: top 9px right 9px;
}

.fp-filter-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 100%;
  width: 100%;
  background-color: transparent;
  line-height: 2;
}

.toggle-search-sidebar:active,
.toggle-search-sidebar:focus {
  outline: 0;
}

.floor-plans-wrapper {
  padding: 30px 15px;
}

.floor-plan-hidden {
  display: none;
}

.floor-plan-item {
  margin-bottom: 2em;
  border: 1px solid #ccc;
}

.floor-plan-item::after {
  content: '';
  display: table;
  clear: both;
}

.fp-image {
  padding: 20px 40px;
  background: #f1f1f1;
  text-align: center;
  border-bottom: 1px solid #ccc;
  margin-bottom: 1em;
}

.fp-image img {
  border: 1px solid #ccc;
  width: 180px;
  max-width: 100%;
  margin-bottom: .5rem;
}

.fp-details {
  padding-left: 15px;
  padding-right: 15px;
}

.fp-title {
  margin: 0 0 1em;
}

.details {
  border-top: 1px solid #ccc;
  margin: 0 -15px;
  padding: 0;
}

.details li {
  list-style: none;
  line-height: 2;
  font-size: 0.85em;
  padding: 8px 15px 0;
}

.details li + li {
  border-top: 1px solid #ccc;
}

.details strong {
  text-transform: uppercase;
  margin-right: 5px;
}

.fp-desc {
  display: none;
}

.floor-plan-item__apply {
  text-transform: uppercase;
  font-size: .65rem;
  letter-spacing: 1px;
  line-height: 1.25;
  display: block;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .5);
  color: #fff;
  background: red;
  padding: .5rem;
}

.floor-plan-item__apply:hover {
  color: #fff;
}

.view-details-link {
  display: block;
  margin: 0 -15px;
  background: red;
  color: #fff;
  text-align: center;
  padding: 8px 15px;
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
  .module-floor-plans {
    min-height: 100vh;
  }
  .toggle-search-sidebar {
    display: none;
  }

  .floor-plans-sidebar {
    transform: translateX(0);
  }

  .floor-plans-wrapper {
    padding-left: 255px;
  }

  .floor-plan-item {
    background: #f1f1f1;
  }

  .fp-image {
    width: 20%;
    float: left;
    border: 0;
    margin-bottom: 0;
  }

  .fp-details {
    width: 80%;
    float: left;
    padding-top: 20px;
  }

  .details {
    border: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1em;
  }

  .details::after {
    content: '';
    display: table;
    clear: both;
  }

  .details li {
    width: 25%;
    float: left;
    padding: 8px 0;
  }

  .details li + li {
    border-top: 0;
  }

  .details strong {
    display: block;
    border-bottom: 1px solid #ccc;
    font-weight: normal;
    opacity: 0.5;
    margin: 0;
  }

  .fp-desc {
    display: block;
    font-size: 0.85em;
    font-style: italic;
    opacity: 0.5;
  }

  .view-details-link {
    display: inline-block;
    line-height: 1.5;
    float: right;
    margin-bottom: 20px;
  }
}

@media (min-width: 1200px) {

}