@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
}

.wrapper {
  box-sizing: border-box;
  padding: 0 1em;
  margin: 0 auto;
  max-width: 580px;
}
@media (min-width: 580px) {
  .wrapper {
    max-width: 767px;
  }
  .wrapper::after {
    content: "";
    clear: both;
    display: table;
  }
}
@media (min-width: 768px) {
  .wrapper {
    max-width: 992px;
  }
}
@media (min-width: 992px) {
  .wrapper {
    max-width: 1125px;
  }
}

/* Link Color Mixin 
  Who Likes being able to quickly over-ride default link static and hover colors?! You Do!
  use on the <a> selector (or whatever you are hovering) passing a $static and/or $hover color or neither (uses site defaults):
  @include link-color(color(swatch-one), color(swatch-two));
    OR
  @include link-color;
 */
/* Graceful degredations from http://cssfontstack.com */
*[class*=fa-] {
  opacity: 0;
  transition: opacity ease-in 0.3s;
  display: inline-block;
  width: 0.875em;
}
.wf-active *[class*=fa-] {
  opacity: 1;
}
.wf-inactive *[class*=fa-] {
  opacity: 1;
}
.wf-active *[class*=fa-]:not(.fa-fw, .fa-li) {
  width: auto;
}

*[class*=font-effects] {
  opacity: 0;
  transition: opacity ease 0.3s;
}
*[class*=font-effects] .wf-gfx-loaded {
  opacity: 1;
}

body {
  color: black;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.375;
}
@media (min-width: 768px) {
  body {
    line-height: 1.5;
  }
}

.link, a {
  text-decoration: none;
  will-change: color, text-shadow;
  transition: all 0.3s ease;
}
.link, a, .link:visited, .link:active, .link:visited:active {
  color: #bd1d1d;
}
.link:hover, a:hover, .link:visited:hover {
  color: #8d1515;
}

.italic, i, em {
  font-style: italic;
}

.bold, b, strong, .h2, h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6 {
  font-weight: 700;
}

.h1, h1 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  margin-top: 0;
  margin-bottom: 0.25em;
  font-size: 2em;
  /* 2x body copy size = 32px */
  line-height: 1.25;
  /* 45px / 36px */
}
.wf-active .h1, .wf-active h1 {
  opacity: 1;
}
.wf-inactive .h1, .wf-inactive h1 {
  opacity: 1;
}
@media (min-width: 768px) {
  .h1, h1 {
    font-size: 2.5em;
    /* 2.5x body copy size = 40px */
    line-height: 1.3;
  }
}
@media (min-width: 992px) {
  .h1, h1 {
    font-size: 2.5em;
    /* keep to a multiple of the 20px line height and something more appropriate for display headings */
    line-height: 1.3;
  }
}

.h2, h2 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1.625em;
  /* 1.625x body copy size = 26px */
  line-height: 1.15384615;
  /* 30px / 26px */
}
.wf-active .h2, .wf-active h2 {
  opacity: 1;
}
.wf-inactive .h2, .wf-inactive h2 {
  opacity: 1;
}
@media (min-width: 768px) {
  .h2, h2 {
    font-size: 2em;
    /* 2x body copy size = 32px */
    line-height: 1.25;
  }
}
@media (min-width: 992px) {
  .h2, h2 {
    font-size: 2em;
    /* 2.25x body copy size = 36px */
    line-height: 1.25;
  }
}

.h3, h3 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1.375em;
  /* 1.375x body copy size = 22px */
  line-height: 1.13636364;
  /* 25px / 22px */
}
.wf-active .h3, .wf-active h3 {
  opacity: 1;
}
.wf-inactive .h3, .wf-inactive h3 {
  opacity: 1;
}
@media (min-width: 768px) {
  .h3, h3 {
    font-size: 1.5em;
    /* 1.5x body copy size = 24px */
    line-height: 1.25;
  }
}
@media (min-width: 992px) {
  .h3, h3 {
    font-size: 1.75em;
    /* 1.75x body copy size = 28px */
    line-height: 1.25;
  }
}

.h4, h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1.25em;
  /* 1.125x body copy size = 18px */
  line-height: 1.11111111;
}
.wf-active .h4, .wf-active h4 {
  opacity: 1;
}
.wf-inactive .h4, .wf-inactive h4 {
  opacity: 1;
}
@media (min-width: 768px) {
  .h4, h4 {
    line-height: 1.22222222;
    /* (22px / 18px) */
  }
}

.h5, h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1.0625em;
  /* 1.0625x body copy size = 17px */
  line-height: 1.11111111;
}
.wf-active .h5, .wf-active h5 {
  opacity: 1;
}
.wf-inactive .h5, .wf-inactive h5 {
  opacity: 1;
}

.h6, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1em;
  line-height: 1.11111111;
}
.wf-active .h6, .wf-active h6 {
  opacity: 1;
}
.wf-inactive .h6, .wf-inactive h6 {
  opacity: 1;
}

.h2, h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6 {
  margin-top: 1.2em;
  margin-bottom: 0.25em;
}

.block-margins, ul, ol, pre, blockquote {
  margin: 1rem 0;
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

blockquote {
  margin-left: 1em;
  margin-right: 1em;
}

p > a:hover {
  text-decoration: underline;
}

/* overrides */
.intro-text {
  font-size: 1.3em;
  line-height: 1.3;
}

h4.blog-date {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  margin-top: 0;
  margin-bottom: 0.5em;
}
.wf-active h4.blog-date {
  opacity: 1;
}
.wf-inactive h4.blog-date {
  opacity: 1;
}

.blockify {
  display: block !important;
}

.inlinify {
  display: inline-block !important;
}

.clearfix {
  overflow: hidden;
}

.pie-clearfix {
  overflow: visible;
}

.clear {
  clear: both;
}

.clear-left {
  clear: left;
}

.clear-right {
  clear: right;
}

.float-left {
  float: left;
}

img.float-left {
  margin-right: 1em;
}

.float-right {
  float: right;
}

img.float-right {
  margin-left: 1em;
}

.no-float {
  float: none !important;
}

.headroom {
  margin-top: 2em;
}

.less-headroom {
  margin-top: 1em;
}

.more-less-headroom {
  margin-top: 0.5em;
}

.no-headroom {
  margin-top: 0 !important;
}

.legroom {
  margin-bottom: 2em;
}

.less-legroom {
  margin-bottom: 1em;
}

.more-less-legroom {
  margin-bottom: 0.5em;
}

.no-legroom {
  margin-bottom: 0;
}

.no-margin {
  margin: 0 !important;
}

.no-border {
  border: none !important;
}

.margin-bottom-1em {
  margin: 0 0 1rem 0;
}

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

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

.text-right {
  text-align: right !important;
}

ul.no-bullets {
  list-style-type: none;
  padding: 0 0 0 1em;
}

.hide-text {
  font: 0/0 serif;
  text-shadow: none;
  color: transparent;
}

.hyphenate {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.list-reset li {
  margin: 0;
}

.list-inline li {
  display: inline-block;
  float: left;
}
.list-inline li:not(:first-child) {
  margin-left: 0.5em;
}
.list-inline li:not(:last-child) {
  margin-right: 0.5em;
}

/* ghost button */
.ghost-button {
  cursor: pointer;
  display: inline-block;
  padding: 0.5em 1em;
  color: #d22020;
  background-color: white;
  border: 1px solid #d22020;
  border-radius: 2px;
  box-shadow: 0px 2px 3px gray;
  text-align: center;
  outline: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  line-height: 1.2;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, background-image 0.3s ease-out, border-color 0.3s ease-out;
}
.wf-active .ghost-button {
  opacity: 1;
}
.wf-inactive .ghost-button {
  opacity: 1;
}
.ghost-button:link, .ghost-button:visited {
  color: #d22020;
}
.ghost-button:hover, .ghost-button:active, .ghost-button:visited:hover {
  background-color: #d22020;
  border-color: #d22020;
  color: white;
  transition: color 0.3s ease-in, background-color 0.3s ease-in, background-image 0.3s ease-in, border-color 0.3s ease-in;
}
.ghost-button.small {
  font-size: 0.85em;
}

.freeform-column.freeform-column-content-align-left button {
  cursor: pointer;
  display: inline-block;
  padding: 0.5em 1em;
  color: #d22020;
  background-color: white;
  border: 1px solid #d22020;
  border-radius: 2px;
  box-shadow: 0px 2px 3px gray;
  text-align: center;
  outline: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  line-height: 1.2;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, background-image 0.3s ease-out, border-color 0.3s ease-out;
}
.wf-active .freeform-column.freeform-column-content-align-left button {
  opacity: 1;
}
.wf-inactive .freeform-column.freeform-column-content-align-left button {
  opacity: 1;
}
.freeform-column.freeform-column-content-align-left button:link, .freeform-column.freeform-column-content-align-left button:visited {
  color: #d22020;
}
.freeform-column.freeform-column-content-align-left button:hover, .freeform-column.freeform-column-content-align-left button:active, .freeform-column.freeform-column-content-align-left button:visited:hover {
  background-color: #d22020;
  border-color: #d22020;
  color: white;
  transition: color 0.3s ease-in, background-color 0.3s ease-in, background-image 0.3s ease-in, border-color 0.3s ease-in;
}
.freeform-column.freeform-column-content-align-left button.small {
  font-size: 0.85em;
}

/* striped table */
table.striped {
  border: 1px solid #b2b2b2;
  border-radius: 2px;
}
table.striped th {
  font-weight: 600;
  color: white;
  background-color: #b2b2b2;
  border-right: 1px solid rgba(255, 255, 255, 0.75);
}
table.striped th:first-child {
  border-radius: 1px 0 0 0;
}
table.striped th:last-child {
  border-radius: 0 1px 0 0;
}
table.striped td {
  background-color: rgba(255, 255, 255, 0.75);
  border-right: 1px solid rgba(178, 178, 178, 0.5);
  border-bottom: 1px solid rgba(178, 178, 178, 0.5);
}
table.striped th,
table.striped td {
  padding: 0.5em;
  vertical-align: top;
}
table.striped th:last-child,
table.striped td:last-child {
  border-right: none;
}
table.striped tbody tr:last-child td {
  border-bottom: none;
}
table.striped tbody tr:nth-child(even) td {
  background-color: rgba(255, 255, 255, 0.5);
}
table.striped tfoot td {
  background-color: rgba(178, 178, 178, 0.1);
  border-top: 1px solid rgba(178, 178, 178, 0.5);
  border-bottom: none;
  text-align: center;
  font-size: 0.8em;
}
table.striped tfoot td:first-child {
  border-radius: 0 0 0 1px;
}
table.striped tfoot td:last-child {
  border-radius: 0 0 1px 0;
}
table.striped tfoot td:only-child {
  border-radius: 0 0 1px 1px;
}
table.striped caption {
  position: absolute;
  left: -9000px;
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

.no-mobile {
  display: none;
}
@media (min-width: 768px) {
  .no-mobile {
    display: block;
  }
  .no-mobile ul li {
    display: list-item;
  }
}

.desktop-only {
  display: none;
}
@media (min-width: 992px) {
  .desktop-only {
    display: inline-block;
  }
}

section.accordion-content {
  overflow: auto;
}
section.accordion-content article {
  width: 100% !important;
}
section.accordion-content h4 {
  padding-left: 1.3em;
  cursor: pointer;
  margin-top: 0.5em;
  margin-bottom: 1px;
}
section.accordion-content svg.trigger-plus {
  display: inline-block;
  float: left;
  width: 1.5em;
  height: 1.5em;
  margin-top: -2px;
  margin-left: -1.4em;
}
section.accordion-content div {
  padding-left: 1.6em;
}
section.accordion-content article.fn_showMoreInfo .drawer p {
  opacity: 0;
  transition: opacity ease-in 1s;
}
section.accordion-content article.fn_showMoreInfo.open .drawer p {
  opacity: 1;
}

/* Plus sign expand list trigger */
.trigger-plus {
  fill: #181818;
  transition: transform ease 0.5s;
  transform: scale(0.5, 0.5);
  transform-origin: 50% 50%;
  will-change: transform;
}

.trigger-plus .vertical {
  transition: transform ease 0.5s;
  will-change: transform;
  transform-origin: 50% 50%;
}

.trigger-plus:hover,
*:hover > .trigger-plus {
  transform: scale(0.75, 0.75);
}

.open > * > .trigger-plus {
  transform: scale(0.5, 0.5);
}

.open > * > .trigger-plus .vertical {
  transform: scaleY(0);
}

.open > * > .trigger-plus:hover {
  transform: rotate(90deg) scale(0.5, 0.5);
}

ul.pagination {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.pagination li {
  display: inline-block;
  padding: 2px;
}
ul.pagination li a {
  font-family: "Merriweather", serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 18px;
  color: gray;
  border-radius: 50%;
  border: 1px solid;
  padding: 2px 8px;
}
.wf-active ul.pagination li a {
  opacity: 1;
}
.wf-inactive ul.pagination li a {
  opacity: 1;
}
ul.pagination li a:hover {
  color: black;
  border-color: black;
}
ul.pagination li a.active {
  color: black;
}

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/* debug */
div.debug {
  font-size: 10px;
  position: relative;
  background-color: #d91350;
  border: 1px dotted #d91350;
  color: white;
  padding: 2em 1em 1em 1em;
  border-radius: 1em;
  opacity: 0.5;
}
div.debug:hover {
  opacity: 1;
}
div.debug::before {
  content: "debug";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1em;
  line-height: 1em;
  color: #d91350;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px dotted white;
  border-radius: 1em 1em 0 0;
  padding: 0.25em 1em;
}

@-webkit-keyframes animate-shadow {
  0% {
    box-shadow: 0px 0px 50px 25px #868686;
  }
  100% {
    box-shadow: 0px 0px 0px 0px #868686;
  }
}
@keyframes animate-shadow {
  0% {
    box-shadow: 0px 0px 50px 25px #868686;
  }
  100% {
    box-shadow: 0px 0px 0px 0px #868686;
  }
}
form {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  font-weight: 400;
  overflow: auto;
}
form *,
form *::before,
form *::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
form .group.radio.inline label {
  margin-right: 1.5em;
}

fieldset {
  border: none;
}

input[type=email],
input[type=date],
input[type=text],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
textarea {
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid gray;
  font-size: 1em;
  min-height: 2em;
  padding: 0.25em 3px;
  width: 100%;
  color: black;
}
input[type=email]:focus, input[type=email]:target,
input[type=date]:focus,
input[type=date]:target,
input[type=text]:focus,
input[type=text]:target,
input[type=datetime]:focus,
input[type=datetime]:target,
input[type=datetime-local]:focus,
input[type=datetime-local]:target,
input[type=email]:focus,
input[type=email]:target,
input[type=month]:focus,
input[type=month]:target,
input[type=number]:focus,
input[type=number]:target,
input[type=password]:focus,
input[type=password]:target,
input[type=tel]:focus,
input[type=tel]:target,
input[type=text]:focus,
input[type=text]:target,
input[type=time]:focus,
input[type=time]:target,
input[type=url]:focus,
input[type=url]:target,
input[type=week]:focus,
input[type=week]:target,
textarea:focus,
textarea:target {
  color: black;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid gray;
}
.error input[type=email]:focus, div.formError[style*="opacity: 0."] + input[type=email]:focus, div.formError[style*="opacity: 0."] + input[type=email], input[type=email]:focus.error,
.error input[type=date]:focus,
div.formError[style*="opacity: 0."] + input[type=date]:focus,
div.formError[style*="opacity: 0."] + input[type=date],
input[type=date]:focus.error,
.error input[type=text]:focus,
div.formError[style*="opacity: 0."] + input[type=text]:focus,
div.formError[style*="opacity: 0."] + input[type=text],
input[type=text]:focus.error,
.error input[type=datetime]:focus,
div.formError[style*="opacity: 0."] + input[type=datetime]:focus,
div.formError[style*="opacity: 0."] + input[type=datetime],
input[type=datetime]:focus.error,
.error input[type=datetime-local]:focus,
div.formError[style*="opacity: 0."] + input[type=datetime-local]:focus,
div.formError[style*="opacity: 0."] + input[type=datetime-local],
input[type=datetime-local]:focus.error,
.error input[type=email]:focus,
div.formError[style*="opacity: 0."] + input[type=email]:focus,
div.formError[style*="opacity: 0."] + input[type=email],
input[type=email]:focus.error,
.error input[type=month]:focus,
div.formError[style*="opacity: 0."] + input[type=month]:focus,
div.formError[style*="opacity: 0."] + input[type=month],
input[type=month]:focus.error,
.error input[type=number]:focus,
div.formError[style*="opacity: 0."] + input[type=number]:focus,
div.formError[style*="opacity: 0."] + input[type=number],
input[type=number]:focus.error,
.error input[type=password]:focus,
div.formError[style*="opacity: 0."] + input[type=password]:focus,
div.formError[style*="opacity: 0."] + input[type=password],
input[type=password]:focus.error,
.error input[type=tel]:focus,
div.formError[style*="opacity: 0."] + input[type=tel]:focus,
div.formError[style*="opacity: 0."] + input[type=tel],
input[type=tel]:focus.error,
.error input[type=text]:focus,
div.formError[style*="opacity: 0."] + input[type=text]:focus,
div.formError[style*="opacity: 0."] + input[type=text],
input[type=text]:focus.error,
.error input[type=time]:focus,
div.formError[style*="opacity: 0."] + input[type=time]:focus,
div.formError[style*="opacity: 0."] + input[type=time],
input[type=time]:focus.error,
.error input[type=url]:focus,
div.formError[style*="opacity: 0."] + input[type=url]:focus,
div.formError[style*="opacity: 0."] + input[type=url],
input[type=url]:focus.error,
.error input[type=week]:focus,
div.formError[style*="opacity: 0."] + input[type=week]:focus,
div.formError[style*="opacity: 0."] + input[type=week],
input[type=week]:focus.error,
.error textarea:focus,
div.formError[style*="opacity: 0."] + textarea:focus,
div.formError[style*="opacity: 0."] + textarea,
textarea:focus.error {
  color: #d91350;
}
input[type=email]:focus,
input[type=date]:focus,
input[type=text]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
textarea:focus {
  outline-color: #a0a0a0;
  outline-width: 2px;
  outline-style: solid;
  outline-offset: 1px;
}
.error input[type=email]:focus, div.formError[style^="opacity: 0."] + input[type=email]:focus, input[type=email]:focus.error,
.error input[type=date]:focus,
div.formError[style^="opacity: 0."] + input[type=date]:focus,
input[type=date]:focus.error,
.error input[type=text]:focus,
div.formError[style^="opacity: 0."] + input[type=text]:focus,
input[type=text]:focus.error,
.error input[type=datetime]:focus,
div.formError[style^="opacity: 0."] + input[type=datetime]:focus,
input[type=datetime]:focus.error,
.error input[type=datetime-local]:focus,
div.formError[style^="opacity: 0."] + input[type=datetime-local]:focus,
input[type=datetime-local]:focus.error,
.error input[type=email]:focus,
div.formError[style^="opacity: 0."] + input[type=email]:focus,
input[type=email]:focus.error,
.error input[type=month]:focus,
div.formError[style^="opacity: 0."] + input[type=month]:focus,
input[type=month]:focus.error,
.error input[type=number]:focus,
div.formError[style^="opacity: 0."] + input[type=number]:focus,
input[type=number]:focus.error,
.error input[type=password]:focus,
div.formError[style^="opacity: 0."] + input[type=password]:focus,
input[type=password]:focus.error,
.error input[type=tel]:focus,
div.formError[style^="opacity: 0."] + input[type=tel]:focus,
input[type=tel]:focus.error,
.error input[type=text]:focus,
div.formError[style^="opacity: 0."] + input[type=text]:focus,
input[type=text]:focus.error,
.error input[type=time]:focus,
div.formError[style^="opacity: 0."] + input[type=time]:focus,
input[type=time]:focus.error,
.error input[type=url]:focus,
div.formError[style^="opacity: 0."] + input[type=url]:focus,
input[type=url]:focus.error,
.error input[type=week]:focus,
div.formError[style^="opacity: 0."] + input[type=week]:focus,
input[type=week]:focus.error,
.error textarea:focus,
div.formError[style^="opacity: 0."] + textarea:focus,
textarea:focus.error {
  outline-width: 2px;
  outline-style: solid;
  outline-offset: 1px;
}
input[type=email][size="1"],
input[type=date][size="1"],
input[type=text][size="1"],
input[type=datetime][size="1"],
input[type=datetime-local][size="1"],
input[type=email][size="1"],
input[type=month][size="1"],
input[type=number][size="1"],
input[type=password][size="1"],
input[type=tel][size="1"],
input[type=text][size="1"],
input[type=time][size="1"],
input[type=url][size="1"],
input[type=week][size="1"],
textarea[size="1"] {
  width: 1em;
}
input[type=email][size="2"],
input[type=date][size="2"],
input[type=text][size="2"],
input[type=datetime][size="2"],
input[type=datetime-local][size="2"],
input[type=email][size="2"],
input[type=month][size="2"],
input[type=number][size="2"],
input[type=password][size="2"],
input[type=tel][size="2"],
input[type=text][size="2"],
input[type=time][size="2"],
input[type=url][size="2"],
input[type=week][size="2"],
textarea[size="2"] {
  width: 2em;
}
input[type=email][size="3"],
input[type=date][size="3"],
input[type=text][size="3"],
input[type=datetime][size="3"],
input[type=datetime-local][size="3"],
input[type=email][size="3"],
input[type=month][size="3"],
input[type=number][size="3"],
input[type=password][size="3"],
input[type=tel][size="3"],
input[type=text][size="3"],
input[type=time][size="3"],
input[type=url][size="3"],
input[type=week][size="3"],
textarea[size="3"] {
  width: 3em;
}
input[type=email][size="4"],
input[type=date][size="4"],
input[type=text][size="4"],
input[type=datetime][size="4"],
input[type=datetime-local][size="4"],
input[type=email][size="4"],
input[type=month][size="4"],
input[type=number][size="4"],
input[type=password][size="4"],
input[type=tel][size="4"],
input[type=text][size="4"],
input[type=time][size="4"],
input[type=url][size="4"],
input[type=week][size="4"],
textarea[size="4"] {
  width: 4em;
}
input[type=email][size="5"],
input[type=date][size="5"],
input[type=text][size="5"],
input[type=datetime][size="5"],
input[type=datetime-local][size="5"],
input[type=email][size="5"],
input[type=month][size="5"],
input[type=number][size="5"],
input[type=password][size="5"],
input[type=tel][size="5"],
input[type=text][size="5"],
input[type=time][size="5"],
input[type=url][size="5"],
input[type=week][size="5"],
textarea[size="5"] {
  width: 5em;
}
input[type=email][type=submit], input[type=email][type=reset],
input[type=date][type=submit],
input[type=date][type=reset],
input[type=text][type=submit],
input[type=text][type=reset],
input[type=datetime][type=submit],
input[type=datetime][type=reset],
input[type=datetime-local][type=submit],
input[type=datetime-local][type=reset],
input[type=email][type=submit],
input[type=email][type=reset],
input[type=month][type=submit],
input[type=month][type=reset],
input[type=number][type=submit],
input[type=number][type=reset],
input[type=password][type=submit],
input[type=password][type=reset],
input[type=tel][type=submit],
input[type=tel][type=reset],
input[type=text][type=submit],
input[type=text][type=reset],
input[type=time][type=submit],
input[type=time][type=reset],
input[type=url][type=submit],
input[type=url][type=reset],
input[type=week][type=submit],
input[type=week][type=reset],
textarea[type=submit],
textarea[type=reset] {
  background-color: #bd1d1d;
  background-image: none;
  color: white;
}
input[type=email][type=submit]:hover, input[type=email][type=reset]:hover,
input[type=date][type=submit]:hover,
input[type=date][type=reset]:hover,
input[type=text][type=submit]:hover,
input[type=text][type=reset]:hover,
input[type=datetime][type=submit]:hover,
input[type=datetime][type=reset]:hover,
input[type=datetime-local][type=submit]:hover,
input[type=datetime-local][type=reset]:hover,
input[type=email][type=submit]:hover,
input[type=email][type=reset]:hover,
input[type=month][type=submit]:hover,
input[type=month][type=reset]:hover,
input[type=number][type=submit]:hover,
input[type=number][type=reset]:hover,
input[type=password][type=submit]:hover,
input[type=password][type=reset]:hover,
input[type=tel][type=submit]:hover,
input[type=tel][type=reset]:hover,
input[type=text][type=submit]:hover,
input[type=text][type=reset]:hover,
input[type=time][type=submit]:hover,
input[type=time][type=reset]:hover,
input[type=url][type=submit]:hover,
input[type=url][type=reset]:hover,
input[type=week][type=submit]:hover,
input[type=week][type=reset]:hover,
textarea[type=submit]:hover,
textarea[type=reset]:hover {
  background-color: #8d1515;
  background-image: none;
}

input[type=radio]:not(old),
input[type=checkbox]:not(old) {
  width: 2em;
  margin: 0;
  padding: 0;
  opacity: 0;
}
input[type=radio]:not(old) + label,
input[type=checkbox]:not(old) + label {
  line-height: 2em;
  vertical-align: middle;
}
input[type=radio]:not(old) + label::before,
input[type=checkbox]:not(old) + label::before {
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 2em;
  color: #b2b2b2;
  height: 2em;
  line-height: 2em;
  margin-left: -1em;
  margin-right: 0.5em;
  vertical-align: middle;
}
input[type=radio]:not(old):checked + label::before,
input[type=checkbox]:not(old):checked + label::before {
  color: #d22020;
}
input[type=radio]:not(old):focus + label,
input[type=checkbox]:not(old):focus + label {
  box-shadow: 0px 0px 2px 0px #a0a0a0;
}

input[type=radio]:not(old) + label::before {
  content: "";
}
input[type=radio]:not(old):checked + label::before {
  content: "";
}

input[type=checkbox]:not(old) + label::before {
  content: "";
}
input[type=checkbox]:not(old):checked + label::before {
  content: "";
}

textarea {
  resize: vertical;
}

label {
  font-size: 0.85em;
}

/* Group control */
.group {
  margin-bottom: 1em;
}
.group.sized {
  float: left;
  width: 100%;
}
@media (min-width: 768px) {
  .group.sized.half {
    width: 50%;
  }
  *[class*=sized] ~ .group.sized.half {
    width: 48%;
    margin-left: 2%;
  }
  *[class*=sized] ~ .group.sized.half.new-row {
    width: 50%;
    margin-left: 0;
    clear: both;
  }
  .group:not(*[class*=sized]) + .group.sized.half, .group.sized.half.new-row {
    width: 50%;
    margin-left: 0;
    clear: both;
  }
}
@media (min-width: 768px) {
  .group.sized.third {
    width: 33%;
  }
  *[class*=sized] ~ .group.sized.third {
    width: 31%;
    margin-left: 2%;
  }
  *[class*=sized] ~ .group.sized.third.new-row {
    width: 33%;
    margin-left: 0;
    clear: both;
  }
  .group:not(*[class*=sized]) + .group.sized.third, .group.sized.third.new-row {
    width: 33%;
    margin-left: 0;
    clear: both;
  }
}
@media (min-width: 768px) {
  .group.sized.quarter {
    width: 25%;
  }
  *[class*=sized] ~ .group.sized.quarter {
    width: 23%;
    margin-left: 2%;
  }
  *[class*=sized] ~ .group.sized.quarter.new-row {
    width: 25%;
    margin-left: 0;
    clear: both;
  }
  .group:not(*[class*=sized]) + .group.sized.quarter, .group.sized.quarter.new-row {
    width: 25%;
    margin-left: 0;
    clear: both;
  }
}
@media (min-width: 768px) {
  .group.sized.three-quarter {
    width: 75%;
  }
  *[class*=sized] ~ .group.sized.three-quarter {
    width: 73%;
    margin-left: 2%;
  }
  *[class*=sized] ~ .group.sized.three-quarter.new-row {
    width: 75%;
    margin-left: 0;
    clear: both;
  }
  .group:not(*[class*=sized]) + .group.sized.three-quarter, .group.sized.three-quarter.new-row {
    width: 75%;
    margin-left: 0;
    clear: both;
  }
}
.group.sized + *:not(*[class*=sized]) {
  clear: both;
}
.group.readonly label::after {
  display: inline-block;
  height: 1em;
  bottom: -1em;
  content: "(Read Only)";
  color: rgba(0, 0, 0, 0.95);
  font-size: 0.75em;
  line-height: 1em;
}

/* Fancy Stylized Inputs 
 * inspired by http://tympanus.net/Development/TextInputEffects/ */
.group.pulse-on-focus {
  display: block;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.group.pulse-on-focus input[type=email]:focus,
.group.pulse-on-focus input[type=date]:focus,
.group.pulse-on-focus input[type=text]:focus,
.group.pulse-on-focus input[type=datetime]:focus,
.group.pulse-on-focus input[type=datetime-local]:focus,
.group.pulse-on-focus input[type=email]:focus,
.group.pulse-on-focus input[type=month]:focus,
.group.pulse-on-focus input[type=number]:focus,
.group.pulse-on-focus input[type=password]:focus,
.group.pulse-on-focus input[type=tel]:focus,
.group.pulse-on-focus input[type=text]:focus,
.group.pulse-on-focus input[type=time]:focus,
.group.pulse-on-focus input[type=url]:focus,
.group.pulse-on-focus input[type=week]:focus,
.group.pulse-on-focus textarea:focus,
.group.pulse-on-focus select:focus {
  outline-width: 1px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-animation: animate-shadow 0.3s normal;
  animation: animate-shadow 0.3s normal;
}

.group.radio.switcher {
  /*  insipired by http://cssdeck.com/labs/radio-button
    <div class="group radio switcher">
      <!-- #blank is optional, but recommended - it allows users to not answer the question-->
      <label for="blank">So here's the Yes or No Question...</label>
      <input type="radio" name="field_name" id="blank" value="" checked>
      <input type="radio" name="field_name" id="yes"   value="yes">
      <input type="radio" name="field_name" id="no"    value="no">
      <div class="switch">
        <label for="yes">Yes</label>
        <label for="no" >No</label>
        <span></span>
      </div>
    </div>
    */
  position: relative;
}
.group.radio.switcher > label {
  display: block;
  text-align: center;
}
.group.radio.switcher input[type=radio] {
  display: none;
}
.group.radio.switcher .switch {
  width: calc(100% - 2em);
  height: 2em;
  text-align: center;
  margin: 0 auto;
  background: #d22020;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 1em;
  position: relative;
}
.group.radio.switcher .switch span {
  position: absolute;
  width: 20px;
  height: 4px;
  top: 50%;
  left: 50%;
  margin: -2px 0px 0px -4px;
  background: white;
  display: block;
  -webkit-transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease;
  transform: rotate(-45deg);
  transition: all 0.2s ease;
}
.group.radio.switcher .switch span:after {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 12px;
  margin-top: -8px;
  background: white;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.group.radio.switcher .switch span:before {
  content: "or";
  -webkit-transform: rotate(45deg);
  display: block;
  position: absolute;
  top: -17px;
  left: -2px;
  z-index: 100;
  color: gray;
  font-size: 0.8em;
  text-transform: uppercase;
}
.group.radio.switcher .switch label {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  width: 50%;
  line-height: 2.3529411765 em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.group.radio.switcher .switch label[for*=yes] {
  position: absolute;
  left: 0px;
  height: 20px;
}
.group.radio.switcher .switch label[for*=no] {
  position: absolute;
  right: 0px;
}
.group.radio.switcher label[for*=blank]:after {
  content: " (reset)";
  font-size: 0.8em;
  font-style: italic;
  cursor: pointer;
}
.group.radio.switcher #no:checked ~ .switch {
  background: gray;
}
.group.radio.switcher #no:checked ~ .switch span {
  background: #d22020;
  margin-left: -8px;
}
.group.radio.switcher #no:checked ~ .switch span:after {
  background: #d22020;
  height: 20px;
  margin-top: -8px;
  margin-left: 8px;
}
.group.radio.switcher #no:checked ~ .switch span:before {
  display: none;
}
.group.radio.switcher #no:checked ~ .switch label[for*=no] {
  color: white;
  font-weight: 700;
}
.group.radio.switcher #yes:checked ~ .switch span:before {
  display: none;
}
.group.radio.switcher #yes:checked ~ .switch label[for*=yes] {
  color: white;
  font-weight: 700;
}
.group.radio.switcher #blank:checked ~ .switch {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid gray;
}
.group.radio.switcher #blank:checked ~ .switch label {
  color: black;
}

/* Z-INDEX */
.formError {
  z-index: 990;
}

.formError .formErrorContent {
  z-index: 991;
}

.formError .formErrorArrow {
  z-index: 996;
}

.ui-dialog .formError {
  z-index: 5000;
}

.ui-dialog .formError .formErrorContent {
  z-index: 5001;
}

.ui-dialog .formError .formErrorArrow {
  z-index: 5006;
}

.inputContainer {
  position: relative;
  float: left;
}

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left;
}

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
}

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none;
}

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px;
}

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
}

.greenPopup .formErrorContent {
  background: #33be40;
}

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative;
}

body[dir=rtl] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0;
}

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px;
}

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block;
}

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
}

.greenPopup .formErrorArrow div {
  background: #33be40;
}

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow .line10 {
  width: 15px;
  border: none;
}

.formError .formErrorArrow .line9 {
  width: 13px;
  border: none;
}

.formError .formErrorArrow .line8 {
  width: 11px;
}

.formError .formErrorArrow .line7 {
  width: 9px;
}

.formError .formErrorArrow .line6 {
  width: 7px;
}

.formError .formErrorArrow .line5 {
  width: 5px;
}

.formError .formErrorArrow .line4 {
  width: 3px;
}

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd;
}

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd;
}

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd;
}

/* honey pot */
.screen-reader {
  display: block !important;
  left: -9999px !important;
  position: absolute !important;
}

body {
  margin-top: 210px;
}
@media (min-width: 768px) {
  body {
    margin-top: 200px;
  }
}

body > header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 210px;
  background-image: url(/images/site-images/header-bg.jpg);
  background-repeat: repeat-x;
  background-color: white;
  transition: background-size 0.3s ease;
  z-index: 1000;
  box-shadow: 0 0 3px black;
}
body > header a.logo {
  position: absolute;
  top: 48px;
  left: 0;
  height: 60px;
  width: 100%;
  background-image: url(/images/site-images/Autohaus_Logo_2019.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  font: 0/0 serif;
  text-shadow: none;
  color: transparent;
  transition: all 0.3s ease;
}
body > header .address {
  position: absolute;
  top: 110px;
  left: 0;
  width: 100%;
  font-size: 0.8em;
  text-align: center;
  transition: all 0.3s ease;
}
body > header .hours {
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
  font-size: 0.8em;
  text-align: center;
  transition: all 0.3s ease;
}
body > header .phone-button {
  position: absolute;
  top: 155px;
  left: 0;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
}
body > header.smaller {
  height: 175px;
}
body > header.smaller .address, body > header.smaller .hours {
  font-size: 0;
}
body > header.smaller .phone-button {
  top: 120px;
}
body > header.smaller article#message {
  top: 175px;
  transition: top 0.3s ease-in;
}
@media (min-width: 768px) {
  body > header {
    height: 200px;
  }
  body > header a.logo {
    width: 65%;
    height: 100px;
    background-position: 2% center;
  }
  body > header .address, body > header .hours, body > header .phone {
    position: unset;
    top: unset;
    left: unset;
    display: inline-block;
    height: 45px;
    color: white;
    line-height: 45px;
  }
  body > header .address {
    width: 30%;
  }
  body > header .hours {
    width: 45%;
  }
  body > header .phone {
    text-align: right;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    opacity: 0;
    transition: opacity ease-in 0.3s;
    font-size: 1.2em;
  }
  .wf-active body > header .phone {
    opacity: 1;
  }
  .wf-inactive body > header .phone {
    opacity: 1;
  }
  body > header.smaller {
    height: 150px;
    background-color: white;
  }
  body > header.smaller a.logo {
    background-size: contain;
    padding-top: unset;
    padding-left: unset;
    height: 60px;
    width: 40%;
  }
  body > header.smaller .address, body > header.smaller .hours {
    font-size: 0.8em;
  }
  body > header.smaller nav.main {
    top: 110px;
  }
  body > header.smaller article#message {
    top: 150px;
  }
}
@media (min-width: 992px) {
  body > header .address {
    width: 220px;
  }
  body > header .hours {
    width: 240px;
  }
  body > header .header-cta {
    display: inline-block;
    margin-left: 5%;
  }
  body > header .header-cta a {
    padding: 1em 1em 1.25em 1em;
    background-color: #d22020;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    opacity: 0;
    transition: opacity ease-in 0.3s;
    color: white;
  }
  .wf-active body > header .header-cta a {
    opacity: 1;
  }
  .wf-inactive body > header .header-cta a {
    opacity: 1;
  }
  body > header .header-cta a:hover {
    padding-bottom: 1.5em;
    color: white;
  }
  body > header .phone {
    float: right;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    opacity: 0;
    transition: opacity ease-in 0.3s;
    font-size: 1.2em;
  }
  .wf-active body > header .phone {
    opacity: 1;
  }
  .wf-inactive body > header .phone {
    opacity: 1;
  }
}
@media (min-width: 1125px) {
  body > header a.logo {
    height: 120px;
  }
  body > header.smaller a.logo {
    height: 85px;
  }
}

@media (min-width: 768px) {
  header > .wrapper {
    position: relative;
  }
}

/* Navigation components */
a.skip-navigation {
  height: 28px;
  padding: 6px;
  position: absolute;
  top: -87px;
  left: 0px;
  color: white;
  line-height: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom-right-radius: 2px;
  background: transparent;
  -webkit-transition: top 1s ease-out, background 1s linear;
  transition: top 1s ease-out, background 1s linear;
  z-index: 10001;
}
a.skip-navigation:focus {
  position: absolute;
  left: 0px;
  top: 0px;
  outline: 0;
  -webkit-transition: top 0.1s ease-in, background 0.5s linear;
  transition: top 0.1s ease-in, background 0.5s linear;
}

.mobile-navigation {
  display: block;
  position: absolute;
  top: 210px;
  left: 0;
  right: 0;
  width: 100%;
  height: 45px;
  overflow-y: hidden;
  background-color: #b2b2b2;
  box-shadow: 0px 4px 12px 3px black;
  z-index: 2000;
}
@media (min-width: 768px) {
  .mobile-navigation {
    display: none;
  }
}

a.nav-toggle {
  display: block;
  position: absolute;
  top: 12px;
  right: 8px;
  width: 32px;
  height: 1.5em;
  font-size: 1.5em;
  z-index: 3000;
}
@media (min-width: 768px) {
  a.nav-toggle {
    display: none;
  }
}

#nav-icon {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(2) {
  top: 9px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(3) {
  top: 18px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon.open span:nth-child(1) {
  -webkit-transform: translate(8px, -2px) rotate(45deg);
  -moz-transform: translate(8px, -2px) rotate(45deg);
  -o-transform: translate(8px, -2px) rotate(45deg);
  transform: translate(8px, -2px) rotate(45deg);
}

#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: translate(8px, 2px) rotate(-45deg);
  -moz-transform: translate(8px, 2px) rotate(-45deg);
  -o-transform: translate(8px, 2px) rotate(-45deg);
  transform: translate(8px, 2px) rotate(-45deg);
}

nav.main {
  display: none;
}

nav.main.active {
  display: block;
  position: absolute;
  top: 45px;
  left: 0;
  width: 100vw;
  height: 90vh;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  background-color: #b2b2b2;
  font-size: 1.2em;
}
nav.main.active ul,
nav.main.active li {
  margin: 0;
  padding: 0;
  list-style: none;
}
nav.main.active li,
nav.main.active li a {
  display: block;
  width: auto;
  min-height: 40px;
  line-height: 40px;
}
nav.main.active li a {
  padding: 0 1em;
}
nav.main.active li.current > a {
  font-weight: bold;
}
nav.main.active li.no-mobile {
  display: none;
}
nav.main.active ul {
  position: relative;
}
nav.main.active ul li {
  border-bottom: 1px solid #c5c5c5;
}
nav.main.active ul li.current a {
  color: black;
}
nav.main.active ul li > ul {
  display: none;
}
nav.main.active ul li:hover > ul {
  display: block;
}
nav.main.active ul li.current > ul {
  display: block;
}
nav.main.active ul ul {
  margin: 0;
  background-color: #bababa;
}
nav.main.active ul ul li > a {
  padding-left: 36px;
}
nav.main.active ul ul li:last-child {
  border-bottom: none;
}
nav.main.active ul > li a {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
}
.wf-active nav.main.active ul > li a {
  opacity: 1;
}
.wf-inactive nav.main.active ul > li a {
  opacity: 1;
}
nav.main.active ul > li a, nav.main.active ul > li a:visited, nav.main.active ul > li a:active, nav.main.active ul > li a:visited:active {
  color: black;
}
nav.main.active ul > li a:hover, nav.main.active ul > li a:visited:hover {
  color: #8d1515;
}
nav.main.active ul > li a:hover, nav.main.active ul > li a:visited:hover {
  font-weight: bold;
  text-decoration: none;
  color: black;
}
nav.main.active ul > li a.ghost-button {
  margin: 0.5em;
  white-space: nowrap;
}
nav.main.active ul > li a.ghost-button:hover, nav.main.active ul > li a.ghost-button:visited:hover {
  text-decoration: none;
  color: #777777;
}

@media (min-width: 768px) {
  nav.main {
    display: block;
    position: absolute;
    top: 160px;
    right: 36px;
    bottom: 200px;
    transition: top 0.3s ease-in;
    font-size: 1.3em;
  }
  nav.main ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    height: 40px;
    padding-left: 150px;
  }
  nav.main ul li {
    margin: 0;
  }
  nav.main ul li {
    display: inline-block;
    float: left;
  }
  nav.main ul li:not(:first-child) {
    margin-left: 0;
  }
  nav.main ul li:not(:last-child) {
    margin-right: 0;
  }
  nav.main ul li {
    position: relative;
    float: left;
    padding: 0 8px;
    min-height: 40px;
    height: 40px;
    line-height: 40px;
  }
  nav.main ul li:hover a {
    color: #d22020;
  }
  nav.main ul li a {
    font-size: 1em;
    color: black;
    padding: 8px 0;
  }
  nav.main ul li.current > a {
    color: #d22020;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    opacity: 0;
    transition: opacity ease-in 0.3s;
  }
  .wf-active nav.main ul li.current > a {
    opacity: 1;
  }
  .wf-inactive nav.main ul li.current > a {
    opacity: 1;
  }
  nav.main ul li ul {
    display: none;
  }
  nav.main ul li:hover ul {
    display: block;
    z-index: 2000;
  }
  nav.main ul ul {
    position: absolute;
    background-color: white;
    top: 41px;
    left: 0;
    height: auto;
    padding: 0;
    margin: 0;
    box-shadow: 0px 0px 4px #777777;
  }
  nav.main ul ul li {
    float: unset;
    display: block;
    height: auto;
    min-height: unset;
    padding: 0 8px;
  }
  nav.main ul ul li:hover {
    background-color: #e8e8e8;
  }
  nav.main ul ul li > a {
    padding: 8px 4px;
    text-shadow: none;
    color: black !important;
    display: block;
    box-shadow: none;
    background-color: transparent;
    min-height: unset;
    height: unset;
    width: 100%;
    font-size: 0.8em;
    line-height: 1.3;
  }
  nav.main ul ul li.current a {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    opacity: 0;
    transition: opacity ease-in 0.3s;
  }
  .wf-active nav.main ul ul li.current a {
    opacity: 1;
  }
  .wf-inactive nav.main ul ul li.current a {
    opacity: 1;
  }
}
@media (min-width: 992px) {
  nav.main ul li {
    padding: 0 12px;
  }
}

/* message (alerts, warnings, announcements) */
#message {
  color: black;
  overflow: visible;
  padding: 0.5rem 0.5rem 0.25rem 0.5rem;
  font-size: 1rem;
  position: fixed;
  top: 210px;
  text-align: center;
  width: calc(100vw - (0.5rem * 2));
  max-height: calc(100vh - 200px - (0.5rem * 1.5));
  overflow: auto;
}
#message + #message--open {
  position: fixed;
  top: 5px;
  left: 50px;
  z-index: 1200;
  cursor: pointer;
  display: inline-block;
  width: 1rem;
}
#message + #message--open, #message + #message--open:link, #message + #message--open:visited, #message + #message--open:visited:hover, #message + #message--open:hover, #message + #message--open:active {
  color: yellow;
  text-shadow: 0px 0px 8px black;
  font-size: 1.7em;
}
#message .message--icon {
  width: 20px;
  height: 16px;
  font-size: 1.2em;
  margin: auto;
  display: block;
  float: left;
  margin-right: 0.5rem;
  padding-top: 6px;
}
#message h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1.1em;
  margin-bottom: 0;
  color: black;
}
.wf-active #message h2 {
  opacity: 1;
}
.wf-inactive #message h2 {
  opacity: 1;
}
#message .message--text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  color: black;
}
.wf-active #message .message--text {
  opacity: 1;
}
.wf-inactive #message .message--text {
  opacity: 1;
}
#message .message--text * {
  margin-top: 0;
  transition: font-size 0.3s ease-in-out;
}
#message .message--text h3 {
  font-size: 1.2em;
  color: black !important;
}
#message .message--text a {
  text-decoration: underline !important;
}
#message .message--more {
  font-weight: 500;
}
#message a.message--read-more {
  display: block;
  color: black !important;
  cursor: pointer;
  text-decoration: underline;
}
#message a.message--read-more:hover {
  color: black;
}
#message #message--close {
  display: block;
  float: right;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.874925rem;
  text-align: center;
  color: black !important;
  cursor: pointer;
}
#message a:link, #message a:visited, #message a:visited:hover, #message a:hover, #message a:active {
  color: black !important;
  text-decoration: none;
}
#message.Notice {
  background-color: yellow;
  overflow: auto;
}
#message.Notice .message--icon {
  color: black;
}
@media (min-width: 768px) {
  #message {
    top: 200px;
    font-size: 1rem;
    text-align: left;
    transition: top 0.15s ease-in;
    width: calc(100vw - (0.5rem * 2));
  }
  #message + #message--open {
    top: 45px;
    left: 10px;
    transition: left 0.15s ease-in;
  }
  .stuck ~ #message + #message--open, .sp_open ~ #message + #message--open {
    left: 5.875rem;
  }
  #message + #message--open.Notice, #message + #message--open.Notice:link, #message + #message--open.Notice:visited, #message + #message--open.Notice:visited:hover, #message + #message--open.Notice:hover, #message + #message--open.Notice:active {
    color: black;
  }
  #message .message--icon {
    width: 20px;
    height: 16px;
    font-size: 1.3em;
    margin: auto;
    display: block;
    float: left;
    margin-right: 1rem;
    padding-top: 16px;
  }
  #message h2 {
    line-height: 3em;
  }
  #message h2 span {
    line-height: 36px;
  }
  #message h2.open {
    font-size: 1.4117647059rem;
    margin-top: 3px;
    margin-bottom: 0;
  }
  #message h2.open span {
    line-height: 50px;
  }
  #message h2.open .message--icon {
    width: 2.6470588235rem;
    height: 2.6470588235rem;
    font-size: 2.6470588235rem;
    line-height: 2.6470588235rem;
    margin-right: 0.5rem;
    margin-left: auto;
  }
  #message a.message--read-more {
    display: inline;
    font-size: 0.8235294118rem;
    padding-left: 10px;
    color: black !important;
  }
  #message .message--text {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  #message .message--more {
    padding: 0 1rem 0.5rem 1rem;
  }
  #message .message-links {
    padding-left: 0.5em;
  }
  .has-subnav ~ #message {
    top: 240px;
  }
  .stuck ~ #message, #message.sp_open {
    top: 4.9411764706rem;
  }
}
@media (min-width: 992px) {
  #message {
    width: 1024px;
    max-width: unset;
    padding-left: calc(50vw - 512px);
    padding-right: calc(50vw - 512px);
  }
  #message h2 {
    margin-left: 14%;
    margin-right: 2%;
  }
}

main {
  background-image: url(/images/site-images/LightPattern-1.jpg);
}

.home-hero {
  position: relative;
  text-align: center;
  width: 100%;
  height: 35vh;
  padding: 0;
  overflow: hidden;
  backface-visibility: hidden;
  z-index: 2;
}
.home-hero .ken-burns-baby {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate3d(0, 0, 0) scale(1.25);
  transform-origin: top left;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover !important;
}
@media (min-width: 992px) {
  .home-hero {
    height: 45vh;
  }
}
@media (min-width: 1125px) {
  .home-hero {
    height: 55vh;
  }
}

.loaded .home-hero .ken-burns-baby {
  transform: scale(1);
  transition: 20.5s transform ease;
}

.home-content {
  position: relative;
  z-index: 100;
  transition: margin 0.8s ease;
}

body.fn_scrollCheck--scrolling .home-content, body.fn_scrollCheck--bottom .home-content {
  margin-top: -9em;
}

.feature-blocks {
  margin: 1em;
}
.feature-blocks .feature-block {
  margin: 1em;
  padding: 1em;
  background-image: url(/images/site-images/DarkPattern-1.jpg);
}
.feature-blocks .feature-block h2 {
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1.2em;
  text-align: center;
  margin: 0 0 0.5em 0;
}
.wf-active .feature-blocks .feature-block h2 {
  opacity: 1;
}
.wf-inactive .feature-blocks .feature-block h2 {
  opacity: 1;
}
.feature-blocks .feature-block .feature-text {
  color: white;
  text-shadow: 1px 1px 2px black;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  margin-bottom: 1em;
  padding: 1em;
  background-color: #c5c5c5;
  box-shadow: 1px 1px 2px black;
}
.wf-active .feature-blocks .feature-block .feature-text {
  opacity: 1;
}
.wf-inactive .feature-blocks .feature-block .feature-text {
  opacity: 1;
}
.feature-blocks .feature-block .feature-text p {
  text-align: center;
  margin: 0.5em 0;
  line-height: 1.4;
}
.feature-blocks .feature-block a.ghost-button {
  box-shadow: unset;
  width: 40%;
  display: block;
  margin: 0 auto;
}
@media (min-width: 580px) {
  .feature-blocks {
    margin: 1em 0;
    display: flex;
  }
  .feature-blocks .feature-block {
    margin: unset;
    display: flex;
    width: 30%;
    margin-right: 2%;
    flex-direction: column;
  }
  .feature-blocks .feature-block:last-of-type {
    margin-right: 0;
  }
  .feature-blocks .feature-block .feature-text {
    padding: 0.5em;
    flex: 1 0 auto;
  }
}
@media (min-width: 992px) {
  .feature-blocks {
    max-width: 1000px;
    margin: 1em auto;
  }
  .feature-blocks .feature-block h2 {
    font-size: 1.4em;
  }
}

.home-text {
  overflow: auto;
}
@media (min-width: 768px) {
  .home-text {
    padding: 2em 0;
  }
}

@media (min-width: 768px) {
  .home-left-column {
    width: 60%;
    padding-right: 5%;
    float: left;
    border-right: 1px solid black;
  }
}

@media (min-width: 768px) {
  .home-right-column {
    width: 30%;
    float: right;
  }
}

.home-feel-goods {
  background-color: white;
  border-top: 1px solid black;
  padding: 2em 0;
}
.home-feel-goods .bill-of-rights {
  text-align: center;
}
.home-feel-goods .bill-of-rights a.ghost-button {
  border-width: 2px;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
}
.wf-active .home-feel-goods .bill-of-rights a.ghost-button {
  opacity: 1;
}
.wf-inactive .home-feel-goods .bill-of-rights a.ghost-button {
  opacity: 1;
}
.home-feel-goods .awards {
  margin: 2em 0 0 0;
  padding: 1em 0 0 0;
  border-top: 1px solid #b2b2b2;
  text-align: center;
}
.home-feel-goods .awards img {
  height: 100px;
}
@media (min-width: 768px) {
  .home-feel-goods .bill-of-rights {
    margin-top: 30px;
    width: 45%;
    float: left;
  }
  .home-feel-goods .awards {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    width: 54%;
    float: left;
  }
}

.call-to-action {
  margin: 1em 0;
}
.call-to-action h2 {
  color: #d22020;
  margin-top: 0;
}
.call-to-action.interior-cta {
  background-color: white;
  padding: 1em;
  border: 1px solid #cbcbcb;
}
.call-to-action.home-cta {
  text-align: center;
  text-align: right;
}
main.interior {
  padding: 1.5em 0;
}
@media (min-width: 768px) {
  main.interior {
    padding: 2.5em 0 1.5em 0;
  }
}
@media (min-width: 768px) {
  main.interior {
    padding: 3em 0 1.5em 0;
  }
}

.interior-hero img {
  width: calc(100% - 2px);
  border: 1px solid #777777;
}

.inline-image-right img {
  border: 1px solid #777777;
}
@media (min-width: 992px) {
  .inline-image-right {
    width: 50%;
    float: right;
    margin: 2.5em 0 0.5em 1em;
  }
  .inline-image-right img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .left-column {
    width: 60%;
    padding-right: 5%;
    float: left;
    border-right: 1px solid black;
  }
}

@media (min-width: 768px) {
  .right-column {
    width: 30%;
    float: right;
  }
}

.blog-image img {
  width: 100%;
}

.testimonial-entry {
  overflow: auto;
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  border-bottom: 1px solid #c5c5c5;
}
.testimonial-entry h2 {
  margin-top: 0;
}
.testimonial-entry .testimonial {
  padding: 0 2.5em;
  position: relative;
}
.testimonial-entry .testimonial:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  color: #cbcbcb;
  position: absolute;
  top: -18px;
  left: 2px;
  font-size: 1.75em;
  text-shadow: 1px 1px 2px black;
}
.testimonial-entry .testimonial:after {
  font-family: "Font Awesome 5 Free";
  content: "";
  color: #cbcbcb;
  position: absolute;
  bottom: -45px;
  right: 2px;
  font-size: 1.75em;
  text-shadow: 1px 1px 2px black;
}
.testimonial-entry:last-of-type {
  border: none;
}

.interior-slideshow .interior-slideshow-slide {
  margin: 0 0.25em;
  text-align: left;
  position: relative;
}
.interior-slideshow .interior-slideshow-slide img {
  width: 100%;
}
.interior-slideshow .interior-slideshow-slide h4 {
  position: absolute;
  bottom: 0;
  margin-bottom: 0;
  padding: 0 8px 8px 8px;
  font-size: 0.8em;
  color: white;
  text-shadow: 2px 2px 3px black;
}
.interior-slideshow .owl-prev, .interior-slideshow .owl-next {
  background-color: rgba(0, 0, 0, 0.5) !important;
  width: 25%;
  height: 100%;
}
.interior-slideshow .owl-prev span, .interior-slideshow .owl-next span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 4em;
}
.interior-slideshow .owl-prev {
  position: absolute;
  left: 0;
  top: 0;
}
.interior-slideshow .owl-next {
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 768px) {
  .interior-slideshow .owl-prev, .interior-slideshow .owl-next {
    width: 9.5%;
  }
}
.gmap {
  width: 100%;
  height: 350px;
  margin-bottom: 1em;
  border: 1px solid #c5c5c5;
}

input.google_map.ghost-button {
  margin-top: 1em;
}

body > footer {
  padding: 1em 0;
  background-color: black;
  color: white;
  text-align: center;
}
body > footer .social-media {
  margin-bottom: 1em;
}
body > footer .social-media a {
  font-size: 2em;
  color: white;
  margin: 0 4px;
  width: 30px;
  height: 30px;
  line-height: 1.5em;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
}
body > footer .legal p {
  font-size: 0.6em;
}
body > footer .copyright {
  font-size: 0.6em;
}
body > footer .credits a[title*=Imp] {
  display: block;
  width: 100%;
  height: 1em;
  margin: 0.25em auto;
  padding-top: 28px;
  background-color: transparent;
  background-image: url(/images/site-images/an-id-creation.svg);
  background-size: 100px 25px;
  background-repeat: no-repeat;
  background-position: top center;
  text-align: center;
  line-height: 1rem;
  font-size: 0.5rem;
  color: shade(gray, 25%);
}
@media (min-width: 768px) {
  body > footer .social-media a {
    font-size: 3em;
    width: unset;
    height: unset;
  }
  body > footer .credits a[title*=Imp] {
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
  }
}
@media (min-width: 992px) {
  body > footer .social-media {
    float: right;
  }
  body > footer .legal {
    float: left;
    max-width: 600px;
    text-align: left;
  }
  body > footer .legal p {
    margin-top: 1em;
  }
  body > footer .indicia {
    overflow: auto;
    width: 100%;
  }
  body > footer .indicia .copyright {
    float: left;
    width: 600px;
    text-align: left;
  }
  body > footer .indicia .credits {
    float: right;
    width: 120px;
  }
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("/images/site_images/fancybox/fancybox_sprite.png");
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("/images/site_images/fancybox/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("/images/site_images/fancybox/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("/images/site_images/fancybox/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("/images/site_images/fancybox/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }

  #fancybox-loading div {
    background-image: url("/images/site_images/fancybox/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}
