html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 DISPLAY-ROLE RESET FOR OLDER BROWSERS */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*****************/
/* BOX MODEL FIX */
/*****************/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*************/
/* CLEAR FIX */
/*************/
.clear {
  clear: both;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/* CB Additions */
input[type=submit], input[type=button], a {
  cursor: pointer;
}

input[type=text], input[type=password], input[type=email], input[type=submit], input[type=button], textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

select {
  -webkit-border-radius: 0;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

fieldset {
  min-width: 0; /* Allows forms to scale down properly for mobile */
}

@-moz-document url-prefix() {
  fieldset {
    display: table-cell; /* Allows forms to scale down properly for mobile in Firefox */
  }
}
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

/* End of CB Additions */
/*****************************************************************

BRAND COLORS

If a color is directly tied to another color in its usage, append it with how it's being modified. For example:

$teal: #009482;
$teal-light: #35a08b;

/*****************************************************************/
/*F7941D;*/
/*****************************************************************

COLOR USAGE

Take the brand color variables from above and apply them below to the common color usages

Note: Having "body" in the class selectors below allows it to have higher inheritance over our standard styling that's in place

*****************************************************************/
/* PRIMARY COLOR **************/
body .color-primary-bg {
  background: #1C8BB1;
}

body .color-primary-tx {
  color: #1C8BB1;
}

/**/
body .color-primary-l-bg {
  background: #c6e2ec;
}

body .color-primary-l-tx {
  color: #c6e2ec;
}

/**/
body .color-primary-d-bg {
  background: #105065;
}

body .color-primary-d-tx {
  color: #105065;
}

/* SECONDARY COLOR **************/
body .color-secondary-bg {
  background: #fff;
}

body .color-secondary-tx {
  color: #fff;
}

/**/
body .color-secondary-l-bg {
  background: white;
}

body .color-secondary-l-tx {
  color: white;
}

/**/
body .color-secondary-d-bg {
  background: rgb(216.75, 216.75, 216.75);
}

body .color-secondary-d-tx {
  color: rgb(216.75, 216.75, 216.75);
}

/* BACKGROUND COLORS **************/
body .color-bg-light {
  background: #f7f5f3;
}

body .color-bg-dark {
  background: #454142;
}

/* BORDER COLORS **************/
/* TEXT COLORS **************/
/* ACCENT COLOR **************/
body .color-accent-bg {
  background: #1C8BB1;
}

body .color-accent-tx {
  color: #1C8BB1;
}

/**/
body .color-accent-l-bg {
  background: rgb(57.7097560976, 181.4341463415, 223.7902439024);
}

body .color-accent-l-tx {
  color: rgb(57.7097560976, 181.4341463415, 223.7902439024);
}

/**/
body .color-accent-d-bg {
  background: #105065;
}

body .color-accent-d-tx {
  color: #105065;
}

.border-radius {
  border-radius: 14px;
}

.border-radius-sm {
  border-radius: 7px;
}

/* Add default spacing to row & blocks */
.pb-default-wrapper {
  margin-top: 10px;
  margin-bottom: 10px;
}

.pb-default-wrapper .col {
  padding: 10px;
}

/* Allow blocks to go full width of page by making setcontainer 100% */
.no-setcontainer .setcontainer {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/***************************

REUSABLE CLASSES

***************************/
/* Narrow Content Block */
.narrow-content,
.narrow-content.col,
.narrow-content.col:first-child {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  float: none;
}

/* Remove Block Margins */
.no-margin,
.col.no-margin {
  margin: 0;
}

/* Reverses Order of Elements in Row */
.row-reverse > .col {
  float: right;
}

.row-reverse > .col:first-child {
  margin-left: 1.6%;
}

.row-reverse > .col:last-child {
  margin-left: 0;
}

/*****************************************************************

PADDING & MARGIN

The mixins and CSS classes below for padding and margin should not be used for the Header & Footer. 

*****************************************************************/
/* PADDING & MARGIN SMALL **************/
@media (min-width: 1025px) {
  .pad-sm {
    padding: 20px;
  }
}
@media (max-width: 1024px) {
  .pad-sm {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .pad-sm {
    padding: 10px;
  }
}

@media (min-width: 1025px) {
  .pad-top-sm {
    padding-top: 20px;
  }
}
@media (max-width: 1024px) {
  .pad-top-sm {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .pad-top-sm {
    padding-top: 10px;
  }
}

@media (min-width: 1025px) {
  .margin-top-sm {
    margin-top: 20px;
  }
}
@media (max-width: 1024px) {
  .margin-top-sm {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .margin-top-sm {
    margin-top: 10px;
  }
}

@media (min-width: 1025px) {
  .pad-right-sm {
    padding-right: 20px;
  }
}
@media (max-width: 1024px) {
  .pad-right-sm {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .pad-right-sm {
    padding-right: 10px;
  }
}

@media (min-width: 1025px) {
  .pad-bottom-sm {
    padding-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .pad-bottom-sm {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .pad-bottom-sm {
    padding-bottom: 10px;
  }
}

@media (min-width: 1025px) {
  .margin-bottom-sm {
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .margin-bottom-sm {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .margin-bottom-sm {
    margin-bottom: 10px;
  }
}

@media (min-width: 1025px) {
  .pad-left-sm {
    padding-left: 20px;
  }
}
@media (max-width: 1024px) {
  .pad-left-sm {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .pad-left-sm {
    padding-left: 10px;
  }
}

@media (min-width: 1025px) {
  .pad-vertical-sm {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .pad-vertical-sm {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .pad-vertical-sm {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (min-width: 1025px) {
  .margin-vertical-sm {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .margin-vertical-sm {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .margin-vertical-sm {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media (min-width: 1025px) {
  .pad-horizontal-sm {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 1024px) {
  .pad-horizontal-sm {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .pad-horizontal-sm {
    padding-right: 10px;
    padding-left: 10px;
  }
}

/* PADDING & MARGIN MEDIUM **************/
@media (min-width: 1024px) {
  .pad-md {
    padding: 40px;
  }
}
@media (max-width: 1023px) {
  .pad-md {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .pad-md {
    padding: 20px;
  }
}

@media (min-width: 1024px) {
  .pad-top-md {
    padding-top: 40px;
  }
}
@media (max-width: 1023px) {
  .pad-top-md {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .pad-top-md {
    padding-top: 20px;
  }
}

@media (min-width: 1024px) {
  .margin-top-md {
    margin-top: 40px;
  }
}
@media (max-width: 1023px) {
  .margin-top-md {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .margin-top-md {
    margin-top: 20px;
  }
}

@media (min-width: 1024px) {
  .pad-right-md {
    padding-right: 40px;
  }
}
@media (max-width: 1023px) {
  .pad-right-md {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .pad-right-md {
    padding-right: 20px;
  }
}

@media (min-width: 1024px) {
  .pad-bottom-md {
    padding-bottom: 40px;
  }
}
@media (max-width: 1023px) {
  .pad-bottom-md {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .pad-bottom-md {
    padding-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .margin-bottom-md {
    margin-bottom: 40px;
  }
}
@media (max-width: 1023px) {
  .margin-bottom-md {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .margin-bottom-md {
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .pad-left-md {
    padding-left: 40px;
  }
}
@media (max-width: 1023px) {
  .pad-left-md {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .pad-left-md {
    padding-left: 20px;
  }
}

@media (min-width: 1025px) {
  .pad-vertical-md {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .pad-vertical-md {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .pad-vertical-md {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (min-width: 1025px) {
  .margin-vertical-md {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .margin-vertical-md {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .margin-vertical-md {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1025px) {
  .pad-horizontal-md {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 1024px) {
  .pad-horizontal-md {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .pad-horizontal-md {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* PADDING & MARGIN LARGE **************/
@media (min-width: 1024px) {
  .pad-lg {
    padding: 80px;
  }
}
@media (max-width: 1023px) {
  .pad-lg {
    padding: 60px;
  }
}
@media (max-width: 767px) {
  .pad-lg {
    padding: 40px;
  }
}

@media (min-width: 1024px) {
  .pad-top-lg {
    padding-top: 80px;
  }
}
@media (max-width: 1023px) {
  .pad-top-lg {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .pad-top-lg {
    padding-top: 40px;
  }
}

@media (min-width: 1024px) {
  .margin-top-lg {
    margin-top: 80px;
  }
}
@media (max-width: 1023px) {
  .margin-top-lg {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .margin-top-lg {
    margin-top: 40px;
  }
}

@media (min-width: 1024px) {
  .pad-right-lg {
    padding-right: 80px;
  }
}
@media (max-width: 1023px) {
  .pad-right-lg {
    padding-right: 60px;
  }
}
@media (max-width: 767px) {
  .pad-right-lg {
    padding-right: 40px;
  }
}

@media (min-width: 1024px) {
  .pad-bottom-lg {
    padding-bottom: 80px;
  }
}
@media (max-width: 1023px) {
  .pad-bottom-lg {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .pad-bottom-lg {
    padding-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .margin-bottom-lg {
    margin-bottom: 80px;
  }
}
@media (max-width: 1023px) {
  .margin-bottom-lg {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .margin-bottom-lg {
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .pad-left-lg {
    padding-left: 80px;
  }
}
@media (max-width: 1023px) {
  .pad-left-lg {
    padding-left: 60px;
  }
}
@media (max-width: 767px) {
  .pad-left-lg {
    padding-left: 40px;
  }
}

@media (min-width: 1025px) {
  .pad-vertical-lg {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 1024px) {
  .pad-vertical-lg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .pad-vertical-lg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1025px) {
  .margin-vertical-lg {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media (max-width: 1024px) {
  .margin-vertical-lg {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .margin-vertical-lg {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media (min-width: 1025px) {
  .pad-horizontal-lg {
    padding-right: 80px;
    padding-left: 80px;
  }
}
@media (max-width: 1024px) {
  .pad-horizontal-lg {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media (max-width: 767px) {
  .pad-horizontal-lg {
    padding-right: 40px;
    padding-left: 40px;
  }
}

/* PADDING & MARGIN EXTRA LARGE **************/
@media (min-width: 1024px) {
  .pad-xl {
    padding: 120px;
  }
}
@media (max-width: 1023px) {
  .pad-xl {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .pad-xl {
    padding: 60px;
  }
}

@media (min-width: 1024px) {
  .pad-top-xl {
    padding-top: 120px;
  }
}
@media (max-width: 1023px) {
  .pad-top-xl {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .pad-top-xl {
    padding-top: 60px;
  }
}

@media (min-width: 1024px) {
  .margin-top-xl {
    margin-top: 120px;
  }
}
@media (max-width: 1023px) {
  .margin-top-xl {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .margin-top-xl {
    margin-top: 60px;
  }
}

@media (min-width: 1024px) {
  .pad-right-xl {
    padding-right: 120px;
  }
}
@media (max-width: 1023px) {
  .pad-right-xl {
    padding-right: 80px;
  }
}
@media (max-width: 767px) {
  .pad-right-xl {
    padding-right: 60px;
  }
}

@media (min-width: 1024px) {
  .pad-bottom-xl {
    padding-bottom: 120px;
  }
}
@media (max-width: 1023px) {
  .pad-bottom-xl {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .pad-bottom-xl {
    padding-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .margin-bottom-xl {
    margin-bottom: 120px;
  }
}
@media (max-width: 1023px) {
  .margin-bottom-xl {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .margin-bottom-xl {
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .pad-left-xl {
    padding-left: 120px;
  }
}
@media (max-width: 1023px) {
  .pad-left-xl {
    padding-left: 80px;
  }
}
@media (max-width: 767px) {
  .pad-left-xl {
    padding-left: 60px;
  }
}

@media (min-width: 1025px) {
  .pad-vertical-xl {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (max-width: 1024px) {
  .pad-vertical-xl {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .pad-vertical-xl {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1025px) {
  .margin-vertical-xl {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}
@media (max-width: 1024px) {
  .margin-vertical-xl {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .margin-vertical-xl {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1025px) {
  .pad-horizontal-xl {
    padding-right: 120px;
    padding-left: 120px;
  }
}
@media (max-width: 1024px) {
  .pad-horizontal-xl {
    padding-right: 80px;
    padding-left: 80px;
  }
}
@media (max-width: 767px) {
  .pad-horizontal-xl {
    padding-right: 60px;
    padding-left: 60px;
  }
}

/* PADDING CLASSES - DO NOT USE THESE. ONLY HERE FOR BACKWARD COMPATABILITY. USE THE PADDING/MARGIN CLASSES ABOVE */
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-padding-small {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-padding-top {
  padding-top: 100px;
}

.section-padding-top-small {
  padding-top: 50px;
}

.section-padding-bottom {
  padding-bottom: 100px;
}

.section-padding-bottom-small {
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .section-padding-top {
    padding-top: 70px;
  }
  .section-padding-bottom {
    padding-bottom: 70px;
  }
  .section-padding-small {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-padding-top-small {
    padding-top: 40px;
  }
  .section-padding-bottom-small {
    padding-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .section-padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section-padding-top {
    padding-top: 30px;
  }
  .section-padding-bottom {
    padding-bottom: 30px;
  }
  .section-padding-small {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .section-padding-top-small {
    padding-top: 20px;
  }
  .section-padding-bottom-small {
    padding-bottom: 20px;
  }
}
/*****************************************************************

EMBEDDED FONTS

*****************************************************************/
@font-face {
  font-family: "souvenir";
  src: url("/pub/fonts/souvenirstd-medium.woff2") format("woff2"), url("/pub/fonts/souvenirstd-medium.woff") format("woff");
}
@font-face {
  font-family: "jost-medium";
  src: url("/pub/fonts/jost-500-medium-webfont.woff2") format("woff2"), url("/pub/fonts/jost-500-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "lato";
  src: url("/pub/fonts/lato-regular-webfont.woff2") format("woff2"), url("/pub/fonts/lato-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "lato-italic";
  src: url("/pub/fonts/lato-italic-webfont.woff2") format("woff2"), url("/pub/fonts/lato-italic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "lato-bold";
  src: url("/pub/fonts/lato-bold-webfont.woff2") format("woff2"), url("/pub/fonts/lato-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "lato-bold-italic";
  src: url("/pub/fonts/lato-bolditalic-webfont.woff2") format("woff2"), url("/pub/fonts/lato-bolditalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "indie-flower";
  src: url("/pub/fonts/IndieFlower-Regular.woff2") format("woff2"), url("/pub/fonts/IndieFlower-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "poppins-bold";
  src: url("/pub/fonts/poppins-600.woff2") format("woff2"), url("/pub/fonts/poppins-600.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "poppins-regular";
  src: url("/pub/fonts/poppins-regular.woff2") format("woff2"), url("/pub/fonts/poppins-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "raleway-regular";
  src: url("/pub/fonts/raleway-regular.woff2") format("woff2"), url("/pub/fonts/raleway-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* POPPINS BOLD **************/
body .hcontent .poppins-bold,
body .poppins-bold {
  font-family: "poppins-bold", sans-serif;
  font-style: normal;
  font-weight: 700;
}

/* POPPINS REGULAR **************/
body .hcontent .poppins-regular,
body .poppins-regular {
  font-family: "poppins-regular", sans-serif;
  font-style: normal;
  font-weight: 700;
}

/* RALEWAY REGULAR **************/
body .hcontent .raleway-regular,
body .raleway-regular {
  font-family: "raleway-regular", sans-serif;
  font-style: normal;
  font-weight: normal;
}

/* SOUVENIR **************/
body .hcontent .souvenir,
body .souvenir {
  font-family: "souvenir", sans-serif;
  font-style: normal;
  font-weight: 400;
}

/* JOST MEDIUM **************/
body .hcontent .jost-medium,
body .jost-medium {
  font-family: "jost-medium", sans-serif;
  font-style: normal;
  font-weight: 300;
}

/* LATO REGULAR **************/
body .hcontent .lato,
body .lato {
  font-family: "lato", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
}

/* LATO ITALIC **************/
body .hcontent .lato-italic,
body .lato-italic {
  font-family: "lato-italic", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
}

/* LATO BOLD **************/
body .hcontent .lato-bold,
body .lato-bold {
  font-family: "lato-bold", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
}

/* LATO BOLD ITALIC **************/
body .hcontent .lato-bold-italic,
body .lato-bold-italic {
  font-family: "lato-bold-italic", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
}

/*****************************************************************

CONTENT TYPE MIXINS

Note: Having "body" in the class selectors below allows it to have higher inheritance over our standard font-family styling that's in place

*****************************************************************/
/* HEADINGS **************/
body .hcontent .font-heading,
body .font-heading {
  font-family: "poppins-bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  /*souvenir*/
}

/* SUBHEADINGS *************/
body .hcontent .font-subheading,
body .font-subheading {
  font-family: "poppins-regular", sans-serif;
  font-style: normal;
  font-weight: 700;
  /*jost-medium*/
  text-transform: uppercase;
}

/* BODY COPY **************/
body .hcontent .font-body,
body .font-body {
  font-family: "raleway-regular", sans-serif;
  font-style: normal;
  font-weight: normal;
  /*lato*/
}

/*****************************************************************

.HCONTENT CLASS STYLING

1. The ".hcontent" class should be added to the direct wrapper of the content. It should not be added higher up in the DOM since sidebars are usually styled different.
2. All headings below h2 (h3-h6) should alternate color so that they are easy to distinguish. In most cases your h3, h5 will be one color, and your h4, h6 will be another color. 
3. There should be extra padding added above your h2-h6's to help separate sections more.

*****************************************************************/
.hcontent {
  font-family: "raleway-regular", sans-serif;
  font-style: normal;
  font-weight: normal;
  /*lato*/
}
.hcontent h1, .hcontent .h1, .hcontent h2, .hcontent .h2, .hcontent h3, .hcontent .h3, .hcontent h4, .hcontent .h4, .hcontent h5, .hcontent .h5, .hcontent h6, .hcontent .h6 {
  font-family: "poppins-bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  /*souvenir*/
  line-height: 1.3;
}
.hcontent h2, .hcontent .h2, .hcontent h3, .hcontent .h3, .hcontent h4, .hcontent .h4, .hcontent h5, .hcontent .h5, .hcontent h6, .hcontent .h6 {
  padding-top: 20px;
  margin-bottom: 14px;
}
.hcontent p, .hcontent ul, .hcontent ol {
  margin-bottom: 20px;
  line-height: 1.7;
}
.hcontent p, .hcontent li {
  font-size: 16px;
  line-height: 1.7;
}
.hcontent p.large-body-text,
.hcontent ul.large-body-text li,
.hcontent ol.large-body-text li {
  font-size: 140%;
}
.hcontent p.small-body-text,
.hcontent ul.small-body-text li,
.hcontent ol.small-body-text li {
  font-size: 80%;
}
.hcontent ul, .hcontent ol {
  padding-left: 35px;
}
.hcontent ul li {
  list-style: disc outside;
}
.hcontent ol li {
  list-style: decimal outside;
}
.hcontent.non-list ul, .hcontent.non-list ol,
.hcontent .non-list ul,
.hcontent .non-list ol {
  padding-left: 0;
}
.hcontent.non-list ul li, .hcontent.non-list ol li,
.hcontent .non-list ul li,
.hcontent .non-list ol li {
  list-style: none;
}
.hcontent h1, .hcontent .h1 {
  font-size: 48px;
  margin-bottom: 15px;
}
.hcontent h2, .hcontent .h2 {
  font-size: 40px;
}
.hcontent h3, .hcontent .h3 {
  font-size: 28px;
}
.hcontent h4, .hcontent .h4 {
  font-size: 22px;
}
.hcontent h5, .hcontent .h5 {
  font-size: 18px;
}
.hcontent h6, .hcontent .h6 {
  font-size: 16px;
}
.hcontent a {
  text-decoration: underline;
}
.hcontent strong {
  font-weight: bold;
}
.hcontent em {
  font-style: italic;
}
.hcontent .font-subheading + h1, .hcontent .font-subheading + h2, .hcontent .font-subheading + h3, .hcontent .font-subheading + h4, .hcontent .font-subheading + h5, .hcontent .font-subheading + h6 {
  padding-top: 0;
}
@media screen and (max-width: 1024px) {
  .hcontent h1, .hcontent .h1 {
    font-size: 44px;
  }
  .hcontent h2, .hcontent .h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 640px) {
  .hcontent h1, .hcontent .h1 {
    font-size: 32px;
  }
  .hcontent h2, .hcontent .h2 {
    font-size: 26px;
  }
  .hcontent h3, .hcontent .h3 {
    font-size: 22px;
  }
  .hcontent h4, .hcontent .h4 {
    font-size: 18px;
  }
  .hcontent h5, .hcontent .h5 {
    font-size: 16px;
  }
  .hcontent h6, .hcontent .h6 {
    font-size: 16px;
  }
  .hcontent p.large-body-text,
  .hcontent ul.large-body-text li,
  .hcontent ol.large-body-text li {
    font-size: 120%;
  }
}

.hcontent a.cta-text-link,
a.cta-text-link {
  color: #1C8BB1;
  text-decoration: none;
  text-transform: uppercase;
}
.hcontent a.cta-text-link:hover,
a.cta-text-link:hover {
  color: #1C8BB1;
  text-decoration: none;
}

/* TYPOGRAPHY COLORS */
.hcontent h1 {
  color: #454142;
}
.hcontent h2, .hcontent h4, .hcontent h6 {
  color: #454142;
}
.hcontent h3, .hcontent h5 {
  color: #1C8BB1;
}
.hcontent p {
  color: #53575a;
}
.hcontent a:not(.button), .hcontent a:not(.button):active {
  color: #1C8BB1;
}
.hcontent a:not(.button):hover, .hcontent a:not(.button):active:hover {
  color: #1C8BB1;
}
.hcontent .font-subheading {
  color: #53575a;
}
.hcontent.hcontent-dark-bg {
  color: #fff;
}
.hcontent.hcontent-dark-bg h1 {
  color: #fff;
}
.hcontent.hcontent-dark-bg h2, .hcontent.hcontent-dark-bg h4, .hcontent.hcontent-dark-bg h6 {
  color: #fff;
}
.hcontent.hcontent-dark-bg h3, .hcontent.hcontent-dark-bg h5 {
  color: #fff;
}
.hcontent.hcontent-dark-bg p, .hcontent.hcontent-dark-bg li {
  color: #dfdfdf;
}
.hcontent.hcontent-dark-bg a:not(.button) {
  color: #fff;
}
.hcontent.hcontent-dark-bg a:not(.button):hover {
  color: #fff;
}
.hcontent.hcontent-dark-bg .font-subheading {
  color: #dfdfdf;
}

/* END OF TYPOGRAPHY COLORS */
/*****************************************************************

EMBEDDED FONTS

*****************************************************************/
@font-face {
  font-family: "souvenir";
  src: url("/pub/fonts/souvenirstd-medium.woff2") format("woff2"), url("/pub/fonts/souvenirstd-medium.woff") format("woff");
}
@font-face {
  font-family: "jost-medium";
  src: url("/pub/fonts/jost-500-medium-webfont.woff2") format("woff2"), url("/pub/fonts/jost-500-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "lato";
  src: url("/pub/fonts/lato-regular-webfont.woff2") format("woff2"), url("/pub/fonts/lato-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "lato-italic";
  src: url("/pub/fonts/lato-italic-webfont.woff2") format("woff2"), url("/pub/fonts/lato-italic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "lato-bold";
  src: url("/pub/fonts/lato-bold-webfont.woff2") format("woff2"), url("/pub/fonts/lato-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "lato-bold-italic";
  src: url("/pub/fonts/lato-bolditalic-webfont.woff2") format("woff2"), url("/pub/fonts/lato-bolditalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "indie-flower";
  src: url("/pub/fonts/IndieFlower-Regular.woff2") format("woff2"), url("/pub/fonts/IndieFlower-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "poppins-bold";
  src: url("/pub/fonts/poppins-600.woff2") format("woff2"), url("/pub/fonts/poppins-600.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "poppins-regular";
  src: url("/pub/fonts/poppins-regular.woff2") format("woff2"), url("/pub/fonts/poppins-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "raleway-regular";
  src: url("/pub/fonts/raleway-regular.woff2") format("woff2"), url("/pub/fonts/raleway-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* POPPINS BOLD **************/
body .hcontent .poppins-bold,
body .poppins-bold {
  font-family: "poppins-bold", sans-serif;
  font-style: normal;
  font-weight: 700;
}

/* POPPINS REGULAR **************/
body .hcontent .poppins-regular,
body .poppins-regular {
  font-family: "poppins-regular", sans-serif;
  font-style: normal;
  font-weight: 700;
}

/* RALEWAY REGULAR **************/
body .hcontent .raleway-regular,
body .raleway-regular {
  font-family: "raleway-regular", sans-serif;
  font-style: normal;
  font-weight: normal;
}

/* SOUVENIR **************/
body .hcontent .souvenir,
body .souvenir {
  font-family: "souvenir", sans-serif;
  font-style: normal;
  font-weight: 400;
}

/* JOST MEDIUM **************/
body .hcontent .jost-medium,
body .jost-medium {
  font-family: "jost-medium", sans-serif;
  font-style: normal;
  font-weight: 300;
}

/* LATO REGULAR **************/
body .hcontent .lato,
body .lato {
  font-family: "lato", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
}

/* LATO ITALIC **************/
body .hcontent .lato-italic,
body .lato-italic {
  font-family: "lato-italic", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
}

/* LATO BOLD **************/
body .hcontent .lato-bold,
body .lato-bold {
  font-family: "lato-bold", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
}

/* LATO BOLD ITALIC **************/
body .hcontent .lato-bold-italic,
body .lato-bold-italic {
  font-family: "lato-bold-italic", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
}

/*****************************************************************

CONTENT TYPE MIXINS

Note: Having "body" in the class selectors below allows it to have higher inheritance over our standard font-family styling that's in place

*****************************************************************/
/* HEADINGS **************/
body .hcontent .font-heading,
body .font-heading {
  font-family: "poppins-bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  /*souvenir*/
}

/* SUBHEADINGS *************/
body .hcontent .font-subheading,
body .font-subheading {
  font-family: "poppins-regular", sans-serif;
  font-style: normal;
  font-weight: 700;
  /*jost-medium*/
  text-transform: uppercase;
}

/* BODY COPY **************/
body .hcontent .font-body,
body .font-body {
  font-family: "raleway-regular", sans-serif;
  font-style: normal;
  font-weight: normal;
  /*lato*/
}

/*****************************************************************

.HCONTENT CLASS STYLING

1. The ".hcontent" class should be added to the direct wrapper of the content. It should not be added higher up in the DOM since sidebars are usually styled different.
2. All headings below h2 (h3-h6) should alternate color so that they are easy to distinguish. In most cases your h3, h5 will be one color, and your h4, h6 will be another color. 
3. There should be extra padding added above your h2-h6's to help separate sections more.

*****************************************************************/
.hcontent {
  font-family: "raleway-regular", sans-serif;
  font-style: normal;
  font-weight: normal;
  /*lato*/
}
.hcontent h1, .hcontent .h1, .hcontent h2, .hcontent .h2, .hcontent h3, .hcontent .h3, .hcontent h4, .hcontent .h4, .hcontent h5, .hcontent .h5, .hcontent h6, .hcontent .h6 {
  font-family: "poppins-bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  /*souvenir*/
  line-height: 1.3;
}
.hcontent h2, .hcontent .h2, .hcontent h3, .hcontent .h3, .hcontent h4, .hcontent .h4, .hcontent h5, .hcontent .h5, .hcontent h6, .hcontent .h6 {
  padding-top: 20px;
  margin-bottom: 14px;
}
.hcontent p, .hcontent ul, .hcontent ol {
  margin-bottom: 20px;
  line-height: 1.7;
}
.hcontent p, .hcontent li {
  font-size: 16px;
  line-height: 1.7;
}
.hcontent p.large-body-text,
.hcontent ul.large-body-text li,
.hcontent ol.large-body-text li {
  font-size: 140%;
}
.hcontent p.small-body-text,
.hcontent ul.small-body-text li,
.hcontent ol.small-body-text li {
  font-size: 80%;
}
.hcontent ul, .hcontent ol {
  padding-left: 35px;
}
.hcontent ul li {
  list-style: disc outside;
}
.hcontent ol li {
  list-style: decimal outside;
}
.hcontent.non-list ul, .hcontent.non-list ol,
.hcontent .non-list ul,
.hcontent .non-list ol {
  padding-left: 0;
}
.hcontent.non-list ul li, .hcontent.non-list ol li,
.hcontent .non-list ul li,
.hcontent .non-list ol li {
  list-style: none;
}
.hcontent h1, .hcontent .h1 {
  font-size: 48px;
  margin-bottom: 15px;
}
.hcontent h2, .hcontent .h2 {
  font-size: 40px;
}
.hcontent h3, .hcontent .h3 {
  font-size: 28px;
}
.hcontent h4, .hcontent .h4 {
  font-size: 22px;
}
.hcontent h5, .hcontent .h5 {
  font-size: 18px;
}
.hcontent h6, .hcontent .h6 {
  font-size: 16px;
}
.hcontent a {
  text-decoration: underline;
}
.hcontent strong {
  font-weight: bold;
}
.hcontent em {
  font-style: italic;
}
.hcontent .font-subheading + h1, .hcontent .font-subheading + h2, .hcontent .font-subheading + h3, .hcontent .font-subheading + h4, .hcontent .font-subheading + h5, .hcontent .font-subheading + h6 {
  padding-top: 0;
}
@media screen and (max-width: 1024px) {
  .hcontent h1, .hcontent .h1 {
    font-size: 44px;
  }
  .hcontent h2, .hcontent .h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 640px) {
  .hcontent h1, .hcontent .h1 {
    font-size: 32px;
  }
  .hcontent h2, .hcontent .h2 {
    font-size: 26px;
  }
  .hcontent h3, .hcontent .h3 {
    font-size: 22px;
  }
  .hcontent h4, .hcontent .h4 {
    font-size: 18px;
  }
  .hcontent h5, .hcontent .h5 {
    font-size: 16px;
  }
  .hcontent h6, .hcontent .h6 {
    font-size: 16px;
  }
  .hcontent p.large-body-text,
  .hcontent ul.large-body-text li,
  .hcontent ol.large-body-text li {
    font-size: 120%;
  }
}

.hcontent a.cta-text-link,
a.cta-text-link {
  color: #1C8BB1;
  text-decoration: none;
  text-transform: uppercase;
}
.hcontent a.cta-text-link:hover,
a.cta-text-link:hover {
  color: #1C8BB1;
  text-decoration: none;
}

/* TYPOGRAPHY COLORS */
.hcontent h1 {
  color: #454142;
}
.hcontent h2, .hcontent h4, .hcontent h6 {
  color: #454142;
}
.hcontent h3, .hcontent h5 {
  color: #1C8BB1;
}
.hcontent p {
  color: #53575a;
}
.hcontent a:not(.button), .hcontent a:not(.button):active {
  color: #1C8BB1;
}
.hcontent a:not(.button):hover, .hcontent a:not(.button):active:hover {
  color: #1C8BB1;
}
.hcontent .font-subheading {
  color: #53575a;
}
.hcontent.hcontent-dark-bg {
  color: #fff;
}
.hcontent.hcontent-dark-bg h1 {
  color: #fff;
}
.hcontent.hcontent-dark-bg h2, .hcontent.hcontent-dark-bg h4, .hcontent.hcontent-dark-bg h6 {
  color: #fff;
}
.hcontent.hcontent-dark-bg h3, .hcontent.hcontent-dark-bg h5 {
  color: #fff;
}
.hcontent.hcontent-dark-bg p, .hcontent.hcontent-dark-bg li {
  color: #dfdfdf;
}
.hcontent.hcontent-dark-bg a:not(.button) {
  color: #fff;
}
.hcontent.hcontent-dark-bg a:not(.button):hover {
  color: #fff;
}
.hcontent.hcontent-dark-bg .font-subheading {
  color: #dfdfdf;
}

/* END OF TYPOGRAPHY COLORS */
/************** 

Base button styles for the front-end of the site should go here. For example:

.button (this includes css used for all buttons, plus padding and font-size for a default button)
.button-lg (this dictates the button size and would be larger than ".button", so you'd include padding and font-size)
.button-primary (this dictates the button color, so you'd include background-color, color, and border-color)
.button-secondary (this dictates the button color, so you'd include background-color, color, and border-color)

***************/
.hcontent a.button,
.hcontent input[type=submit].button,
.hcontent input[type=button].button,
.hcontent button.button,
.hcontent li.button,
.hcontent span.button,
a.button,
input[type=submit].button,
input[type=button].button,
button.button,
li.button,
span.button {
  font-family: "poppins-regular", sans-serif;
  font-style: normal;
  font-weight: 700;
  /*jost-medium*/
  text-transform: uppercase;
  letter-spacing: 0;
  border-radius: 5px;
}
.hcontent a.button.button-sm,
.hcontent input[type=submit].button.button-sm,
.hcontent input[type=button].button.button-sm,
.hcontent button.button.button-sm,
.hcontent li.button.button-sm,
.hcontent span.button.button-sm,
a.button.button-sm,
input[type=submit].button.button-sm,
input[type=button].button.button-sm,
button.button.button-sm,
li.button.button-sm,
span.button.button-sm {
  padding: 12px 24px;
  font-size: 14px;
}
.hcontent a.button,
.hcontent input[type=submit].button,
.hcontent input[type=button].button,
.hcontent button.button,
.hcontent li.button,
.hcontent span.button,
a.button,
input[type=submit].button,
input[type=button].button,
button.button,
li.button,
span.button {
  padding: 15px 30px;
  font-size: 16px;
}
.hcontent a.button.button-lg,
.hcontent input[type=submit].button.button-lg,
.hcontent input[type=button].button.button-lg,
.hcontent button.button.button-lg,
.hcontent li.button.button-lg,
.hcontent span.button.button-lg,
a.button.button-lg,
input[type=submit].button.button-lg,
input[type=button].button.button-lg,
button.button.button-lg,
li.button.button-lg,
span.button.button-lg {
  font-size: 20px;
  padding: 18px 48px;
}
@media (max-width: 767px) {
  .hcontent a.button.button-sm,
  .hcontent input[type=submit].button.button-sm,
  .hcontent input[type=button].button.button-sm,
  .hcontent button.button.button-sm,
  .hcontent li.button.button-sm,
  .hcontent span.button.button-sm,
  a.button.button-sm,
  input[type=submit].button.button-sm,
  input[type=button].button.button-sm,
  button.button.button-sm,
  li.button.button-sm,
  span.button.button-sm {
    padding: 12px 24px;
    font-size: 14px;
  }
  .hcontent a.button,
  .hcontent input[type=submit].button,
  .hcontent input[type=button].button,
  .hcontent button.button,
  .hcontent li.button,
  .hcontent span.button,
  a.button,
  input[type=submit].button,
  input[type=button].button,
  button.button,
  li.button,
  span.button {
    padding: 14px 30px;
    font-size: 16px;
  }
  .hcontent a.button.button-lg,
  .hcontent input[type=submit].button.button-lg,
  .hcontent input[type=button].button.button-lg,
  .hcontent button.button.button-lg,
  .hcontent li.button.button-lg,
  .hcontent span.button.button-lg,
  a.button.button-lg,
  input[type=submit].button.button-lg,
  input[type=button].button.button-lg,
  button.button.button-lg,
  li.button.button-lg,
  span.button.button-lg {
    padding: 18px 36px;
    font-size: 18px;
  }
}
.hcontent a.button.button-primary,
.hcontent input[type=submit].button.button-primary,
.hcontent input[type=button].button.button-primary,
.hcontent button.button.button-primary,
.hcontent li.button.button-primary,
.hcontent span.button.button-primary,
a.button.button-primary,
input[type=submit].button.button-primary,
input[type=button].button.button-primary,
button.button.button-primary,
li.button.button-primary,
span.button.button-primary {
  background: #FFAE3B; /*$color-primary*/
  border-color: #FFAE3B; /*$color-primary*/
  color: #fff;
}
.hcontent a.button.button-primary:not(.button-disabled):hover, .hcontent a.button.button-primary:not(.button-disabled):focus, .hcontent a.button.button-primary:not(.button-disabled):active,
.hcontent input[type=submit].button.button-primary:not(.button-disabled):hover,
.hcontent input[type=submit].button.button-primary:not(.button-disabled):focus,
.hcontent input[type=submit].button.button-primary:not(.button-disabled):active,
.hcontent input[type=button].button.button-primary:not(.button-disabled):hover,
.hcontent input[type=button].button.button-primary:not(.button-disabled):focus,
.hcontent input[type=button].button.button-primary:not(.button-disabled):active,
.hcontent button.button.button-primary:not(.button-disabled):hover,
.hcontent button.button.button-primary:not(.button-disabled):focus,
.hcontent button.button.button-primary:not(.button-disabled):active,
.hcontent li.button.button-primary:not(.button-disabled):hover,
.hcontent li.button.button-primary:not(.button-disabled):focus,
.hcontent li.button.button-primary:not(.button-disabled):active,
.hcontent span.button.button-primary:not(.button-disabled):hover,
.hcontent span.button.button-primary:not(.button-disabled):focus,
.hcontent span.button.button-primary:not(.button-disabled):active,
a.button.button-primary:not(.button-disabled):hover,
a.button.button-primary:not(.button-disabled):focus,
a.button.button-primary:not(.button-disabled):active,
input[type=submit].button.button-primary:not(.button-disabled):hover,
input[type=submit].button.button-primary:not(.button-disabled):focus,
input[type=submit].button.button-primary:not(.button-disabled):active,
input[type=button].button.button-primary:not(.button-disabled):hover,
input[type=button].button.button-primary:not(.button-disabled):focus,
input[type=button].button.button-primary:not(.button-disabled):active,
button.button.button-primary:not(.button-disabled):hover,
button.button.button-primary:not(.button-disabled):focus,
button.button.button-primary:not(.button-disabled):active,
li.button.button-primary:not(.button-disabled):hover,
li.button.button-primary:not(.button-disabled):focus,
li.button.button-primary:not(.button-disabled):active,
span.button.button-primary:not(.button-disabled):hover,
span.button.button-primary:not(.button-disabled):focus,
span.button.button-primary:not(.button-disabled):active {
  background: #c6e2ec;
  border-color: #c6e2ec;
  color: #fff;
}
.hcontent a.button.button-primary-border,
.hcontent input[type=submit].button.button-primary-border,
.hcontent input[type=button].button.button-primary-border,
.hcontent button.button.button-primary-border,
.hcontent li.button.button-primary-border,
.hcontent span.button.button-primary-border,
a.button.button-primary-border,
input[type=submit].button.button-primary-border,
input[type=button].button.button-primary-border,
button.button.button-primary-border,
li.button.button-primary-border,
span.button.button-primary-border {
  background: transparent;
  border-color: #1C8BB1;
  color: #1C8BB1;
}
.hcontent a.button.button-primary-border:not(.button-disabled):hover, .hcontent a.button.button-primary-border:not(.button-disabled):focus, .hcontent a.button.button-primary-border:not(.button-disabled):active,
.hcontent input[type=submit].button.button-primary-border:not(.button-disabled):hover,
.hcontent input[type=submit].button.button-primary-border:not(.button-disabled):focus,
.hcontent input[type=submit].button.button-primary-border:not(.button-disabled):active,
.hcontent input[type=button].button.button-primary-border:not(.button-disabled):hover,
.hcontent input[type=button].button.button-primary-border:not(.button-disabled):focus,
.hcontent input[type=button].button.button-primary-border:not(.button-disabled):active,
.hcontent button.button.button-primary-border:not(.button-disabled):hover,
.hcontent button.button.button-primary-border:not(.button-disabled):focus,
.hcontent button.button.button-primary-border:not(.button-disabled):active,
.hcontent li.button.button-primary-border:not(.button-disabled):hover,
.hcontent li.button.button-primary-border:not(.button-disabled):focus,
.hcontent li.button.button-primary-border:not(.button-disabled):active,
.hcontent span.button.button-primary-border:not(.button-disabled):hover,
.hcontent span.button.button-primary-border:not(.button-disabled):focus,
.hcontent span.button.button-primary-border:not(.button-disabled):active,
a.button.button-primary-border:not(.button-disabled):hover,
a.button.button-primary-border:not(.button-disabled):focus,
a.button.button-primary-border:not(.button-disabled):active,
input[type=submit].button.button-primary-border:not(.button-disabled):hover,
input[type=submit].button.button-primary-border:not(.button-disabled):focus,
input[type=submit].button.button-primary-border:not(.button-disabled):active,
input[type=button].button.button-primary-border:not(.button-disabled):hover,
input[type=button].button.button-primary-border:not(.button-disabled):focus,
input[type=button].button.button-primary-border:not(.button-disabled):active,
button.button.button-primary-border:not(.button-disabled):hover,
button.button.button-primary-border:not(.button-disabled):focus,
button.button.button-primary-border:not(.button-disabled):active,
li.button.button-primary-border:not(.button-disabled):hover,
li.button.button-primary-border:not(.button-disabled):focus,
li.button.button-primary-border:not(.button-disabled):active,
span.button.button-primary-border:not(.button-disabled):hover,
span.button.button-primary-border:not(.button-disabled):focus,
span.button.button-primary-border:not(.button-disabled):active {
  background: #1C8BB1;
  border-color: #1C8BB1;
  color: #fff;
}
.hcontent a.button.button-primary-link,
.hcontent input[type=submit].button.button-primary-link,
.hcontent input[type=button].button.button-primary-link,
.hcontent button.button.button-primary-link,
.hcontent li.button.button-primary-link,
.hcontent span.button.button-primary-link,
a.button.button-primary-link,
input[type=submit].button.button-primary-link,
input[type=button].button.button-primary-link,
button.button.button-primary-link,
li.button.button-primary-link,
span.button.button-primary-link {
  background: transparent;
  border-color: transparent;
  color: #1C8BB1;
}
.hcontent a.button.button-primary-link:not(.button-disabled):hover, .hcontent a.button.button-primary-link:not(.button-disabled):focus, .hcontent a.button.button-primary-link:not(.button-disabled):active,
.hcontent input[type=submit].button.button-primary-link:not(.button-disabled):hover,
.hcontent input[type=submit].button.button-primary-link:not(.button-disabled):focus,
.hcontent input[type=submit].button.button-primary-link:not(.button-disabled):active,
.hcontent input[type=button].button.button-primary-link:not(.button-disabled):hover,
.hcontent input[type=button].button.button-primary-link:not(.button-disabled):focus,
.hcontent input[type=button].button.button-primary-link:not(.button-disabled):active,
.hcontent button.button.button-primary-link:not(.button-disabled):hover,
.hcontent button.button.button-primary-link:not(.button-disabled):focus,
.hcontent button.button.button-primary-link:not(.button-disabled):active,
.hcontent li.button.button-primary-link:not(.button-disabled):hover,
.hcontent li.button.button-primary-link:not(.button-disabled):focus,
.hcontent li.button.button-primary-link:not(.button-disabled):active,
.hcontent span.button.button-primary-link:not(.button-disabled):hover,
.hcontent span.button.button-primary-link:not(.button-disabled):focus,
.hcontent span.button.button-primary-link:not(.button-disabled):active,
a.button.button-primary-link:not(.button-disabled):hover,
a.button.button-primary-link:not(.button-disabled):focus,
a.button.button-primary-link:not(.button-disabled):active,
input[type=submit].button.button-primary-link:not(.button-disabled):hover,
input[type=submit].button.button-primary-link:not(.button-disabled):focus,
input[type=submit].button.button-primary-link:not(.button-disabled):active,
input[type=button].button.button-primary-link:not(.button-disabled):hover,
input[type=button].button.button-primary-link:not(.button-disabled):focus,
input[type=button].button.button-primary-link:not(.button-disabled):active,
button.button.button-primary-link:not(.button-disabled):hover,
button.button.button-primary-link:not(.button-disabled):focus,
button.button.button-primary-link:not(.button-disabled):active,
li.button.button-primary-link:not(.button-disabled):hover,
li.button.button-primary-link:not(.button-disabled):focus,
li.button.button-primary-link:not(.button-disabled):active,
span.button.button-primary-link:not(.button-disabled):hover,
span.button.button-primary-link:not(.button-disabled):focus,
span.button.button-primary-link:not(.button-disabled):active {
  background: transparent;
  border-color: transparent;
  color: #1C8BB1;
  text-decoration: underline;
}
.hcontent a.button.button-secondary,
.hcontent input[type=submit].button.button-secondary,
.hcontent input[type=button].button.button-secondary,
.hcontent button.button.button-secondary,
.hcontent li.button.button-secondary,
.hcontent span.button.button-secondary,
a.button.button-secondary,
input[type=submit].button.button-secondary,
input[type=button].button.button-secondary,
button.button.button-secondary,
li.button.button-secondary,
span.button.button-secondary {
  background: #fff;
  border-color: #fff;
  color: #fff;
}
.hcontent a.button.button-secondary:not(.button-disabled):hover, .hcontent a.button.button-secondary:not(.button-disabled):focus, .hcontent a.button.button-secondary:not(.button-disabled):active,
.hcontent input[type=submit].button.button-secondary:not(.button-disabled):hover,
.hcontent input[type=submit].button.button-secondary:not(.button-disabled):focus,
.hcontent input[type=submit].button.button-secondary:not(.button-disabled):active,
.hcontent input[type=button].button.button-secondary:not(.button-disabled):hover,
.hcontent input[type=button].button.button-secondary:not(.button-disabled):focus,
.hcontent input[type=button].button.button-secondary:not(.button-disabled):active,
.hcontent button.button.button-secondary:not(.button-disabled):hover,
.hcontent button.button.button-secondary:not(.button-disabled):focus,
.hcontent button.button.button-secondary:not(.button-disabled):active,
.hcontent li.button.button-secondary:not(.button-disabled):hover,
.hcontent li.button.button-secondary:not(.button-disabled):focus,
.hcontent li.button.button-secondary:not(.button-disabled):active,
.hcontent span.button.button-secondary:not(.button-disabled):hover,
.hcontent span.button.button-secondary:not(.button-disabled):focus,
.hcontent span.button.button-secondary:not(.button-disabled):active,
a.button.button-secondary:not(.button-disabled):hover,
a.button.button-secondary:not(.button-disabled):focus,
a.button.button-secondary:not(.button-disabled):active,
input[type=submit].button.button-secondary:not(.button-disabled):hover,
input[type=submit].button.button-secondary:not(.button-disabled):focus,
input[type=submit].button.button-secondary:not(.button-disabled):active,
input[type=button].button.button-secondary:not(.button-disabled):hover,
input[type=button].button.button-secondary:not(.button-disabled):focus,
input[type=button].button.button-secondary:not(.button-disabled):active,
button.button.button-secondary:not(.button-disabled):hover,
button.button.button-secondary:not(.button-disabled):focus,
button.button.button-secondary:not(.button-disabled):active,
li.button.button-secondary:not(.button-disabled):hover,
li.button.button-secondary:not(.button-disabled):focus,
li.button.button-secondary:not(.button-disabled):active,
span.button.button-secondary:not(.button-disabled):hover,
span.button.button-secondary:not(.button-disabled):focus,
span.button.button-secondary:not(.button-disabled):active {
  background: white;
  border-color: white;
  color: #fff;
}
.hcontent a.button.button-secondary-border,
.hcontent input[type=submit].button.button-secondary-border,
.hcontent input[type=button].button.button-secondary-border,
.hcontent button.button.button-secondary-border,
.hcontent li.button.button-secondary-border,
.hcontent span.button.button-secondary-border,
a.button.button-secondary-border,
input[type=submit].button.button-secondary-border,
input[type=button].button.button-secondary-border,
button.button.button-secondary-border,
li.button.button-secondary-border,
span.button.button-secondary-border {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.hcontent a.button.button-secondary-border:not(.button-disabled):hover, .hcontent a.button.button-secondary-border:not(.button-disabled):focus, .hcontent a.button.button-secondary-border:not(.button-disabled):active,
.hcontent input[type=submit].button.button-secondary-border:not(.button-disabled):hover,
.hcontent input[type=submit].button.button-secondary-border:not(.button-disabled):focus,
.hcontent input[type=submit].button.button-secondary-border:not(.button-disabled):active,
.hcontent input[type=button].button.button-secondary-border:not(.button-disabled):hover,
.hcontent input[type=button].button.button-secondary-border:not(.button-disabled):focus,
.hcontent input[type=button].button.button-secondary-border:not(.button-disabled):active,
.hcontent button.button.button-secondary-border:not(.button-disabled):hover,
.hcontent button.button.button-secondary-border:not(.button-disabled):focus,
.hcontent button.button.button-secondary-border:not(.button-disabled):active,
.hcontent li.button.button-secondary-border:not(.button-disabled):hover,
.hcontent li.button.button-secondary-border:not(.button-disabled):focus,
.hcontent li.button.button-secondary-border:not(.button-disabled):active,
.hcontent span.button.button-secondary-border:not(.button-disabled):hover,
.hcontent span.button.button-secondary-border:not(.button-disabled):focus,
.hcontent span.button.button-secondary-border:not(.button-disabled):active,
a.button.button-secondary-border:not(.button-disabled):hover,
a.button.button-secondary-border:not(.button-disabled):focus,
a.button.button-secondary-border:not(.button-disabled):active,
input[type=submit].button.button-secondary-border:not(.button-disabled):hover,
input[type=submit].button.button-secondary-border:not(.button-disabled):focus,
input[type=submit].button.button-secondary-border:not(.button-disabled):active,
input[type=button].button.button-secondary-border:not(.button-disabled):hover,
input[type=button].button.button-secondary-border:not(.button-disabled):focus,
input[type=button].button.button-secondary-border:not(.button-disabled):active,
button.button.button-secondary-border:not(.button-disabled):hover,
button.button.button-secondary-border:not(.button-disabled):focus,
button.button.button-secondary-border:not(.button-disabled):active,
li.button.button-secondary-border:not(.button-disabled):hover,
li.button.button-secondary-border:not(.button-disabled):focus,
li.button.button-secondary-border:not(.button-disabled):active,
span.button.button-secondary-border:not(.button-disabled):hover,
span.button.button-secondary-border:not(.button-disabled):focus,
span.button.button-secondary-border:not(.button-disabled):active {
  background: #fff;
  border-color: #fff;
  color: #fff;
}
.hcontent a.button.button-secondary-link,
.hcontent input[type=submit].button.button-secondary-link,
.hcontent input[type=button].button.button-secondary-link,
.hcontent button.button.button-secondary-link,
.hcontent li.button.button-secondary-link,
.hcontent span.button.button-secondary-link,
a.button.button-secondary-link,
input[type=submit].button.button-secondary-link,
input[type=button].button.button-secondary-link,
button.button.button-secondary-link,
li.button.button-secondary-link,
span.button.button-secondary-link {
  background: transparent;
  border-color: transparent;
  color: #fff;
}
.hcontent a.button.button-secondary-link:not(.button-disabled):hover, .hcontent a.button.button-secondary-link:not(.button-disabled):focus, .hcontent a.button.button-secondary-link:not(.button-disabled):active,
.hcontent input[type=submit].button.button-secondary-link:not(.button-disabled):hover,
.hcontent input[type=submit].button.button-secondary-link:not(.button-disabled):focus,
.hcontent input[type=submit].button.button-secondary-link:not(.button-disabled):active,
.hcontent input[type=button].button.button-secondary-link:not(.button-disabled):hover,
.hcontent input[type=button].button.button-secondary-link:not(.button-disabled):focus,
.hcontent input[type=button].button.button-secondary-link:not(.button-disabled):active,
.hcontent button.button.button-secondary-link:not(.button-disabled):hover,
.hcontent button.button.button-secondary-link:not(.button-disabled):focus,
.hcontent button.button.button-secondary-link:not(.button-disabled):active,
.hcontent li.button.button-secondary-link:not(.button-disabled):hover,
.hcontent li.button.button-secondary-link:not(.button-disabled):focus,
.hcontent li.button.button-secondary-link:not(.button-disabled):active,
.hcontent span.button.button-secondary-link:not(.button-disabled):hover,
.hcontent span.button.button-secondary-link:not(.button-disabled):focus,
.hcontent span.button.button-secondary-link:not(.button-disabled):active,
a.button.button-secondary-link:not(.button-disabled):hover,
a.button.button-secondary-link:not(.button-disabled):focus,
a.button.button-secondary-link:not(.button-disabled):active,
input[type=submit].button.button-secondary-link:not(.button-disabled):hover,
input[type=submit].button.button-secondary-link:not(.button-disabled):focus,
input[type=submit].button.button-secondary-link:not(.button-disabled):active,
input[type=button].button.button-secondary-link:not(.button-disabled):hover,
input[type=button].button.button-secondary-link:not(.button-disabled):focus,
input[type=button].button.button-secondary-link:not(.button-disabled):active,
button.button.button-secondary-link:not(.button-disabled):hover,
button.button.button-secondary-link:not(.button-disabled):focus,
button.button.button-secondary-link:not(.button-disabled):active,
li.button.button-secondary-link:not(.button-disabled):hover,
li.button.button-secondary-link:not(.button-disabled):focus,
li.button.button-secondary-link:not(.button-disabled):active,
span.button.button-secondary-link:not(.button-disabled):hover,
span.button.button-secondary-link:not(.button-disabled):focus,
span.button.button-secondary-link:not(.button-disabled):active {
  background: transparent;
  border-color: transparent;
  color: #fff;
  text-decoration: underline;
}

.hcontent a.button,
.hcontent input[type=submit].button,
.hcontent input[type=button].button,
.hcontent button.button,
.hcontent li.button,
.hcontent span.button,
a.button,
input[type=submit].button,
input[type=button].button,
button.button,
li.button,
span.button {
  line-height: 1;
  text-decoration: none !important;
  text-align: center;
  display: inline-block;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: rgb(119.7023121387, 125.4710982659, 129.7976878613);
  border: 2px solid rgb(119.7023121387, 125.4710982659, 129.7976878613);
  color: #fff;
}
.hcontent a.button:not(.button-disabled):hover, .hcontent a.button:not(.button-disabled):focus, .hcontent a.button:not(.button-disabled):active,
.hcontent input[type=submit].button:not(.button-disabled):hover,
.hcontent input[type=submit].button:not(.button-disabled):focus,
.hcontent input[type=submit].button:not(.button-disabled):active,
.hcontent input[type=button].button:not(.button-disabled):hover,
.hcontent input[type=button].button:not(.button-disabled):focus,
.hcontent input[type=button].button:not(.button-disabled):active,
.hcontent button.button:not(.button-disabled):hover,
.hcontent button.button:not(.button-disabled):focus,
.hcontent button.button:not(.button-disabled):active,
.hcontent li.button:not(.button-disabled):hover,
.hcontent li.button:not(.button-disabled):focus,
.hcontent li.button:not(.button-disabled):active,
.hcontent span.button:not(.button-disabled):hover,
.hcontent span.button:not(.button-disabled):focus,
.hcontent span.button:not(.button-disabled):active,
a.button:not(.button-disabled):hover,
a.button:not(.button-disabled):focus,
a.button:not(.button-disabled):active,
input[type=submit].button:not(.button-disabled):hover,
input[type=submit].button:not(.button-disabled):focus,
input[type=submit].button:not(.button-disabled):active,
input[type=button].button:not(.button-disabled):hover,
input[type=button].button:not(.button-disabled):focus,
input[type=button].button:not(.button-disabled):active,
button.button:not(.button-disabled):hover,
button.button:not(.button-disabled):focus,
button.button:not(.button-disabled):active,
li.button:not(.button-disabled):hover,
li.button:not(.button-disabled):focus,
li.button:not(.button-disabled):active,
span.button:not(.button-disabled):hover,
span.button:not(.button-disabled):focus,
span.button:not(.button-disabled):active {
  background: rgb(132.7456647399, 138.1791907514, 142.2543352601);
  border-color: rgb(132.7456647399, 138.1791907514, 142.2543352601);
  color: #fff;
}
.hcontent a.button.button-border,
.hcontent input[type=submit].button.button-border,
.hcontent input[type=button].button.button-border,
.hcontent button.button.button-border,
.hcontent li.button.button-border,
.hcontent span.button.button-border,
a.button.button-border,
input[type=submit].button.button-border,
input[type=button].button.button-border,
button.button.button-border,
li.button.button-border,
span.button.button-border {
  background: transparent;
  border-color: rgb(119.7023121387, 125.4710982659, 129.7976878613);
  color: rgb(119.7023121387, 125.4710982659, 129.7976878613);
}
.hcontent a.button.button-border:not(.button-disabled):hover, .hcontent a.button.button-border:not(.button-disabled):focus, .hcontent a.button.button-border:not(.button-disabled):active .hcontent a.button.button-border.sg-button-border-hover, .hcontent a.button.button-border.sg-button-border-active,
.hcontent input[type=submit].button.button-border:not(.button-disabled):hover,
.hcontent input[type=submit].button.button-border:not(.button-disabled):focus,
.hcontent a.button.button-border:not(.button-disabled):active .hcontent input[type=submit].button.button-border.sg-button-border-hover,
.hcontent input[type=submit].button.button-border.sg-button-border-active,
.hcontent input[type=button].button.button-border:not(.button-disabled):hover,
.hcontent input[type=button].button.button-border:not(.button-disabled):focus,
.hcontent a.button.button-border:not(.button-disabled):active .hcontent input[type=button].button.button-border.sg-button-border-hover,
.hcontent input[type=button].button.button-border.sg-button-border-active,
.hcontent button.button.button-border:not(.button-disabled):hover,
.hcontent button.button.button-border:not(.button-disabled):focus,
.hcontent a.button.button-border:not(.button-disabled):active .hcontent button.button.button-border.sg-button-border-hover,
.hcontent button.button.button-border.sg-button-border-active,
.hcontent li.button.button-border:not(.button-disabled):hover,
.hcontent li.button.button-border:not(.button-disabled):focus,
.hcontent a.button.button-border:not(.button-disabled):active .hcontent li.button.button-border.sg-button-border-hover,
.hcontent li.button.button-border.sg-button-border-active,
.hcontent span.button.button-border:not(.button-disabled):hover,
.hcontent span.button.button-border:not(.button-disabled):focus,
.hcontent a.button.button-border:not(.button-disabled):active .hcontent span.button.button-border.sg-button-border-hover,
.hcontent span.button.button-border.sg-button-border-active,
a.button.button-border:not(.button-disabled):hover,
a.button.button-border:not(.button-disabled):focus,
.hcontent a.button.button-border:not(.button-disabled):active a.button.button-border.sg-button-border-hover,
a.button.button-border.sg-button-border-active,
input[type=submit].button.button-border:not(.button-disabled):hover,
input[type=submit].button.button-border:not(.button-disabled):focus,
.hcontent a.button.button-border:not(.button-disabled):active input[type=submit].button.button-border.sg-button-border-hover,
input[type=submit].button.button-border.sg-button-border-active,
input[type=button].button.button-border:not(.button-disabled):hover,
input[type=button].button.button-border:not(.button-disabled):focus,
.hcontent a.button.button-border:not(.button-disabled):active input[type=button].button.button-border.sg-button-border-hover,
input[type=button].button.button-border.sg-button-border-active,
button.button.button-border:not(.button-disabled):hover,
button.button.button-border:not(.button-disabled):focus,
.hcontent a.button.button-border:not(.button-disabled):active button.button.button-border.sg-button-border-hover,
button.button.button-border.sg-button-border-active,
li.button.button-border:not(.button-disabled):hover,
li.button.button-border:not(.button-disabled):focus,
.hcontent a.button.button-border:not(.button-disabled):active li.button.button-border.sg-button-border-hover,
li.button.button-border.sg-button-border-active,
span.button.button-border:not(.button-disabled):hover,
span.button.button-border:not(.button-disabled):focus,
.hcontent a.button.button-border:not(.button-disabled):active span.button.button-border.sg-button-border-hover,
span.button.button-border.sg-button-border-active,
.hcontent input[type=submit].button.button-border:not(.button-disabled):active .hcontent a.button.button-border.sg-button-border-hover,
.hcontent input[type=submit].button.button-border:not(.button-disabled):active .hcontent input[type=submit].button.button-border.sg-button-border-hover,
.hcontent input[type=submit].button.button-border:not(.button-disabled):active .hcontent input[type=button].button.button-border.sg-button-border-hover,
.hcontent input[type=submit].button.button-border:not(.button-disabled):active .hcontent button.button.button-border.sg-button-border-hover,
.hcontent input[type=submit].button.button-border:not(.button-disabled):active .hcontent li.button.button-border.sg-button-border-hover,
.hcontent input[type=submit].button.button-border:not(.button-disabled):active .hcontent span.button.button-border.sg-button-border-hover,
.hcontent input[type=submit].button.button-border:not(.button-disabled):active a.button.button-border.sg-button-border-hover,
.hcontent input[type=submit].button.button-border:not(.button-disabled):active input[type=submit].button.button-border.sg-button-border-hover,
.hcontent input[type=submit].button.button-border:not(.button-disabled):active input[type=button].button.button-border.sg-button-border-hover,
.hcontent input[type=submit].button.button-border:not(.button-disabled):active button.button.button-border.sg-button-border-hover,
.hcontent input[type=submit].button.button-border:not(.button-disabled):active li.button.button-border.sg-button-border-hover,
.hcontent input[type=submit].button.button-border:not(.button-disabled):active span.button.button-border.sg-button-border-hover,
.hcontent input[type=button].button.button-border:not(.button-disabled):active .hcontent a.button.button-border.sg-button-border-hover,
.hcontent input[type=button].button.button-border:not(.button-disabled):active .hcontent input[type=submit].button.button-border.sg-button-border-hover,
.hcontent input[type=button].button.button-border:not(.button-disabled):active .hcontent input[type=button].button.button-border.sg-button-border-hover,
.hcontent input[type=button].button.button-border:not(.button-disabled):active .hcontent button.button.button-border.sg-button-border-hover,
.hcontent input[type=button].button.button-border:not(.button-disabled):active .hcontent li.button.button-border.sg-button-border-hover,
.hcontent input[type=button].button.button-border:not(.button-disabled):active .hcontent span.button.button-border.sg-button-border-hover,
.hcontent input[type=button].button.button-border:not(.button-disabled):active a.button.button-border.sg-button-border-hover,
.hcontent input[type=button].button.button-border:not(.button-disabled):active input[type=submit].button.button-border.sg-button-border-hover,
.hcontent input[type=button].button.button-border:not(.button-disabled):active input[type=button].button.button-border.sg-button-border-hover,
.hcontent input[type=button].button.button-border:not(.button-disabled):active button.button.button-border.sg-button-border-hover,
.hcontent input[type=button].button.button-border:not(.button-disabled):active li.button.button-border.sg-button-border-hover,
.hcontent input[type=button].button.button-border:not(.button-disabled):active span.button.button-border.sg-button-border-hover,
.hcontent button.button.button-border:not(.button-disabled):active .hcontent a.button.button-border.sg-button-border-hover,
.hcontent button.button.button-border:not(.button-disabled):active .hcontent input[type=submit].button.button-border.sg-button-border-hover,
.hcontent button.button.button-border:not(.button-disabled):active .hcontent input[type=button].button.button-border.sg-button-border-hover,
.hcontent button.button.button-border:not(.button-disabled):active .hcontent button.button.button-border.sg-button-border-hover,
.hcontent button.button.button-border:not(.button-disabled):active .hcontent li.button.button-border.sg-button-border-hover,
.hcontent button.button.button-border:not(.button-disabled):active .hcontent span.button.button-border.sg-button-border-hover,
.hcontent button.button.button-border:not(.button-disabled):active a.button.button-border.sg-button-border-hover,
.hcontent button.button.button-border:not(.button-disabled):active input[type=submit].button.button-border.sg-button-border-hover,
.hcontent button.button.button-border:not(.button-disabled):active input[type=button].button.button-border.sg-button-border-hover,
.hcontent button.button.button-border:not(.button-disabled):active button.button.button-border.sg-button-border-hover,
.hcontent button.button.button-border:not(.button-disabled):active li.button.button-border.sg-button-border-hover,
.hcontent button.button.button-border:not(.button-disabled):active span.button.button-border.sg-button-border-hover,
.hcontent li.button.button-border:not(.button-disabled):active .hcontent a.button.button-border.sg-button-border-hover,
.hcontent li.button.button-border:not(.button-disabled):active .hcontent input[type=submit].button.button-border.sg-button-border-hover,
.hcontent li.button.button-border:not(.button-disabled):active .hcontent input[type=button].button.button-border.sg-button-border-hover,
.hcontent li.button.button-border:not(.button-disabled):active .hcontent button.button.button-border.sg-button-border-hover,
.hcontent li.button.button-border:not(.button-disabled):active .hcontent li.button.button-border.sg-button-border-hover,
.hcontent li.button.button-border:not(.button-disabled):active .hcontent span.button.button-border.sg-button-border-hover,
.hcontent li.button.button-border:not(.button-disabled):active a.button.button-border.sg-button-border-hover,
.hcontent li.button.button-border:not(.button-disabled):active input[type=submit].button.button-border.sg-button-border-hover,
.hcontent li.button.button-border:not(.button-disabled):active input[type=button].button.button-border.sg-button-border-hover,
.hcontent li.button.button-border:not(.button-disabled):active button.button.button-border.sg-button-border-hover,
.hcontent li.button.button-border:not(.button-disabled):active li.button.button-border.sg-button-border-hover,
.hcontent li.button.button-border:not(.button-disabled):active span.button.button-border.sg-button-border-hover,
.hcontent span.button.button-border:not(.button-disabled):active .hcontent a.button.button-border.sg-button-border-hover,
.hcontent span.button.button-border:not(.button-disabled):active .hcontent input[type=submit].button.button-border.sg-button-border-hover,
.hcontent span.button.button-border:not(.button-disabled):active .hcontent input[type=button].button.button-border.sg-button-border-hover,
.hcontent span.button.button-border:not(.button-disabled):active .hcontent button.button.button-border.sg-button-border-hover,
.hcontent span.button.button-border:not(.button-disabled):active .hcontent li.button.button-border.sg-button-border-hover,
.hcontent span.button.button-border:not(.button-disabled):active .hcontent span.button.button-border.sg-button-border-hover,
.hcontent span.button.button-border:not(.button-disabled):active a.button.button-border.sg-button-border-hover,
.hcontent span.button.button-border:not(.button-disabled):active input[type=submit].button.button-border.sg-button-border-hover,
.hcontent span.button.button-border:not(.button-disabled):active input[type=button].button.button-border.sg-button-border-hover,
.hcontent span.button.button-border:not(.button-disabled):active button.button.button-border.sg-button-border-hover,
.hcontent span.button.button-border:not(.button-disabled):active li.button.button-border.sg-button-border-hover,
.hcontent span.button.button-border:not(.button-disabled):active span.button.button-border.sg-button-border-hover,
a.button.button-border:not(.button-disabled):active .hcontent a.button.button-border.sg-button-border-hover,
a.button.button-border:not(.button-disabled):active .hcontent input[type=submit].button.button-border.sg-button-border-hover,
a.button.button-border:not(.button-disabled):active .hcontent input[type=button].button.button-border.sg-button-border-hover,
a.button.button-border:not(.button-disabled):active .hcontent button.button.button-border.sg-button-border-hover,
a.button.button-border:not(.button-disabled):active .hcontent li.button.button-border.sg-button-border-hover,
a.button.button-border:not(.button-disabled):active .hcontent span.button.button-border.sg-button-border-hover,
a.button.button-border:not(.button-disabled):active a.button.button-border.sg-button-border-hover,
a.button.button-border:not(.button-disabled):active input[type=submit].button.button-border.sg-button-border-hover,
a.button.button-border:not(.button-disabled):active input[type=button].button.button-border.sg-button-border-hover,
a.button.button-border:not(.button-disabled):active button.button.button-border.sg-button-border-hover,
a.button.button-border:not(.button-disabled):active li.button.button-border.sg-button-border-hover,
a.button.button-border:not(.button-disabled):active span.button.button-border.sg-button-border-hover,
input[type=submit].button.button-border:not(.button-disabled):active .hcontent a.button.button-border.sg-button-border-hover,
input[type=submit].button.button-border:not(.button-disabled):active .hcontent input[type=submit].button.button-border.sg-button-border-hover,
input[type=submit].button.button-border:not(.button-disabled):active .hcontent input[type=button].button.button-border.sg-button-border-hover,
input[type=submit].button.button-border:not(.button-disabled):active .hcontent button.button.button-border.sg-button-border-hover,
input[type=submit].button.button-border:not(.button-disabled):active .hcontent li.button.button-border.sg-button-border-hover,
input[type=submit].button.button-border:not(.button-disabled):active .hcontent span.button.button-border.sg-button-border-hover,
input[type=submit].button.button-border:not(.button-disabled):active a.button.button-border.sg-button-border-hover,
input[type=submit].button.button-border:not(.button-disabled):active input[type=submit].button.button-border.sg-button-border-hover,
input[type=submit].button.button-border:not(.button-disabled):active input[type=button].button.button-border.sg-button-border-hover,
input[type=submit].button.button-border:not(.button-disabled):active button.button.button-border.sg-button-border-hover,
input[type=submit].button.button-border:not(.button-disabled):active li.button.button-border.sg-button-border-hover,
input[type=submit].button.button-border:not(.button-disabled):active span.button.button-border.sg-button-border-hover,
input[type=button].button.button-border:not(.button-disabled):active .hcontent a.button.button-border.sg-button-border-hover,
input[type=button].button.button-border:not(.button-disabled):active .hcontent input[type=submit].button.button-border.sg-button-border-hover,
input[type=button].button.button-border:not(.button-disabled):active .hcontent input[type=button].button.button-border.sg-button-border-hover,
input[type=button].button.button-border:not(.button-disabled):active .hcontent button.button.button-border.sg-button-border-hover,
input[type=button].button.button-border:not(.button-disabled):active .hcontent li.button.button-border.sg-button-border-hover,
input[type=button].button.button-border:not(.button-disabled):active .hcontent span.button.button-border.sg-button-border-hover,
input[type=button].button.button-border:not(.button-disabled):active a.button.button-border.sg-button-border-hover,
input[type=button].button.button-border:not(.button-disabled):active input[type=submit].button.button-border.sg-button-border-hover,
input[type=button].button.button-border:not(.button-disabled):active input[type=button].button.button-border.sg-button-border-hover,
input[type=button].button.button-border:not(.button-disabled):active button.button.button-border.sg-button-border-hover,
input[type=button].button.button-border:not(.button-disabled):active li.button.button-border.sg-button-border-hover,
input[type=button].button.button-border:not(.button-disabled):active span.button.button-border.sg-button-border-hover,
button.button.button-border:not(.button-disabled):active .hcontent a.button.button-border.sg-button-border-hover,
button.button.button-border:not(.button-disabled):active .hcontent input[type=submit].button.button-border.sg-button-border-hover,
button.button.button-border:not(.button-disabled):active .hcontent input[type=button].button.button-border.sg-button-border-hover,
button.button.button-border:not(.button-disabled):active .hcontent button.button.button-border.sg-button-border-hover,
button.button.button-border:not(.button-disabled):active .hcontent li.button.button-border.sg-button-border-hover,
button.button.button-border:not(.button-disabled):active .hcontent span.button.button-border.sg-button-border-hover,
button.button.button-border:not(.button-disabled):active a.button.button-border.sg-button-border-hover,
button.button.button-border:not(.button-disabled):active input[type=submit].button.button-border.sg-button-border-hover,
button.button.button-border:not(.button-disabled):active input[type=button].button.button-border.sg-button-border-hover,
button.button.button-border:not(.button-disabled):active button.button.button-border.sg-button-border-hover,
button.button.button-border:not(.button-disabled):active li.button.button-border.sg-button-border-hover,
button.button.button-border:not(.button-disabled):active span.button.button-border.sg-button-border-hover,
li.button.button-border:not(.button-disabled):active .hcontent a.button.button-border.sg-button-border-hover,
li.button.button-border:not(.button-disabled):active .hcontent input[type=submit].button.button-border.sg-button-border-hover,
li.button.button-border:not(.button-disabled):active .hcontent input[type=button].button.button-border.sg-button-border-hover,
li.button.button-border:not(.button-disabled):active .hcontent button.button.button-border.sg-button-border-hover,
li.button.button-border:not(.button-disabled):active .hcontent li.button.button-border.sg-button-border-hover,
li.button.button-border:not(.button-disabled):active .hcontent span.button.button-border.sg-button-border-hover,
li.button.button-border:not(.button-disabled):active a.button.button-border.sg-button-border-hover,
li.button.button-border:not(.button-disabled):active input[type=submit].button.button-border.sg-button-border-hover,
li.button.button-border:not(.button-disabled):active input[type=button].button.button-border.sg-button-border-hover,
li.button.button-border:not(.button-disabled):active button.button.button-border.sg-button-border-hover,
li.button.button-border:not(.button-disabled):active li.button.button-border.sg-button-border-hover,
li.button.button-border:not(.button-disabled):active span.button.button-border.sg-button-border-hover,
span.button.button-border:not(.button-disabled):active .hcontent a.button.button-border.sg-button-border-hover,
span.button.button-border:not(.button-disabled):active .hcontent input[type=submit].button.button-border.sg-button-border-hover,
span.button.button-border:not(.button-disabled):active .hcontent input[type=button].button.button-border.sg-button-border-hover,
span.button.button-border:not(.button-disabled):active .hcontent button.button.button-border.sg-button-border-hover,
span.button.button-border:not(.button-disabled):active .hcontent li.button.button-border.sg-button-border-hover,
span.button.button-border:not(.button-disabled):active .hcontent span.button.button-border.sg-button-border-hover,
span.button.button-border:not(.button-disabled):active a.button.button-border.sg-button-border-hover,
span.button.button-border:not(.button-disabled):active input[type=submit].button.button-border.sg-button-border-hover,
span.button.button-border:not(.button-disabled):active input[type=button].button.button-border.sg-button-border-hover,
span.button.button-border:not(.button-disabled):active button.button.button-border.sg-button-border-hover,
span.button.button-border:not(.button-disabled):active li.button.button-border.sg-button-border-hover,
span.button.button-border:not(.button-disabled):active span.button.button-border.sg-button-border-hover {
  background: rgb(119.7023121387, 125.4710982659, 129.7976878613);
  border-color: rgb(119.7023121387, 125.4710982659, 129.7976878613);
  color: #fff;
}
.hcontent a.button.button-link,
.hcontent input[type=submit].button.button-link,
.hcontent input[type=button].button.button-link,
.hcontent button.button.button-link,
.hcontent li.button.button-link,
.hcontent span.button.button-link,
a.button.button-link,
input[type=submit].button.button-link,
input[type=button].button.button-link,
button.button.button-link,
li.button.button-link,
span.button.button-link {
  background: transparent;
  border-color: transparent;
  color: rgb(119.7023121387, 125.4710982659, 129.7976878613);
}
.hcontent a.button.button-link:not(.button-disabled):hover, .hcontent a.button.button-link:not(.button-disabled):focus, .hcontent a.button.button-link:not(.button-disabled):active,
.hcontent input[type=submit].button.button-link:not(.button-disabled):hover,
.hcontent input[type=submit].button.button-link:not(.button-disabled):focus,
.hcontent input[type=submit].button.button-link:not(.button-disabled):active,
.hcontent input[type=button].button.button-link:not(.button-disabled):hover,
.hcontent input[type=button].button.button-link:not(.button-disabled):focus,
.hcontent input[type=button].button.button-link:not(.button-disabled):active,
.hcontent button.button.button-link:not(.button-disabled):hover,
.hcontent button.button.button-link:not(.button-disabled):focus,
.hcontent button.button.button-link:not(.button-disabled):active,
.hcontent li.button.button-link:not(.button-disabled):hover,
.hcontent li.button.button-link:not(.button-disabled):focus,
.hcontent li.button.button-link:not(.button-disabled):active,
.hcontent span.button.button-link:not(.button-disabled):hover,
.hcontent span.button.button-link:not(.button-disabled):focus,
.hcontent span.button.button-link:not(.button-disabled):active,
a.button.button-link:not(.button-disabled):hover,
a.button.button-link:not(.button-disabled):focus,
a.button.button-link:not(.button-disabled):active,
input[type=submit].button.button-link:not(.button-disabled):hover,
input[type=submit].button.button-link:not(.button-disabled):focus,
input[type=submit].button.button-link:not(.button-disabled):active,
input[type=button].button.button-link:not(.button-disabled):hover,
input[type=button].button.button-link:not(.button-disabled):focus,
input[type=button].button.button-link:not(.button-disabled):active,
button.button.button-link:not(.button-disabled):hover,
button.button.button-link:not(.button-disabled):focus,
button.button.button-link:not(.button-disabled):active,
li.button.button-link:not(.button-disabled):hover,
li.button.button-link:not(.button-disabled):focus,
li.button.button-link:not(.button-disabled):active,
span.button.button-link:not(.button-disabled):hover,
span.button.button-link:not(.button-disabled):focus,
span.button.button-link:not(.button-disabled):active {
  color: rgb(119.7023121387, 125.4710982659, 129.7976878613);
  background: transparent;
  border-color: transparent;
  text-decoration: underline;
}
.hcontent a.button.button-disabled,
.hcontent input[type=submit].button.button-disabled,
.hcontent input[type=button].button.button-disabled,
.hcontent button.button.button-disabled,
.hcontent li.button.button-disabled,
.hcontent span.button.button-disabled,
a.button.button-disabled,
input[type=submit].button.button-disabled,
input[type=button].button.button-disabled,
button.button.button-disabled,
li.button.button-disabled,
span.button.button-disabled {
  opacity: 0.7 !important;
  cursor: not-allowed !important;
}

/*****************************************************************

BRAND COLORS

If a color is directly tied to another color in its usage, append it with how it's being modified. For example:

$teal: #009482;
$teal-light: #35a08b;

/*****************************************************************/
/*F7941D;*/
/*****************************************************************

COLOR USAGE

Take the brand color variables from above and apply them below to the common color usages

Note: Having "body" in the class selectors below allows it to have higher inheritance over our standard styling that's in place

*****************************************************************/
/* PRIMARY COLOR **************/
body .color-primary-bg {
  background: #1C8BB1;
}

body .color-primary-tx {
  color: #1C8BB1;
}

/**/
body .color-primary-l-bg {
  background: #c6e2ec;
}

body .color-primary-l-tx {
  color: #c6e2ec;
}

/**/
body .color-primary-d-bg {
  background: #105065;
}

body .color-primary-d-tx {
  color: #105065;
}

/* SECONDARY COLOR **************/
body .color-secondary-bg {
  background: #fff;
}

body .color-secondary-tx {
  color: #fff;
}

/**/
body .color-secondary-l-bg {
  background: white;
}

body .color-secondary-l-tx {
  color: white;
}

/**/
body .color-secondary-d-bg {
  background: rgb(216.75, 216.75, 216.75);
}

body .color-secondary-d-tx {
  color: rgb(216.75, 216.75, 216.75);
}

/* BACKGROUND COLORS **************/
body .color-bg-light {
  background: #f7f5f3;
}

body .color-bg-dark {
  background: #454142;
}

/* BORDER COLORS **************/
/* TEXT COLORS **************/
/* ACCENT COLOR **************/
body .color-accent-bg {
  background: #1C8BB1;
}

body .color-accent-tx {
  color: #1C8BB1;
}

/**/
body .color-accent-l-bg {
  background: rgb(57.7097560976, 181.4341463415, 223.7902439024);
}

body .color-accent-l-tx {
  color: rgb(57.7097560976, 181.4341463415, 223.7902439024);
}

/**/
body .color-accent-d-bg {
  background: #105065;
}

body .color-accent-d-tx {
  color: #105065;
}

.border-radius {
  border-radius: 14px;
}

.border-radius-sm {
  border-radius: 7px;
}

.trigger {
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
  float: none;
  position: relative;
  left: -9999px;
}

@-webkit-keyframes slide-up-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translate(0px, 40px);
            transform: translate(0px, 40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@keyframes slide-up-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translate(0px, 40px);
            transform: translate(0px, 40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
/***************************

FADE IN

Behavior: 
- When an element with the "fade-in" class comes into view, we add the "show-fade" class
- This will fade in the whole element at once

***************************/
.fade-in {
  opacity: 0;
}

.fade-in.show-fade {
  -webkit-animation: 0.7s ease 1 forwards slide-up-fade-in;
  animation: 0.7s ease 1 forwards slide-up-fade-in;
}

body.admin .fade-in {
  opacity: 1;
}
body.admin .fade-in.show-fade {
  -webkit-animation: none !important;
          animation: none !important;
}

/* END OF FADE IN */
/***************************

FADE IN INSTANT

Behavior: 
- An element with the "fade-in-instant" class will...you guessed it...fade in instantly
- This is most helpful for an element near the top of page that you want to fade in right away, but doesn't hit the threshold to fade in immediately

***************************/
.fade-in-instant {
  opacity: 0;
  -webkit-animation: 0.7s ease 1 forwards slide-up-fade-in;
  animation: 0.7s ease 1 forwards slide-up-fade-in;
}

body.admin .fade-in-instant {
  opacity: 1;
  -webkit-animation: none !important;
          animation: none !important;
}

/* END OF FADE IN */
/***************************

FADE IN COL

Behavior: 
- When an element with the "fade-in-col" class comes into view, we add the "show-fade" class
- This will trigger a fade in chain reaction for all the child items with a class of "col"
- The order of these items fading in is based on the order in which they appear in the DOM

***************************/
.fade-in-col .col {
  opacity: 0;
}
.fade-in-col.show-fade .col {
  -webkit-animation: 0.7s ease 1 forwards slide-up-fade-in;
  animation: 0.7s ease 1 forwards slide-up-fade-in;
}
.fade-in-col.show-fade .col:nth-child(1) {
  -webkit-animation-delay: calc(70ms * 1 + 0ms);
  animation-delay: calc(70ms * 1 + 0ms);
}
.fade-in-col.show-fade .col:nth-child(2) {
  -webkit-animation-delay: calc(70ms * 2 + 0ms);
  animation-delay: calc(70ms * 2 + 0ms);
}
.fade-in-col.show-fade .col:nth-child(3) {
  -webkit-animation-delay: calc(70ms * 3 + 0ms);
  animation-delay: calc(70ms * 3 + 0ms);
}
.fade-in-col.show-fade .col:nth-child(4) {
  -webkit-animation-delay: calc(70ms * 4 + 0ms);
  animation-delay: calc(70ms * 4 + 0ms);
}
.fade-in-col.show-fade .col:nth-child(5) {
  -webkit-animation-delay: calc(70ms * 5 + 0ms);
  animation-delay: calc(70ms * 5 + 0ms);
}
.fade-in-col.show-fade .col:nth-child(6) {
  -webkit-animation-delay: calc(70ms * 6 + 0ms);
  animation-delay: calc(70ms * 6 + 0ms);
}
.fade-in-col.show-fade .col:nth-child(7) {
  -webkit-animation-delay: calc(70ms * 7 + 0ms);
  animation-delay: calc(70ms * 7 + 0ms);
}
.fade-in-col.show-fade .col:nth-child(8) {
  -webkit-animation-delay: calc(70ms * 8 + 0ms);
  animation-delay: calc(70ms * 8 + 0ms);
}
.fade-in-col.show-fade .col:nth-child(9) {
  -webkit-animation-delay: calc(70ms * 9 + 0ms);
  animation-delay: calc(70ms * 9 + 0ms);
}
.fade-in-col.show-fade .col:nth-child(10) {
  -webkit-animation-delay: calc(70ms * 10 + 0ms);
  animation-delay: calc(70ms * 10 + 0ms);
}
.fade-in-col.show-fade .col:nth-child(11) {
  -webkit-animation-delay: calc(70ms * 11 + 0ms);
  animation-delay: calc(70ms * 11 + 0ms);
}
.fade-in-col.show-fade .col:nth-child(12) {
  -webkit-animation-delay: calc(70ms * 12 + 0ms);
  animation-delay: calc(70ms * 12 + 0ms);
}

body.admin .fade-in-col .col {
  opacity: 1;
}
body.admin .fade-in-col.show-fade .col {
  -webkit-animation: none !important;
          animation: none !important;
}

/* END OF FADE IN COL */
/***************************

FADE IN CHILD

Behavior: 
- When an element with the "fade-in-child" class comes into view, we add the "show-fade" class
- This will trigger a fade in chain reaction for the direct child items inside of the element with a class of "fade-in-child__wrapper"
- The order of these items fading in is based on the order in which they appear in the DOM

***************************/
.fade-in-child .fade-in-child__wrapper > *:not(.edit-col-overlay) {
  opacity: 0;
}
.fade-in-child.show-fade .fade-in-child__wrapper > *:not(.edit-col-overlay) {
  -webkit-animation: 0.7s ease 1 forwards slide-up-fade-in;
  animation: 0.7s ease 1 forwards slide-up-fade-in;
}
.fade-in-child.show-fade .fade-in-child__wrapper > *:not(.edit-col-overlay):nth-child(1) {
  -webkit-animation-delay: calc(150ms * 1 + 0ms);
  animation-delay: calc(150ms * 1 + 0ms);
}
.fade-in-child.show-fade .fade-in-child__wrapper > *:not(.edit-col-overlay):nth-child(2) {
  -webkit-animation-delay: calc(150ms * 2 + 0ms);
  animation-delay: calc(150ms * 2 + 0ms);
}
.fade-in-child.show-fade .fade-in-child__wrapper > *:not(.edit-col-overlay):nth-child(3) {
  -webkit-animation-delay: calc(150ms * 3 + 0ms);
  animation-delay: calc(150ms * 3 + 0ms);
}
.fade-in-child.show-fade .fade-in-child__wrapper > *:not(.edit-col-overlay):nth-child(4) {
  -webkit-animation-delay: calc(150ms * 4 + 0ms);
  animation-delay: calc(150ms * 4 + 0ms);
}
.fade-in-child.show-fade .fade-in-child__wrapper > *:not(.edit-col-overlay):nth-child(5) {
  -webkit-animation-delay: calc(150ms * 5 + 0ms);
  animation-delay: calc(150ms * 5 + 0ms);
}
.fade-in-child.show-fade .fade-in-child__wrapper > *:not(.edit-col-overlay):nth-child(6) {
  -webkit-animation-delay: calc(150ms * 6 + 0ms);
  animation-delay: calc(150ms * 6 + 0ms);
}
.fade-in-child.show-fade .fade-in-child__wrapper > *:not(.edit-col-overlay):nth-child(7) {
  -webkit-animation-delay: calc(150ms * 7 + 0ms);
  animation-delay: calc(150ms * 7 + 0ms);
}
.fade-in-child.show-fade .fade-in-child__wrapper > *:not(.edit-col-overlay):nth-child(8) {
  -webkit-animation-delay: calc(150ms * 8 + 0ms);
  animation-delay: calc(150ms * 8 + 0ms);
}
.fade-in-child.show-fade .fade-in-child__wrapper > *:not(.edit-col-overlay):nth-child(9) {
  -webkit-animation-delay: calc(150ms * 9 + 0ms);
  animation-delay: calc(150ms * 9 + 0ms);
}
.fade-in-child.show-fade .fade-in-child__wrapper > *:not(.edit-col-overlay):nth-child(10) {
  -webkit-animation-delay: calc(150ms * 10 + 0ms);
  animation-delay: calc(150ms * 10 + 0ms);
}

body.admin .fade-in-child .fade-in-child__wrapper > *:not(.edit-col-overlay) {
  opacity: 1;
}
body.admin .fade-in-child.show-fade .fade-in-child__wrapper > *:not(.edit-col-overlay) {
  -webkit-animation: none !important;
          animation: none !important;
}

/* END OF FADE IN CHILD */
/***************************

FADE IN CHAIN 

Behavior: 
- When an element with the "fade-in-chain" class comes into view, we add the "show-fade" class 
- This will trigger a fade in chain reaction for the child items with a class of "fade-in-chain__child"
- The order of these items fading in is based on the number applied in the custom inline style of  "--animation-order: #;"
- Example: <div class="fade-in-chain__child" style="--animation-order: 4;">

***************************/
.fade-in-chain__child {
  opacity: 0;
}

.fade-in-chain.show-fade .fade-in-chain__child {
  -webkit-animation-name: slide-up-fade-in;
          animation-name: slide-up-fade-in;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-delay: calc(var(--animation-order) * 150ms);
          animation-delay: calc(var(--animation-order) * 150ms);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

body.admin .fade-in-chain__child {
  opacity: 1;
}

body.admin .fade-in-chain.show-fade .fade-in-chain__child {
  -webkit-animation: none !important;
          animation: none !important;
}

/* END OF FADE IN CHAIN */
/***************************

START SITE SPECIFIC CSS

***************************/
body {
  background: #fff;
  color: #53575a;
  text-align: center;
  font-family: "raleway-regular", sans-serif;
  font-style: normal;
  font-weight: normal;
  /*lato*/
  font-size: 100%;
  height: 100%;
  line-height: 1;
  -webkit-font-size-adjust: none; /* FIX: iOS Mobile Safari Font Adjustment */
}

/* Reusable Container Wrapper */
.setcontainer {
  max-width: 1320px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
  text-align: left;
}

/* Anchor (Link) Settings & Focus */
:focus {
  outline: none;
}

a,
a:visited,
a:active,
a:hover {
  color: #1C8BB1;
  text-decoration: none;
}

/* Default Heading Setup - Styling for standard content sections should be done in typography.css */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  cursor: default;
  font-family: "poppins-bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  /*souvenir*/
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

/************************************************

SITE HEADER

************************************************/
.site-header {
  position: relative;
  z-index: 998;
  background: #fff;
  /*/box-shadow: 0 2px 4px rgba(0,0,0,.10);*/
  border-bottom: 1px solid #e5e0e1;
}
.site-header .search-wrapper {
  display: inline-block;
  width: 300px;
}
@media (max-width: 1100px) {
  .site-header .search-wrapper {
    width: 100%;
  }
}
.site-header .header-super {
  background: #f7f5f3;
  padding: 12px 0;
  color: #454142;
}
@media (max-width: 1100px) {
  .site-header .header-super {
    display: none;
  }
  .site-header .header-super.active {
    display: block;
  }
}
.site-header .header-super .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-header .header-super a {
  color: #454142;
}
.site-header .header-super .header-super-left {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-header .header-super .header-super-left .social-wrapper > ul {
  display: inline-block;
}
.site-header .header-super .header-super-left .social-wrapper > ul > li {
  display: inline-block;
  margin-right: 10px;
}
.site-header .header-super .header-super-left .social-wrapper > ul > li:last-child {
  margin-right: 0;
}
.site-header .header-super .header-super-left .social-wrapper > ul > li > a > i {
  font-size: 20px;
}
.site-header .header-super .header-super-left .social-wrapper > ul > li > a img {
  width: 20px;
  display: inline-block;
  vertical-align: bottom;
}
.site-header .header-super .header-super-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
}
.site-header .header-super .header-super-right p {
  display: inline-block;
}
.site-header .header-super .header-super-right > ul {
  display: inline-block;
}
.site-header .header-super .header-super-right > ul > li {
  display: inline-block;
  padding-left: 18px;
  position: relative;
  vertical-align: middle;
  font-size: 16px;
}
.site-header .header-super .header-super-right > ul > li > a > i {
  margin-right: 4px;
}
.site-header .header-main {
  padding: 0 0 10px 0;
  position: relative;
}
.site-header .header-main .setcontainer {
  position: relative;
}
.site-header .header-main .phone {
  display: block;
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 15px;
  line-height: 1.5;
}
.site-header .header-main .phone:before {
  content: "\f098";
  font-family: fontAwesome;
  color: #1C8BB1;
  padding-right: 5px;
}
.site-header .header-main .header-main-inner {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1100px) {
  .site-header .header-main .header-main-inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.site-header .header-main .header-main-inner .site-logo {
  width: 250px;
}
@media (max-width: 480px) {
  .site-header .header-main .header-main-inner .site-logo {
    width: 180px;
  }
}

@media (max-width: 1100px) {
  .search-wrapper {
    visibility: visible;
    opacity: 1;
    margin: 0 auto;
    padding-top: 20px;
    position: fixed;
    background: #fff;
    height: 100vh;
    z-index: 998;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow-y: auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.search-wrapper .close-menu {
  display: none;
  position: absolute;
  width: 24px;
  height: 24px;
  padding: 3px;
  cursor: pointer;
  top: 20px;
  right: 25px;
  font-size: 36px;
  color: #454142;
}
@media (max-width: 1100px) {
  .search-wrapper .close-menu {
    display: block;
  }
}
@media (max-width: 480px) {
  .search-wrapper .close-menu {
    top: 15px;
    right: 20px;
  }
}
.search-wrapper .search-header {
  display: none;
  padding: 20px;
  margin-top: 50px;
}
.search-wrapper .search-header h2 {
  font-size: 22px;
  text-align: center;
  text-transform: uppercase;
  color: #454142;
}
@media (max-width: 1100px) {
  .search-wrapper .search-header {
    display: block;
  }
}
.search-wrapper .search-inner-wrapper {
  position: relative;
  border: none;
  width: 100%;
  height: 45px;
  border: 1px solid #e5e0e1;
}
@media (max-width: 1100px) {
  .search-wrapper .search-inner-wrapper {
    width: 65%;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .search-wrapper .search-inner-wrapper {
    width: 90%;
  }
}
.search-wrapper .search-inner-wrapper fieldset {
  height: 100%;
}
.search-wrapper .search-inner-wrapper input.search-product-field {
  font-family: "raleway-regular", sans-serif;
  font-style: normal;
  font-weight: normal;
  /*lato*/
  color: #53575a;
  font-size: 16px;
  padding: 20px 45px 20px 20px;
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 1100px) {
  .search-wrapper .search-inner-wrapper input.search-product-field {
    padding-right: 55px;
  }
}
.search-wrapper .search-inner-wrapper input.submit-button {
  color: #1C8BB1;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  display: block;
  font-family: "fontawesome";
  background: transparent;
  border: none;
  font-size: 21px;
  text-align: center;
  height: 100%;
}
@media (max-width: 1100px) {
  .search-wrapper .search-inner-wrapper input.submit-button {
    right: 10px;
  }
}
.search-wrapper .search-inner-wrapper .search-results {
  position: absolute;
  width: 100%;
  max-height: 200px;
  overflow-y: scroll;
  overflow-x: hidden;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  background: #fff;
  z-index: 999;
  left: 0;
  top: 110%;
}
.search-wrapper .search-inner-wrapper .search-results #view-all-search-results {
  font-family: "poppins-regular", sans-serif;
  font-style: normal;
  font-weight: 700;
  /*jost-medium*/
  text-transform: uppercase;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  color: #53575a;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search-wrapper .search-inner-wrapper .search-results #view-all-search-results i {
  font-size: 12px;
  margin-left: 3px;
}
.search-wrapper .search-inner-wrapper .search-results #view-all-search-results:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #1C8BB1;
}
.search-wrapper .search-inner-wrapper .search-results ul {
  padding: 0;
  list-style: none;
}
.search-wrapper .search-inner-wrapper .search-results li {
  line-height: 1;
}
.search-wrapper .search-inner-wrapper .search-results li a {
  display: block;
  padding: 6px 15px;
  text-decoration: none;
  color: #53575a;
}
.search-wrapper .search-inner-wrapper .search-results li a:hover {
  text-decoration: none;
  background: #f5f7f7;
  color: #53575a;
}
.search-wrapper .search-inner-wrapper .search-results li:hover .product-price {
  color: #53575a;
}
.search-wrapper .search-inner-wrapper .search-results.dynamic-search {
  padding: 30px 0;
  max-height: 450px;
  height: 450px;
  overflow-y: auto;
  position: absolute;
  background-color: #fff;
  width: 125%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search-wrapper .search-inner-wrapper .search-results.dynamic-search .product-row {
  border: none;
  padding: 15px 30px;
  margin: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search-wrapper .search-inner-wrapper .search-results.dynamic-search .product-row:hover {
  background: #f7f5f3;
}
.search-wrapper .search-inner-wrapper .search-results.dynamic-search .product-row .flexFit {
  padding-bottom: 100%;
}
.search-wrapper .search-inner-wrapper .search-results.dynamic-search .product-row img {
  width: auto;
  border: 1px solid #e5e0e1;
}
.search-wrapper .search-inner-wrapper .search-results.dynamic-search .product-row .search-product-row-details {
  text-align: left;
  padding-left: 15px;
  line-height: 1.8;
}
.search-wrapper .search-inner-wrapper .search-results.dynamic-search .product-row .search-product-row-details .product-name {
  color: #454142;
}
.search-wrapper .search-inner-wrapper .search-results.dynamic-search .product-row .search-product-row-details .product-price {
  color: #454142;
}
.search-wrapper .search-inner-wrapper .search-results.dynamic-search .not-found {
  text-align: center;
  padding: 30px 40px;
}
.search-wrapper .search-inner-wrapper .search-results.dynamic-search .not-found i {
  font-size: 50px;
  opacity: 0.4;
}
.search-wrapper .search-inner-wrapper .search-results.dynamic-search .not-found h2 {
  font-size: 21px;
}
.search-wrapper .search-inner-wrapper .search-results.dynamic-search .not-found p {
  font-size: 18px;
}
@media (max-width: 480px) {
  .search-wrapper .search-inner-wrapper .search-results.dynamic-search .not-found p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .search-wrapper .search-inner-wrapper .search-results.dynamic-search {
    overflow-y: auto;
    overflow-x: auto;
    width: 100%;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media (max-width: 480px) {
  .search-wrapper .search-inner-wrapper .search-results.dynamic-search {
    padding: 10px 0;
  }
  .search-wrapper .search-inner-wrapper .search-results.dynamic-search .row-announcement-wrapper .row-announcement p {
    font-size: 18px;
  }
  .search-wrapper .search-inner-wrapper .search-results.dynamic-search .product-row {
    padding: 10px;
  }
  .search-wrapper .search-inner-wrapper .search-results.dynamic-search .product-row .search-product-row-image,
  .search-wrapper .search-inner-wrapper .search-results.dynamic-search .product-row .search-product-row-details {
    width: 15.33%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .search-wrapper .search-inner-wrapper .search-results.dynamic-search .product-row .search-product-row-image {
    width: 15.33%;
  }
  .search-wrapper .search-inner-wrapper .search-results.dynamic-search .product-row .search-product-row-details {
    width: 83.06%;
    line-height: 1.3;
  }
  .search-wrapper .search-inner-wrapper .search-results.dynamic-search .product-row .search-product-row-details .product-name {
    font-size: 14px;
  }
}

/* Main Nav Styling */
.site-header .mobile-header-buttons {
  display: none;
}
@media (max-width: 1100px) {
  .site-header .mobile-header-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.site-header .main-nav-toggle {
  display: inline-block;
  position: relative;
  z-index: 99;
  width: 46px;
  height: 36px;
  cursor: pointer;
}
.site-header .main-nav-toggle i.nav-toggle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #53575a;
  width: 28px;
  height: 2px;
  margin: -2px 0 0 -14px;
}
.site-header .main-nav-toggle i.nav-toggle-line:before, .site-header .main-nav-toggle i.nav-toggle-line:after {
  content: "";
  position: absolute;
  background: #53575a;
  width: 28px;
  height: 2px;
  left: 50%;
  top: 50%;
  margin-left: -14px;
}
.site-header .main-nav-toggle i.nav-toggle-line:before {
  margin-top: -9px;
}
.site-header .main-nav-toggle i.nav-toggle-line:after {
  margin-top: 7px;
}
.site-header .main-nav-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.site-header .main-nav-wrapper a.button.button-cta {
  background-color: #FFAE3B;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px 2px #ccc;
          box-shadow: 2px 2px 2px #ccc;
  padding: 8px 7px;
  border-color: #FFAE3B;
  color: #fff;
  border: 1px solid transparent;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.site-header .main-nav-wrapper a.button.button-cta:hover {
  color: white;
  opacity: 0.85;
  border: 1px inset #808080;
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
.site-header .main-nav-wrapper .dropdown-mobile-overlay {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.7);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 98;
}
.site-header .main-nav-wrapper .dropdown-mobile-close-button {
  display: none;
  position: absolute;
  z-index: 99;
  right: 320px;
  top: 20px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .dropdown-mobile-close-button {
    display: block;
  }
}
.site-header .main-nav-wrapper .dropdown-mobile-slideout-wrapper {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .dropdown-mobile-slideout-wrapper {
    width: 300px;
    height: 100%;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    background: #fff;
    -webkit-box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 99;
  }
}
.site-header .main-nav-wrapper .main-nav {
  display: inline-block;
  margin-right: 50px;
}
@media (max-width: 641px) {
  .site-header .main-nav-wrapper .main-nav {
    width: 100%;
    margin-top: 25px;
  }
}
.site-header .main-nav-wrapper .main-nav > ul {
  display: inline-block;
  margin: 0 auto;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .main-nav > ul {
    display: block;
  }
}
.site-header .main-nav-wrapper .main-nav > ul > li {
  /*@include font-subheading;*/
  font-family: "raleway-regular", sans-serif;
  font-style: normal;
  font-weight: normal;
  /*lato*/
  display: inline-block;
  text-align: left;
  margin-left: 15px;
  position: relative;
  font-size: 15px;
  text-transform: uppercase;
}
.site-header .main-nav-wrapper .main-nav > ul > li a:hover {
  color: #ffffff !important;
}
.site-header .main-nav-wrapper .main-nav > ul > li.active {
  background-color: #FFAE3B;
}
.site-header .main-nav-wrapper .main-nav > ul > li.active a {
  color: #ffffff !important;
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .main-nav > ul > li {
    display: block;
    margin: 0;
    border-bottom: 1px solid #e5e0e1;
    position: static;
  }
}
.site-header .main-nav-wrapper .main-nav > ul > li:first-child {
  margin-left: 0;
}
@media (min-width: 1101px) {
  .site-header .main-nav-wrapper .main-nav > ul > li.user-nav-item {
    margin-left: 20px;
    padding-right: 20px;
  }
  .site-header .main-nav-wrapper .main-nav > ul > li.user-nav-item a {
    padding: 0;
  }
  .site-header .main-nav-wrapper .main-nav > ul > li.user-nav-item.has-dropdown a:after {
    right: -15px;
    font-size: 15px;
  }
}
@media (min-width: 1101px) and (max-width: 1500px) {
  .site-header .main-nav-wrapper .main-nav > ul > li.user-nav-item .main-nav-dropdown {
    left: auto;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    right: 0;
  }
  .site-header .main-nav-wrapper .main-nav > ul > li.user-nav-item .main-nav-dropdown:before {
    left: auto;
    right: 12px;
    -webkit-transform: translateX(0%) rotate(45deg);
    transform: translateX(0%) rotate(45deg);
  }
}
.site-header .main-nav-wrapper .main-nav > ul > li:not(.main-nav-cta) a {
  display: block;
  position: relative;
  padding: 5px 7px;
  color: #000; /*$green*/
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .main-nav > ul > li:not(.main-nav-cta) a {
    padding: 20px 25px;
  }
}
.site-header .main-nav-wrapper .main-nav > ul > li:not(.main-nav-cta):hover {
  background-color: #1C8BB1;
  color: #ffffff;
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .main-nav > ul > li.main-nav-cta a {
    display: block;
    width: 100%;
    border-radius: 0;
    padding: 20px 25px;
    text-align: left;
  }
}
.site-header .main-nav-wrapper .main-nav > ul > li.has-dropdown {
  padding-right: 12px;
}
.site-header .main-nav-wrapper .main-nav > ul > li.has-dropdown > a:after {
  position: absolute;
  right: -8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "FontAwesome";
  display: inline-block;
  content: "\f078";
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .main-nav > ul > li.has-dropdown > a:after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "FontAwesome";
    display: inline-block;
    content: "\f105";
    right: 15px;
    font-size: 24px;
  }
}
.site-header .main-nav-wrapper .main-nav > ul > li.big-dropdown {
  position: static;
}
.site-header .main-nav-wrapper .main-nav > ul > li.big-dropdown .main-nav-dropdown {
  top: calc(100% - 32px);
  max-width: 100%;
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .main-nav > ul > li.big-dropdown .main-nav-dropdown {
    top: 0;
    max-width: 100%;
  }
}
.site-header .main-nav-wrapper .main-nav > ul > li.big-dropdown.full-width-dropdown .main-nav-dropdown {
  width: 100%;
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .main-nav > ul > li.big-dropdown.full-width-dropdown .main-nav-dropdown {
    width: 300px;
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
.site-header .main-nav-wrapper .main-nav > ul > li.big-dropdown.container-dropdown .main-nav-dropdown {
  width: 1300px;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .main-nav > ul > li.big-dropdown.container-dropdown .main-nav-dropdown {
    width: 300px;
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
.site-header .main-nav-wrapper .main-nav > ul > li.big-dropdown.fixed-width-dropdown {
  position: relative;
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .main-nav > ul > li.big-dropdown.fixed-width-dropdown {
    position: static;
  }
}
.site-header .main-nav-wrapper .main-nav > ul > li.big-dropdown.fixed-width-dropdown .main-nav-dropdown {
  max-width: 600px;
  width: 600px;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .main-nav > ul > li.big-dropdown.fixed-width-dropdown .main-nav-dropdown {
    max-width: 300px;
    width: 300px;
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
.site-header .main-nav-wrapper .main-nav > ul > li.big-dropdown.show-dropdown.fixed-width-dropdown .main-nav-dropdown {
  top: calc(100% + 15px);
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .main-nav > ul > li.big-dropdown.show-dropdown.fixed-width-dropdown .main-nav-dropdown {
    top: 0;
  }
}
.site-header .main-nav-wrapper .main-nav > ul > li.big-dropdown.show-dropdown .main-nav-dropdown {
  top: calc(100% - 22px);
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .main-nav > ul > li.big-dropdown.show-dropdown .main-nav-dropdown {
    top: 0;
  }
}
.site-header .main-nav-wrapper .main-nav > ul > li .main-nav-dropdown {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "raleway-regular", sans-serif;
  font-style: normal;
  font-weight: normal;
  /*lato*/
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 99;
  top: calc(100% + 5px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 280px;
  padding: 25px 0;
  background: #fff;
  border: 1px solid #e5e0e1;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  text-transform: none;
  font-size: 16px;
}
.site-header .main-nav-wrapper .main-nav > ul > li .main-nav-dropdown:before {
  position: absolute;
  top: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-radius: 2px 0 0 0;
  background: #fff;
  display: inline-block;
  content: "";
  border: 1px solid #e5e0e1;
  border-right: none;
  border-bottom: none;
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .main-nav > ul > li .main-nav-dropdown {
    opacity: 1;
    visibility: visible;
    top: 0;
    left: auto;
    width: 300px;
    height: 100%;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    background: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
    z-index: 99;
    padding-top: 0;
    border: none;
  }
  .site-header .main-nav-wrapper .main-nav > ul > li .main-nav-dropdown:before {
    display: none;
  }
}
.site-header .main-nav-wrapper .main-nav > ul > li .main-nav-dropdown .dropdown-mobile-header {
  font-family: "poppins-regular", sans-serif;
  font-style: normal;
  font-weight: 700;
  /*jost-medium*/
  text-transform: uppercase;
  display: none;
  text-align: center;
  padding: 25px 35px;
  border-bottom: 1px solid #e5e0e1;
  position: relative;
  margin-bottom: 20px;
}
.site-header .main-nav-wrapper .main-nav > ul > li .main-nav-dropdown .dropdown-mobile-header .back-link {
  cursor: pointer;
  position: absolute;
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 24px;
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .main-nav > ul > li .main-nav-dropdown .dropdown-mobile-header {
    display: block;
  }
}
.site-header .main-nav-wrapper .main-nav > ul > li .main-nav-dropdown ul li {
  line-height: 1.3;
}
.site-header .main-nav-wrapper .main-nav > ul > li .main-nav-dropdown ul li a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  padding: 12px 20px;
}
.site-header .main-nav-wrapper .main-nav > ul > li .main-nav-dropdown ul li a:hover {
  background: #f7f5f3;
}
.site-header .main-nav-wrapper .main-nav > ul > li.show-dropdown .main-nav-dropdown {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 15px);
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .main-nav > ul > li.show-dropdown .main-nav-dropdown {
    top: 0;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.site-header .main-nav-wrapper .mobile-nav-items {
  display: none;
  padding: 30px 20px 20px 20px;
}
@media (max-width: 1100px) {
  .site-header .main-nav-wrapper .mobile-nav-items {
    display: block;
  }
}
.site-header .main-nav-wrapper .mobile-nav-items > ul {
  padding-bottom: 0;
}
.site-header .main-nav-wrapper .mobile-nav-items > ul li {
  margin-bottom: 20px;
}
.site-header .main-nav-wrapper .mobile-nav-items .social-wrapper {
  line-height: 1.3;
}
.site-header .main-nav-wrapper .mobile-nav-items .social-wrapper > ul {
  display: inline-block;
}
.site-header .main-nav-wrapper .mobile-nav-items .social-wrapper > ul > li {
  display: inline-block;
  margin-right: 15px;
}
.site-header .main-nav-wrapper .mobile-nav-items .social-wrapper > ul > li > a {
  color: #53575a;
}
.site-header .main-nav-wrapper .mobile-nav-items .social-wrapper > ul > li > a > i {
  font-size: 24px;
}
.site-header .main-nav-wrapper .mobile-nav-items .social-wrapper > ul > li > a img {
  width: 20px;
  display: inline-block;
  vertical-align: bottom;
}
.site-header .main-nav-wrapper .mobile-nav-items.top-nav-items > ul {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.site-header .main-nav-wrapper .mobile-nav-items.top-nav-items > ul > li {
  display: inline-block;
  margin-right: 15px;
}
.site-header .main-nav-wrapper .mobile-nav-items.top-nav-items > ul > li > a {
  color: #53575a;
}
.site-header .main-nav-wrapper .mobile-nav-items.top-nav-items > ul > li > a > i {
  font-size: 24px;
}
.site-header .main-nav-wrapper .mobile-nav-items.top-nav-items > ul > li.li-search .close-menu {
  display: none;
}
.site-header .main-nav-wrapper .mobile-nav-items.top-nav-items > ul > li.li-search .search-header {
  display: none;
}
.site-header .main-nav-wrapper .mobile-nav-items.top-nav-items > ul > li.li-search .search-icon i {
  font-size: 24px;
  cursor: pointer;
}
.site-header .main-nav-wrapper .mobile-nav-items.top-nav-items > ul > li.user-nav-item > a {
  font-size: 0;
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #e5e0e1;
  text-align: center;
  line-height: 26px;
  position: relative;
  padding: 0;
}
.site-header .main-nav-wrapper .mobile-nav-items.top-nav-items > ul > li.user-nav-item > a > i {
  width: 22px;
  height: 22px;
  content: "";
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  font-size: 22px;
  display: inline-block;
}
.site-header .main-nav-wrapper .mobile-nav-items.top-nav-items > ul > li.user-nav-item > a > i:before {
  position: relative;
  top: 2px;
}
.site-header .main-nav-wrapper .mobile-nav-items.top-nav-items > ul > li.li-cart {
  position: relative;
}
.site-header .main-nav-wrapper .mobile-nav-items.top-nav-items > ul > li.li-cart .cart-item-badge {
  background: #1C8BB1;
  font-family: "raleway-regular", sans-serif;
  font-style: normal;
  font-weight: normal;
  /*lato*/
  border-radius: 50%;
  width: 17px;
  height: 17px;
  position: absolute;
  padding: 4px 6px;
  font-size: 10px;
  top: -4px;
  right: -8px;
  color: #fff;
}

html.main-nav-open .main-nav-wrapper {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}
html.main-nav-open .main-nav-wrapper .dropdown-mobile-overlay {
  opacity: 1;
  visibility: visible;
}
html.main-nav-open .main-nav-wrapper .dropdown-mobile-slideout-wrapper {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
html.main-nav-open .main-nav-wrapper .dropdown-mobile-slideout-wrapper.dropdown-open {
  overflow-y: hidden;
}
/* End of Main Nav Styling */
@supports (-ms-ime-align: auto) {
  html {
    overflow-x: hidden;
  }
}
/* END OF SITE HEADER */
#mainContain {
  min-height: 70vh;
  position: relative;
  z-index: 1;
}

/************************************************

SITE FOOTER

************************************************/
.site-footer {
  padding: 80px 0 20px 0;
  background: #105065;
  position: relative;
  font-size: 16px;
  color: #fff;
}
.site-footer p,
.site-footer li {
  color: #d4e8e7;
}
.site-footer a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #d4e8e7;
}
.site-footer a:hover {
  color: #fff;
}
.site-footer .site-footer__top {
  background: #c6e2ec;
}
.site-footer .site-footer__top .setcontainer {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 640px) {
  .site-footer .site-footer__top .setcontainer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.site-footer .site-footer__top .setcontainer .footer-trees {
  z-index: 1;
  display: block;
  position: absolute;
  left: -160px;
  bottom: 0;
  width: auto;
  height: 85%;
}
@media (max-width: 1320px) {
  .site-footer .site-footer__top .setcontainer .footer-trees {
    left: -40px;
  }
}
.site-footer .site-footer__top ul li {
  padding: 5px 0;
}
.site-footer .footer-bottom-row {
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid #efefef;
  font-size: 13px;
  padding-bottom: 20px;
}
.site-footer h3 {
  line-height: 1.7;
  font-size: 17px;
  position: relative;
  margin-bottom: 10px;
}
.site-footer h3:after {
  bottom: -2px;
  left: 0;
  width: 25px;
  height: 2px;
  position: absolute;
  content: " ";
  background-color: #FFAE3B;
}
.site-footer .address p {
  line-height: 1.5;
  font-size: 15px;
}
.site-footer .address ul li {
  line-height: 1.5;
  font-size: 14px;
}
.site-footer .address p span {
  display: inline-block;
  min-width: 100px;
}
.site-footer .address p g {
  display: inline-block;
  min-width: 25px;
}

.hcontent .newsletter-signup-wrapper {
  padding: 40px 0;
}
.hcontent .newsletter-signup-wrapper h2 {
  text-align: center;
  margin-bottom: 30px;
  padding-top: 0;
}
.hcontent .newsletter-signup-wrapper .front-end-form button {
  width: 100%;
}
.hcontent .newsletter-signup-wrapper .front-end-form .newsletter-business-type-other {
  display: none;
}

/* END OF SITE FOOTER */
/* mobile styling */
/* end mobile styling */
/* gallery of images */
#larger-images-container {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: auto auto;
  width: 480px;
  height: 582px;
  bottom: 0px;
  z-index: 9999;
  display: none;
}
#larger-images-container .image-container .flex2-12 {
  background-color: #efefef;
}
#larger-images-container .image-container .flex2-12 a {
  padding: 3px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 3px 3px 3px 3px;
  display: block;
}
#larger-images-container .image-container .main-gallery-image {
  padding: 5px;
  max-height: 500px;
  margin: 0 5px 0 5px;
}
#larger-images-container .image-container .main-gallery-image img {
  width: 100%;
}
#larger-images-container .image-container .main-gallery-content {
  height: 80px;
}
#larger-images-container .image-container .main-image-container {
  max-height: 370px;
  overflow: clip;
}
#larger-images-container .content-text {
  border: 1px inset #ccc;
  height: 118px;
  padding: 5px;
  margin: 0 10px;
  text-align: left;
  background-color: #efefef;
}
#larger-images-container .scroll-container {
  height: 500px;
  overflow: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}
#larger-images-container .content-text.hcontent h2 {
  font-size: 14px;
  margin: 0;
  padding: 0;
}
#larger-images-container .content-text.hcontent p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.33;
}
#larger-images-container .content-text.hcontent span.season-count {
  background-color: #ff6a00;
  color: #fff;
  padding: 3px 5px;
  border-radius: 5px;
  display: inline-block;
  font-size: 12px;
}
#larger-images-container .content-text.hcontent .content-scroll {
  padding: 5px;
  border: 1px solid #ff6a00;
  border-left: 5px solid #ff6a00;
  background-color: #fff;
}
#larger-images-container .content-text.hcontent {
  overflow-y: auto;
}
#larger-images-container .close-gallery-v2 {
  padding-right: 10px;
}
#larger-images-container #gallery-inner {
  padding: 10px 0;
  border: 1px solid #ccc;
  -webkit-box-shadow: 4px 4px 4px #063f11;
          box-shadow: 4px 4px 4px #063f11;
  background-color: #fff;
  border-radius: 5px;
}
#larger-images-container #gallery-inner .gallery-click-thru {
  cursor: pointer;
}
#larger-images-container #gallery-inner .close-gallery {
  text-align: right;
}
#larger-images-container #gallery-inner .close-gallery a {
  color: #00524C;
  line-height: 1.25;
}
#larger-images-container #gallery-inner .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 36px;
  height: 48px;
  width: 48px;
  color: #ff6a00;
}
#larger-images-container #gallery-inner .arrow-left {
  left: 4px;
}
#larger-images-container #gallery-inner .arrow-right {
  right: -17px;
}

#gallery-overlay {
  display: none;
  background-color: #000;
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  z-index: 9998;
}

@media (max-width: 640px) {
  #larger-images-container {
    width: 100%;
  }
  #larger-images-container .content-text {
    height: 175px;
  }
  #larger-images-container #gallery-inner {
    padding: 10px 10px 100px 10px;
    border: 1px solid #ccc;
    -webkit-box-shadow: 1px 1px 4px #efefef;
            box-shadow: 1px 1px 4px #efefef;
  }
  #larger-images-container #gallery-inner .flex-row.image-container .flex2-12 {
    overflow: hidden;
  }
  #larger-images-container #gallery-inner .flex-row.image-container .flex2-12 .scroll-container {
    overflow-x: unset;
    height: 75px;
    width: 100%;
    display: inline-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: no-wrap;
        flex-wrap: no-wrap;
    overflow-x: auto;
    margin: 5px;
  }
  #larger-images-container #gallery-inner .flex-row.image-container .flex2-12 .scroll-container a {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    border: 1px solid #ccc;
    padding: 5px;
    -webkit-box-shadow: 2px 2px 2px #ccc;
            box-shadow: 2px 2px 2px #ccc;
    max-width: 100%;
    margin-right: 10px;
  }
  #larger-images-container #gallery-inner .flex-row.image-container .flex2-12 .scroll-container a img {
    height: 55px;
  }
  #larger-images-container #gallery-inner .arrow {
    width: auto;
    bottom: auto;
    height: auto;
    background-color: #ff6a00;
    color: #fff;
    margin-top: 48%;
  }
  #larger-images-container #gallery-inner .arrow i {
    padding: 5px;
  }
  #larger-images-container #gallery-inner .arrow-right {
    right: 8px;
  }
  #larger-images-container #gallery-inner .close-gallery {
    text-align: right;
  }
  #larger-images-container #gallery-inner .close-gallery a {
    color: #00524C;
    line-height: 1.25;
  }
  #larger-images-container #gallery-inner .gallery-thumbs {
    display: none;
  }
}
/* end gallery of images */
/* search trailers */
/* product results */
.product-result-container .product-listing-wrapper {
  background-color: #fff;
  max-width: 300px;
  padding: 0;
  margin: 0 0 25px 0;
  min-height: 450px;
  position: relative;
  border: 1px solid #e5e0e1;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 2px 2px 2px #e5e0e1;
          box-shadow: 2px 2px 2px #e5e0e1;
}
@media (max-width: 641px) {
  .product-result-container .product-listing-wrapper {
    margin: 0 auto 25px auto;
  }
}
.product-result-container .product-listing-wrapper.under-contract-True {
  position: relative;
}
.product-result-container .product-listing-wrapper.under-contract-True:before {
  z-index: 99999;
  content: "UNDER CONTRACT";
  font-size: 16px;
  position: absolute;
  width: 100%;
  background: #e43;
  position: absolute;
  top: 5;
  left: 0;
  right: 0px;
  font-weight: bold;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  text-align: center;
  line-height: 24px;
  letter-spacing: 1px;
  color: #f0f0f0;
  overflow: hidden;
}
.product-result-container .product-listing-wrapper {
  /* hide elements */
}
.product-result-container .product-listing-wrapper .price-\$0 {
  visibility: hidden;
}
.product-result-container .product-listing-wrapper .sku-- {
  display: none !important;
}
.product-result-container .product-listing-wrapper {
  /* end hide elements */
}
.product-result-container .product-listing-wrapper .product-img-wrapper {
  width: 100%;
  min-height: 300px;
  background-position: center center;
  background-size: cover;
  border-radius: 5px;
  position: relative;
  opacity: 1;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.product-result-container .product-listing-wrapper .product-img-wrapper:hover {
  opacity: 0.75;
}
.product-result-container .product-listing-wrapper .product-img-wrapper a.bg-image-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.product-result-container .product-listing-wrapper .product-img-wrapper a.bg-image-link span {
  display: none;
}
.product-result-container .product-listing-wrapper p.sub-category {
  font-size: 12px;
  background-color: #1C8BB1;
  color: #fff;
  padding: 2px 0 2px 5px;
  margin: 0;
  border-bottom: 1px solid #e5e0e1;
  margin-bottom: 2px;
}
.product-result-container .product-listing-wrapper p.sub-category span {
  font-weight: bold;
}
.product-result-container .product-listing-wrapper p.color-width {
  font-size: 13px;
  padding: 0 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
  padding-bottom: 0;
}
.product-result-container .product-listing-wrapper p.color-width:before {
  content: "Size: ";
  font-weight: bold;
}
.product-result-container .product-listing-wrapper .product-detail-favorites {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 24px;
  z-index: 9;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 27px;
}
.product-result-container .product-listing-wrapper .product-detail-favorites span.toolbar-toggle-item::before {
  margin-right: 0;
}
.product-result-container .product-listing-wrapper .product-description-box {
  z-index: 9;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  background-color: #fff;
  right: 0;
  height: 180px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
@media (max-width: 481px) {
  .product-result-container .product-listing-wrapper .product-description-box {
    height: 190px;
  }
}
.product-result-container .product-listing-wrapper .product-description-box p.product-result-meta {
  margin: 0;
  padding: 5px;
  font-size: 14px;
}
.product-result-container .product-listing-wrapper .product-description-box span.product-name a {
  text-decoration: none;
  font-size: 15px;
  display: block;
  line-height: 1.33;
  font-weight: bold;
  text-overflow: ellipsis;
  padding-right: 5px;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
}
.product-result-container .product-listing-wrapper .product-description-box span.price {
  display: block;
  font-weight: bold;
  font-size: 13px;
}
.product-result-container .product-listing-wrapper .product-description-box span.sold-out {
  display: inline-block;
  margin-right: 5px;
  padding: 5px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: bold;
  float: right;
  font-size: 12px;
  border: none;
  color: #fff;
}
.product-result-container .product-listing-wrapper .product-description-box span.sku {
  padding: 0 5px;
  margin: 0 5px 0 0;
  font-size: 13px;
  float: right;
  display: inline-block;
}
.product-result-container .product-listing-wrapper .product-description-box span.sku:before {
  content: "Stock # ";
  font-weight: bold;
}
.product-result-container .product-listing-wrapper .product-description-box .meta {
  padding: 0 5px;
  margin-bottom: 2px;
}
.product-result-container .product-listing-wrapper .product-description-box .meta span.label {
  font-size: 13px;
  display: block;
  width: 100%;
  margin: 2px 0;
}
.product-result-container .product-listing-wrapper .product-description-box .meta span.value {
  font-size: 16px;
  display: block;
  margin: 5px 0;
  font-family: "poppins-bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  /*souvenir*/
}
@media (max-width: 641px) {
  .product-result-container .product-listing-wrapper .product-description-box .meta.meta-price .col.grid6-12 {
    width: 49.2% !important;
  }
}
.product-result-container .product-listing-wrapper .product-description-box .meta.meta-attr {
  min-height: 41px;
}
.product-result-container .product-listing-wrapper .product-description-box .meta.meta-attr .col.value-0 {
  display: none;
}
.product-result-container .product-listing-wrapper .product-description-box .meta.meta-attr span.label {
  text-align: center;
}
.product-result-container .product-listing-wrapper .product-description-box .meta.meta-attr span.value {
  text-align: center;
}
@media (max-width: 480px) {
  .product-result-container .product-listing-wrapper .product-description-box .meta.meta-attr .col {
    width: 24.2% !important;
  }
}
.product-result-container .product-listing-wrapper .product-description-box p.price-meta .button {
  width: 49.2%;
  display: inline-block;
  font-size: 13px !important;
  font-weight: normal;
  padding: 5px 5px;
  text-align: center;
  border: 0px solid red;
  background-color: #ccc;
  background-color: #FFAE3B;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 2px #e5e0e1;
          box-shadow: 2px 2px 2px #e5e0e1;
}
.product-result-container .product-listing-wrapper .product-description-box p.price-meta .button.btn-buy-request {
  background-color: #00524c;
  color: #fff;
}
.product-result-container .product-listing-wrapper .product-description-box p.price-meta .button:hover {
  background-color: #ff6a00;
  color: #fff;
}
.product-result-container .product-listing-wrapper .product-description-box input.quick-add {
  background-color: #00524c;
  margin-right: 5px;
  padding: 5px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: bold;
  float: right;
  font-size: 12px;
  border: none;
  color: #000;
}
.product-result-container .product-listing-wrapper .product-description-box input.quick-add:hover {
  background-color: #00524c;
  color: #000;
  opacity: 0.75;
}
.product-result-container .product-listing-wrapper .product-description.on {
  height: 125px;
}
.product-result-container .product-listing-wrapper .product-description.on .quick-add-form {
  height: 125px;
  z-index: 9;
  opacity: 1;
}

/* end product results */
/* end trailer search */
/** search filters */
.product-category-result .paging.paging-top {
  min-height: 30px;
}
.product-category-result .no-products-found {
  text-transform: uppercase;
  padding: 50px;
  text-align: center;
  margin-top: 30px;
  border: 1px solid #e5e0e1;
  -webkit-box-shadow: 2px 2px 2px #ccc;
          box-shadow: 2px 2px 2px #ccc;
  border-radius: 5px;
}
.product-category-result .product-filter {
  margin-top: 30px;
  border: 1px solid #e5e0e1;
  margin-bottom: 15px;
  padding: 10px 20px;
  border-radius: 5px;
}
@media (max-width: 601px) {
  .product-category-result .product-filter {
    min-height: 70px;
  }
}
.product-category-result .product-filter .filter-content label {
  font-family: "MontserratRegular", Arial, sans-serif;
  color: #402020;
  letter-spacing: 0;
  font-size: 16px;
  display: inline-block;
}
.product-category-result .product-filter .filter-content div.keyword-input {
  position: relative;
}
.product-category-result .product-filter .filter-content input[type=text] {
  border: 1px solid #e5e0e1;
  padding: 5px;
  height: 30px;
  border-radius: 5px;
  width: 100%;
  padding-right: 30px;
}
.product-category-result .product-filter .filter-content input[type=text]:focus {
  border: 1px solid #e5e0e1 !important;
}
.product-category-result .product-filter .filter-content .button.button-search {
  padding: 2px 10px;
  height: 28px;
  margin-top: 1px;
  position: absolute;
  right: 0px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  top: 0px;
  font-size: 14px;
  color: #efefef;
}
.product-category-result .product-filter .filter-header {
  display: none;
  text-align: center;
  padding: 14px 15px;
  font-size: 15px;
  cursor: pointer;
  float: left;
  width: 100%;
  background-color: #b6dad3;
  margin-bottom: 15px;
  border: 1px solid #e5e0e1;
}
.product-category-result .product-filter .filter-header i {
  margin-left: 7px;
}
.product-category-result .product-filter .filter-by-text {
  font-weight: bold;
}
.product-category-result .product-filter .clear-filters {
  text-align: right;
  margin-bottom: 20px;
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
}
.product-category-result .product-filter .clear-filters a.cta-text-link {
  line-height: 1;
  white-space: nowrap;
}
.product-category-result .product-filter .clear-filters a {
  font-size: 12px;
  text-decoration: underline;
}
.product-category-result .product-filter .clear-filters a:hover {
  color: #1C8BB1;
}
.product-category-result .product-filter .clear-filters a:active {
  color: #1C8BB1;
}
.product-category-result .product-filter .clear-filters a img {
  width: 12px;
  margin-right: 7px;
}
.product-category-result .product-filter .clear-filters.filters-added {
  opacity: 1;
  pointer-events: auto;
}
.product-category-result .product-filter ul.filters {
  padding-left: 0;
  /*max-width:83%;*/
}
.product-category-result .product-filter ul.filters li.filter-row {
  border-top: 1px solid #e5e0e1;
  list-style: none;
  padding: 10px 0;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-header {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-header:before {
  clear: both;
  display: block;
  content: "";
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-header span {
  font-family: "poppins-regular", sans-serif;
  font-style: normal;
  font-weight: 700;
  /*jost-medium*/
  text-transform: uppercase;
  color: #1C8BB1;
  letter-spacing: 0;
  font-size: 16px;
  display: inline-block;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-header .filter-selected {
  display: inline-block;
  font-size: 13px;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-header a {
  display: inline-block;
  float: right;
  width: 7%;
  margin-top: 5px;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content {
  display: none;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li {
  list-style: none;
  padding: 5px 0;
  position: relative;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li label {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li label.off {
  pointer-events: none;
  opacity: 0.5;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li label.off span:before {
  content: "\f00d" !important;
  border: 10px solid red;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li input[type=checkbox]:not(:checked),
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li input[type=checkbox]:checked {
  position: absolute;
  top: 10px;
  left: 5px;
  z-index: -1;
  width: auto !important;
  opacity: 0;
  visibility: hidden;
  margin: 0;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li span {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  min-height: 22px;
  margin-bottom: 5px;
  line-height: 1.2;
  font-size: 16px;
  color: #53575a;
  font-family: "raleway-regular", sans-serif;
  font-style: normal;
  font-weight: normal;
  /*lato*/
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li span.product-number {
  display: inline-block;
  margin-left: 3px;
  padding-left: 0;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li input[type=checkbox] + span:before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 5px;
  line-height: 18px;
  z-index: 1;
  background: #fff;
  border: 1px solid #e5e0e1;
  border-radius: 2px;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li input[type=checkbox] + span:before {
  border-radius: 2px;
  font-family: "FontAwesome";
  font-size: 14px;
  text-align: center;
  line-height: 18px;
  text-indent: 0;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li input[type=checkbox]:checked + span:before {
  background: #1C8BB1;
  border-color: #1C8BB1;
  content: "\f00c";
  color: #fff;
  border-radius: 2px;
}
.product-category-result .product-filter ul.filters li.filter-row .toggle-content ul li input[type=checkbox][x-data-display=white]:checked + span:before {
  background: #1C8BB1;
  border-color: #1C8BB1;
  content: "\f00c";
  color: #000;
  border-radius: 2px;
}
.product-category-result .selected-filters {
  padding: 5px;
}
.product-category-result .selected-filters ul {
  padding-left: 0px;
}
.product-category-result .selected-filters ul li {
  list-style-type: none;
  font-size: 13px;
  cursor: pointer;
}
.product-category-result .selected-filters ul li span:before {
  font-family: "FontAwesome";
  background: #ffcf01;
  border-color: #ffcf01;
  content: "\f00c";
  font-size: 11px;
  margin-right: 5px;
  line-height: 15px;
  text-align: center;
  color: #fff;
  border-radius: 2px;
  padding: 2px;
}
.product-category-result ul.filter-swatch {
  column-count: 5;
  display: block;
  margin-top: 10px;
  -webkit-column-count: 5;
  -moz-column-count: 5;
  column-count: 5;
  -webkit-column-gap: 0.5em;
  -moz-column-gap: 0.5em;
  column-gap: 0.5em;
}
.product-category-result ul.filter-swatch li {
  position: relative;
}
.product-category-result ul.filter-swatch li input {
  z-index: -1;
}
.product-category-result ul.filter-swatch li input[type=checkbox]:not(checked) + span:before {
  border: none !important;
  background-color: transparent !important;
  z-index: -1 !important;
}
.product-category-result ul.filter-swatch li input[type=checkbox]:checked + span:before {
  border: #00524c !important;
  background-color: transparent !important;
  z-index: 9 !important;
  margin-left: 5px;
  margin-top: 2px;
}
.product-category-result ul.filter-swatch li img {
  border: 1px solid #ccc;
  -webkit-box-shadow: 2px 2px 2px #ccc;
          box-shadow: 2px 2px 2px #ccc;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 100%;
  margin: auto auto;
}

@media (max-width: 768px) {
  .product-category-result .product-filter {
    width: 95%;
    float: none;
    margin: 30px auto 0;
  }
  .product-category-result .product-filter .clear-filter {
    max-width: 100%;
  }
  .product-category-result .product-filter ul.filters {
    max-width: 100%;
    border: 1px solid #e5e0e1;
    padding: 0 20px;
  }
  .product-category-result .product-filter ul.filters .clear-filters {
    text-align: center;
    max-width: 100%;
    margin-bottom: 15px;
  }
  .product-category-result .product-filter ul.filters li.filter-row .toggle-header img {
    width: 3%;
  }
  .product-category-result .product-filter .filter-header {
    display: block;
  }
  .product-category-result .product-filter .filter-toggles {
    display: none;
  }
  .product-category-result .product-filter .filter-toggles.filter-active {
    display: block;
  }
  .product-category-result .product-filter .filter-toggles.filter-active .clear-filters.filters-added {
    opacity: 1;
    pointer-events: auto;
  }
  .product-category-result .product-filter .filter-toggles.filter-active .filter-toggle-section {
    display: block;
  }
  .product-category-result .product-filter .filter-toggles .clear-filters.filters-added {
    opacity: 1;
    pointer-events: auto;
  }
  .product-category-result .product-filter .filter-toggles .toggle-section {
    display: none;
  }
  .product-category-result .product-result-col {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .product-category-result .product-filter ul.filters li.filter-row .toggle-header img {
    width: 5%;
  }
}
/** END Search Filters */
.align-right {
  text-align: right;
}

#trailer-detail.trailer-Used .row.meta.meta-price .col:nth-child(1) {
  visibility: hidden;
}
#trailer-detail.trailer-Used .row.meta.meta-price .col:nth-child(2) {
  visibility: hidden;
}
#trailer-detail .monthly-0\.00 p.disclosure {
  visibility: hidden;
}
@media (max-width: 641px) {
  #trailer-detail .monthly-0\.00 p.disclosure {
    display: none;
  }
}
#trailer-detail .price-0\.00 {
  visibility: hidden;
}
@media (max-width: 641px) {
  #trailer-detail .price-0\.00 {
    display: none;
  }
}
#trailer-detail .align-center {
  text-align: center;
}
#trailer-detail .back-link {
  margin-left: 15px;
}
#trailer-detail .back-link a {
  text-decoration: none;
}
#trailer-detail h1 {
  margin-left: 15px;
}
#trailer-detail h1 span.note {
  display: block;
  font-size: 20px;
  color: #105065;
}
#trailer-detail h1 span.name {
  display: block;
  font-size: 32px;
}
#trailer-detail .detail-row {
  padding-bottom: 15px;
  padding: 15px;
  margin-bottom: 15px;
}
@media (max-width: 641px) {
  #trailer-detail .detail-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #trailer-detail .detail-row .image-row .thumbnail-slider {
    overflow-x: scroll !important;
    overflow-y: hidden !important;
  }
  #trailer-detail .detail-row .image-row .thumbnail-slider ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  #trailer-detail .detail-row .image-row .thumbnail-slider ul li {
    display: inline-block;
    width: 100px;
    max-height: 100px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  #trailer-detail .detail-row .image-row .thumbnail-slider ul li img {
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
  }
}
#trailer-detail .detail-row .image-row .grid2-12 {
  max-height: 450px;
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
#trailer-detail .detail-row .image-row .grid10-12 {
  max-height: 450px;
  overflow: hidden;
}
#trailer-detail .detail-row .image-row .grid10-12 img {
  border-radius: 5px;
}
#trailer-detail .detail-row .image-row ul {
  margin: 0;
  padding: 0;
}
#trailer-detail .detail-row .image-row ul li {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style-type: none;
}
#trailer-detail .detail-row .image-row ul li img {
  max-width: 100%;
  max-height: 100%;
  border: 1px solid #e5e0e1;
  padding: 5px;
  border: 2px;
  border-radius: 5px;
}
#trailer-detail .detail-row .right-column {
  border: 1px solid #e5e0e1;
  padding: 25px;
  border-radius: 15px;
}
#trailer-detail .detail-row .right-column.under-contract-True {
  position: relative;
}
#trailer-detail .detail-row .right-column.under-contract-True:before {
  z-index: 99999;
  content: "UNDER CONTRACT";
  font-size: 16px;
  position: absolute;
  width: 50%;
  margin: 0 auto;
  background: #e43;
  position: absolute;
  top: -25px;
  left: 10px;
  right: 10px;
  font-weight: bold;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  text-align: center;
  line-height: 24px;
  letter-spacing: 1px;
  color: #f0f0f0;
  overflow: hidden;
}
#trailer-detail .detail-row .right-column .meta span.label {
  font-size: 16px;
  font-weight: bold;
  display: block;
  width: 100%;
  line-height: 1.5;
  color: #1C8BB1;
}
#trailer-detail .detail-row .right-column .meta span.value {
  font-size: 24px;
  font-weight: bold;
  display: block;
  width: 100%;
  line-height: 1.5;
}
#trailer-detail .detail-row .right-column .meta-button {
  margin-bottom: 10px;
}
#trailer-detail .detail-row .right-column .meta-button .button.button-primary {
  background-color: #FFAE3B;
  color: #fff;
  margin: 10px 0;
  width: 100%;
  display: block;
  border: 1px solid #FFAE3B;
  border-radius: 5px;
}
#trailer-detail .detail-row .right-column .button-link {
  border: 1px solid #e5e0e1;
  border-radius: 5px;
  width: 100%;
  display: block;
  margin-bottom: 10px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
#trailer-detail .detail-row .right-column .button-link:hover {
  background-color: #1C8BB1;
  border: 1px solid #1C8BB1;
  color: #fff;
}
#trailer-detail .detail-row .right-column p.disclosure {
  font-size: 14px;
  line-height: 16px;
}
#trailer-detail .features-item ul {
  margin: 0;
  padding: 0;
  -webkit-column-count: 5;
     -moz-column-count: 5;
          column-count: 5;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid-column;
}
@media (max-width: 641px) {
  #trailer-detail .features-item ul {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
#trailer-detail .features-item ul li {
  list-style-type: none;
  border: 1px solid #e5e0e1;
  width: 100%;
  margin-right: 15px;
  margin-bottom: 15px;
  min-height: 64px;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  pading: 5px 15px;
  background-color: #f7f5f3;
  -webkit-box-shadow: 2px 2px 2px #e5e0e1;
          box-shadow: 2px 2px 2px #e5e0e1;
}
#trailer-detail .features-item ul li span.label {
  display: block;
  width: 100%;
  font-size: 20px;
}
#trailer-detail .features-item ul li span.value {
  display: block;
  width: 100%;
  font-size: 32px;
  font-weight: bold;
}
#trailer-detail .h-tab-content .h-tab-content-current {
  padding-top: 20px;
  padding-bottom: 20px;
}

@-webkit-keyframes change-color {
  0% {
    border-color: #1C8BB1;
  }
  25% {
    border-color: #FFAE3B;
    border-style: dotte;
  }
  50% {
    border-color: rgb(57.7097560976, 181.4341463415, 223.7902439024);
  }
  75% {
    border-color: #454142;
  }
  0% {
    border-color: #1C8BB1;
  }
}

@keyframes change-color {
  0% {
    border-color: #1C8BB1;
  }
  25% {
    border-color: #FFAE3B;
    border-style: dotte;
  }
  50% {
    border-color: rgb(57.7097560976, 181.4341463415, 223.7902439024);
  }
  75% {
    border-color: #454142;
  }
  0% {
    border-color: #1C8BB1;
  }
}
@-webkit-keyframes show-question {
  0% {
    left: 0px;
    top: 0px;
  }
  25% {
    left: 200px;
    top: 0px;
  }
  50% {
    left: 200px;
    top: 200px;
  }
  75% {
    left: 0px;
    top: 200px;
  }
  100% {
    left: 0px;
    top: 0px;
  }
}
@keyframes show-question {
  0% {
    left: 0px;
    top: 0px;
  }
  25% {
    left: 200px;
    top: 0px;
  }
  50% {
    left: 200px;
    top: 200px;
  }
  75% {
    left: 0px;
    top: 200px;
  }
  100% {
    left: 0px;
    top: 0px;
  }
}
.question-wrapper {
  margin: 25px auto;
}
.question-wrapper .building-answer {
  opacity: 0;
  position: absolute;
  bottom: -400px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  max-width: 640px;
  padding: 15px 15px;
  margin: 25px auto;
  border-radius: 5px;
  border: 2px dashed #FFAE3B;
  -webkit-animation: 3s ease 0s normal forwards 50 change-color;
  animation: 3s ease 0s normal forwards 50 change-color;
}
.question-wrapper .building-answer.on {
  opacity: 1;
  bottom: auto;
  position: relative;
}
.question-wrapper .building-answer h2 {
  background-color: transparent;
  color: #1C8BB1;
}
.question-wrapper .building-answer p {
  font-size: 16px;
  text-align: center;
}
.question-wrapper .question-item {
  max-width: 640px;
  margin: auto;
  border: 1px solid #e5e0e1;
  border-rdaius: 12px;
  -webkit-box-shadow: 2px 2px 2px #ccc;
          box-shadow: 2px 2px 2px #ccc;
  border-radius: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  opacity: 0;
  position: absolute;
  -webkit-transition: 1s all;
  transition: 1s all;
  left: -5000px;
}
.question-wrapper .question-item.on {
  position: relative;
  left: 0;
  -webkit-animation-name: show-question;
          animation-name: show-question;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  opacity: 1;
}
.question-wrapper h2 {
  font-size: 28px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-align: center;
  margin: 0;
  padding: 15px;
  background-color: #1C8BB1;
  color: #fff;
  padding: 10px;
}
.question-wrapper .answers {
  padding: 15px;
}
.question-wrapper .answers .answer-item {
  border: 2px solid #FFAE3B;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  text-align: center;
  font-size: 20px;
  text-align: center;
  display: block;
  border-radius: 5px;
  padding: 10px 15px;
  width: 100%;
  margin: 15px auto;
  max-width: 90%;
  font-weight: bold;
  line-height: 1.33;
  cursor: pointer;
}
.question-wrapper .answers .answer-item:hover {
  background-color: #FFAE3B;
  color: #fff;
  -webkit-box-shadow: 2px 2px 2px #efefef;
          box-shadow: 2px 2px 2px #efefef;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes image-fade-in {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  20% {
    opacity: 0.25;
  }
  30% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.75;
  }
  75% {
    opacity: 0.9;
  }
  85% {
    opacity: 1;
  }
}
@keyframes image-fade-in {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  20% {
    opacity: 0.25;
  }
  30% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.75;
  }
  75% {
    opacity: 0.9;
  }
  85% {
    opacity: 1;
  }
}
@-webkit-keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.completed-quiz {
  margin: 25px auto;
  max-width: 900px;
  /* border: 1px solid $color-bdr;
  border-rdaius: 12px;
  box-shadow: 2px 2px 2px #ccc;
  border-radius: 5px;*/
  min-height: 800px;
}
.completed-quiz .questions-wrapper {
  position: relative;
}
.completed-quiz .questions-wrapper .question-item-content {
  text-align: center;
}
.completed-quiz .questions-wrapper .question-item {
  position: relative;
  width: 0px;
  height: 0px;
  opacity: 0;
  -webkit-transition: 1s all;
  transition: 1s all;
}
.completed-quiz .questions-wrapper .question-item.on {
  opacity: 1;
  width: auto;
  height: auto;
}
.completed-quiz .questions-wrapper .question-item.on.hide {
  display: none;
}
.completed-quiz .questions-wrapper .question-item.on .item-image img {
  opacity: 0;
}
.completed-quiz .questions-wrapper .question-item.on .images {
  position: relative;
  margin: 100px 0;
}
.completed-quiz .questions-wrapper .question-item.on .images img {
  max-width: 640px;
  margin: 0 auto;
  opacity: 0;
}
.completed-quiz .questions-wrapper .question-item.on .images .image-item {
  width: 100%;
  margin: auto;
  max-width: 640px;
}
.completed-quiz .questions-wrapper .question-item.on h2 {
  font-size: 18px;
  opacity: 1;
  color: #555;
  white-space: nowrap;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  /* -webkit-animation: 3s ease 0s normal forwards 1 fadein;
  animation: 3s ease 0s normal forwards 1 fadein;*/
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid #555; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.15em; /* Adjust as needed */
  -webkit-animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
          animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}
.completed-quiz .questions-wrapper .question-item.on h3 {
  font-size: 32px;
  font-weight: bold;
  color: #1C8BB1;
  opacity: 0;
  font-family: indie-flower;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  -webkit-animation: 2s ease 2s normal forwards 1 fadein;
  animation: 2s ease 2s normal forwards 1 fadein;
}
.completed-quiz .questions-wrapper .question-item.on h4 {
  display: block;
  -webkit-animation: 2s ease 4s normal forwards 1 fadein;
  animation: 2s ease 4s normal forwards 1 fadein;
  text-align: center;
  opacity: 0;
}
.completed-quiz .questions-wrapper .question-item.on h4 span {
  font-size: 18px;
  display: inline-block;
  color: #1C8BB1;
  border: 1px solid #FFAE3B;
  border-left: 5px solid #FFAE3B;
  padding: 10px;
  text-align: center;
  background-color: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  margin: 0 auto;
}
.completed-quiz .questions-wrapper .question-item.on .image-item {
  position: relative;
}
.completed-quiz .questions-wrapper .question-item.on .image-item.image-index-1 img {
  position: absolute;
  margin: 0 auto;
  -webkit-animation: 2s ease 8s normal forwards 1 fadein;
  animation: 2s ease 8s normal forwards 1 fadein;
  padding: 10px 10px 50px 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  z-index: 9;
}
.completed-quiz .questions-wrapper .question-item.on .image-item.image-index-2 img {
  position: absolute;
  -webkit-animation: 2s ease 10s normal forwards 1 fadein;
  animation: 2s ease 10s normal forwards 1 fadein;
  padding: 10px 10px 50px 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  z-index: 10;
}
.completed-quiz .questions-wrapper .question-item.on .image-item.image-index-3 img {
  position: absolute;
  -webkit-animation: 2s ease 12s normal forwards 1 fadein;
  animation: 2s ease 12s normal forwards 1 fadein;
  padding: 10px 10px 50px 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  z-index: 11;
}
.completed-quiz .questions-wrapper .question-item.on .image-item.image-index-4 img {
  position: absolute;
  -webkit-animation: 2s ease 14s normal forwards 1 fadein;
  animation: 2s ease 14s normal forwards 1 fadein;
  padding: 10px 10px 50px 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  z-index: 12;
}
.completed-quiz .quiz-form {
  -webkit-transition: 1s all;
  transition: 1s all;
}
.completed-quiz .quiz-form.on {
  opacity: 1;
  width: auto;
  height: auto;
}
.completed-quiz .quiz-form {
  background-color: #fff;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 25px auto;
  border: 1px solid #e5e0e1;
  max-width: 640px;
  padding: 25px;
  border-radius: 15px;
  -webkit-box-shadow: 2px 2px 2px #ccc;
          box-shadow: 2px 2px 2px #ccc;
}
.completed-quiz .quiz-form label {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
  display: block;
  width: 100%;
}
.completed-quiz .quiz-form .row {
  padding-bottom: 25px;
}
.completed-quiz .quiz-form h2 {
  text-align: center;
  margin: 0;
  padding: 0;
}
.completed-quiz .quiz-form p {
  text-align: center;
}
.completed-quiz .quiz-form input[type=text] {
  width: 100%;
  border: 1px solid #e5e0e1;
  padding: 15px 10px;
  border-radius: 5px;
}

.main-nav-wrapper .main-nav {
  margin-right: 0px !important;
}
.main-nav-wrapper .main-nav li.has-dropdown:hover .main-nav-dropdown {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 15px);
}
.main-nav-wrapper .main-nav .subnav span {
  color: #000;
}

/* service form */
.front-end-form.service-form textarea {
  border: 1px solid black;
  font-size: 14px;
  padding: 5px;
  min-height: 80px;
}
.front-end-form.service-form input.button.button-primary {
  margin-top: 25px;
}

#trailer-request-form {
  position: absolute;
  opacity: 1;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  height: 0;
  bottom: 0;
  width: 0;
  overflow: hidden;
  right: 0;
  z-index: -1;
}

body:has(#trailer-request-form.on) .site-header {
  z-index: 0;
}

#trailer-request-form.on {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  width: 0;
  z-index: -1;
  opacity: 1;
  position: absolute;
  height: auto;
  width: auto;
  z-index: 99999;
}
#trailer-request-form.on .js-form-overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background-color: #ccc;
  opacity: 0.75;
  width: 100%;
  height: 100%;
  z-index: 5;
}
#trailer-request-form.on .trailer-request a.close-trailer {
  float: right;
  font-size: 24px;
  line-height: 24px;
  color: #555;
  padding: 5px;
}
#trailer-request-form.on .trailer-request span.trailer-name {
  color: #1C8BB1;
  font-weight: bold;
}
#trailer-request-form.on .trailer-request h1 {
  margin-bottom: 5px;
}
#trailer-request-form.on .trailer-request {
  z-index: 5501;
  width: 640px;
  height: 460px;
  position: fixed;
  margin: auto auto;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 641px) {
  #trailer-request-form.on .trailer-request {
    width: 100%;
    height: 1hv;
    margin: 0 0;
    height: 100%;
  }
}
#trailer-request-form.on .trailer-request fieldset {
  z-index: 5000;
}

/* customization desktop */
.home-mobile-section p a.button {
  margin-bottom: 5px;
  text-align: center;
}

/* end customization desktop */
/* mobile styling */
@media (max-width: 641px) {
  .home-mobile-section a.button {
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }
  .why-ocean-view-wrapper .image-wrapper.flexFit {
    height: auto;
    padding: auto;
    padding-bottom: 0px;
  }
  .why-ocean-view-wrapper .image-wrapper.flexFit img {
    position: relative;
  }
  .why-ocean-view-wrapper h3 {
    padding-top: 0px;
  }
  .why-ocean-view-wrapper p {
    border-bottom: 2px solid #e5e0e1;
    padding-bottom: 8px;
  }
  .static-footer-wrapper .row .col.grid3-12 {
    width: 48.2% !important;
    margin-bottom: 35px !important;
  }
}
/* end mobile styling */