/* ========================================================================
   #CORE
   ======================================================================== */
/* ==========================================================================
   #VARIABLES
   ========================================================================== */
/* ==========================================================================
   #COLORS
   ========================================================================== */
/* ==========================================================================
   #VARIABLES
   ========================================================================== */
/* ==========================================================================
   #FONT-SIZE
   ========================================================================== */
/**
 * Generates a rem font-size (with pixel fallback) and a baseline-compatible
 * unitless line-height from a pixel font-size value.
 *
 * @param {Number} $font-size - pixel font size (e.g. 16px)
 * @param {Number|String} $line-height - explicit line-height or "auto"
 * @param {Number} $modifier - grid line modifier (integer, optional)
 * @param {Boolean} $important - apply !important
 *
 * Examples:
 *   @include font-size(18px);
 *   @include font-size(16px, 1);
 *   @include font-size(24px, $modifier: +2);
 *   @include font-size(24px, $modifier: -1);
 */
/* ==========================================================================
   #MIXINS
   ========================================================================== */
/**
 * Apply common styling
 *
 * Example:
 *   @include card-style();
 */
/**
 * Convert a Sass color to a comma-separated RGB string.
 * Use for defining CSS variables like --color-primary-rgb.
 *
 * Example:
 *   background-color: rgba(var(--card-bg-rgb), 0.85);
 */
/**
 * Micro clearfix utility.
 * Use on elements that need to contain floated children.
 *
 * Example:
 *   @include clearfix();
 */
/**
 * Clamp text to a fixed number of lines.
 *
 * @param {Number} $lines - number of lines to show
 * @param {String} $text-overflow - overflow style (default: ellipse)
 *
 * Example:
 *   @include vertical-trim(3);
 */
/**
 * Maintain a fixed aspect ratio.
 *
 * @param {Number} $width
 * @param {Number} $height
 *
 * Example:
 *   @include aspect-ratio(16, 9);
 */
/**
 * Shorthand for transition.
 *
 * @param {String} $attribute - property to transition
 * @param {Time} $time - duration
 * @param {Time} $delay - delay
 * @param {String} $ease - easing function
 */
/**
 * Vertical gradient from top to bottom.
 */
/**
 * Horizontal gradient from left to right.
 */
/**
 * Toggle visibility with opacity and visibility.
 */
/**
 * Apply a blur effect.
 *
 * @param {Number} $radius - blur radius (unitless, px will be applied)
 */
/**
 * Visually hide an element while keeping it accessible to screen readers.
 *
 * Applies a set of styles that remove the element from visual flow but
 * retain its accessibility.
 */
/**
 * Hide element when printing.
 * Use on elements that should not appear in print styles.
 *
 * Example:
 *   @include hide-for-print();
 */
/**
 * Hides the element's scrollbar
 *
 * Example:
 *   @include hide-scrollbar();
 */
/* ==========================================================================
   #FORMS
   ========================================================================== */
form p {
  margin: 0;
}

label {
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 6px;
}

input, input[type=submit],
input[type=button],
button,
textarea,
select {
  background: white;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  border: none;
  padding: 6px;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  border-radius: 3px;
  filter: none;
  outline: none;
  box-shadow: inset 0 0 0 1px #808080;
  transition: all 0.25s ease 0s;
  appearance: none !important;
}
input.error,
button.error,
textarea.error,
select.error {
  border: none;
  box-shadow: inset 0 0 0 2px #aa0000;
}
input.hover,
button.hover, input:hover,
button:hover,
textarea.hover,
textarea:hover,
select.hover,
select:hover {
  box-shadow: inset 0 0 0 1px #808080, 0 0 3px var(--color-link-hover);
}
input.focus,
button.focus, input:focus,
button:focus,
textarea.focus,
textarea:focus,
select.focus,
select:focus {
  box-shadow: inset 0 0 0 2px var(--color-link-hover);
}
.disabled input,
.disabled button, input:disabled,
button:disabled, input.disabled,
button.disabled,
.disabled textarea,
textarea:disabled,
textarea.disabled,
.disabled select,
select:disabled,
select.disabled {
  border: none;
  pointer-events: none;
  background: #f2f2f2;
  color: #666666;
  box-shadow: inset 0 0 0 1px #b3b3b3;
  filter: grayscale(100);
  opacity: 0.8;
}

input::-ms-clear, input[type=submit]::-ms-clear,
input[type=button]::-ms-clear,
button::-ms-clear,
select::-ms-expand {
  display: none;
}

::placeholder {
  font-weight: 300;
  font-style: italic;
  color: #999999;
  font-family: Helvetica, sans-serif;
}

input[type=submit],
button[type=submit],
input[type=button],
button[type=button],
button {
  cursor: pointer;
  min-width: 0;
  transition: all 0.25s ease 0s;
  transition-property: color, background-color;
  border: none;
  box-shadow: none;
  appearance: none !important;
}

input[type=checkbox],
button[type=checkbox],
input[type=radio],
button[type=radio] {
  min-width: 0;
  position: relative;
  margin: 0 12px 0 0;
  overflow: hidden;
  float: left;
  width: 1.4rem;
  height: 1.4rem;
  background: transparent;
  display: inline-block;
  border-radius: 50px;
  appearance: none !important;
}
input[type=checkbox]:checked,
button[type=checkbox]:checked,
input[type=radio]:checked,
button[type=radio]:checked {
  background: url("../img/dot.svg") center center no-repeat transparent !important;
  background-size: 24px 24px;
}
input[type=checkbox] + label,
button[type=checkbox] + label,
input[type=radio] + label,
button[type=radio] + label {
  font-weight: 400;
}

input[type=checkbox],
button[type=checkbox] {
  content: "";
  color: #333333;
  line-height: 1.15em;
  text-align: center;
  font-size: 20px;
  background: none;
  background-size: contain;
  border-radius: 3px;
}
input[type=checkbox]:checked,
button[type=checkbox]:checked {
  background: url("../img/check.svg") center center no-repeat transparent !important;
  background-size: 24px 24px;
}

select {
  background: url("../img/chevron-down.svg") 100% center no-repeat;
  background-size: 30px 30px;
  padding-right: 30px;
  width: auto;
  display: block;
  appearance: none !important;
}
@media (min-width: 46.25em) {
  select {
    width: auto;
  }
}
select .o-content {
  min-width: 30%;
}

input.search,
button.search {
  background: url("../img/search.svg") calc(100% - 10px) center no-repeat;
  background-size: 20px 20px;
  padding-right: 35px;
}

/* ==========================================================================
   #GLOBAL PAGE VARIABLES
   ========================================================================== */
:root {
  --color-primary: #004a8c;
  --color-primary-rgb: 0, 74, 140;
  --color-secondary: #3498DB;
  --color-link: #004a8c;
  --color-link-hover: #3498DB;
  --button-color-primary: #004a8c;
  --button-color-primary-hover: #3498DB;
  --button-color-secondary-hover: rgb(225.2719665272, 239.9163179916, 249.7280334728);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

/* ==========================================================================
   #COLUMNS
   ========================================================================== */
/**
 * Applies flex-based columns to list elements.
 * Items flow left-to-right and wrap as needed.
 *
 * Uses modifier classes like `.o-col-2--desktop` to define column count per breakpoint.
 * Supports vertical and horizontal spacing using `gap`.
 */
.o-col {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.o-col > .o-col__item {
  box-sizing: border-box;
  flex: 0 0 100%;
  width: 100%;
}

@media (min-width: 20em) {
  .o-col-1--mobile {
    --col-count: 1;
  }
  .o-col-1--mobile > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 20em) {
  .o-col-2--mobile {
    --col-count: 2;
  }
  .o-col-2--mobile > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 20em) {
  .o-col-3--mobile {
    --col-count: 3;
  }
  .o-col-3--mobile > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 20em) {
  .o-col-4--mobile {
    --col-count: 4;
  }
  .o-col-4--mobile > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 20em) {
  .o-col-5--mobile {
    --col-count: 5;
  }
  .o-col-5--mobile > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 20em) {
  .o-col-6--mobile {
    --col-count: 6;
  }
  .o-col-6--mobile > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 26.25em) {
  .o-col-1--phablet {
    --col-count: 1;
  }
  .o-col-1--phablet > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 26.25em) {
  .o-col-2--phablet {
    --col-count: 2;
  }
  .o-col-2--phablet > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 26.25em) {
  .o-col-3--phablet {
    --col-count: 3;
  }
  .o-col-3--phablet > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 26.25em) {
  .o-col-4--phablet {
    --col-count: 4;
  }
  .o-col-4--phablet > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 26.25em) {
  .o-col-5--phablet {
    --col-count: 5;
  }
  .o-col-5--phablet > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 26.25em) {
  .o-col-6--phablet {
    --col-count: 6;
  }
  .o-col-6--phablet > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 46.25em) {
  .o-col-1--tablet {
    --col-count: 1;
  }
  .o-col-1--tablet > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 46.25em) {
  .o-col-2--tablet {
    --col-count: 2;
  }
  .o-col-2--tablet > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 46.25em) {
  .o-col-3--tablet {
    --col-count: 3;
  }
  .o-col-3--tablet > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 46.25em) {
  .o-col-4--tablet {
    --col-count: 4;
  }
  .o-col-4--tablet > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 46.25em) {
  .o-col-5--tablet {
    --col-count: 5;
  }
  .o-col-5--tablet > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 46.25em) {
  .o-col-6--tablet {
    --col-count: 6;
  }
  .o-col-6--tablet > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 61.25em) {
  .o-col-1--desktop {
    --col-count: 1;
  }
  .o-col-1--desktop > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 61.25em) {
  .o-col-2--desktop {
    --col-count: 2;
  }
  .o-col-2--desktop > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 61.25em) {
  .o-col-3--desktop {
    --col-count: 3;
  }
  .o-col-3--desktop > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 61.25em) {
  .o-col-4--desktop {
    --col-count: 4;
  }
  .o-col-4--desktop > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 61.25em) {
  .o-col-5--desktop {
    --col-count: 5;
  }
  .o-col-5--desktop > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 61.25em) {
  .o-col-6--desktop {
    --col-count: 6;
  }
  .o-col-6--desktop > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 81.25em) {
  .o-col-1--wide {
    --col-count: 1;
  }
  .o-col-1--wide > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 81.25em) {
  .o-col-2--wide {
    --col-count: 2;
  }
  .o-col-2--wide > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 81.25em) {
  .o-col-3--wide {
    --col-count: 3;
  }
  .o-col-3--wide > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 81.25em) {
  .o-col-4--wide {
    --col-count: 4;
  }
  .o-col-4--wide > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 81.25em) {
  .o-col-5--wide {
    --col-count: 5;
  }
  .o-col-5--wide > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

@media (min-width: 81.25em) {
  .o-col-6--wide {
    --col-count: 6;
  }
  .o-col-6--wide > .o-col__item {
    flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
    width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  }
}

.o-col-1 {
  --col-count: 1;
}
.o-col-1 > .o-col__item {
  flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
}

.o-col-2 {
  --col-count: 2;
}
.o-col-2 > .o-col__item {
  flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
}

.o-col-3 {
  --col-count: 3;
}
.o-col-3 > .o-col__item {
  flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
}

.o-col-4 {
  --col-count: 4;
}
.o-col-4 > .o-col__item {
  flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
}

.o-col-5 {
  --col-count: 5;
}
.o-col-5 > .o-col__item {
  flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
}

.o-col-6 {
  --col-count: 6;
}
.o-col-6 > .o-col__item {
  flex: 0 0 calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
  width: calc((100% - (var(--col-count) - 1) * 12px) / var(--col-count));
}

/* ==========================================================================
   #IMAGES
   ========================================================================== */
.o-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}
.o-image:before {
  content: "" !important;
  display: block;
  height: 0;
}
.o-image .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.o-image .content img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.o-image.o-image--auto .content {
  position: static;
  width: auto;
  height: auto;
}

.o-image--border, main .o-content img:not([src*=".png"]) {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: 4px solid white;
}

.o-image--contain .content {
  text-align: center;
  background: rgba(255, 255, 255, 0.25);
}
.o-image--contain .content img {
  width: auto;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}

.o-image--inline {
  display: inline-block;
  width: calc(20% - 4px);
}

/* ==========================================================================
   #LAYOUT
   ========================================================================== */
/**
 * Grid-like layout system.
 *
 * The layout object provides us with a column-style layout system. This file
 * contains the basic structural elements, but classes should be complemented
 * with width utilities, for example:
 *
 *   <div class="o-layout">
 *     <div class="o-layout__item  u-1/2">
 *     </div>
 *     <div class="o-layout__item  u-1/2">
 *     </div>
 *   </div>
 *
 * The above will create a two-column structure in which each column will
 * fluidly fill half of the width of the parent. We can have more complex
 * systems:
 *
 *   <div class="o-layout">
 *     <div class="o-layout__item  u-1/1  u-1/3--medium">
 *     </div>
 *     <div class="o-layout__item  u-1/2  u-1/3--medium">
 *     </div>
 *     <div class="o-layout__item  u-1/2  u-1/3--medium">
 *     </div>
 *
 * The above will create a system in which the first item will be 100% width
 * until we enter our medium breakpoint, when it will become 33.333% width. The
 * second and third items will be 50% of their parent, until they also become
 * 33.333% width at the medium breakpoint.
 *
 * We can also manipulate entire layout systems by adding a series of modifiers
 * to the `.o-layout` block. For example:
 *
 *   <div class="o-layout  o-layout--reverse">
 *
 * This will reverse the displayed order of the system so that it runs in the
 * opposite order to our source, effectively flipping the system over.
 *
 *   <div class="o-layout  o-layout--[right|center]">
 *
 * This will cause the system to fill up from either the centre or the right
 * hand side. Default behaviour is to fill up the layout system from the left.
 *
 * There are plenty more options available to us: explore them below.
 */
/* Default/mandatory classes
   ========================================================================== */
/**
 * 1. Allows us to use the layout object on any type of element.
 * 2. We need to defensively reset any box-model properties.
 * 3. Use the negative margin trick for multi-row grids:
 *    http://csswizardry.com/2011/08/building-better-grid-systems/
 */
.o-layout {
  display: block; /* [1] */
  margin: 0; /* [2] */
  padding: 0; /* [2] */
  list-style: none; /* [1] */
  margin-left: -24px; /* [3] */
  font-size: 0;
}

.o-layout__item {
  box-sizing: border-box; /* [1] */
  display: inline-block; /* [2] */
  vertical-align: top; /* [3] */
  width: 100%; /* [4] */
  padding-left: 24px; /* [5] */
  font-size: 16px; /* [6] */
  font-size: 1rem;
}

/* Gutter size modifiers
   ========================================================================== */
.o-layout--flush {
  margin-left: 0;
}
.o-layout--flush > .o-layout__item {
  padding-left: 0;
}

.o-layout--tiny {
  margin-left: -6px;
}
.o-layout--tiny > .o-layout__item {
  padding-left: 6px;
}

.o-layout--small {
  margin-left: -12px;
}
.o-layout--small > .o-layout__item {
  padding-left: 12px;
}

.o-layout--large {
  margin-left: -48px;
}
.o-layout--large > .o-layout__item {
  padding-left: 48px;
}

.o-layout--huge {
  margin-left: -96px;
}
.o-layout--huge > .o-layout__item {
  padding-left: 96px;
}

/* Vertical alignment modifiers
   ========================================================================== */
.o-layout--middle > .o-layout__item {
  vertical-align: middle;
}

.o-layout--bottom > .o-layout__item {
  vertical-align: bottom;
}

.o-layout--stretch {
  display: flex;
  flex-wrap: wrap;
}
.o-layout--stretch > .o-layout__item {
  display: flex;
}
.o-layout--stretch.o-layout--center {
  justify-content: center;
}
.o-layout--stretch.o-layout--right {
  justify-content: flex-end;
}
.o-layout--stretch.o-layout--left {
  justify-content: flex-start;
}

/* Fill order modifiers
   ========================================================================== */
.o-layout--center {
  text-align: center;
}
.o-layout--center > .o-layout__item {
  text-align: left;
}

.o-layout--right {
  text-align: right;
}
.o-layout--right > .o-layout__item {
  text-align: left;
}

.o-layout--left {
  text-align: left;
}
.o-layout--left > .o-layout__item {
  text-align: left;
}

.o-layout--reverse {
  direction: rtl;
}
.o-layout--reverse > .o-layout__item {
  direction: ltr;
}

/* Auto-widths modifier
   ========================================================================== */
.o-layout--auto > .o-layout__item {
  width: auto;
}

/* ==========================================================================
   #WRAPPER
   ========================================================================== */
/**
 * Page-level constraining and wrapping elements.
 */
.o-wrapper {
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}
.o-wrapper:after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}
@media (max-width: 46.24em) {
  .o-wrapper {
    padding-right: 12px;
    padding-left: 12px;
  }
}

.o-wrapper--wide {
  max-width: 1600px;
  margin: auto;
}

.o-wrapper--narrow {
  max-width: 800px;
  margin: auto;
}

.o-wrapper--full {
  max-width: none;
  margin: auto;
}

.o-wrapper--flush {
  max-width: none;
  margin: auto;
  padding: 0;
}

/* ==========================================================================
   #TABS
   ========================================================================== */
.o-tabs {
  padding: 0 12px;
  margin: 0 -12px 24px;
  font-size: 0;
  overflow: auto;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
  box-shadow: inset 0 -1px 0 #d9d9d9;
  white-space: nowrap;
  position: relative;
}
.o-tabs::-webkit-scrollbar {
  display: none;
}
@media (min-width: 26.25em) {
  .o-tabs {
    padding: 0 12px;
    margin: 0;
  }
}

@media (min-width: 26.25em) {
  .o-tabs--stretch {
    display: flex;
  }
}

.o-tabs__item {
  list-style: none;
  display: inline-block;
  margin-left: 6px;
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
}
@media (min-width: 26.25em) {
  .o-tabs__item {
    margin-left: 0;
    margin-right: 6px;
  }
}
.o-tabs__item:last-child {
  margin-right: 0;
}
@media (min-width: 26.25em) {
  .o-tabs--stretch .o-tabs__item {
    flex: 1;
  }
}
.o-tabs__item a {
  display: block;
  text-align: center;
  padding: 12px;
  background: white;
  color: #333333;
  text-decoration: none;
  border: 1px solid #d9d9d9;
  background: #f2f2f2;
  transition: all 0.25s ease 0s;
}
.o-tabs__item a:hover {
  background: var(--button-color-secondary-hover);
}
.o-tabs__item.active a {
  transition: none;
  color: var(--color-link);
  background: white;
  pointer-events: none;
  border-bottom-color: white;
}

.o-tabs-panel {
  display: none;
  padding: 12px;
  margin-bottom: 24px;
}
.o-tabs-panel.active {
  display: block;
}
@media print {
  .o-tabs-panel {
    display: block;
  }
}

/* ==========================================================================
   #TRUNCATE
   ========================================================================== */
/**
 * Truncates sibling elements after a `.truncate` marker within `.o-truncate`.
 *
 * Any siblings following the `.truncate` element will be hidden by default.
 * Removing the `.truncate` class (via JS or otherwise) will reveal the hidden content.
 *
 * This is useful for previewing a limited set of items and showing the rest
 * on interaction (e.g. "View All" button).
 */
.o-truncate .truncate ~ * {
  display: none;
}

/* ==========================================================================
   #BANNERS
   ========================================================================== */
.rs-banner {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
  border-radius: 3px;
  z-index: 99;
  padding: 6px 12px;
  background: #ffffff;
  text-align: center;
  max-width: 75%;
  pointer-events: none;
}

@media (min-width: 46.25em) {
  .rs-banner--large {
    padding: 12px 24px;
  }
}

/* ==========================================================================
   #BOOKMARK
   ========================================================================== */
.rs-bookmark {
  transition: all 0.25s ease 0s;
}
.rs-bookmark:hover {
  transform: scale(1.25);
  color: var(--color-link-hover);
}
.rs-bookmark:active {
  transform: scale(1);
  color: var(--color-link-hover);
}
.rs-bookmark .active {
  color: #D9534F;
  display: none;
}
.rs-bookmark.bookmarked .active {
  display: inline;
}
.rs-bookmark.bookmarked .inactive {
  display: none;
}

/* ==========================================================================
   #BUTTONS
   ========================================================================== */
.rs-btn, .rs-pager .page-numbers, .rs-pager .prev,
.rs-pager .next {
  padding: 12px 24px;
  margin: 0 6px 12px 0;
  border-radius: 6px;
  text-decoration: none !important;
  display: inline-block;
  text-align: center;
  color: inherit;
  box-sizing: border-box;
  transition: all 0.25s ease 0s;
}
@media (max-width: 26.24em) {
  .rs-btn, .rs-pager .page-numbers, .rs-pager .prev,
  .rs-pager .next {
    width: 100%;
  }
}
.rs-btn:last-of-type, .rs-pager .page-numbers:last-of-type, .rs-pager .prev:last-of-type,
.rs-pager .next:last-of-type {
  margin-right: 0;
}
.rs-btn:focus-visible, .rs-pager .page-numbers:focus-visible, .rs-pager .prev:focus-visible,
.rs-pager .next:focus-visible {
  outline: 2px solid var(--color-link-hover);
}

.rs-btn--solid {
  background: var(--button-color-primary);
  color: white;
}
.rs-btn--solid:hover {
  background: var(--button-color-primary-hover);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}
.rs-btn--solid:active {
  background: none;
  box-shadow: none;
}

.rs-btn--stroke, .rs-pager .page-numbers, .rs-pager .prev,
.rs-pager .next {
  border: 1px solid var(--button-color-primary);
  color: var(--button-color-primary);
  background: white;
}
.rs-btn--stroke:hover, .rs-pager .page-numbers:hover, .rs-pager .prev:hover,
.rs-pager .next:hover {
  background: var(--button-color-secondary-hover);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}
.rs-btn--stroke:active, .rs-pager .page-numbers:active, .rs-pager .prev:active,
.rs-pager .next:active {
  background: none;
  box-shadow: none;
}

.rs-btn--shadow {
  color: var(--color-link);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}
.rs-btn--shadow:hover {
  background: var(--button-color-secondary-hover);
}
.rs-btn--shadow:active {
  background: none;
  box-shadow: none;
}

.rs-btn--text {
  color: var(--color-link);
}
.rs-btn--text:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
  color: var(--button-color-primary);
}
.rs-btn--text:active {
  background-color: var(--button-color-secondary-hover);
  box-shadow: none;
}

.rs-btn--icon {
  padding: 0.6em;
  width: auto !important;
  margin: 0;
}
.rs-btn--icon:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
  color: var(--button-color-primary);
}
.rs-btn--icon:active {
  background-color: var(--button-color-secondary-hover);
  box-shadow: none;
}

.rs-btn--large {
  padding: 18px 48px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}

.rs-btn--small, .rs-pager .page-numbers {
  padding: 6px 18px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.rs-btn--tiny {
  padding: 3px 8px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.rs-btn--wide {
  width: 100%;
}
@media (min-width: 26.25em) {
  .rs-btn--wide {
    width: auto;
    min-width: 50%;
  }
}

.rs-btn--full {
  width: 100%;
}

.ajax-loading .rs-btn--ajax {
  pointer-events: none;
  opacity: 0.35;
}

.rs-btn-group {
  box-shadow: inset 0 0 0 1px #b3b3b3;
  border-radius: 6px;
  padding: 3px;
  display: inline-block;
}
.rs-btn-group .rs-btn, .rs-btn-group .rs-pager .page-numbers, .rs-pager .rs-btn-group .page-numbers, .rs-btn-group .rs-pager .prev, .rs-pager .rs-btn-group .prev,
.rs-btn-group .rs-pager .next,
.rs-pager .rs-btn-group .next {
  border-radius: 3px;
  box-shadow: none !important;
  margin: 0;
  width: auto;
}
.rs-btn-group .rs-btn:hover, .rs-btn-group .rs-pager .page-numbers:hover, .rs-pager .rs-btn-group .page-numbers:hover, .rs-btn-group .rs-pager .prev:hover, .rs-pager .rs-btn-group .prev:hover,
.rs-btn-group .rs-pager .next:hover,
.rs-pager .rs-btn-group .next:hover {
  background: var(--button-color-secondary-hover);
  color: var(--button-color-primary);
}
.rs-btn-group .rs-btn.active, .rs-btn-group .rs-pager .active.page-numbers, .rs-pager .rs-btn-group .active.page-numbers, .rs-btn-group .rs-pager .active.prev, .rs-pager .rs-btn-group .active.prev,
.rs-btn-group .rs-pager .active.next,
.rs-pager .rs-btn-group .active.next {
  background: var(--button-color-primary);
  color: white !important;
  pointer-events: none;
}

/* ==========================================================================
   #BUTTONS
   ========================================================================== */
.rs-contact-card {
  box-sizing: border-box;
  width: 100%;
  padding: 12px;
  margin-bottom: 24px;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
}
.rs-contact-card.rs-contact-card--compact {
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rs-contact-card__photo {
  border-radius: 6px;
  border: 1px solid #d9d9d9;
}
.rs-contact-card--compact .rs-contact-card__photo {
  margin-bottom: 12px;
}

.rs-contact-card__details {
  margin-bottom: 12px;
}
@media (min-width: 46.25em) {
  .rs-contact-card__details small {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.rs-contact-card__form.ajax-loading {
  opacity: 0.35;
}
.rs-contact-card__form.ajax-loading * {
  pointer-events: none;
}
.rs-contact-card__form p {
  line-height: 1.6;
  margin-bottom: 1.5em;
}

.rs-contact-card__form-confirmation {
  display: none;
}
.success .rs-contact-card__form-confirmation {
  display: block;
}

.rs-contact-card__form-failure {
  display: none;
}
.fail .rs-contact-card__form-failure {
  display: block;
}

.rs-contact-card__name {
  font-weight: 600;
  margin: 0;
  color: var(--color-link);
}
.rs-contact-card--compact .rs-contact-card__name {
  text-align: center;
}
.rs-contact-card__name small {
  color: #333333;
  font-weight: 400;
}
.rs-contact-card__name a {
  color: inherit;
  text-decoration: none;
}

.rs-contact-card--compact .rs-contact-card__role {
  text-align: center;
}

.rs-contact-card__description p {
  line-height: 24px;
}

/* ==========================================================================
   #PAGE
   ========================================================================== */
.rs-field-item {
  margin-bottom: 12px;
}
.rs-field-item label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
}
.rs-field-item .required {
  color: #aa0000;
}
.rs-field-item input, .rs-field-item textarea {
  padding: 12px;
}

/* ==========================================================================
   #FOOTER DISCLAIMER
   ========================================================================== */
.rs-footer-disclaimer {
  padding: 24px 0;
  background: #f2f2f2;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
}

/* ==========================================================================
   #PAGE
   ========================================================================== */
.rs-gallery {
  margin-bottom: 24px;
  padding: 6px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
}

.rs-gallery__main-image {
  border-radius: 6px;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
}

.rs-gallery__navigation {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 6px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  transform: translateY(-50%);
  transition: all 0.25s ease 0s;
}
@media (hover) {
  .rs-gallery__navigation {
    opacity: 0;
  }
}
@media (min-width: 46.25em) {
  .rs-gallery__navigation {
    padding: 12px;
  }
}
.rs-gallery__main-image:hover .rs-gallery__navigation {
  opacity: 1;
}
.rs-gallery__navigation .prev,
.rs-gallery__navigation .next {
  color: white;
  padding: 6px;
  background: none;
  border-radius: 100%;
  text-decoration: none;
  width: 0.85em;
  height: 0.85em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--color-primary-rgb), 0.75);
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1;
  transition: all 0.25s ease 0s;
}
@media (min-width: 46.25em) {
  .rs-gallery__navigation .prev,
  .rs-gallery__navigation .next {
    background: none;
    padding: 12px;
    width: 1.15em;
    height: 1.15em;
    font-size: 35px;
    font-size: 2.1875rem;
    line-height: 1;
  }
}
.start .rs-gallery__navigation .prev.prev, .end .rs-gallery__navigation .prev.next,
.start .rs-gallery__navigation .next.prev,
.end .rs-gallery__navigation .next.next {
  visibility: hidden;
}
.rs-gallery__navigation .prev .icon,
.rs-gallery__navigation .next .icon {
  text-shadow: 0 3px 6px black;
}
.rs-gallery__navigation .prev:hover,
.rs-gallery__navigation .next:hover {
  background: rgba(var(--color-primary-rgb), 0.75);
}

.rs-gallery__counter {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  color: white;
  text-shadow: 0 1px 2px black, 0 1px 2px black;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 0 12px 0 0;
  padding: 6px 12px;
  pointer-events: none;
}

.rs-gallery__thumbnails {
  max-width: 100%;
  overflow: auto;
  white-space: nowrap;
  font-size: 0;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.rs-gallery__thumbnails::-webkit-scrollbar {
  display: none;
}

.rs-gallery__item {
  width: 45px;
  display: inline-block;
  margin-right: 6px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--color-link-hover);
  box-sizing: border-box;
  position: relative;
  border: 1px solid #d9d9d9;
}
@media (min-width: 46.25em) {
  .rs-gallery__item {
    width: 65px;
  }
}
.rs-gallery__item:hover a {
  opacity: 0.5;
}
.rs-gallery__item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: none;
  box-shadow: inset 0 0 0 var(--color-link);
  transition: all 0.25s ease 0s;
}
.rs-gallery__item.active {
  pointer-events: none;
}
.rs-gallery__item.active:after {
  box-shadow: inset 0 0 0 3px var(--color-link), inset 0 0 0 4px white;
}
.rs-gallery__item.active a {
  opacity: 1;
  pointer-events: none;
}
.rs-gallery__item a {
  transition: all 0.25s ease 0s;
}

/* ==========================================================================
   #LISTINGS
   ========================================================================== */
.rs-listing-card {
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease 0s;
}
.rs-listing-card:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
}
@media (min-width: 26.25em) {
  .rs-listings--list .rs-listing-card {
    flex-direction: row;
  }
}

/**
 * Thumbnail
 */
.rs-listing-card__thumbnail {
  position: relative;
  width: 100%;
  box-shadow: 0 0 0 1px #d9d9d9;
}
.rs-listing-card__thumbnail .o-image {
  position: relative;
}
.rs-listing-card__thumbnail .o-image:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
.rs-listing-card__thumbnail .o-image > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (min-width: 26.25em) and (max-width: 46.24em) {
  .rs-listings--grid .rs-listing-card__thumbnail .o-image {
    position: relative;
  }
  .rs-listings--grid .rs-listing-card__thumbnail .o-image:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 100%;
  }
  .rs-listings--grid .rs-listing-card__thumbnail .o-image > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
@media (min-width: 26.25em) {
  .rs-listings--list .rs-listing-card__thumbnail {
    max-width: 35%;
  }
}
@media (min-width: 81.25em) {
  .rs-listings--list .rs-listing-card__thumbnail {
    max-width: 20%;
  }
}
.rs-listings--list .rs-listing-card__thumbnail .o-image {
  height: 100%;
}
.rs-listings--rail .rs-listing-card__thumbnail .o-image {
  height: 100%;
}
.rs-listing-card__thumbnail:hover img {
  transform: scale(1.08);
}
.rs-listing-card__thumbnail img {
  transition: all 0.25s ease 0s;
}

.rs-listing-card__image-counter {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  color: white;
  text-shadow: 0 1px 2px black, 0 1px 2px black;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 0 12px 0 0;
  padding: 6px 12px;
  pointer-events: none;
}

.rs-listing-card__banner {
  position: absolute;
  top: 6px;
  left: 6px;
}

.rs-listing-card__content {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rs-listing-card__header,
.rs-listing-card__address {
  margin-bottom: 12px;
}
.rs-listing-card__header a,
.rs-listing-card__address a {
  text-decoration: none;
  color: inherit;
}

.rs-listing-card__property-type {
  margin-bottom: 3px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
}

.rs-listing-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rs-listing-card__price {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.2857142857;
}

.rs-listing-card__bookmark {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.3636363636;
}

.rs-listing-card__title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #004a8c;
  margin: 0;
}

.rs-listing-card__location {
  margin-bottom: 12px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
}

.rs-listing-card__body {
  margin-bottom: 12px;
}

.rs-listing-card__attributes {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.rs-listing-card__attribute {
  white-space: nowrap;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
}

.rs-listing-card__attribute-value {
  white-space: normal;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}

.rs-listing-card__sqft {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
}

.rs-listing-card__footer {
  width: 100%;
  align-self: flex-end;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
}

.rs-listing-card__pre-footer {
  width: 100%;
  margin-bottom: 12px;
}
@media (min-width: 20em) {
  .rs-listing-card__pre-footer {
    display: flex;
    justify-content: space-between;
    align-self: flex-end;
    flex-wrap: wrap;
    gap: 12px;
  }
}

.rs-listing-card__button {
  text-align: right;
}
.rs-listings--grid .rs-listing-card__button .rs-btn {
  width: 100%;
}
@media (max-width: 46.24em) {
  .rs-listings--list .rs-listing-card__button .rs-btn {
    width: 100%;
  }
}

/* ==========================================================================
   #LISTING DETAILS
   ========================================================================== */
@media (min-width: 81.25em) {
  .rs-listing-details .o-layout--large {
    margin-left: -96px;
  }
}
@media (min-width: 81.25em) {
  .rs-listing-details .o-layout--large > .o-layout__item {
    padding-left: 96px;
  }
}

.rs-listing-details__header {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
}

.rs-listing-details__title {
  margin: 0 0 6px;
}

.rs-listing-details__address {
  margin-bottom: 6px;
}

.rs-listing-details__price {
  color: var(--color-primary);
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1;
}
@media (min-width: 46.25em) {
  .rs-listing-details__price {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1;
  }
}

.rs-listing-details__header-actions {
  display: flex;
  align-items: center;
}
.rs-listing-details__header-actions .icon {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
}

.rs-listing-details__action-options {
  flex: 1;
  text-align: right;
}

.rs-listing-details__gallery {
  position: relative;
}

.rs-listing-details__banner {
  position: absolute;
  top: 6px;
  left: 6px;
}
@media (min-width: 46.25em) {
  .rs-listing-details__banner {
    top: 12px;
    left: 12px;
  }
}

.rs-listing-details__virtual-tour {
  margin-bottom: 24px;
  text-align: center;
}

.rs-listing-details__summary-footer {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
}
@media (min-width: 26.25em) {
  .rs-listing-details__summary-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 6px;
  }
}

.rs-listing-details__stats {
  width: 100%;
  margin-left: -12px;
}

.rs-listing-details__stat {
  margin-bottom: 24px;
  padding: 0 12px;
  box-sizing: border-box;
  border-right: 1px dashed #d9d9d9;
}
@media (max-width: 46.24em) {
  .rs-listing-details__stat {
    border: none;
    width: 50%;
    display: inline-block;
  }
}
.rs-listing-details__stat:last-child {
  border: none;
}

.rs-listing-details__stat-heading {
  font-weight: 500;
  margin-bottom: 6px;
}

.rs-listing-details__stat-value {
  color: var(--color-primary);
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1;
}

.rs-listing-details__stat-unit {
  color: #333333;
  font-size: 0.6em;
}

.rs-listing-details__table {
  overflow: auto;
  max-width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  margin-bottom: 24px;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.rs-listing-details__table::-webkit-scrollbar {
  display: none;
}
.rs-listing-details__table table {
  min-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
@media (min-width: 46.25em) {
  .rs-listing-details__table table {
    width: 100%;
  }
}
.rs-listing-details__table tr:nth-child(even) th, .rs-listing-details__table tr:nth-child(even) td {
  background: #f2f2f2;
}
.rs-listing-details__table th, .rs-listing-details__table td {
  padding: 12px;
  text-align: left;
}
@media (max-width: 26.24em) {
  .rs-listing-details__table.col-2 th, .rs-listing-details__table.col-2 td {
    display: block;
  }
  .rs-listing-details__table.col-2 th {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.5;
    padding-bottom: 0;
  }
  .rs-listing-details__table.col-2 td {
    padding-top: 0;
  }
}
.rs-listing-details__table ul {
  padding-inline-start: 1em;
}
.rs-listing-details__table li {
  margin-bottom: 0.5em;
}

.rs-listing-details__description p {
  line-height: 24px;
  margin-bottom: 1.5em;
}

.rs-listing-details__section {
  padding: 12px;
  margin-bottom: 24px;
}

.rs-listing-details__features-list {
  margin-bottom: 48px;
}
.rs-listing-details__features-list ul, .rs-listing-details__features-list li {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 26.25em) {
  .rs-listing-details__features-list ul {
    columns: 2;
  }
}
@media (min-width: 46.25em) {
  .rs-listing-details__features-list ul {
    columns: 3;
  }
}
.rs-listing-details__features-list li {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  break-inside: avoid;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.rs-listing-details__features-list li .icon {
  color: var(--color-primary);
  margin-right: 12px;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1;
}
@media (min-width: 46.25em) {
  .rs-listing-details__features-list li .icon {
    font-size: 35px;
    font-size: 2.1875rem;
    line-height: 1;
  }
}

.rs-listing-details__map {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
}
.rs-listing-details__map iframe {
  vertical-align: bottom;
}

/* ==========================================================================
   #LISTINGS
   ========================================================================== */
.ajax-loading #rs-listings {
  transition: all 0.25s ease 0s;
  opacity: 0.35;
  pointer-events: none;
}
.ajax-loading #rs-listings * {
  pointer-events: none !important;
}

.rs-listings {
  margin-bottom: 24px;
  margin-left: -12px;
  display: flex;
  align-items: stretch;
  font-size: 0;
}
.rs-listings.rs-listings--grid {
  flex-direction: row;
  flex-wrap: wrap;
}
.rs-listings.rs-listings--list {
  flex-direction: column;
}
.rs-listings.rs-listings--map {
  max-width: 33.33333%;
  flex-direction: column;
}
.rs-listings.rs-listings--rail {
  overflow: auto;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  margin-left: -12px;
  margin-right: -12px;
  padding-right: 12px;
  padding-left: 6px;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.rs-listings.rs-listings--rail::-webkit-scrollbar {
  display: none;
}
@media (min-width: 46.25em) {
  .rs-listings.rs-listings--rail {
    margin-left: -24px;
    margin-right: -24px;
    padding-right: 24px;
    padding-left: 12px;
  }
}

.rs-listings__item {
  box-sizing: border-box;
  padding-left: 12px;
  margin-bottom: 12px;
  flex: 1;
  font-size: initial;
}
.rs-listings--grid .rs-listings__item {
  flex: 0 0 100%;
}
@media (min-width: 26.25em) {
  .rs-listings--grid .rs-listings__item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 46.25em) {
  .rs-listings--grid .rs-listings__item {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
@media (min-width: 61.25em) {
  .rs-listings--grid .rs-listings__item {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 81.25em) {
  .rs-listings--grid .rs-listings__item {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.rs-listings--rail .rs-listings__item {
  display: inline-block;
  flex: 0 0 80%;
  max-width: 300px;
}
@media (min-width: 61.25em) {
  .rs-listings--rail .rs-listings__item {
    max-width: 25%;
    width: 25%;
    flex: 1;
  }
}
.rs-listings--rail .rs-listings__item .rs-btn {
  width: 100%;
}

.rs-listings__results-counter {
  margin-bottom: 12px;
  font-weight: 500;
}

/* ==========================================================================
   #LISTINGS HEADER
   ========================================================================== */
.rs-listings-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
}

.rs-listings-header__column {
  max-width: 50%;
}

/* ==========================================================================
   #OPEN HOUSES
   ========================================================================== */
.rs-next-open-house {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
}

.rs-next-open-house__header {
  text-align: center;
}

.rs-next-open-house__heading {
  margin: 0 0 12px;
}

.rs-next-open-house__date {
  width: 100%;
  max-width: 100px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
}

.rs-next-open-house__month {
  background: var(--color-primary);
  color: white;
  font-weight: 900;
  padding: 6px;
  text-transform: uppercase;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
}

.rs-next-open-house__day {
  padding: 6px;
  font-weight: 900;
  background: white;
  font-size: 48px;
  font-size: 3rem;
  line-height: 1;
}

.rs-next-open-house__cta {
  text-align: center;
}

.rs-next-open-house__start-date {
  margin-bottom: 6px;
  font-weight: 500;
}

.rs-next-open-house__start-time {
  margin-bottom: 12px;
}

.rs-open-houses {
  margin-bottom: 24px;
}
.rs-open-houses ul, .rs-open-houses li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rs-open-houses__item {
  padding: 6px;
  padding-left: 12px;
  margin-bottom: 6px;
  transition: all 0.25s ease 0s;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.4;
}
.rs-open-houses__item:hover {
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
}
.rs-open-houses__item .rs-btn {
  border: 1px solid #d9d9d9;
  padding: 8px 12px;
}

/* ==========================================================================
   #PAGE
   ========================================================================== */
.rs-page #content {
  font-family: Helvetica, sans-serif;
}
@media print {
  .rs-page * {
    visibility: hidden;
  }
  .rs-page .rs-listing-details,
  .rs-page .rs-listing-details * {
    visibility: visible;
  }
  .rs-page .rs-listing-details .o-layout__item {
    display: block;
  }
}

/* ==========================================================================
   #PAGER
   ========================================================================== */
.rs-pager {
  text-align: center;
  padding: 12px 0 48px;
}
.rs-pager .page-numbers {
  display: inline-block;
  vertical-align: middle;
  min-width: 1.5em;
  border-color: #b3b3b3;
}
@media (max-width: 46.24em) {
  .rs-pager .page-numbers {
    padding: 6px 12px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.rs-pager .page-numbers:hover {
  box-shadow: none;
}
.rs-pager .prev,
.rs-pager .next {
  border-color: #b3b3b3;
  text-transform: uppercase;
}
.rs-pager .prev:hover,
.rs-pager .next:hover {
  box-shadow: none;
}
@media (max-width: 46.24em) {
  .rs-pager .prev {
    float: left;
  }
}
@media (max-width: 46.24em) {
  .rs-pager .next {
    float: right;
  }
}
.rs-pager .current {
  pointer-events: none;
  background: #004a8c;
  border-color: #004a8c;
  color: white;
}
.rs-pager .dots {
  padding: 0;
  border: none;
  pointer-events: none;
  color: #999999;
}

/* ==========================================================================
   #SEARCH MENU
   ========================================================================== */
.rs-search-menu {
  margin-bottom: 24px;
  display: flex;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
}
.search-filters-active .rs-search-menu {
  display: block;
}
@media (min-width: 61.25em) {
  .rs-search-menu {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #d9d9d9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
  }
}

.rs-search-menu__column {
  display: flex;
}
@media (max-width: 61.24em) {
  .rs-search-menu__column {
    flex: 1;
  }
}
@media (min-width: 61.25em) {
  .rs-search-menu__column {
    padding-right: 24px;
    margin-right: 24px;
    border-right: 1px solid #b3b3b3;
  }
  .rs-search-menu__column:last-child {
    border: none;
    margin: 0;
  }
  .rs-search-menu > .rs-search-menu__column:last-child {
    flex: 1;
  }
}
.rs-search-menu > .rs-search-menu__column:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
  text-align: right;
}

.rs-search-menu__search-bar {
  flex: 1;
}
@media (max-width: 61.24em) {
  .rs-search-menu__search-bar {
    padding: 12px;
  }
  .rs-search-menu__search-bar .rs-search-menu__item {
    margin-bottom: 0;
  }
}
@media (min-width: 61.25em) {
  .rs-search-menu__search-bar {
    max-width: 500px;
  }
}

@media (max-width: 61.24em) {
  .rs-search-menu__group {
    position: fixed;
    background: white;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    z-index: 999999;
    overflow: auto;
    box-sizing: border-box;
    padding: 24px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
    transition: all 0.25s ease 0s;
  }
  .search-filters-active .rs-search-menu__group, .search-filters-active .rs-search-menu__group:focus-within {
    right: 0;
  }
}
@media (min-width: 61.25em) {
  .rs-search-menu__group {
    display: flex;
  }
  .search-filters-active .rs-search-menu__group {
    display: block;
  }
}

.rs-search-menu__drawer {
  overflow: auto;
  box-sizing: border-box;
  transition: all 0.25s ease 0s;
}
@media (min-width: 61.25em) {
  .rs-search-menu__drawer {
    background: white;
    padding: 24px;
    height: 100%;
    width: 50%;
    position: fixed;
    top: 0;
    right: -55%;
    z-index: 999999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
  }
  .show-more-filters .rs-search-menu__drawer, .rs-search-menu__drawer:focus-within {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
  }
}

.rs-search-menu__item {
  position: relative;
  flex: 1;
}
@media (max-width: 61.24em) {
  .rs-search-menu__item {
    margin-bottom: 36px;
  }
}
.rs-search-menu__drawer .rs-search-menu__item {
  margin-bottom: 36px;
}
.rs-search-menu__drawer .rs-search-menu__item:last-child {
  margin-bottom: 24px;
}
.rs-search-menu__item.center {
  text-align: center;
}
@media (min-width: 61.25em) {
  .rs-search-menu__item.center {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 -12px;
  }
}
.rs-search-bar .rs-search-menu__item.center {
  margin: 0;
}
.rs-search-menu__item .rs-btn {
  margin: 0;
}

.rs-search-menu__actions {
  text-align: right;
  white-space: nowrap;
  flex: 0;
  padding-left: 12px;
}

@media (min-width: 61.25em) {
  .rs-search-menu__dropdown {
    padding: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
    background: white;
    position: absolute;
    z-index: 9999;
    max-width: 200px;
    opacity: 0;
    left: -9999%;
    top: 100%;
    border-radius: 3px;
  }
}
.rs-search-menu__item:hover .rs-search-menu__dropdown, .rs-search-menu__item:focus-within .rs-search-menu__dropdown {
  opacity: 1;
  left: -6px;
}

.rs-search-menu__split {
  display: flex;
  align-items: flex-end;
}
@media (min-width: 61.25em) {
  .rs-search-menu__split {
    justify-content: space-between;
  }
}

.rs-search-menu__item-label {
  text-align: left;
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
@media (max-width: 61.24em) {
  .rs-search-menu__item-label {
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.3333333333;
  }
}
.rs-search-menu__item-label a {
  text-decoration: none;
}
.rs-search-menu__item-label a:hover {
  text-decoration: underline;
}
.rs-search-menu__drawer .rs-search-menu__item-label {
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}

.rs-search-menu__item-value {
  display: block;
  padding: 6px 0;
  text-decoration: none;
}
.rs-search-menu__item-value .icon {
  color: var(--color-link);
  margin-left: 12px;
  display: none;
  transition: all 0.25s ease 0s;
}
@media (min-width: 61.25em) {
  .rs-search-menu__item-value .icon {
    display: inline;
  }
}
.rs-search-menu__item:hover .rs-search-menu__item-value .icon, .rs-search-menu__item:focus-within .rs-search-menu__item-value .icon {
  color: var(--color-link-hover);
}
@media (max-width: 61.24em) {
  .rs-search-menu__item-value {
    display: none;
  }
}

.rs-search-menu__heading {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.3636363636;
  flex: 1;
}

.rs-search-menu__field {
  display: inline-block;
  padding-right: 12px;
}
.rs-search-menu__field label {
  margin-right: 6px;
}
.rs-search-menu__field input[type=number] {
  width: 5em;
}

.rs-search-menu__filter-indicator {
  transition: all 0.25s ease 0s;
}
.more-filters-active .rs-search-menu__filter-indicator:not(:hover) {
  background: var(--color-link-hover);
  color: white;
}

/* ==========================================================================
   #WIDGETS
   ========================================================================== */
.rs-widget {
  font-family: Helvetica, sans-serif;
}
.rs-widget.rs-search-bar {
  display: block;
}

/* ==========================================================================
   #PLACEHOLDERS
   ========================================================================== */
.u-placeholder-text {
  background-color: yellow;
  color: #333333;
}

.u-placeholder-border {
  overflow: auto;
  border: 1px dashed rgba(0, 0, 0, 0.3);
  padding: 12px;
}
.u-placeholder-border .u-placeholder-border--red {
  border: 1px dashed rgba(255, 0, 0, 0.3);
}
.u-placeholder-border .u-placeholder-border--blue {
  border: 1px dashed rgba(0, 0, 255, 0.3);
}
.u-placeholder-border .u-placeholder-border--green {
  border: 1px dashed rgba(0, 128, 0, 0.5);
}
.u-placeholder-border .u-placeholder-border--yellow {
  border: 1px dashed #ffd200;
}
.u-placeholder-border .u-placeholder-border--purple {
  border: 1px dashed rgba(128, 0, 128, 0.5);
}

/* ==========================================================================
   #ALIGN
   ========================================================================== */
.u-align-right {
  text-align: right !important;
}

.u-align-left {
  text-align: left !important;
}

.u-align-center {
  text-align: center !important;
}

/* ==========================================================================
   #ASPECT RATIO
   ========================================================================== */
.u-1\:1:before {
  padding-bottom: 100%;
}

@media (min-width: 20em) {
  .u-1\:1--mobile:before {
    padding-bottom: 100% !important;
  }
}

@media (min-width: 26.25em) {
  .u-1\:1--phablet:before {
    padding-bottom: 100% !important;
  }
}

@media (min-width: 46.25em) {
  .u-1\:1--tablet:before {
    padding-bottom: 100% !important;
  }
}

@media (min-width: 61.25em) {
  .u-1\:1--desktop:before {
    padding-bottom: 100% !important;
  }
}

@media (min-width: 81.25em) {
  .u-1\:1--wide:before {
    padding-bottom: 100% !important;
  }
}

.u-2\:1:before {
  padding-bottom: 50%;
}

@media (min-width: 20em) {
  .u-2\:1--mobile:before {
    padding-bottom: 50% !important;
  }
}

@media (min-width: 26.25em) {
  .u-2\:1--phablet:before {
    padding-bottom: 50% !important;
  }
}

@media (min-width: 46.25em) {
  .u-2\:1--tablet:before {
    padding-bottom: 50% !important;
  }
}

@media (min-width: 61.25em) {
  .u-2\:1--desktop:before {
    padding-bottom: 50% !important;
  }
}

@media (min-width: 81.25em) {
  .u-2\:1--wide:before {
    padding-bottom: 50% !important;
  }
}

.u-4\:3:before {
  padding-bottom: 75%;
}

@media (min-width: 20em) {
  .u-4\:3--mobile:before {
    padding-bottom: 75% !important;
  }
}

@media (min-width: 26.25em) {
  .u-4\:3--phablet:before {
    padding-bottom: 75% !important;
  }
}

@media (min-width: 46.25em) {
  .u-4\:3--tablet:before {
    padding-bottom: 75% !important;
  }
}

@media (min-width: 61.25em) {
  .u-4\:3--desktop:before {
    padding-bottom: 75% !important;
  }
}

@media (min-width: 81.25em) {
  .u-4\:3--wide:before {
    padding-bottom: 75% !important;
  }
}

.u-16\:9:before {
  padding-bottom: 56.25%;
}

@media (min-width: 20em) {
  .u-16\:9--mobile:before {
    padding-bottom: 56.25% !important;
  }
}

@media (min-width: 26.25em) {
  .u-16\:9--phablet:before {
    padding-bottom: 56.25% !important;
  }
}

@media (min-width: 46.25em) {
  .u-16\:9--tablet:before {
    padding-bottom: 56.25% !important;
  }
}

@media (min-width: 61.25em) {
  .u-16\:9--desktop:before {
    padding-bottom: 56.25% !important;
  }
}

@media (min-width: 81.25em) {
  .u-16\:9--wide:before {
    padding-bottom: 56.25% !important;
  }
}

.u-image-ratio-share:before {
  padding-bottom: 52.5%;
}

@media (min-width: 20em) {
  .u-image-ratio-share--mobile:before {
    padding-bottom: 52.5% !important;
  }
}

@media (min-width: 26.25em) {
  .u-image-ratio-share--phablet:before {
    padding-bottom: 52.5% !important;
  }
}

@media (min-width: 46.25em) {
  .u-image-ratio-share--tablet:before {
    padding-bottom: 52.5% !important;
  }
}

@media (min-width: 61.25em) {
  .u-image-ratio-share--desktop:before {
    padding-bottom: 52.5% !important;
  }
}

@media (min-width: 81.25em) {
  .u-image-ratio-share--wide:before {
    padding-bottom: 52.5% !important;
  }
}

.u-image-ratio-profile:before {
  padding-bottom: 140%;
}

@media (min-width: 20em) {
  .u-image-ratio-profile--mobile:before {
    padding-bottom: 140% !important;
  }
}

@media (min-width: 26.25em) {
  .u-image-ratio-profile--phablet:before {
    padding-bottom: 140% !important;
  }
}

@media (min-width: 46.25em) {
  .u-image-ratio-profile--tablet:before {
    padding-bottom: 140% !important;
  }
}

@media (min-width: 61.25em) {
  .u-image-ratio-profile--desktop:before {
    padding-bottom: 140% !important;
  }
}

@media (min-width: 81.25em) {
  .u-image-ratio-profile--wide:before {
    padding-bottom: 140% !important;
  }
}

/* ==========================================================================
   #COLOR
   ========================================================================== */
.u-color-primary {
  color: #004a8c;
}
.u-color-primary--bg {
  background-color: #004a8c;
}
.u-color-primary--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #004a8c inset;
  color: #004a8c;
}
.u-color-primary--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-secondary {
  color: #3498DB;
}
.u-color-secondary--bg {
  background-color: #3498DB;
}
.u-color-secondary--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #3498DB inset;
  color: #3498DB;
}
.u-color-secondary--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
  box-shadow: 0 0 0 2px #004a8c inset;
  color: #004a8c;
}
.u-color-secondary--bg.c-btn--solid:hover {
  background: #004a8c;
}
.u-color-rs-one {
  color: #ffffff;
}
.u-color-rs-one--bg {
  background-color: #ffffff;
}
.u-color-rs-one--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #ffffff inset;
  color: #ffffff;
}
.u-color-rs-one--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-rs-blue {
  color: #0099ff;
}
.u-color-rs-blue--bg {
  background-color: #0099ff;
}
.u-color-rs-blue--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #0099ff inset;
  color: #0099ff;
}
.u-color-rs-blue--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-rs-red {
  color: #D9534F;
}
.u-color-rs-red--bg {
  background-color: #D9534F;
}
.u-color-rs-red--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #D9534F inset;
  color: #D9534F;
}
.u-color-rs-red--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-rs-yellow {
  color: #f3e761;
}
.u-color-rs-yellow--bg {
  background-color: #f3e761;
}
.u-color-rs-yellow--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #f3e761 inset;
  color: #f3e761;
}
.u-color-rs-yellow--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-rs-orange {
  color: #ff9100;
}
.u-color-rs-orange--bg {
  background-color: #ff9100;
}
.u-color-rs-orange--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #ff9100 inset;
  color: #ff9100;
}
.u-color-rs-orange--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-rs-green {
  color: #5CB85C;
}
.u-color-rs-green--bg {
  background-color: #5CB85C;
}
.u-color-rs-green--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #5CB85C inset;
  color: #5CB85C;
}
.u-color-rs-green--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-success {
  color: #00a000;
}
.u-color-success--bg {
  background-color: #00a000;
}
.u-color-success--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #00a000 inset;
  color: #00a000;
}
.u-color-success--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-warning {
  color: #ffaa00;
}
.u-color-warning--bg {
  background-color: #ffaa00;
}
.u-color-warning--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #ffaa00 inset;
  color: #ffaa00;
}
.u-color-warning--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-error {
  color: #aa0000;
}
.u-color-error--bg {
  background-color: #aa0000;
}
.u-color-error--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #aa0000 inset;
  color: #aa0000;
}
.u-color-error--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-white {
  color: #ffffff;
}
.u-color-tint-white--bg {
  background-color: #ffffff;
}
.u-color-tint-white--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #ffffff inset;
  color: #ffffff;
}
.u-color-tint-white--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-5 {
  color: #f2f2f2;
}
.u-color-tint-5--bg {
  background-color: #f2f2f2;
}
.u-color-tint-5--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #f2f2f2 inset;
  color: #f2f2f2;
}
.u-color-tint-5--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-10 {
  color: #e6e6e6;
}
.u-color-tint-10--bg {
  background-color: #e6e6e6;
}
.u-color-tint-10--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #e6e6e6 inset;
  color: #e6e6e6;
}
.u-color-tint-10--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-15 {
  color: #d9d9d9;
}
.u-color-tint-15--bg {
  background-color: #d9d9d9;
}
.u-color-tint-15--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #d9d9d9 inset;
  color: #d9d9d9;
}
.u-color-tint-15--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-20 {
  color: #cccccc;
}
.u-color-tint-20--bg {
  background-color: #cccccc;
}
.u-color-tint-20--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #cccccc inset;
  color: #cccccc;
}
.u-color-tint-20--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-25 {
  color: #bfbfbf;
}
.u-color-tint-25--bg {
  background-color: #bfbfbf;
}
.u-color-tint-25--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #bfbfbf inset;
  color: #bfbfbf;
}
.u-color-tint-25--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-30 {
  color: #b3b3b3;
}
.u-color-tint-30--bg {
  background-color: #b3b3b3;
}
.u-color-tint-30--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #b3b3b3 inset;
  color: #b3b3b3;
}
.u-color-tint-30--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-35 {
  color: #a6a6a6;
}
.u-color-tint-35--bg {
  background-color: #a6a6a6;
}
.u-color-tint-35--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #a6a6a6 inset;
  color: #a6a6a6;
}
.u-color-tint-35--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-40 {
  color: #999999;
}
.u-color-tint-40--bg {
  background-color: #999999;
}
.u-color-tint-40--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #999999 inset;
  color: #999999;
}
.u-color-tint-40--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-45 {
  color: #8c8c8c;
}
.u-color-tint-45--bg {
  background-color: #8c8c8c;
}
.u-color-tint-45--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #8c8c8c inset;
  color: #8c8c8c;
}
.u-color-tint-45--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-50 {
  color: #808080;
}
.u-color-tint-50--bg {
  background-color: #808080;
}
.u-color-tint-50--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #808080 inset;
  color: #808080;
}
.u-color-tint-50--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-55 {
  color: #737373;
}
.u-color-tint-55--bg {
  background-color: #737373;
}
.u-color-tint-55--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #737373 inset;
  color: #737373;
}
.u-color-tint-55--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-60 {
  color: #666666;
}
.u-color-tint-60--bg {
  background-color: #666666;
}
.u-color-tint-60--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #666666 inset;
  color: #666666;
}
.u-color-tint-60--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-65 {
  color: #595959;
}
.u-color-tint-65--bg {
  background-color: #595959;
}
.u-color-tint-65--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #595959 inset;
  color: #595959;
}
.u-color-tint-65--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-70 {
  color: #4d4d4d;
}
.u-color-tint-70--bg {
  background-color: #4d4d4d;
}
.u-color-tint-70--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #4d4d4d inset;
  color: #4d4d4d;
}
.u-color-tint-70--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-75 {
  color: #404040;
}
.u-color-tint-75--bg {
  background-color: #404040;
}
.u-color-tint-75--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #404040 inset;
  color: #404040;
}
.u-color-tint-75--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-80 {
  color: #333333;
}
.u-color-tint-80--bg {
  background-color: #333333;
}
.u-color-tint-80--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #333333 inset;
  color: #333333;
}
.u-color-tint-80--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-85 {
  color: #262626;
}
.u-color-tint-85--bg {
  background-color: #262626;
}
.u-color-tint-85--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #262626 inset;
  color: #262626;
}
.u-color-tint-85--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-90 {
  color: #1a1a1a;
}
.u-color-tint-90--bg {
  background-color: #1a1a1a;
}
.u-color-tint-90--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #1a1a1a inset;
  color: #1a1a1a;
}
.u-color-tint-90--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
.u-color-tint-black {
  color: #000000;
}
.u-color-tint-black--bg {
  background-color: #000000;
}
.u-color-tint-black--bg.c-btn--stroke {
  background: none;
  box-shadow: 0 0 0 2px #000000 inset;
  color: #000000;
}
.u-color-tint-black--bg.c-btn--stroke:hover {
  color: #3498DB;
  border-color: #3498DB;
}
/* ==========================================================================
   #HIDE
   ========================================================================== */
.u-hide {
  display: none !important;
}

.u-hide-visually {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
.u-hide-visually a:focus, .u-hide-visually input:focus, .u-hide-visually button:focus {
  position: static;
  width: auto;
  height: auto;
}

.u-hide-scrollbar {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.u-hide-scrollbar::-webkit-scrollbar {
  display: none;
}

@media print {
  .u-hide-for-print {
    display: none !important;
  }
}

/**
 * Responsive hide/show utilities generated per breakpoint.
 */
@media (min-width: 320px) {
  .u-hide--mobile {
    display: none !important;
  }
}

@media (max-width: 319px) {
  .u-show--mobile {
    display: none !important;
  }
}

@media (min-width: 320px) {
  .u-hide--visually--mobile {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

@media (min-width: 420px) {
  .u-hide--phablet {
    display: none !important;
  }
}

@media (max-width: 419px) {
  .u-show--phablet {
    display: none !important;
  }
}

@media (min-width: 420px) {
  .u-hide--visually--phablet {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

@media (min-width: 740px) {
  .u-hide--tablet {
    display: none !important;
  }
}

@media (max-width: 739px) {
  .u-show--tablet {
    display: none !important;
  }
}

@media (min-width: 740px) {
  .u-hide--visually--tablet {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

@media (min-width: 980px) {
  .u-hide--desktop {
    display: none !important;
  }
}

@media (max-width: 979px) {
  .u-show--desktop {
    display: none !important;
  }
}

@media (min-width: 980px) {
  .u-hide--visually--desktop {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

@media (min-width: 1300px) {
  .u-hide--wide {
    display: none !important;
  }
}

@media (max-width: 1299px) {
  .u-show--wide {
    display: none !important;
  }
}

@media (min-width: 1300px) {
  .u-hide--visually--wide {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/**
 * Responsive hide/show utilities generated per breakpoint.
 */
@media (min-width: 20em) {
  .u-hide--mobile {
    display: none !important;
  }
}

@media (max-width: 19.99em) {
  .u-show--mobile {
    display: none !important;
  }
}

@media (min-width: 20em) {
  .u-hide-visually--mobile {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
  .u-hide-visually--mobile a:focus, .u-hide-visually--mobile input:focus, .u-hide-visually--mobile button:focus {
    position: static;
    width: auto;
    height: auto;
  }
}

@media (max-width: 19.99em) {
  .u-show-visually--mobile {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
  .u-show-visually--mobile a:focus, .u-show-visually--mobile input:focus, .u-show-visually--mobile button:focus {
    position: static;
    width: auto;
    height: auto;
  }
}

@media (min-width: 26.25em) {
  .u-hide--phablet {
    display: none !important;
  }
}

@media (max-width: 26.24em) {
  .u-show--phablet {
    display: none !important;
  }
}

@media (min-width: 26.25em) {
  .u-hide-visually--phablet {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
  .u-hide-visually--phablet a:focus, .u-hide-visually--phablet input:focus, .u-hide-visually--phablet button:focus {
    position: static;
    width: auto;
    height: auto;
  }
}

@media (max-width: 26.24em) {
  .u-show-visually--phablet {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
  .u-show-visually--phablet a:focus, .u-show-visually--phablet input:focus, .u-show-visually--phablet button:focus {
    position: static;
    width: auto;
    height: auto;
  }
}

@media (min-width: 46.25em) {
  .u-hide--tablet {
    display: none !important;
  }
}

@media (max-width: 46.24em) {
  .u-show--tablet {
    display: none !important;
  }
}

@media (min-width: 46.25em) {
  .u-hide-visually--tablet {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
  .u-hide-visually--tablet a:focus, .u-hide-visually--tablet input:focus, .u-hide-visually--tablet button:focus {
    position: static;
    width: auto;
    height: auto;
  }
}

@media (max-width: 46.24em) {
  .u-show-visually--tablet {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
  .u-show-visually--tablet a:focus, .u-show-visually--tablet input:focus, .u-show-visually--tablet button:focus {
    position: static;
    width: auto;
    height: auto;
  }
}

@media (min-width: 61.25em) {
  .u-hide--desktop {
    display: none !important;
  }
}

@media (max-width: 61.24em) {
  .u-show--desktop {
    display: none !important;
  }
}

@media (min-width: 61.25em) {
  .u-hide-visually--desktop {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
  .u-hide-visually--desktop a:focus, .u-hide-visually--desktop input:focus, .u-hide-visually--desktop button:focus {
    position: static;
    width: auto;
    height: auto;
  }
}

@media (max-width: 61.24em) {
  .u-show-visually--desktop {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
  .u-show-visually--desktop a:focus, .u-show-visually--desktop input:focus, .u-show-visually--desktop button:focus {
    position: static;
    width: auto;
    height: auto;
  }
}

@media (min-width: 81.25em) {
  .u-hide--wide {
    display: none !important;
  }
}

@media (max-width: 81.24em) {
  .u-show--wide {
    display: none !important;
  }
}

@media (min-width: 81.25em) {
  .u-hide-visually--wide {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
  .u-hide-visually--wide a:focus, .u-hide-visually--wide input:focus, .u-hide-visually--wide button:focus {
    position: static;
    width: auto;
    height: auto;
  }
}

@media (max-width: 81.24em) {
  .u-show-visually--wide {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
  .u-show-visually--wide a:focus, .u-show-visually--wide input:focus, .u-show-visually--wide button:focus {
    position: static;
    width: auto;
    height: auto;
  }
}

/* ==========================================================================
   #SPACINGS
   ========================================================================== */
/**
 * Utility classes to put specific spacing values onto elements. The below loop
 * will generate us a suite of classes like:
 *
 *   .u-margin {}
 *   .u-padding-left-large {}
 *   .u-margin-right-small {}
 *   .u-padding {}
 *   .u-padding-right-none {}
 *   .u-padding-horizontal {}
 *   .u-padding-vertical-small {}
 */
.u-padding {
  padding: 24px !important;
}

.u-padding-tiny {
  padding: 6px !important;
}

.u-padding-small {
  padding: 12px !important;
}

.u-padding-large {
  padding: 48px !important;
}

.u-padding-huge {
  padding: 96px !important;
}

.u-padding-none {
  padding: 0 !important;
}

.u-padding-top {
  padding-top: 24px !important;
}

.u-padding-top-tiny {
  padding-top: 6px !important;
}

.u-padding-top-small {
  padding-top: 12px !important;
}

.u-padding-top-large {
  padding-top: 48px !important;
}

.u-padding-top-huge {
  padding-top: 96px !important;
}

.u-padding-top-none {
  padding-top: 0 !important;
}

.u-padding-right {
  padding-right: 24px !important;
}

.u-padding-right-tiny {
  padding-right: 6px !important;
}

.u-padding-right-small {
  padding-right: 12px !important;
}

.u-padding-right-large {
  padding-right: 48px !important;
}

.u-padding-right-huge {
  padding-right: 96px !important;
}

.u-padding-right-none {
  padding-right: 0 !important;
}

.u-padding-bottom {
  padding-bottom: 24px !important;
}

.u-padding-bottom-tiny {
  padding-bottom: 6px !important;
}

.u-padding-bottom-small {
  padding-bottom: 12px !important;
}

.u-padding-bottom-large {
  padding-bottom: 48px !important;
}

.u-padding-bottom-huge {
  padding-bottom: 96px !important;
}

.u-padding-bottom-none {
  padding-bottom: 0 !important;
}

.u-padding-left {
  padding-left: 24px !important;
}

.u-padding-left-tiny {
  padding-left: 6px !important;
}

.u-padding-left-small {
  padding-left: 12px !important;
}

.u-padding-left-large {
  padding-left: 48px !important;
}

.u-padding-left-huge {
  padding-left: 96px !important;
}

.u-padding-left-none {
  padding-left: 0 !important;
}

.u-padding-horizontal {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.u-padding-horizontal-tiny {
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.u-padding-horizontal-small {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.u-padding-horizontal-large {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

.u-padding-horizontal-huge {
  padding-left: 96px !important;
  padding-right: 96px !important;
}

.u-padding-horizontal-none {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.u-padding-vertical {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-padding-vertical-tiny {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.u-padding-vertical-small {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.u-padding-vertical-large {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.u-padding-vertical-huge {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

.u-padding-vertical-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-margin {
  margin: 24px !important;
}

.u-margin-tiny {
  margin: 6px !important;
}

.u-margin-small {
  margin: 12px !important;
}

.u-margin-large {
  margin: 48px !important;
}

.u-margin-huge {
  margin: 96px !important;
}

.u-margin-none {
  margin: 0 !important;
}

.u-margin-top {
  margin-top: 24px !important;
}

.u-margin-top-tiny {
  margin-top: 6px !important;
}

.u-margin-top-small {
  margin-top: 12px !important;
}

.u-margin-top-large {
  margin-top: 48px !important;
}

.u-margin-top-huge {
  margin-top: 96px !important;
}

.u-margin-top-none {
  margin-top: 0 !important;
}

.u-margin-right {
  margin-right: 24px !important;
}

.u-margin-right-tiny {
  margin-right: 6px !important;
}

.u-margin-right-small {
  margin-right: 12px !important;
}

.u-margin-right-large {
  margin-right: 48px !important;
}

.u-margin-right-huge {
  margin-right: 96px !important;
}

.u-margin-right-none {
  margin-right: 0 !important;
}

.u-margin-bottom {
  margin-bottom: 24px !important;
}

.u-margin-bottom-tiny {
  margin-bottom: 6px !important;
}

.u-margin-bottom-small {
  margin-bottom: 12px !important;
}

.u-margin-bottom-large {
  margin-bottom: 48px !important;
}

.u-margin-bottom-huge {
  margin-bottom: 96px !important;
}

.u-margin-bottom-none {
  margin-bottom: 0 !important;
}

.u-margin-left {
  margin-left: 24px !important;
}

.u-margin-left-tiny {
  margin-left: 6px !important;
}

.u-margin-left-small {
  margin-left: 12px !important;
}

.u-margin-left-large {
  margin-left: 48px !important;
}

.u-margin-left-huge {
  margin-left: 96px !important;
}

.u-margin-left-none {
  margin-left: 0 !important;
}

.u-margin-horizontal {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.u-margin-horizontal-tiny {
  margin-left: 6px !important;
  margin-right: 6px !important;
}

.u-margin-horizontal-small {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

.u-margin-horizontal-large {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

.u-margin-horizontal-huge {
  margin-left: 96px !important;
  margin-right: 96px !important;
}

.u-margin-horizontal-none {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.u-margin-vertical {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.u-margin-vertical-tiny {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}

.u-margin-vertical-small {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.u-margin-vertical-large {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.u-margin-vertical-huge {
  margin-top: 96px !important;
  margin-bottom: 96px !important;
}

.u-margin-vertical-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* ==========================================================================
   #WIDTHS
   ========================================================================== */
/**
 * Generates responsive utility classes like:
 *   .u-1/2
 *   .u-1/3--tablet
 */
.u-1\/1 {
  width: 100% !important;
}

.u-1\/2 {
  width: 50% !important;
}

.u-2\/2 {
  width: 100% !important;
}

.u-1\/3 {
  width: 33.3333333333% !important;
}

.u-2\/3 {
  width: 66.6666666667% !important;
}

.u-3\/3 {
  width: 100% !important;
}

.u-1\/4 {
  width: 25% !important;
}

.u-2\/4 {
  width: 50% !important;
}

.u-3\/4 {
  width: 75% !important;
}

.u-4\/4 {
  width: 100% !important;
}

.u-1\/5 {
  width: 20% !important;
}

.u-2\/5 {
  width: 40% !important;
}

.u-3\/5 {
  width: 60% !important;
}

.u-4\/5 {
  width: 80% !important;
}

.u-5\/5 {
  width: 100% !important;
}

@media (min-width: 20em) {
  .u-1\/1--mobile {
    width: 100% !important;
  }
  .u-1\/2--mobile {
    width: 50% !important;
  }
  .u-2\/2--mobile {
    width: 100% !important;
  }
  .u-1\/3--mobile {
    width: 33.3333333333% !important;
  }
  .u-2\/3--mobile {
    width: 66.6666666667% !important;
  }
  .u-3\/3--mobile {
    width: 100% !important;
  }
  .u-1\/4--mobile {
    width: 25% !important;
  }
  .u-2\/4--mobile {
    width: 50% !important;
  }
  .u-3\/4--mobile {
    width: 75% !important;
  }
  .u-4\/4--mobile {
    width: 100% !important;
  }
  .u-1\/5--mobile {
    width: 20% !important;
  }
  .u-2\/5--mobile {
    width: 40% !important;
  }
  .u-3\/5--mobile {
    width: 60% !important;
  }
  .u-4\/5--mobile {
    width: 80% !important;
  }
  .u-5\/5--mobile {
    width: 100% !important;
  }
}
@media (min-width: 26.25em) {
  .u-1\/1--phablet {
    width: 100% !important;
  }
  .u-1\/2--phablet {
    width: 50% !important;
  }
  .u-2\/2--phablet {
    width: 100% !important;
  }
  .u-1\/3--phablet {
    width: 33.3333333333% !important;
  }
  .u-2\/3--phablet {
    width: 66.6666666667% !important;
  }
  .u-3\/3--phablet {
    width: 100% !important;
  }
  .u-1\/4--phablet {
    width: 25% !important;
  }
  .u-2\/4--phablet {
    width: 50% !important;
  }
  .u-3\/4--phablet {
    width: 75% !important;
  }
  .u-4\/4--phablet {
    width: 100% !important;
  }
  .u-1\/5--phablet {
    width: 20% !important;
  }
  .u-2\/5--phablet {
    width: 40% !important;
  }
  .u-3\/5--phablet {
    width: 60% !important;
  }
  .u-4\/5--phablet {
    width: 80% !important;
  }
  .u-5\/5--phablet {
    width: 100% !important;
  }
}
@media (min-width: 46.25em) {
  .u-1\/1--tablet {
    width: 100% !important;
  }
  .u-1\/2--tablet {
    width: 50% !important;
  }
  .u-2\/2--tablet {
    width: 100% !important;
  }
  .u-1\/3--tablet {
    width: 33.3333333333% !important;
  }
  .u-2\/3--tablet {
    width: 66.6666666667% !important;
  }
  .u-3\/3--tablet {
    width: 100% !important;
  }
  .u-1\/4--tablet {
    width: 25% !important;
  }
  .u-2\/4--tablet {
    width: 50% !important;
  }
  .u-3\/4--tablet {
    width: 75% !important;
  }
  .u-4\/4--tablet {
    width: 100% !important;
  }
  .u-1\/5--tablet {
    width: 20% !important;
  }
  .u-2\/5--tablet {
    width: 40% !important;
  }
  .u-3\/5--tablet {
    width: 60% !important;
  }
  .u-4\/5--tablet {
    width: 80% !important;
  }
  .u-5\/5--tablet {
    width: 100% !important;
  }
}
@media (min-width: 61.25em) {
  .u-1\/1--desktop {
    width: 100% !important;
  }
  .u-1\/2--desktop {
    width: 50% !important;
  }
  .u-2\/2--desktop {
    width: 100% !important;
  }
  .u-1\/3--desktop {
    width: 33.3333333333% !important;
  }
  .u-2\/3--desktop {
    width: 66.6666666667% !important;
  }
  .u-3\/3--desktop {
    width: 100% !important;
  }
  .u-1\/4--desktop {
    width: 25% !important;
  }
  .u-2\/4--desktop {
    width: 50% !important;
  }
  .u-3\/4--desktop {
    width: 75% !important;
  }
  .u-4\/4--desktop {
    width: 100% !important;
  }
  .u-1\/5--desktop {
    width: 20% !important;
  }
  .u-2\/5--desktop {
    width: 40% !important;
  }
  .u-3\/5--desktop {
    width: 60% !important;
  }
  .u-4\/5--desktop {
    width: 80% !important;
  }
  .u-5\/5--desktop {
    width: 100% !important;
  }
}
@media (min-width: 81.25em) {
  .u-1\/1--wide {
    width: 100% !important;
  }
  .u-1\/2--wide {
    width: 50% !important;
  }
  .u-2\/2--wide {
    width: 100% !important;
  }
  .u-1\/3--wide {
    width: 33.3333333333% !important;
  }
  .u-2\/3--wide {
    width: 66.6666666667% !important;
  }
  .u-3\/3--wide {
    width: 100% !important;
  }
  .u-1\/4--wide {
    width: 25% !important;
  }
  .u-2\/4--wide {
    width: 50% !important;
  }
  .u-3\/4--wide {
    width: 75% !important;
  }
  .u-4\/4--wide {
    width: 100% !important;
  }
  .u-1\/5--wide {
    width: 20% !important;
  }
  .u-2\/5--wide {
    width: 40% !important;
  }
  .u-3\/5--wide {
    width: 60% !important;
  }
  .u-4\/5--wide {
    width: 80% !important;
  }
  .u-5\/5--wide {
    width: 100% !important;
  }
}
@font-face {
  font-family: "rets-sync-icons";
  src: url("../fonts/rets-sync-icons.eot?981v95");
  src: url("../fonts/rets-sync-icons.eot?981v95#iefix") format("embedded-opentype"), url("../fonts/rets-sync-icons.ttf?981v95") format("truetype"), url("../fonts/rets-sync-icons.woff?981v95") format("woff"), url("../fonts/rets-sync-icons.svg?981v95#rets-sync-icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "rets-sync-icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.i-google .path1:before {
  content: "\e944";
  color: rgb(66, 133, 244);
}

.i-google .path2:before {
  content: "\e946";
  margin-left: -1em;
  color: rgb(52, 168, 83);
}

.i-google .path3:before {
  content: "\e947";
  margin-left: -1em;
  color: rgb(251, 188, 5);
}

.i-google .path4:before {
  content: "\e948";
  margin-left: -1em;
  color: rgb(234, 67, 53);
}

.i-circle-play-solid:before {
  content: "\e941";
}

.i-circle-play:before {
  content: "\e942";
}

.i-play:before {
  content: "\e943";
}

.i-camera-360:before {
  content: "\e945";
}

.i-printer:before {
  content: "\e940";
}

.i-stairs:before {
  content: "\e93f";
}

.i-dumbbell:before {
  content: "\e93e";
}

.i-security:before {
  content: "\e93d";
}

.i-balcony:before {
  content: "\e930";
}

.i-deck:before {
  content: "\e931";
}

.i-elevator:before {
  content: "\e932";
}

.i-lawnmower:before {
  content: "\e933";
}

.i-patio:before {
  content: "\e934";
}

.i-fireplace:before {
  content: "\e935";
}

.i-gazebo:before {
  content: "\e936";
}

.i-parking:before {
  content: "\e937";
}

.i-box-archive:before {
  content: "\e938";
}

.i-hot-tub:before {
  content: "\e939";
}

.i-road:before {
  content: "\e93a";
}

.i-swimming:before {
  content: "\e93b";
}

.i-wheelchair:before {
  content: "\e93c";
}

.i-star:before {
  content: "\e92f";
}

.i-car:before {
  content: "\e92b";
}

.i-paw:before {
  content: "\e92c";
}

.i-tag:before {
  content: "\e92d";
}

.i-water:before {
  content: "\e92e";
}

.i-image-gallery:before {
  content: "\e92a";
}

.i-caret-down:before {
  content: "\e926";
}

.i-caret-left:before {
  content: "\e927";
}

.i-caret-right:before {
  content: "\e928";
}

.i-caret-up:before {
  content: "\e929";
}

.i-arrow-rotate-left:before {
  content: "\e900";
}

.i-arrow-up-short:before {
  content: "\e901";
}

.i-arrow-up-wide-short:before {
  content: "\e902";
}

.i-bath:before {
  content: "\e903";
}

.i-bed:before {
  content: "\e904";
}

.i-bookmark-solid:before {
  content: "\e905";
}

.i-bookmark:before {
  content: "\e906";
}

.i-calendar-days:before {
  content: "\e907";
}

.i-clock:before {
  content: "\e908";
}

.i-dollar-sign:before {
  content: "\e909";
}

.i-garage:before {
  content: "\e90a";
}

.i-grid-solid:before {
  content: "\e90b";
}

.i-grid:before {
  content: "\e90c";
}

.i-heart-solid:before {
  content: "\e90d";
}

.i-heart:before {
  content: "\e90e";
}

.i-home:before {
  content: "\e90f";
}

.i-location-dot-solid:before {
  content: "\e910";
}

.i-location-dot:before {
  content: "\e911";
}

.i-map-location-dot-solid:before {
  content: "\e912";
}

.i-map-location-dot:before {
  content: "\e925";
}

.i-phone-solid:before {
  content: "\e913";
}

.i-plus:before {
  content: "\e914";
}

.i-ruler-angle:before {
  content: "\e915";
}

.i-ruler-vertical:before {
  content: "\e916";
}

.i-ruler:before {
  content: "\e917";
}

.i-search:before {
  content: "\e918";
}

.i-share-solid:before {
  content: "\e919";
}

.i-share:before {
  content: "\e91a";
}

.i-sign-hanging-solid:before {
  content: "\e91b";
}

.i-sign-hanging:before {
  content: "\e91c";
}

.i-sliders:before {
  content: "\e91d";
}

.i-sort:before {
  content: "\e91e";
}

.i-square-check:before {
  content: "\e91f";
}

.i-table-list-solid:before {
  content: "\e920";
}

.i-table-list:before {
  content: "\e921";
}

.i-thumbs-up:before {
  content: "\e922";
}

.i-up-right-from-square:before {
  content: "\e923";
}

.i-xmark:before {
  content: "\e924";
}