/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Variables
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
|
| This file holds all of the variables for the site.
| 1. Fonts
| 2. Colors
| 3. Color Variations
| 4. Transparent Colors
| 5. Color List
| 6. Screen Sizes / Breakpoints
|
*/
/*
| 1. Fonts
| --------------------------------------------------
| These font variables are used to hold the values for
| the sitewide fonts used on the project.
|
*/
/*
| 2. Colors
| --------------------------------------------------
| The variables are used to store the color theme for
| the site.
|
*/
/*
| 3. Color Variations
| --------------------------------------------------
| These color variations are auto generated by the
| following functions below.
*/
/*
| 4. Transparent Colors
| --------------------------------------------------
| These transparent colors are auto generated by the
| following functions below.
*/
/*
| 5. Colors List
| --------------------------------------------------
| This list is used for building out the various
| classes for using colors accross the site, classes
| for type, background colors, etc.
*/
/*
| 6. Screen Sizes / Breakpoints
| --------------------------------------------------
| Breakpoint variables in pixel widths for media queries.
|
*/
/*
| Extra small mobile
*/
/*
| Mobile
*/
/*
| Tablet
*/
/*
| Middle Sized Devices
*/
/*
| Small Laptop
*/
/*
| Large Laptop / Desktop
*/
/*
| Large Desktop
*/
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Mixins
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
| 1. Resets
| 2. Positioning
|
| Notes: Define patterns of property value pairs, which can then be reused in other rule sets
|
*/
/*
| Font Smoothing
| --------------------------------------------------
|
| Aligns most of the browsers with the same font antialiasing.
|
*/
/*
| Strict Button Style
| --------------------------------------------------
|
| Sets the button style appearance to none for various
| mobile browsers and OS's that will auto change the styling
|
*/
/*
| Positioning
| --------------------------------------------------
|
| The following mixins are used for positioning elements
| via the absolute rule
|
*/
/*
| Transition
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| transition property
|
*/
/*
| Box Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| box-shadow property
|
*/
/*
| Text Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| text-shadow property
|
*/
/*
| SVG Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| filter property
|
*/
/*
| Responsive Media Query Mixins
| --------------------------------------------------
|
| The following mixins are used for applying various
| media queries and specified breakpoints
|
*/
/*
| Transparent Colors
| --------------------------------------------------
|
| Function for creating transparent colors.
|
*/
/*
| Gradient Backgrounds
| --------------------------------------------------
|
| Mixin for creating gradient backgrounds
| @include bg-gradient(fn-transparent-color($color-black, 1), fn-transparent-color($color-black, 0), top, bottom, 0%, 100%);
|
*/
/*
| Rotation
| --------------------------------------------------
|
| Mixin for applying the correct browser prefixes for the
| transform: rotate property
|
*/
/*
| Keyframe animations
| --------------------------------------------------
| Mixin for applying animations to elements
|
*/
#availability-content {
  min-height: 600px;
}
#availability-content h2 {
  width: 100%;
  text-align: center;
  padding: 0 1em 1.5em 1em;
  color: #447b7b;
  font-size: 1.8em;
}
@media (max-width: 1200px) {
  #availability-content h2 {
    font-size: 1.7em;
  }
}
@media (max-width: 900px) {
  #availability-content h2 {
    font-size: 1.5em;
  }
}
@media (max-width: 500px) {
  #availability-content h2 {
    font-size: 1.4em;
  }
}

#availability-toggle {
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  #availability-toggle span {
    display: none;
  }
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    UNITS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#unit-listing {
  margin: 0 auto;
  max-width: 1800px;
  width: 100%;
  /*padding-top: 20px;*/
}
#unit-listing .no-results {
  color: #231f20;
  margin: 1.375em 0 3em 0;
  font-size: 1.5em;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}
#unit-listing .no-results .no-results-boot {
  font-size: 0.75em;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

#unit-listing, #unit-listing a .available-unit-grid {
  text-align: center;
  overflow: hidden;
}

#unit-listing a .available-unit-grid {
  width: 100%;
  display: inline-block;
  position: relative;
  overflow: hidden;
  -webkit-transition: margin 0.75s ease-out;
  -moz-transition: margin 0.75s ease-out;
  -ms-transition: margin 0.75s ease-out;
  -o-transition: margin 0.75s ease-out;
  transition: margin 0.75s ease-out;
  background-color: #ffffff;
  padding: 1.5em;
  border: 1px solid #ffffff;
  -webkit-transition: margin 0.5s, border 0.5s;
  -moz-transition: margin 0.5s, border 0.5s;
  -ms-transition: margin 0.5s, border 0.5s;
  -o-transition: margin 0.5s, border 0.5s;
  transition: margin 0.5s, border 0.5s;
  border-radius: 20px;
}

#unit-listing a:hover .available-unit-grid {
  border: 1px solid #c5b988;
}

#unit-listing .plan__cell.is-expanded .available-unit-grid {
  border: 1px solid #c5b988;
}

#unit-listing a .available-unit-grid .available-unit-image {
  width: 100%;
  height: 250px;
  text-align: center;
  position: relative;
}

#unit-listing a .available-unit-grid img.fpimg {
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1em 0 1em 0;
}

#unit-listing a .available-unit-grid h2 {
  font-size: 2.5em;
  line-height: 1.1em;
  margin: 0;
  padding: 0;
  clear: both;
  color: #4d8b8b;
  min-height: 71px;
  font-family: "RecoletaAltRegular", serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
#unit-listing a .available-unit-grid h2span {
  text-transform: uppercase !important;
  font-size: 2em !important;
}
#unit-listing a .available-unit-grid h3 {
  font-size: 1.125em;
  line-height: 1.5em;
  font-weight: normal;
  margin-bottom: 2em;
  min-height: 70px;
  color: #231f20;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

#unit-listing a .available-unit-grid h4 {
  font-size: 1.125em;
  line-height: 1em;
  font-weight: normal;
  color: #414a42;
  width: 100%;
  max-width: 110px;
  margin: 0 auto;
  padding: 0.5em;
  font-family: "Roboto", sans-serif;
  -webkit-transition: all 0.75s ease-out;
  -moz-transition: all 0.75s ease-out;
  -ms-transition: all 0.75s ease-out;
  -o-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
  margin-bottom: 0.25em;
  font-weight: 500;
  margin-top: 1em;
  text-transform: uppercase;
}
#unit-listing a .available-unit-grid h4.listing-unit-name {
  color: #ffffff;
  text-transform: none;
}

#unit-listing .plan__cell.is-expanded .available-unit-grid h4 {
  opacity: 0;
}

#unit-listing .plan__cell.is-expanded .available-unit-grid h4.listing-unit-name {
  opacity: 1;
}

#unit-listing a .available-unit-grid h4 i {
  -webkit-transition: margin 0.25s ease-out;
  -moz-transition: margin 0.25s ease-out;
  -ms-transition: margin 0.25s ease-out;
  -o-transition: margin 0.25s ease-out;
  transition: margin 0.25s ease-out;
}

#unit-listing a:hover .available-unit-grid h4 i {
  margin-left: 0.25em;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    UNIT DETAIL
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.unit-detail {
  background-color: #ffffff;
  border: 1px solid #c5b988;
  overflow: hidden;
  width: calc(100% - 20px);
  margin: 0 10px 0 10px;
  padding: 4.5em 0 4.5em 0;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .unit-detail {
    padding: 3em 0 3em 0;
  }
}
@media (max-width: 640px) {
  .unit-detail {
    padding: 2em 0 2em 0;
  }
}
.unit-detail.show .left, .unit-detail.show .right, .unit-detail.show .full {
  opacity: 0.2;
}
.unit-detail .left {
  text-align: left;
}
@media (max-width: 768px) {
  .unit-detail .left {
    float: right;
    text-align: center;
  }
}
.unit-detail .right {
  text-align: center;
  padding-left: 50px;
}
@media (max-width: 768px) {
  .unit-detail .right {
    float: left;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .unit-detail .right {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
.unit-detail .right img {
  max-width: 100%;
  height: auto;
  max-height: 800px;
  min-height: 400px;
}
@media (max-width: 768px) {
  .unit-detail .right img {
    /*margin-top: 2em;*/
  }
}
.unit-detail .unit-detail-info {
  /*h2 {
    font-size: 2.5rem;
    line-height: 1.75em;
    margin: 0 0 1.5rem 0;
    padding: 0;
    clear: both;
    color: $color-surrogate;
    font-family: $font-headline;
  }

  .date-needed {
    max-width: 200px;
    margin-bottom: 0.5rem;
  }*/
  /*a, .submit {
    background: $color-secondary;
    color: $color-white;
    width: 100%;
    max-width: 200px;
    display: inline-block;
    font-size: 1.125em;
    padding: 0.75rem 0px 0.75rem 0px;
    margin: 0 0 0.5em 0;
    text-decoration: none;
    text-align: center;
    font-family: $font-main;
    cursor: pointer;
    clear: both;
    text-transform: uppercase;

    &:hover {
      background-color: $color-secondary-darkest;
    }

    @include mq-max(800px) {
      &.ifloor-btn {
        display: none;
      }
    }

  }*/
}
.unit-detail .unit-detail-info h3 {
  font-family: "RecoletaAltRegular", serif;
  color: #4d8b8b;
  font-size: 3.5rem;
  line-height: 1.75rem;
  margin: 0 0 1.75rem 0;
  padding: 0;
  text-transform: none;
  font-weight: 400;
  text-align: left;
  position: relative;
  /*.fancy {
    display: inline-block;
    font-family: $font-headline;
    text-transform: none;
    font-size: 1.75em;
    font-weight: 400;
    padding-right: 5px;
  }*/
  /*@include mq-max(1200px) {
      font-size: 1em;
  }*/
}
@media (max-width: 768px) {
  .unit-detail .unit-detail-info h3 {
    font-size: 3.2em;
    text-align: center;
  }
}
.unit-detail .unit-detail-info h3:after {
  position: absolute;
  content: "";
  height: 2px;
  background-color: #c5b988;
  width: 75%;
  left: 0px;
  bottom: -20px;
}
@media (max-width: 768px) {
  .unit-detail .unit-detail-info h3:after {
    width: 100%;
  }
}
.unit-detail .unit-detail-info h4 {
  font-size: 1.125em;
  line-height: 1.5em;
  font-weight: 300;
  margin-bottom: 1em;
  color: #231f20;
  font-family: "Roboto", sans-serif;
  text-align: left;
}
.unit-detail .unit-detail-info h4.plan-name {
  color: #231f20;
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  .unit-detail .unit-detail-info h4 {
    margin-bottom: 1em;
    text-align: center;
  }
}
.unit-detail .unit-detail-info h4 .upper {
  font-weight: 500;
}
.unit-detail .unit-detail-info p {
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: #c5b988;
  margin-top: 2rem;
  padding: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .unit-detail .unit-detail-info p {
    margin-top: 1em;
  }
}
.unit-detail .unit-detail-info p.small {
  font-size: 0.85rem;
  line-height: 1.25rem;
}
.unit-detail .unit-detail-info img {
  width: 90%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 2em;
  margin-top: 2em;
  clear: both;
  max-width: 350px;
}
@media (max-width: 640px) {
  .unit-detail .unit-detail-info img {
    margin-bottom: 0;
  }
}
.unit-detail .unit-detail-info a.arrowlink {
  font-size: 1.125em;
}
.unit-detail .unit-detail-info a.btnlink {
  display: block;
  width: 150px;
  color: #ffffff;
  background-color: #4d8b8b;
  border-radius: 7px;
  font-family: "RecoletaAltRegular", serif;
  font-weight: 500;
  font-size: 0.9em;
  text-decoration: none;
  text-align: center;
  padding: 0.6em 0 0.55em 0;
  margin: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (max-width: 1024px) {
  .unit-detail .unit-detail-info a.btnlink {
    display: none;
  }
}
.unit-detail .unit-detail-info a.btnlink:hover {
  background-color: #414a42;
}
.unit-detail .full {
  clear: both;
  padding-top: 1em;
}
@media (max-width: 800px) {
  .unit-detail .full {
    border-top: solid 1px #414a42;
  }
}
.unit-detail .full .fp-avail-key {
  width: 100%;
  overflow: hidden;
  display: table;
}
@media (max-width: 800px) {
  .unit-detail .full .fp-avail-key {
    display: none;
  }
}
.unit-detail .full .fp-avail-key .fp-avail-key-item {
  width: 20%;
  font-size: 1em;
  padding: 1em 0 1em 0;
  border-bottom: 1px solid #d6d1d2;
  display: table-cell;
  color: #414a42;
  font-family: "Roboto", sans-serif;
  /*@include mq-max(1080px) {
    &.unit { width: 15% }
    &.available { width: 20%; }
    &.specials { width: 25%; }
    &.price { width: 20%; }
    &.calltoaction { width: 20%; }
  }*/
}
.unit-detail .full .fp-avail-key .fp-avail-key-item.unit {
  width: 20%;
}
.unit-detail .full .fp-avail-key .fp-avail-key-item.available {
  width: 30%;
  display: none;
}
.unit-detail .full .fp-avail-key .fp-avail-key-item.specials {
  width: 30%;
}
.unit-detail .full .fp-avail-key .fp-avail-key-item.price {
  width: 25%;
}
.unit-detail .full .fp-avail-key .fp-avail-key-item.calltoaction {
  width: 25%;
}
.unit-detail .full .avail-info {
  width: 100%;
  overflow: hidden;
  display: table;
}
.unit-detail .full .avail-info .avail-info-item, .unit-detail .full .avail-info .avail-info-mobile {
  width: 20%;
  font-size: 1rem;
  line-height: 1em;
  padding: 0.75em 0 0.75em 0;
  border-bottom: 1px solid #d6d1d2;
  display: table-cell;
  color: #231f20;
}
.unit-detail .full .avail-info .avail-info-item.unit, .unit-detail .full .avail-info .avail-info-mobile.unit {
  width: 20%;
}
.unit-detail .full .avail-info .avail-info-item.available, .unit-detail .full .avail-info .avail-info-mobile.available {
  width: 30%;
}
.unit-detail .full .avail-info .avail-info-item.specials, .unit-detail .full .avail-info .avail-info-mobile.specials {
  width: 30%;
  display: none;
}
.unit-detail .full .avail-info .avail-info-item.price, .unit-detail .full .avail-info .avail-info-mobile.price {
  width: 25%;
}
.unit-detail .full .avail-info .avail-info-item.calltoaction, .unit-detail .full .avail-info .avail-info-mobile.calltoaction {
  width: 25%;
}
@media (max-width: 1080px) {
  .unit-detail .full .avail-info .avail-info-item, .unit-detail .full .avail-info .avail-info-mobile {
    /*&.unit { width: 15% }
    &.available { width: 20%; }
    &.specials { width: 25%; }
    &.price { width: 20%; }
    &.calltoaction { width: 20%; }*/
  }
}
@media (max-width: 800px) {
  .unit-detail .full .avail-info .avail-info-item.unit, .unit-detail .full .avail-info .avail-info-mobile.unit {
    display: none;
  }
  .unit-detail .full .avail-info .avail-info-item.available, .unit-detail .full .avail-info .avail-info-mobile.available {
    display: none;
  }
  .unit-detail .full .avail-info .avail-info-item.specials, .unit-detail .full .avail-info .avail-info-mobile.specials {
    display: none;
  }
  .unit-detail .full .avail-info .avail-info-item.price, .unit-detail .full .avail-info .avail-info-mobile.price {
    display: none;
  }
}
.unit-detail .full .avail-info .avail-info-item.calltoaction, .unit-detail .full .avail-info .avail-info-mobile.calltoaction {
  width: 25%;
  text-align: right;
}
.unit-detail .full .avail-info .avail-info-item.calltoaction a, .unit-detail .full .avail-info .avail-info-item.calltoaction button, .unit-detail .full .avail-info .avail-info-mobile.calltoaction a, .unit-detail .full .avail-info .avail-info-mobile.calltoaction button {
  background: #414a42;
  color: #ffffff;
  border: 0;
  display: inline-block;
  font-size: 1.125em;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  padding: 0.6rem 1rem 0.6rem 1rem;
  margin: 0 0 0 0.5rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  clear: both;
  text-transform: uppercase;
  width: 120px;
}
@media (max-width: 1080px) {
  .unit-detail .full .avail-info .avail-info-item.calltoaction a:first-of-type, .unit-detail .full .avail-info .avail-info-item.calltoaction button:first-of-type, .unit-detail .full .avail-info .avail-info-mobile.calltoaction a:first-of-type, .unit-detail .full .avail-info .avail-info-mobile.calltoaction button:first-of-type {
    margin-bottom: 0.5rem;
  }
}
.unit-detail .full .avail-info .avail-info-item.calltoaction a:hover, .unit-detail .full .avail-info .avail-info-item.calltoaction button:hover, .unit-detail .full .avail-info .avail-info-mobile.calltoaction a:hover, .unit-detail .full .avail-info .avail-info-mobile.calltoaction button:hover {
  background-color: #292f2a;
}
.unit-detail .full .avail-info .avail-info-mobile {
  width: 80%;
  display: none;
  line-height: 1.5em;
}
@media (max-width: 800px) {
  .unit-detail .full .avail-info .avail-info-mobile {
    display: table-cell;
    text-align: left;
  }
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ACCORDIAN NONSENSE
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
body {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.plan__cell {
  float: left;
  position: relative;
  transform: scale(0);
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.plan__cell.active {
  transform: scale(1);
}

.plan--basic {
  padding: 0 10px;
}

.plan__cell.is-collapsed .plan--basic {
  cursor: pointer;
}

.plan__cell.is-expanded .plan--expand {
  max-height: 5000px;
  margin-bottom: 20px;
}

.plan--expand {
  position: relative;
  left: -11px;
  top: 1px;
  padding: 0 10px;
  box-sizing: content-box;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-in-out, margin-bottom 0.1s 0.2s;
}

.plan__cell.is-collapsed .arrow--up {
  height: 20px;
  width: 100%;
}

.plan__cell.is-expanded .arrow--up {
  border-bottom: 15px solid #c5b988;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  height: 0;
  width: 0;
  margin: 5px auto 0;
  position: relative;
  margin-bottom: -1px;
}

.plan__cell.is-expanded .arrow--up .arrow--up--inside {
  border-bottom: 15px solid #fff;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  position: absolute;
  top: 1px;
  z-index: 5;
  left: -15px;
}

.expand__close {
  position: absolute;
  z-index: 100;
  right: 35px;
  top: 15px;
  display: block;
  width: 36px;
  height: 36px;
  overflow: hidden;
  background-color: #c5b988;
  cursor: pointer;
  /*border-top-right-radius: $border-radius;
  border-bottom-left-radius: $border-radius;*/
}
@media only screen and (max-width: 600px) {
  .expand__close {
    right: 25px;
  }
}

.expand__close:hover {
  background-color: #d6cdaa;
}

.expand__close::before,
.expand__close::after,
.expand__close::before,
.expand__close::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 20px;
  top: 50%;
  left: 50%;
  margin: -1px auto 0 -10px;
  background: #231f20;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  -ms-transition: 500ms;
  -o-transition: 500ms;
  transition: 500ms;
}

.expand__close::before,
.expand__close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.expand__close::after,
.expand__close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.expand__close.black::before,
.expand__close.black::after,
.expand__close.black::before,
.expand__close.black::after {
  height: 4px;
  margin-top: -2px;
}

.plan--large {
  max-width: 100%;
  height: auto;
  display: block;
  padding: 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media only screen and (max-width: 600px) {
  .plan__cell {
    width: 100%;
  }
  .plan--expand {
    width: 100%;
    left: 1px;
    top: 1px;
    padding: 0;
  }
}
@media only screen and (max-width: 960px) and (min-width: 601px) {
  .plan__cell {
    width: 50%;
  }
  .plan__cell.single {
    margin-left: 25%;
  }
  .plan__cell:nth-of-type(2n+2) .plan--expand {
    margin-left: -100%;
  }
  .plan__cell:nth-of-type(2n+3) {
    clear: left;
  }
  .plan--expand {
    width: 200%;
  }
  .plan--expand.single {
    margin-left: -50%;
  }
}
@media only screen and (max-width: 1280px) and (min-width: 961px) {
  .plan__cell {
    width: 33.333333%;
  }
  .plan__cell.half {
    width: 50%;
  }
  .plan__cell.single {
    margin-left: 34%;
  }
  .plan__cell:nth-of-type(3n+2) .plan--expand {
    margin-left: -100%;
  }
  .plan__cell:nth-of-type(3n+3) .plan--expand {
    margin-left: -200%;
  }
  .plan__cell:nth-of-type(3n+4) {
    clear: left;
  }
  .plan--expand {
    width: 300%;
  }
  .plan--expand.half {
    width: 200%;
  }
  .plan--expand.single {
    margin-left: -102%;
  }
}
@media only screen and (min-width: 1281px) {
  .plan__cell {
    width: 25%;
  }
  .plan__cell.half {
    width: 50%;
  }
  .plan__cell.third {
    width: 33.333333%;
  }
  .plan__cell.single {
    margin-left: 38%;
  }
  .plan__cell:nth-of-type(4n+2) .plan--expand {
    margin-left: -100%;
  }
  .plan__cell:nth-of-type(4n+3) .plan--expand {
    margin-left: -200%;
  }
  .plan__cell:nth-of-type(4n+4) .plan--expand {
    margin-left: -300%;
  }
  .plan__cell:nth-of-type(4n+5) {
    clear: left;
  }
  .plan--expand {
    width: 400%;
  }
  .plan--expand.half {
    width: 200%;
  }
  .plan--expand.third {
    width: 300%;
  }
  .plan--expand.single {
    margin-left: -152%;
  }
}
.unit-warning {
  margin: 0 auto;
  width: 100%;
  padding: 20px;
  max-width: 1180px;
  background-color: white;
  margin-top: 20px;
}
.unit-warning p {
  margin: 0;
  text-align: center;
}
.unit-warning p a {
  color: #231f20;
  transition: all 0.7s ease-out;
  text-decoration: underline;
}
.unit-warning p a:hover {
  color: #3e3739;
  text-decoration: underline;
}

/* /////////  iFloor Pop-up //////////// */
@media (max-width: 1000px) {
  .fancybox-slide--html {
    padding: 0;
  }
}

@media (max-width: 1000px) {
  div.fancybox-content {
    padding: 0.5em 0;
  }
}

div.fancybox-content {
  width: 85%;
  height: 95%;
  max-width: 1500px;
}

div.fancybox-navigation button.fancybox-button--arrow_left,
div.fancybox-navigation button.fancybox-button--arrow_right {
  opacity: 0 !important;
}

/*# sourceMappingURL=floor-plans.css.map */
