@charset "UTF-8";
/************** 

This file should on all pages in the front-end and back-end

***************/
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 {
  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 */
/*}
}*/
/* End of CB Additions */
/*****************************************************************

BRAND COLORS


For naming conventions, enter the hex code into this website: http://chir.ag/projects/name-that-color

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;

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

COLOR USAGE

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

*****************************************************************/
/* PRIMARY, SECONDARY, & ACCENT COLORS **************/
/* BACKGROUND COLORS **************/
/* BORDER COLORS **************/
/* TEXT COLORS **************/
/*****************************************************************

FONTS

*****************************************************************/
/* HEADINGS **************/
.font-heading {
  font-family: "AmiriRegular", Arial, sans-serif;
}

.font-heading2 {
  font-family: "AmiriRegular", Arial, sans-serif;
}

/* SUBHEADINGS **************/
.font-subheading {
  font-family: "MontserratRegular", Arial, sans-serif;
}

.font-subheading2 {
  font-family: "MontserratRegular", Arial, sans-serif;
}

/* BODY COPY **************/
.font-body {
  font-family: "MontserratRegular", Arial, sans-serif;
}

.font-weight-bold {
  font-family: "MontserratBold", Arial, sans-serif;
}

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

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: 1024px) {
  .pad-sm {
    padding: 20px;
  }
}
@media (max-width: 1023px) {
  .pad-sm {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .pad-sm {
    padding: 10px;
  }
}

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

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

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

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

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

@media (min-width: 1024px) {
  .pad-left-sm {
    padding-left: 20px;
  }
}
@media (max-width: 1023px) {
  .pad-left-sm {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .pad-left-sm {
    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;
  }
}

/* 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;
  }
}

/* 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;
  }
}

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

BORDER RADIUS

*****************************************************************/
/* BORDER RADIUS SMALL **************/
.bdr-radius-sm {
  border-radius: 2px;
}

.bdr-radius-top-left-sm {
  border-radius-top-left: 2px;
}

.bdr-radius-top-right-sm {
  border-radius-top-right: 2px;
}

.bdr-radius-bottom-right-sm {
  border-radius-bottom: 2px;
}

.bdr-radius-bottom-left-sm {
  border-radius-left: 2px;
}

/* BORDER RADIUS MEDIUM **************/
.bdr-radius-md {
  border-radius: 4px;
}

.bdr-radius-top-left-md {
  border-radius-top-left: 4px;
}

.bdr-radius-top-right-md {
  border-radius-top-right: 4px;
}

.bdr-radius-bottom-right-md {
  border-radius-bottom: 4px;
}

.bdr-radius-bottom-left-md {
  border-radius-left: 4px;
}

/* BORDER RADIUS LARGE **************/
.bdr-radius-lg {
  border-radius: 6px;
}

.bdr-radius-top-left-lg {
  border-radius-top-left: 6px;
}

.bdr-radius-top-right-lg {
  border-radius-top-right: 6px;
}

.bdr-radius-bottom-right-lg {
  border-radius-bottom: 6px;
}

.bdr-radius-bottom-left-lg {
  border-radius-left: 6px;
}

/* BORDER RADIUS CIRCLE **************/
.bdr-radius-circle {
  border-radius: 50%;
}

/* BORDER RADIUS PILL **************/
.bdr-radius-pill {
  border-radius: 9999px;
}

/*@import "variables2";*/
/***************************

GRID SYSTEM

***************************/
/* Splits Up The Page Horizontally & Clears Itself */
.row {
  clear: both;
  padding: 0px;
  margin: 0;
}

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

.row:after {
  clear: both;
}

/* Divides The Row Into Columns */
.col {
  display: block;
  float: left;
  margin: 0% 0 0 1.6%;
}

.col:first-child {
  margin-left: 0;
}

.row-reverse > .col {
  float: right;
}

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

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

.pb-row-reverse .pb-row-item .pb-row .setcontainer > .col {
  float: right;
}

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

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

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

.col:after {
  clear: both;
}

/*  Remove margins as all go full width at 480 pixels */
@media only screen and (max-width: 480px) {
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  .col {
    margin: 1% 0 1% 0%;
  }
}
/* GRID OF TWO */
.grid2-2 {
  width: 100%;
}

.grid1-2 {
  width: 49.2%;
}

/* GRID OF THREE */
.grid3-3 {
  width: 100%;
}

.grid2-3 {
  width: 66.13%;
}

.grid1-3 {
  width: 32.26%;
}

/* GRID OF FOUR */
.grid4-4 {
  width: 100%;
}

.grid3-4 {
  width: 74.6%;
}

.grid2-4 {
  width: 49.2%;
}

.grid1-4 {
  width: 23.8%;
}

/* GRID OF FIVE */
.grid5-5 {
  width: 100%;
}

.grid4-5 {
  width: 79.68%;
}

.grid3-5 {
  width: 59.36%;
}

.grid2-5 {
  width: 39.04%;
}

.grid1-5 {
  width: 18.72%;
}

/* GRID OF SIX */
.grid6-6 {
  width: 100%;
}

.grid5-6 {
  width: 83.06%;
}

.grid4-6 {
  width: 66.13%;
}

.grid3-6 {
  width: 49.2%;
}

.grid2-6 {
  width: 32.26%;
}

.grid1-6 {
  width: 15.33%;
}

/* GRID OF SEVEN */
.grid7-7 {
  width: 100%;
}

.grid6-7 {
  width: 85.48%;
}

.grid5-7 {
  width: 70.97%;
}

.grid4-7 {
  width: 56.45%;
}

.grid3-7 {
  width: 41.94%;
}

.grid2-7 {
  width: 27.42%;
}

.grid1-7 {
  width: 12.91%;
}

/* GRID OF EIGHT */
.grid8-8 {
  width: 100%;
}

.grid7-8 {
  width: 87.3%;
}

.grid6-8 {
  width: 74.6%;
}

.grid5-8 {
  width: 61.9%;
}

.grid4-8 {
  width: 49.2%;
}

.grid3-8 {
  width: 36.5%;
}

.grid2-8 {
  width: 23.8%;
}

.grid1-8 {
  width: 11.1%;
}

/* GRID OF NINE */
.grid9-9 {
  width: 100%;
}

.grid8-9 {
  width: 88.71%;
}

.grid7-9 {
  width: 77.42%;
}

.grid6-9 {
  width: 66.13%;
}

.grid5-9 {
  width: 54.84%;
}

.grid4-9 {
  width: 43.55%;
}

.grid3-9 {
  width: 32.26%;
}

.grid2-9 {
  width: 20.97%;
}

.grid1-9 {
  width: 9.68%;
}

/* GRID OF TEN */
.grid10-10 {
  width: 100%;
}

.grid9-10 {
  width: 89.84%;
}

.grid8-10 {
  width: 79.68%;
}

.grid7-10 {
  width: 69.52%;
}

.grid6-10 {
  width: 59.36%;
}

.grid5-10 {
  width: 49.2%;
}

.grid4-10 {
  width: 39.04%;
}

.grid3-10 {
  width: 28.88%;
}

.grid2-10 {
  width: 18.72%;
}

.grid1-10 {
  width: 8.56%;
}

/* GRID OF ELEVEN */
.grid11-11 {
  width: 100%;
}

.grid10-11 {
  width: 90.76%;
}

.grid9-11 {
  width: 81.52%;
}

.grid8-11 {
  width: 72.29%;
}

.grid7-11 {
  width: 63.05%;
}

.grid6-11 {
  width: 53.81%;
}

.grid5-11 {
  width: 44.58%;
}

.grid4-11 {
  width: 35.34%;
}

.grid3-11 {
  width: 26.1%;
}

.grid2-11 {
  width: 16.87%;
}

.grid1-11 {
  width: 7.63%;
}

/*  GRID OF TWELVE */
.grid12-12 {
  width: 100%;
}

.grid11-12 {
  width: 91.53%;
}

.grid10-12 {
  width: 83.06%;
}

.grid9-12 {
  width: 74.6%;
}

.grid8-12 {
  width: 66.13%;
}

.grid7-12 {
  width: 57.66%;
}

.grid6-12 {
  width: 49.2%;
}

.grid5-12 {
  width: 40.73%;
}

.grid4-12 {
  width: 32.26%;
}

.grid3-12 {
  width: 23.8%;
}

.grid2-12 {
  width: 15.33%;
}

.grid1-12 {
  width: 6.86%;
}

/*  Go Full Width At Less Than 480 Pixels */
@media (max-width: 480px) {
  [class*=grid],
  div[class*=grid] {
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
  }
  .respond {
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
  }
  .respond-half {
    width: 49%;
    margin-left: 2%;
    margin-right: 0;
  }
  .respond-half:first-child {
    margin-left: 0;
  }
}
/* Responsive Media Container */
.embed-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16/9 ratio */
  height: 0;
  overflow: hidden;
}

.embed-responsive iframe,
.embed-responsive object,
.embed-responsive embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Horizontal Tablet Show / Hide Classes */
@media only screen and (max-width: 1024px) {
  .hide-htablet {
    display: none !important;
  }
  .show-htablet {
    display: block !important;
  }
}
/* Vertical Tablet Show / Hide Classes */
@media only screen and (max-width: 768px) {
  .hide-vtablet {
    display: none !important;
  }
  .show-vtablet {
    display: block !important;
  }
}
/* Mobile Show / Hide Classes */
@media only screen and (max-width: 480px) {
  .hide-mobile {
    display: none !important;
  }
  .show-mobile {
    display: block !important;
  }
}
/* Reponsive Images */
img {
  /* Ensure images don't scale beyond their parents */
  max-width: 100%;
  /* Part 1: Set a maxium relative to the parent */
  width: auto\9 ;
  /* IE7-8 need help adjusting responsive images */
  height: auto;
  /* Part 2: Scale the height according to the width, otherwise you get stretching */
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

/* Make image not responsive */
img.not-responsive {
  max-width: none;
}

.flex-col,
.flex1-12,
.flex2-12,
.flex3-12,
.flex4-12,
.flex5-12,
.flex6-12,
.flex7-12,
.flex8-12,
.flex9-12,
.flex10-12,
.flex11-12,
.flex12-12 {
  box-sizing: border-box;
  flex-basis: 100%;
}

.flex-row,
.flex-row-pb .pb-row,
.flex-row-pb .pb-row > .setcontainer {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 481px) {
  .flex-row-reverse,
  .flex-row-reverse-pb .pb-row,
  .flex-row-reverse-pb .pb-row > .setcontainer {
    flex-direction: row-reverse;
  }
}

/* Devices larger than 481px */
@media (min-width: 481px) {
  .flex-col {
    flex: 1 1 0 !important;
  }
  .flex1-12 {
    flex-basis: 8.333% !important;
  }
  .flex2-12 {
    flex-basis: 16.666% !important;
  }
  .flex3-12 {
    flex-basis: 25% !important;
  }
  .flex4-12 {
    flex-basis: 33.333% !important;
  }
  .flex5-12 {
    flex-basis: 41.666% !important;
  }
  .flex6-12 {
    flex-basis: 50% !important;
  }
  .flex7-12 {
    flex-basis: 58.333% !important;
  }
  .flex8-12 {
    flex-basis: 66.666% !important;
  }
  .flex9-12 {
    flex-basis: 75% !important;
  }
  .flex10-12 {
    flex-basis: 83.333% !important;
  }
  .flex11-12 {
    flex-basis: 91.666% !important;
  }
  .flex12-12 {
    flex-basis: 100% !important;
  }
}
/* Vertical & Horizontal Alignment */
.align-items-start,
.v-align-top,
.v-align-top-pb .pb-row,
.v-align-top-pb .pb-row > .setcontainer {
  align-items: flex-start !important;
}

.align-items-center,
.v-align-middle,
.v-align-middle-pb .pb-row,
.v-align-middle-pb .pb-row > .setcontainer {
  align-items: center !important;
}

.align-items-end,
.v-align-bottom,
.v-align-bottom-pb .pb-row,
.v-align-bottom-pb .pb-row > .setcontainer {
  align-items: flex-end !important;
}

.justify-content-start,
.h-align-left,
.h-align-left-pb .pb-row,
.h-align-left-pb .pb-row > .setcontainer {
  justify-content: flex-start !important;
}

.justify-content-center,
.h-align-middle,
.h-align-middle-pb .pb-row,
.h-align-middle-pb .pb-row > .setcontainer {
  justify-content: center !important;
}

.justify-content-end,
.h-align-right,
.h-align-right-pb .pb-row,
.h-align-right-pb .pb-row > .setcontainer {
  justify-content: flex-end !important;
}

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

Typography.css is for the following:

1. Embedding custom fonts
2. Setting up our base content class styling.
3. FontAwesome 

***************/
/* EMBEDDED FONTS */
@font-face {
  font-family: "AmiriRegular";
  src: url("/Pub/fonts/AmiriRegular.eot");
  src: url("/Pub/fonts/AmiriRegular.eot") format("embedded-opentype"), url("/Pub/fonts/AmiriRegular.woff2") format("woff2"), url("/Pub/fonts/AmiriRegular.woff") format("woff"), url("/Pub/fonts/AmiriRegular.ttf") format("truetype"), url("/Pub/fonts/AmiriRegular.svg#AmiriRegular") format("svg");
}
@font-face {
  font-family: "MontserratRegular";
  src: url("/Pub/fonts/MontserratRegular.eot");
  src: url("/Pub/fonts/MontserratRegular.eot") format("embedded-opentype"), url("/Pub/fonts/MontserratRegular.woff2") format("woff2"), url("/Pub/fonts/MontserratRegular.woff") format("woff"), url("/Pub/fonts/MontserratRegular.ttf") format("truetype"), url("/Pub/fonts/MontserratRegular.svg#MontserratRegular") format("svg");
}
@font-face {
  font-family: "MontserratBold";
  src: url("/Pub/fonts/MontserratBold.eot");
  src: url("/Pub/fonts/MontserratBold.eot") format("embedded-opentype"), url("/Pub/fonts/MontserratBold.woff2") format("woff2"), url("/Pub/fonts/MontserratBold.woff") format("woff"), url("/Pub/fonts/MontserratBold.ttf") format("truetype"), url("/Pub/fonts/MontserratBold.svg#MontserratBold") format("svg");
}
/* HEADINGS **************/
body .hcontent .font-heading,
body .font-heading {
  font-family: "AmiriRegular", serif;
}

/* SUBHEADINGS *************/
body .hcontent .font-subheading,
body .font-subheading {
  font-family: "MontserratBold", sans-serif;
  text-transform: uppercase;
}

/* BODY COPY **************/
body .hcontent .font-body,
body .font-body {
  font-family: "MontserratRegular", sans-serif;
}

/* CONTENT 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 h1 (h2-h6) should alternate color so that they are easy to distinguish. In most cases your h1, h3, h5 will be one color, and your h2, h4, h6 will be another color. 
3. There should be extra padding added above your h2-h6's to help separate sections more.

*/
.hcontent {
  color: #686162;
  font-family: "MontserratRegular", sans-serif;
  font-size: 21px;
}

.hcontent h1,
.hcontent h2,
.hcontent h3,
.hcontent h4,
.hcontent h5,
.hcontent h6 {
  font-family: "AmiriRegular", serif;
  line-height: 1.2;
}

.hcontent h2,
.hcontent h3,
.hcontent h4,
.hcontent h5,
.hcontent h6 {
  padding-bottom: 20px;
}

.hcontent p,
.hcontent ul,
.hcontent ol {
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 16px;
}

.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 {
  padding-left: 0;
}

.hcontent.non-list ul li {
  list-style: none;
}

.hcontent.non-list ol li {
  list-style: none;
}

.hcontent h1 {
  font-size: 48px;
  color: #402020;
}

.hcontent h2 {
  font-size: 36px;
  padding-bottom: 5px;
}

.hcontent h3 {
  font-size: 24px;
}

.hcontent h4 {
  font-size: 20px;
}

.hcontent h5 {
  font-size: 18px;
}

.hcontent h6 {
  font-size: 15px;
}

.hcontent h1,
.hcontent h2,
.hcontent h3,
.hcontent h4 {
  color: #402020;
}

.hcontent a {
  color: #5ab7b2;
}

.hcontent a:hover {
  color: #53a8a3;
  text-decoration: none;
}

.hcontent em {
  font-style: italic;
}

.hcontent a.cta-text-link, a.cta-text-link {
  text-transform: uppercase;
  font-family: "MontserratBold", Arial, sans-serif;
}

.hcontent a.cta-text-link:hover,
a.cta-text-link:hover {
  text-decoration: none;
  opacity: 0.8;
}

.hcontent .subheading,
.subheading {
  font-family: "MontserratRegular", Arial, sans-serif !important;
  color: #842d2c !important;
  text-transform: uppercase !important;
}

@media screen and (max-width: 1279px) {
  .hcontent {
    font-size: 16px;
  }
  .hcontent h2 {
    font-size: 34px;
  }
  .hcontent h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 991px) {
  .hcontent {
    font-size: 16px;
  }
  .hcontent h1 {
    font-size: 42px;
  }
  .hcontent h3 {
    font-size: 22px;
  }
  .hcontent h4 {
    font-size: 20px;
  }
  .hcontent h2 {
    font-size: 28px;
  }
  .hcontent h5 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .hcontent {
    font-size: 14px;
  }
  .hcontent h1 {
    font-size: 28px;
  }
  .hcontent h2 {
    font-size: 24px;
  }
  .hcontent h3 {
    font-size: 20px;
  }
  .hcontent h4 {
    font-size: 18px;
  }
  .hcontent h5 {
    font-size: 16px;
  }
  .hcontent h6 {
    font-size: 14px;
  }
  .hcontent h1,
  .hcontent h2,
  .hcontent h3,
  .hcontent h4,
  .hcontent h5,
  .hcontent h6 {
    line-height: 1.25;
  }
  .hcontent h2,
  .hcontent h3,
  .hcontent h4,
  .hcontent h5,
  .hcontent h6 {
    padding-bottom: 10px;
  }
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("/pub/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("/pub/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("/pub/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("/pub/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("/pub/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("/pub/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

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

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 possibly border)
.button-secondary (this dictates the button color, so you'd include background-color, color, and possibly border)

***************/
.hcontent a.button,
.hcontent input.button[type=submit],
.hcontent input.button[type=button],
a.button, button.button,
input.button[type=submit],
input.button[type=button],
.hcontent a.btn,
.hcontent input.btn[type=submit],
.hcontent input.btn[type=button],
a.btn,
input.btn[type=submit],
input.btn[type=button] {
  display: inline-block;
  padding: 20px 30px;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 0;
  font-family: "MontserratBold", Arial, sans-serif;
  transition: all 0.3s;
  line-height: 1.7;
  border: none;
  text-decoration: none;
}

.hcontent a.button-sm, .hcontent button.button-sm,
.hcontent input.button-sm[type=submit],
.hcontent input.button-sm[type=button],
a.button.button-sm, button.button.button-sm,
input.button.button-sm[type=submit],
input.button.button-sm[type=button],
.hcontent a.btn-sm,
.hcontent input.btn-sm[type=submit],
.hcontent input.btn-sm[type=button],
a.btn-sm,
input.btn-sm[type=submit],
input.btn-sm[type=button] {
  font-size: 14px;
  padding: 12px 18px;
}

.hcontent a.button-xlsm, .hcontent button.button-xlsm,
.hcontent input.button-xlsm[type=submit],
.hcontent input.button-xlsm[type=button],
a.button.button-xlsm, button.button.button-xlsm,
input.button.button-xlsm[type=submit],
input.button.button-xlsm[type=button],
.hcontent a.btn-xlsm,
.hcontent input.btn-xlsm[type=submit],
.hcontent input.btn-xlsm[type=button],
a.btn-xlsm,
input.btn-xlsm[type=submit],
input.btn-xlsm[type=button] {
  font-size: 13px;
  padding: 6px 9px;
}

.hcontent a.button-lg, .hcontent button.button-lg,
.hcontent input.button-lg[type=submit],
.hcontent input.button-lg[type=button],
a.button.button-lg, button.button.button-lg,
input.button.button-lg[type=submit],
input.button.button-lg[type=button],
.hcontent a.btn-lg,
.hcontent input.btn-lg[type=submit],
.hcontent input.btn-lg[type=button],
a.btn-lg,
input.btn-lg[type=submit],
input.btn-lg[type=button] {
  font-size: 20px;
  padding: 24px 36px;
}

.hcontent a.button-primary, .hcontent button.button-primary,
.hcontent input.button-primary[type=submit],
.hcontent input.button-primary[type=button],
a.button-primary, button.button-primary,
input.button-primary[type=submit],
input.button-primary[type=button],
.hcontent a.btn-primary,
.hcontent input.btn-primary[type=submit],
.hcontent input.btn-primary[type=button],
a.btn-primary,
input.btn-primary[type=submit],
input.btn-primary[type=button] {
  background: #5ab7b2;
  color: #ffffff;
}

.hcontent a.button-primary:hover, .hcontent a.button-primary:focus,
.hcontent input.button-primary[type=submit]:hover, .hcontent input.button-primary[type=submit]:focus,
.hcontent input.button-primary[type=button]:hover, .hcontent input.button-primary[type=button]:focus,
a.button-primary:hover, a.button-primary:focus,
input.button-primary[type=submit]:hover, input.button-primary[type=submit]:focus,
input.button-primary[type=button]:hover, input.button-primary[type=button]:focus,
.hcontent a.btn-primary:hover, .hcontent a.btn-primary:focus,
.hcontent input.btn-primary[type=submit]:hover, .hcontent input.btn-primary[type=submit]:focus,
.hcontent input.btn-primary[type=button]:hover, .hcontent input.btn-primary[type=button]:hover,
a.btn-primary:hover, a.btn-primary:focus,
input.btn-primary[type=submit]:hover, input.btn-primary[type=submit]:focus,
input.btn-primary[type=button]:hover, input.btn-primary[type=button]:focus {
  background-color: #53a8a3;
  color: #ffffff;
  text-decoration: none;
}

.hcontent a.button-secondary,
.hcontent input.button-secondary[type=submit],
.hcontent input.button-secondary[type=button],
a.button-secondary,
input.button-secondary[type=submit],
input.button-secondary[type=button],
.hcontent a.btn-secondary,
.hcontent input.btn-secondary[type=submit],
.hcontent input.btn-secondary[type=button],
a.btn-secondary,
input.btn-secondary[type=submit],
input.btn-secondary[type=button] {
  background-color: #a69a95;
  color: #ffffff;
}

.hcontent a.button-secondary:hover,
.hcontent input.button-secondary[type=submit]:hover,
.hcontent input.button-secondary[type=button]:hover,
a.button-secondary:hover,
input.button-secondary[type=submit]:hover,
input.button-secondary[type=button]:hover,
.hcontent a.btn-secondary:hover,
.hcontent input.btn-secondary[type=submit]:hover,
.hcontent input.btn-secondary[type=button]:hover,
a.btn-secondary:hover,
input.btn-secondary[type=submit]:hover,
input.btn-secondary[type=button]:hover {
  background-color: #9a8d87;
}

@media screen and (max-width: 991px) {
  .hcontent a.button-small,
  .hcontent input.button-small[type=submit],
  .hcontent input.button-small[type=button],
  a.button-small,
  input.button-small[type=submit],
  input.button-small[type=button],
  .hcontent a.btn-small,
  .hcontent input.btn-small[type=submit],
  .hcontent input.btn-small[type=button],
  a.btn-small,
  input.btn-small[type=submit],
  input.btn-small[type=button] {
    font-size: 12px;
    padding: 14px 16px;
  }
  .hcontent a.button,
  .hcontent input.button[type=submit],
  .hcontent input.button[type=button],
  a.button,
  input.button[type=submit],
  input.button[type=button],
  .hcontent a.btn,
  .hcontent input.btn[type=submit],
  .hcontent input.btn[type=button],
  a.btn,
  input.btn[type=submit],
  input.btn[type=button] {
    padding: 16px 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .hcontent a.button,
  .hcontent input.button[type=submit],
  .hcontent input.button[type=button],
  a.button,
  input.button[type=submit],
  input.button[type=button],
  .hcontent a.btn,
  .hcontent input.btn[type=submit],
  .hcontent input.btn[type=button],
  a.btn,
  input.btn[type=submit],
  input.btn[type=button] {
    padding: 14px 20px;
    font-size: 12px;
  }
}
/*@import "buttons2";*/
/***************************

DEFAULT CSS - DO NOT UPDATE THIS. MAKE YOUR UPDATES AFTER THIS SECTION

***************************/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

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

ADDITIONAL CSS

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

BRAND COLORS


For naming conventions, enter the hex code into this website: http://chir.ag/projects/name-that-color

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;

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

COLOR USAGE

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

*****************************************************************/
/* PRIMARY, SECONDARY, & ACCENT COLORS **************/
/* BACKGROUND COLORS **************/
/* BORDER COLORS **************/
/* TEXT COLORS **************/
/*****************************************************************

FONTS

*****************************************************************/
/* HEADINGS **************/
.font-heading {
  font-family: "AmiriRegular", Arial, sans-serif;
}

.font-heading2 {
  font-family: "AmiriRegular", Arial, sans-serif;
}

/* SUBHEADINGS **************/
.font-subheading {
  font-family: "MontserratRegular", Arial, sans-serif;
}

.font-subheading2 {
  font-family: "MontserratRegular", Arial, sans-serif;
}

/* BODY COPY **************/
.font-body {
  font-family: "MontserratRegular", Arial, sans-serif;
}

.font-weight-bold {
  font-family: "MontserratBold", Arial, sans-serif;
}

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

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: 1024px) {
  .pad-sm {
    padding: 20px;
  }
}
@media (max-width: 1023px) {
  .pad-sm {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .pad-sm {
    padding: 10px;
  }
}

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

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

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

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

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

@media (min-width: 1024px) {
  .pad-left-sm {
    padding-left: 20px;
  }
}
@media (max-width: 1023px) {
  .pad-left-sm {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .pad-left-sm {
    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;
  }
}

/* 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;
  }
}

/* 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;
  }
}

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

BORDER RADIUS

*****************************************************************/
/* BORDER RADIUS SMALL **************/
.bdr-radius-sm {
  border-radius: 2px;
}

.bdr-radius-top-left-sm {
  border-radius-top-left: 2px;
}

.bdr-radius-top-right-sm {
  border-radius-top-right: 2px;
}

.bdr-radius-bottom-right-sm {
  border-radius-bottom: 2px;
}

.bdr-radius-bottom-left-sm {
  border-radius-left: 2px;
}

/* BORDER RADIUS MEDIUM **************/
.bdr-radius-md {
  border-radius: 4px;
}

.bdr-radius-top-left-md {
  border-radius-top-left: 4px;
}

.bdr-radius-top-right-md {
  border-radius-top-right: 4px;
}

.bdr-radius-bottom-right-md {
  border-radius-bottom: 4px;
}

.bdr-radius-bottom-left-md {
  border-radius-left: 4px;
}

/* BORDER RADIUS LARGE **************/
.bdr-radius-lg {
  border-radius: 6px;
}

.bdr-radius-top-left-lg {
  border-radius-top-left: 6px;
}

.bdr-radius-top-right-lg {
  border-radius-top-right: 6px;
}

.bdr-radius-bottom-right-lg {
  border-radius-bottom: 6px;
}

.bdr-radius-bottom-left-lg {
  border-radius-left: 6px;
}

/* BORDER RADIUS CIRCLE **************/
.bdr-radius-circle {
  border-radius: 50%;
}

/* BORDER RADIUS PILL **************/
.bdr-radius-pill {
  border-radius: 9999px;
}

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

HMODAL STYLING

************************************************/
.hmodal-component {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  z-index: 99999;
}
.hmodal-component .hmodal {
  z-index: 2;
  background: #fff;
  transition: all 0.3s;
}
.hmodal-component .close-hmodal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 45px;
  color: #999;
  cursor: pointer;
  transition: 0.3s color;
}
.hmodal-component .close-hmodal:hover {
  color: #666;
}
.hmodal-component .hmodal-content .hmodal-content-fixed-header {
  text-align: center;
}
.hmodal-component .hmodal-content .hmodal-content-fixed-header > *:first-child:not(.button) {
  margin-top: 0;
  padding-top: 0;
}
.hmodal-component .hmodal-content .hmodal-content-fixed-header > *:last-child:not(.button) {
  margin-bottom: 0;
  padding-bottom: 0;
}
.hmodal-component .hmodal-content .hmodal-content-main {
  text-align: left;
}
.hmodal-component .hmodal-content .hmodal-content-fixed-footer > *:first-child:not(.button) {
  margin-top: 0;
  padding-top: 0;
}
.hmodal-component .hmodal-content .hmodal-content-fixed-footer > *:last-child:not(.button) {
  margin-bottom: 0;
  padding-bottom: 0;
}
.hmodal-component .hmodal-content .hmodal-content-fixed-footer button {
  margin-left: 10px;
}
.hmodal-component .hmodal-content .hmodal-content-fixed-footer button:first-child {
  margin-left: 0;
}
.hmodal-component.hmodal-popup {
  display: flex;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.hmodal-component.hmodal-popup .hmodal {
  transform: scale(0.8);
  position: relative;
  width: 100%;
  max-width: 900px;
  padding: 50px;
  margin: auto;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .hmodal-component.hmodal-popup .hmodal {
    min-height: 100%;
    transform: scale(1);
    transition: all 0s;
    border-radius: 0;
  }
}
.hmodal-component.hmodal-popup .hmodal .hmodal-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hmodal-component.hmodal-popup .hmodal .hmodal-content .hmodal-content-main {
  flex: 1;
}
.hmodal-component.hmodal-popup .hmodal .hmodal-content .hmodal-content-main * {
  -webkit-transform: translate3d(0, 0, 0);
}
.hmodal-component.hmodal-popup[class*=close-button-outside] {
  padding-top: 50px;
}
.hmodal-component.hmodal-popup[class*=close-button-outside] .close-hmodal {
  font-size: 32px;
  top: -40px;
  color: #fff;
}
@media (max-width: 767px) {
  .hmodal-component.hmodal-popup[class*=close-button-outside] .hmodal {
    height: 100%;
  }
  .hmodal-component.hmodal-popup[class*=close-button-outside] .close-hmodal {
    font-size: 40px;
    top: 20px;
    color: #999;
  }
}
.hmodal-component.hmodal-popup.close-button-outside-left .close-hmodal {
  left: 5px;
  right: auto;
}
@media (max-width: 767px) {
  .hmodal-component.hmodal-popup.close-button-outside-left .close-hmodal {
    left: 20px;
  }
}
.hmodal-component.hmodal-popup.close-button-outside-right .close-hmodal {
  right: 5px;
  left: auto;
}
@media (max-width: 767px) {
  .hmodal-component.hmodal-popup.close-button-outside-right .close-hmodal {
    right: 20px;
  }
}
.hmodal-component.hmodal-popup.close-button-inside-left .close-hmodal {
  right: auto;
  left: 20px;
}
.hmodal-component.hmodal-popup.overlay-light.close-button-outside-left .close-hmodal, .hmodal-component.hmodal-popup.overlay-light.close-button-outside-right .close-hmodal {
  color: #999;
}
.hmodal-component.hmodal-popup.hmodal-popup-scroll-inner {
  -webkit-overflow-scrolling: normal;
  overflow-y: visible;
}
.hmodal-component.hmodal-popup.hmodal-popup-scroll-inner .hmodal {
  height: 90%;
}
.hmodal-component.hmodal-popup.hmodal-popup-scroll-inner .hmodal .hmodal-content .hmodal-content-main {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.hmodal-component.hmodal-popup.hmodal-popup-scroll-inner[class*=close-button-outside] {
  padding-top: 0;
}
.hmodal-component.hmodal-popup.hmodal-popup-scroll-inner[class*=close-button-outside] .hmodal {
  height: 85%;
}
.hmodal-component.hmodal-popup.hmodal-popup-full-screen {
  -webkit-overflow-scrolling: normal;
  overflow-y: visible;
}
.hmodal-component.hmodal-popup.hmodal-popup-full-screen .hmodal {
  max-width: 100%;
  height: 100%;
}
.hmodal-component.hmodal-popup.hmodal-popup-full-screen .hmodal .hmodal-content .hmodal-content-main {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.hmodal-component.hmodal-popup.hmodal-popup-full-screen[class*=close-button-outside] {
  padding-top: 0;
}
.hmodal-component.hmodal-popup.hmodal-popup-full-screen[class*=close-button-outside] .hmodal {
  height: 85%;
}
.hmodal-component.hmodal-slideout {
  display: flex;
}
.hmodal-component.hmodal-slideout .hmodal {
  width: 480px;
  display: flex;
  flex-direction: column;
  will-change: transform;
}
@media (max-width: 640px) {
  .hmodal-component.hmodal-slideout .hmodal {
    max-width: 80%;
  }
}
.hmodal-component.hmodal-slideout .hmodal .hmodal-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hmodal-component.hmodal-slideout .hmodal .hmodal-content .hmodal-content-main {
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.hmodal-component.hmodal-slideout .hmodal .hmodal-content .hmodal-content-main * {
  -webkit-transform: translate3d(0, 0, 0);
}
.hmodal-component.hmodal-slideout .close-hmodal {
  font-size: 40px;
  color: #fff;
}
.hmodal-component.hmodal-slideout.hmodal-slideout-left .hmodal {
  transform: translateX(-100%);
}
.hmodal-component.hmodal-slideout.hmodal-slideout-left .close-hmodal {
  right: -50px;
  left: auto;
}
.hmodal-component.hmodal-slideout.hmodal-slideout-right {
  justify-content: flex-end;
}
.hmodal-component.hmodal-slideout.hmodal-slideout-right .hmodal {
  transform: translateX(100%);
}
.hmodal-component.hmodal-slideout.hmodal-slideout-right .close-hmodal {
  left: -50px;
  right: auto;
}
.hmodal-component.hmodal-slideout[class*=close-button-inside] .close-hmodal {
  font-size: 32px;
  top: 15px;
  color: #999;
}
.hmodal-component.hmodal-slideout[class*=close-button-inside] .hmodal {
  padding: 50px;
}
.hmodal-component.hmodal-slideout.close-button-inside-left .close-hmodal {
  left: 20px;
  right: auto;
}
.hmodal-component.hmodal-slideout.close-button-inside-right .close-hmodal {
  right: 20px;
  left: auto;
}
.hmodal-component.hmodal-slideout.overlay-light .close-hmodal {
  color: #999;
}
.hmodal-component.hmodal-modal .hmodal {
  max-width: 480px;
  padding: 0;
}
@media (max-width: 767px) {
  .hmodal-component.hmodal-modal .hmodal {
    min-height: 0;
    border-radius: 5px;
  }
}
.hmodal-component.hmodal-modal .hmodal .close-hmodal {
  display: none !important;
}
.hmodal-component.hmodal-modal .hmodal .hmodal-content .hmodal-content-fixed-header {
  padding: 30px 20px 0 20px;
  text-align: center;
}
.hmodal-component.hmodal-modal .hmodal .hmodal-content .hmodal-content-fixed-header > * {
  font-size: 20px;
}
.hmodal-component.hmodal-modal .hmodal .hmodal-content .hmodal-content-main {
  padding: 10px 25px 25px 25px;
}
.hmodal-component.hmodal-modal .hmodal .hmodal-content .hmodal-content-main > *:first-child:not(.button) {
  margin-top: 0;
  padding-top: 0;
}
.hmodal-component.hmodal-modal .hmodal .hmodal-content .hmodal-content-main > *:last-child:not(.button) {
  margin-bottom: 0;
  padding-bottom: 0;
}
.hmodal-component.hmodal-modal .hmodal .hmodal-content .hmodal-content-fixed-footer {
  background: #eee5e4;
  border-top: 1px solid #eee5e4;
  padding: 12px;
  text-align: right;
  border-radius: 0 0 5px 5px;
}
.hmodal-component.hmodal-modal .hmodal .hmodal-content .hmodal-content-fixed-footer .button {
  padding: 8px 16px;
  font-size: 15px;
  min-width: 100px;
}
.hmodal-component .hmodal-overlay {
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s;
}
.hmodal-component.overlay-light .hmodal-overlay {
  background-color: rgba(255, 255, 255, 0.7);
}
.hmodal-component.overlay-light.hmodal-popup .hmodal {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.hmodal-component.overlay-light.hmodal-slideout.hmodal-slideout-left .hmodal {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.hmodal-component.overlay-light.hmodal-slideout.hmodal-slideout-right .hmodal {
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}
.hmodal-component.hmodal-overlay-close .hmodal-overlay {
  cursor: pointer;
}
.hmodal-component.hmodal-hide-close-button .close-hmodal {
  display: none !important;
}
.hmodal-component.hmodal-hide-fixed-header .hmodal .hmodal-content-fixed-header {
  display: none !important;
}
.hmodal-component.hmodal-hide-fixed-footer .hmodal .hmodal-content-fixed-footer {
  display: none !important;
}

.hmodal-open {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hmodal-open-container.hmodal-component {
  visibility: visible;
}
.hmodal-open-container.hmodal-popup .hmodal {
  -webkit-overflow-scrolling: touch;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.hmodal-open-container.hmodal-slideout .hmodal .hmodal-content-main {
  overflow-y: auto;
}
.hmodal-open-container.hmodal-slideout.hmodal-slideout-left .hmodal {
  transform: translateX(0%);
}
.hmodal-open-container.hmodal-slideout.hmodal-slideout-right .hmodal {
  transform: translateX(0%);
}
.hmodal-open-container .hmodal-overlay {
  visibility: visible;
  opacity: 1;
}

.mobile-intent {
  height: 25%;
  bottom: 0;
  margin-top: auto;
}
.mobile-intent .hmodal-content-main {
  display: none;
}
.mobile-intent .hmodal-content-fixed-footer {
  display: none;
}

.hModal-iframe {
  width: 100%;
  transition: all 0.3s ease-in-out;
}

/* END OF HMODAL STYLING ***********************/
/**************

Utilities.css is for 2 things:

1. Adding Jquery-related CSS to the page (ie. jqueryui css)
2. Adding CSS for jquery plugins that are used sitewide (ie popups, tooltips, responsive tables, etc). 

WHAT THIS IS NOT FOR:
CSS for plugins that are only being used in specific locations. These should be in their own css files (ie sliders, 360 rotating, etc.) and added only to the required pages.   

***************/
/*! jQuery UI - v1.11.4 - 2015-03-11
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before, .ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-clearfix {
  min-height: 0;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
}

.ui-front {
  z-index: 100;
}

.ui-state-disabled {
  cursor: default !important;
}

.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: 0.5em 0.5em 0.5em 0.7em;
  min-height: 0;
  font-size: 100%;
}

.ui-accordion .ui-accordion-icons {
  padding-left: 2.2em;
}

.ui-accordion .ui-accordion-icons .ui-accordion-icons {
  padding-left: 2.2em;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  position: absolute;
  left: 0.5em;
  top: 50%;
  margin-top: -8px;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

.ui-button {
  display: inline-block;
  position: relative;
  padding: 0;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  overflow: visible;
}

.ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active {
  text-decoration: none;
}

.ui-button-icon-only {
  width: 2.2em;
}

button.ui-button-icon-only {
  width: 2.4em;
}

.ui-button-icons-only {
  width: 3.4em;
}

button.ui-button-icons-only {
  width: 3.7em;
}

.ui-button .ui-button-text {
  display: block;
  line-height: normal;
}

.ui-button-text-only .ui-button-text {
  padding: 0.4em 1em;
}

.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text {
  padding: 0.4em;
  text-indent: -9999999px;
}

.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text {
  padding: 0.4em 1em 0.4em 2.1em;
}

.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text {
  padding: 0.4em 2.1em 0.4em 1em;
}

.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em;
}

input.ui-button {
  padding: 0.4em 1em;
}

.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px;
}

.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px;
}

.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary {
  left: 0.5em;
}

.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
  right: 0.5em;
}

.ui-buttonset {
  margin-right: 7px;
}

.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -0.3em;
}

input.ui-button::-moz-focus-inner, button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span, .ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

.ui-dialog {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-se {
  width: 12px;
  height: 12px;
  right: -5px;
  bottom: -5px;
  background-position: 16px 16px;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle {
  touch-action: none;
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: none;
}

.ui-menu .ui-menu {
  position: absolute;
}

.ui-menu .ui-menu-item {
  position: relative;
  margin: 0;
  padding: 3px 1em 3px 0.4em;
  cursor: pointer;
  min-height: 0;
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
  margin: -1px;
}

.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item {
  padding-left: 2em;
}

.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.2em;
  margin: auto 0;
}

.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25);
  opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-selectable {
  touch-action: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-button {
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.ui-selectmenu-button span.ui-icon {
  right: 0.5em;
  left: auto;
  margin-top: -8px;
  position: absolute;
  top: 50%;
}

.ui-selectmenu-button span.ui-selectmenu-text {
  text-align: left;
  padding: 0.4em 2.1em 0.4em 1em;
  display: block;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

.ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-sortable-handle {
  touch-action: none;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 22px;
}

.ui-spinner-button {
  width: 16px;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

.ui-spinner a.ui-spinner-button {
  border-top: none;
  border-bottom: none;
  border-right: none;
}

.ui-spinner .ui-icon {
  position: absolute;
  margin-top: -8px;
  top: 50%;
  left: 0;
}

.ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

.ui-spinner .ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-tabs {
  position: relative;
  padding: 0.2em;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  box-shadow: 0 0 5px #aaa;
}

body .ui-tooltip {
  border-width: 2px;
}

.ui-widget {
  font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif;
  font-size: 1.1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
  font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif;
  font-size: 1em;
}

.ui-widget-content {
  border: 1px solid #ddd;
  background: #eee url("images/ui-bg_highlight-soft_100_eeeeee_1x100.png") 50% top repeat-x;
  color: #333;
}

.ui-widget-content a {
  color: #333;
}

.ui-widget-header {
  border: 1px solid #e78f08;
  background: #f6a828 url("images/ui-bg_gloss-wave_35_f6a828_500x100.png") 50% 50% repeat-x;
  color: #fff;
  font-weight: bold;
}

.ui-widget-header a {
  color: #fff;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  border: 1px solid #ccc;
  background: #f6f6f6 url("images/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x;
  font-weight: bold;
  color: #1c94c4;
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
  color: #1c94c4;
  text-decoration: none;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
  border: 1px solid #fbcb09;
  background: #fdf5ce url("images/ui-bg_glass_100_fdf5ce_1x400.png") 50% 50% repeat-x;
  font-weight: bold;
  color: #c77405;
}

.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited, .ui-state-focus a, .ui-state-focus a:hover, .ui-state-focus a:link, .ui-state-focus a:visited {
  color: #c77405;
  text-decoration: none;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
  border: 1px solid #fbd850;
  background: #fff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
  font-weight: bold;
  color: #eb8f00;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
  color: #eb8f00;
  text-decoration: none;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #fed22f;
  background: #ffe45c url("images/ui-bg_highlight-soft_75_ffe45c_1x100.png") 50% top repeat-x;
  color: #363636;
}

.ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
  color: #363636;
}

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #b81900 url("images/ui-bg_diagonals-thick_18_b81900_40x40.png") 50% 50% repeat;
  color: #fff;
}

.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a {
  color: #fff;
}

.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text {
  color: #fff;
}

.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: Alpha(Opacity=70);
  font-weight: normal;
}

.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35);
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
}

.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon, .ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_222222_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png");
}

.ui-state-default .ui-icon {
  background-image: url("images/ui-icons_ef8c08_256x240.png");
}

.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {
  background-image: url("images/ui-icons_ef8c08_256x240.png");
}

.ui-state-active .ui-icon {
  background-image: url("images/ui-icons_ef8c08_256x240.png");
}

.ui-state-highlight .ui-icon {
  background-image: url("images/ui-icons_228ef1_256x240.png");
}

.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_ffd27a_256x240.png");
}

.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-carat-1-n {
  background-position: 0 0;
}

.ui-icon-carat-1-ne {
  background-position: -16px 0;
}

.ui-icon-carat-1-e {
  background-position: -32px 0;
}

.ui-icon-carat-1-se {
  background-position: -48px 0;
}

.ui-icon-carat-1-s {
  background-position: -64px 0;
}

.ui-icon-carat-1-sw {
  background-position: -80px 0;
}

.ui-icon-carat-1-w {
  background-position: -96px 0;
}

.ui-icon-carat-1-nw {
  background-position: -112px 0;
}

.ui-icon-carat-2-n-s {
  background-position: -128px 0;
}

.ui-icon-carat-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -64px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -64px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 0 -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
  border-top-left-radius: 4px;
}

.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
  border-top-right-radius: 4px;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
  border-bottom-left-radius: 4px;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
  border-bottom-right-radius: 4px;
}

.ui-widget-overlay {
  background: #666 url("images/ui-bg_diagonals-thick_20_666666_40x40.png") 50% 50% repeat;
  opacity: 0.5;
  filter: Alpha(Opacity=50);
}

.ui-widget-shadow {
  margin: -5px 0 0 -5px;
  padding: 5px;
  background: #000 url("images/ui-bg_flat_10_000000_40x100.png") 50% 50% repeat-x;
  opacity: 0.2;
  filter: Alpha(Opacity=20);
  border-radius: 5px;
}

/* ToolTip */
span.tooltip {
  color: #aaa;
}

span.tooltip:not(.tooltipster):before,
span.tooltip:not(.tooltipster):after {
  cursor: pointer;
}

.tooltipster-default {
  border-radius: 5px;
  border: 2px solid #000;
  background: #4c4c4c;
  color: #fff;
}

/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  padding: 8px 10px;
  overflow: hidden;
}

/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
  /* border-color: ... !important; */
}

/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
  cursor: help;
  margin-left: 4px;
}

/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
  padding: 0;
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999999;
  pointer-events: none;
  width: auto;
  overflow: visible;
}

.tooltipster-base .tooltipster-content {
  overflow: hidden;
}

/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.tooltipster-arrow span, .tooltipster-arrow-border {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
}

.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-top: 8px solid;
  bottom: -7px;
}

.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-top: 9px solid;
  bottom: -7px;
}

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-bottom: 8px solid;
  top: -7px;
}

.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-bottom: 9px solid;
  top: -7px;
}

.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
  left: 0;
  right: 0;
  margin: 0 auto;
}

.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
  left: 6px;
}

.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  left: 5px;
}

.tooltipster-arrow-top-right span, .tooltipster-arrow-bottom-right span {
  right: 6px;
}

.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
  right: 5px;
}

.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 8px solid;
  top: 50%;
  margin-top: -7px;
  right: -7px;
}

.tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-left: 9px solid;
  margin-top: -8px;
}

.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-right: 8px solid;
  top: 50%;
  margin-top: -7px;
  left: -7px;
}

.tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-right: 9px solid;
  margin-top: -8px;
}

/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */
.tooltipster-fade {
  opacity: 0;
  transition-property: opacity;
}

.tooltipster-fade-show {
  opacity: 1;
}

.tooltipster-grow {
  transform: scale(0, 0);
  transition-property: transform;
  -webkit-backface-visibility: hidden;
}

.tooltipster-grow-show {
  transform: scale(1, 1);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-swing {
  opacity: 0;
  transform: rotateZ(4deg);
  transition-property: transform;
}

.tooltipster-swing-show {
  opacity: 1;
  transform: rotateZ(0deg);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
  top: 0;
  transition-property: top;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-fall.tooltipster-dying {
  transition-property: all;
  top: 0px !important;
  opacity: 0;
}

.tooltipster-slide {
  left: -40px;
  transition-property: left;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-slide.tooltipster-dying {
  transition-property: all;
  left: 0px !important;
  opacity: 0;
}

/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
  opacity: 0.5;
  transform: scale(1.1, 1.1);
}

/* End of Tooltip */
/*! Tablesaw - v1.0.3 - 2015-01-27
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2015 Filament Group; Licensed MIT */
table.tablesaw {
  empty-cells: show;
  max-width: 100%;
  width: 100%;
}

.tablesaw {
  border-collapse: collapse;
  width: 100%;
}

/* Structure */
.tablesaw {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 0;
}

.tablesaw th,
.tablesaw td {
  box-sizing: border-box;
  padding: 0.5em 0.7em;
  font-size: 14px;
}

.tablesaw thead tr:first-child th {
  padding-top: 0.9em;
  padding-bottom: 0.7em;
}

.tablesaw-enhanced .tablesaw-bar .btn {
  border: 1px solid #ccc;
  background: none;
  background-color: #fafafa;
  box-shadow: 0 1px 0 rgb(255, 255, 255);
  color: #4a4a4a;
  clear: both;
  cursor: pointer;
  display: block;
  font: bold 20px/1 sans-serif;
  margin: 0;
  padding: 0.5em 0.85em 0.4em 0.85em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  text-shadow: 0 1px 0 #fff;
  width: 100%;
  /* Theming */
  background-image: linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(170, 170, 170, 0.1) 55%, rgba(120, 120, 120, 0.15) 100%);
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  border-radius: 0.25em;
}

.tablesaw-enhanced .tablesaw-bar a.btn {
  color: #1c95d4;
}

.tablesaw-enhanced .tablesaw-bar .btn:hover {
  text-decoration: none;
}

/* Default radio/checkbox styling horizonal controlgroups. */
.tablesaw-enhanced .tablesaw-bar .btn:active {
  background-color: #ddd;
  background-image: linear-gradient(top, rgba(100, 100, 100, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
}

.tablesaw-enhanced .tablesaw-bar .btn:hover,
.tablesaw-enhanced .tablesaw-bar .btn:focus {
  color: #208de3;
  background-color: #fff;
  outline: none;
}

.tablesaw-bar .btn:focus {
  box-shadow: 0 0 0.35em #4faeef !important;
}

.ie-lte8 .tablesaw-bar .btn:hover,
.ie-lte8 .tablesaw-bar .btn:focus {
  color: #208de3;
  background-color: #fff;
  border-color: #aaa;
  outline: none;
}

.tablesaw-bar .btn-select select {
  background: none;
  border: none;
  display: block;
  position: absolute;
  font-weight: inherit;
  left: 0;
  top: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  min-height: 1em;
}

.tablesaw-bar .btn-select select {
  opacity: 0;
  filter: alpha(opacity=0);
  display: inline-block;
  color: transparent;
}

.tablesaw-bar .btn select option {
  background: #fff;
  color: #000;
  font-family: sans-serif;
}

.tablesaw-enhanced .tablesaw-bar .btn.btn-select {
  color: #4d4d4d;
  padding-right: 2.5em;
  min-width: 7.25em;
  text-align: left;
  text-indent: 0;
}

.ie-lte8 .tablesaw-bar .btn-select {
  min-width: 6.1em;
}

.tablesaw-bar .btn.btn-small,
.tablesaw-bar .btn.btn-micro {
  display: inline-block;
  width: auto;
  height: auto;
  position: relative;
  top: 0;
}

.tablesaw-bar .btn.btn-small {
  font-size: 1.0625em;
  line-height: 19px;
  padding: 0.3em 1em 0.3em 1em;
}

.tablesaw-bar .btn.btn-micro {
  font-size: 0.8125em;
  padding: 0.4em 0.7em 0.25em 0.7em;
}

.tablesaw-enhanced .tablesaw-bar .btn-select {
  text-align: left;
}

.tablesaw-bar .btn-select:after {
  background: #e5e5e5;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 2px rgba(255, 255, 255, 0.25);
  content: " ";
  display: block;
  position: absolute;
}

.tablesaw-bar .btn-select.btn-small,
.tablesaw-bar .btn-select.btn-micro {
  padding-right: 1.5em;
}

.tablesaw-bar .btn-select:after {
  background: none;
  background-repeat: no-repeat;
  background-position: 0.25em 0.45em;
  content: "▼";
  font-size: 0.55em;
  padding-top: 1.2em;
  padding-left: 1em;
  left: auto;
  right: 0;
  margin: 0;
  top: 0;
  bottom: 0;
  width: 1.8em;
}

.tablesaw-bar .btn-select.btn-small:after,
.tablesaw-bar .btn-select.btn-micro:after {
  width: 1.2em;
  font-size: 0.5em;
  padding-top: 1em;
  padding-right: 0.5em;
  line-height: 1.65;
  background: none;
  box-shadow: none;
  border-left-width: 0;
}

/* Column navigation buttons for swipe and columntoggle tables */
.tablesaw-advance .btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  text-shadow: 0 1px 0 #fff;
  border-radius: 0.25em;
}

.tablesaw-advance .btn.btn-micro {
  font-size: 0.8125em;
  padding: 0.3em 0.7em 0.25em 0.7em;
}

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn {
  display: inline-block;
  overflow: hidden;
  width: 1.8em;
  height: 1.8em;
  background-position: 50% 50%;
  margin-left: 0.5em;
  position: relative;
}

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.left:before,
.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.right:before,
.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.down:before,
.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.up:before {
  content: " ";
  overflow: hidden;
  width: 0;
  height: 0;
  position: absolute;
}

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.down:before {
  left: 0.5em;
  top: 0.65em;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #808080;
}

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.up:before {
  left: 0.5em;
  top: 0.65em;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #808080;
}

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.left:before,
.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.right:before {
  top: 0.45em;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.left:before {
  left: 0.6em;
  border-right: 5px solid #808080;
}

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.right:before {
  left: 0.7em;
  border-left: 5px solid #808080;
}

.tablesaw-advance a.tablesaw-nav-btn.disabled {
  opacity: 0.25;
  filter: alpha(opacity=25);
  cursor: default;
  pointer-events: none;
}

/* Table Toolbar */
.tablesaw-bar {
  clear: both;
  font-family: sans-serif;
}

.tablesaw-toolbar {
  font-size: 0.875em;
  float: left;
}

.tablesaw-toolbar label {
  padding: 0.5em 0;
  clear: both;
  display: block;
  color: #888;
  margin-right: 0.5em;
  text-transform: uppercase;
}

.tablesaw-bar .btn,
.tablesaw-enhanced .tablesaw-bar .btn {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.tablesaw-bar .btn-select,
.tablesaw-enhanced .tablesaw-bar .btn-select {
  margin-bottom: 0;
}

.tablesaw-bar .tablesaw-toolbar .btn {
  margin-left: 0.4em;
  margin-top: 0;
  text-transform: uppercase;
  border: none;
  box-shadow: none;
  background: transparent;
  font-family: sans-serif;
  font-size: 1em;
  padding-left: 0.3em;
}

.tablesaw-bar .tablesaw-toolbar .btn-select {
  min-width: 0;
}

.tablesaw-bar .tablesaw-toolbar .btn-select:after {
  padding-top: 0.9em;
}

.tablesaw-bar .tablesaw-toolbar select {
  color: #888;
  text-transform: none;
  background: transparent;
}

.tablesaw-toolbar ~ table {
  clear: both;
}

.tablesaw-toolbar .a11y-sm {
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

@media (min-width: 24em) {
  .tablesaw-toolbar .a11y-sm {
    clip: none;
    height: auto;
    width: auto;
    position: static;
    overflow: visible;
  }
}
table.tablesaw tbody th {
  font-weight: bold;
}

table.tablesaw thead th,
table.tablesaw thead td {
  color: #fff;
}

.tablesaw th,
.tablesaw td {
  line-height: 1em;
  text-align: left;
  vertical-align: middle;
}

.tablesaw td,
.tablesaw tbody th {
  vertical-align: middle;
}

.tablesaw td .btn,
.tablesaw tbody th .btn {
  margin: 0;
}

.tablesaw thead {
  background: #333;
}

.tablesaw thead th {
  font-weight: 100;
  color: #777;
  text-align: left;
}

.tablesaw thead tr:first-child th {
  font-weight: normal;
  font-family: sans-serif;
}

/* Table rows have a gray bottom stroke by default */
/*
.tablesaw tbody tr {
  border-bottom: 1px solid #dfdfdf;
}
*/
.tablesaw caption {
  text-align: left;
  margin-bottom: 0;
  opacity: 0.5;
  filter: alpha(opacity=50);
  line-height: 2.4;
}

@media (min-width: 25em) {
  .tablesaw caption {
    margin-bottom: 0.6em;
    line-height: 1.2;
  }
}
/* Stack */
.tablesaw-cell-label-top {
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: normal;
}

.tablesaw-cell-label {
  font-size: 0.65em;
  text-transform: uppercase;
  color: #888;
  font-family: sans-serif;
}

@media (min-width: 40em) {
  .tablesaw td {
    line-height: 2em;
  }
}
@media only all {
  .tablesaw-swipe .tablesaw-cell-persist {
    border-right: 1px solid #e4e1de;
  }
  .tablesaw-swipe .tablesaw-cell-persist {
    box-shadow: 3px 0 4px -1px #e4e1de;
  }
}
/* Table rows have a gray bottom stroke by default */
.tablesaw-stack tbody tr {
  border-bottom: 1px solid #dfdfdf;
}

.tablesaw-stack td .tablesaw-cell-label,
.tablesaw-stack th .tablesaw-cell-label {
  display: none;
}

/* Mobile first styles: Begin with the stacked presentation at narrow widths */
@media only all {
  /* Show the table cells as a block level element */
  /*
  .tablesaw-stack td,
  .tablesaw-stack th {
    text-align: left;
    display: block;
  }*/
  .tablesaw-stack > tbody > tr > td,
  .tablesaw-stack > thead > tr > th {
    text-align: left;
    display: block;
  }
  .tablesaw-stack tr {
    clear: both;
    display: table-row;
  }
  /* Make the label elements a percentage width */
  .tablesaw-stack td .tablesaw-cell-label,
  .tablesaw-stack th .tablesaw-cell-label {
    display: block;
    padding: 0 0.6em 0 0;
    width: 30%;
    display: inline-block;
  }
  /* For grouped headers, have a different style to visually separate the levels by classing the first label in each col group */
  .tablesaw-stack th .tablesaw-cell-label-top,
  .tablesaw-stack td .tablesaw-cell-label-top {
    display: block;
    padding: 0.4em 0;
    margin: 0.4em 0;
  }
  .tablesaw-cell-label {
    display: block;
  }
  /* Avoid double strokes when stacked */
  .tablesaw-stack tbody th.group {
    margin-top: -1px;
  }
  /* Avoid double strokes when stacked */
  .tablesaw-stack th.group b.tablesaw-cell-label {
    display: none !important;
  }
}
@media (max-width: 39.9375em) {
  /*.tablesaw-stack thead td,
  .tablesaw-stack thead th {
    display: none;
  }

  .tablesaw-stack tbody td,
  .tablesaw-stack tbody th {
    clear: left;
    float: left;
    width: 100%;
  }
  */
  .tablesaw-stack > thead > tr > td,
  .tablesaw-stack > thead > tr > th {
    display: none;
  }
  .tablesaw-stack > tbody > tr > td,
  .tablesaw-stack > tbody > tr > th {
    clear: left;
    float: left;
    width: 100%;
  }
  .tablesaw-cell-label {
    vertical-align: top;
  }
  .tablesaw-cell-content {
    max-width: 67%;
    display: inline-block;
  }
  .tablesaw-stack td:empty,
  .tablesaw-stack th:empty {
    display: none;
  }
}
/* Media query to show as a standard table at 560px (35em x 16px) or wider */
@media (min-width: 40em) {
  .tablesaw-stack tr {
    display: table-row;
  }
  /* Show the table header rows */
  /*.tablesaw-stack td,
  .tablesaw-stack th,
  .tablesaw-stack thead td,
  .tablesaw-stack thead th {
    display: table-cell;
    margin: 0;
  }*/
  .tablesaw-stack > tbody > tr > td,
  .tablesaw-stack > thead > tr > th {
    display: table-cell;
    margin: 0;
  }
  /* Hide the labels in each cell */
  .tablesaw-stack td .tablesaw-cell-label,
  .tablesaw-stack th .tablesaw-cell-label {
    display: none !important;
  }
}
.tablesaw-fix-persist {
  table-layout: fixed;
}

@media only all {
  /* Unchecked manually: Always hide */
  .tablesaw-swipe th.tablesaw-cell-hidden,
  .tablesaw-swipe td.tablesaw-cell-hidden {
    display: none;
  }
}
.btn.tablesaw-columntoggle-btn span {
  text-indent: -9999px;
  display: inline-block;
}

.tablesaw-columntoggle-btnwrap {
  position: relative;
  /* for dialog positioning */
}

.tablesaw-columntoggle-btnwrap .dialog-content {
  padding: 0.5em;
}

.tablesaw-columntoggle tbody td {
  line-height: 1.5;
}

/* Remove top/bottom margins around the fieldcontain on check list */
.tablesaw-columntoggle-popup {
  display: none;
}

.tablesaw-columntoggle-btnwrap.visible .tablesaw-columntoggle-popup {
  display: block;
  position: absolute;
  top: 2em;
  right: 0;
  background-color: #fff;
  padding: 0.5em 0.8em;
  border: 1px solid #ccc;
  box-shadow: 0 1px 2px #ccc;
  border-radius: 0.2em;
  z-index: 1;
}

.tablesaw-columntoggle-popup fieldset {
  margin: 0;
}

/* Hide all prioritized columns by default */
@media only all {
  .tablesaw-columntoggle th.tablesaw-priority-6,
  .tablesaw-columntoggle td.tablesaw-priority-6,
  .tablesaw-columntoggle th.tablesaw-priority-5,
  .tablesaw-columntoggle td.tablesaw-priority-5,
  .tablesaw-columntoggle th.tablesaw-priority-4,
  .tablesaw-columntoggle td.tablesaw-priority-4,
  .tablesaw-columntoggle th.tablesaw-priority-3,
  .tablesaw-columntoggle td.tablesaw-priority-3,
  .tablesaw-columntoggle th.tablesaw-priority-2,
  .tablesaw-columntoggle td.tablesaw-priority-2,
  .tablesaw-columntoggle th.tablesaw-priority-1,
  .tablesaw-columntoggle td.tablesaw-priority-1 {
    display: none;
  }
}
.tablesaw-columntoggle-btnwrap .dialog-content {
  top: 0 !important;
  right: 1em;
  left: auto !important;
  width: 12em;
  max-width: 18em;
  margin: -0.5em auto 0;
}

.tablesaw-columntoggle-btnwrap .dialog-content:focus {
  outline-style: none;
}

/* Preset breakpoints if "" class added to table */
/* Show priority 1 at 320px (20em x 16px) */
@media (min-width: 20em) {
  .tablesaw-columntoggle th.tablesaw-priority-1,
  .tablesaw-columntoggle td.tablesaw-priority-1 {
    display: table-cell;
  }
}
/* Show priority 2 at 480px (30em x 16px) */
@media (min-width: 30em) {
  .tablesaw-columntoggle th.tablesaw-priority-2,
  .tablesaw-columntoggle td.tablesaw-priority-2 {
    display: table-cell;
  }
}
/* Show priority 3 at 640px (40em x 16px) */
@media (min-width: 40em) {
  .tablesaw-columntoggle th.tablesaw-priority-3,
  .tablesaw-columntoggle td.tablesaw-priority-3 {
    display: table-cell;
  }
  .tablesaw-columntoggle tbody td {
    line-height: 2;
  }
}
/* Show priority 4 at 800px (50em x 16px) */
@media (min-width: 50em) {
  .tablesaw-columntoggle th.tablesaw-priority-4,
  .tablesaw-columntoggle td.tablesaw-priority-4 {
    display: table-cell;
  }
}
/* Show priority 5 at 960px (60em x 16px) */
@media (min-width: 60em) {
  .tablesaw-columntoggle th.tablesaw-priority-5,
  .tablesaw-columntoggle td.tablesaw-priority-5 {
    display: table-cell;
  }
}
/* Show priority 6 at 1,120px (70em x 16px) */
@media (min-width: 70em) {
  .tablesaw-columntoggle th.tablesaw-priority-6,
  .tablesaw-columntoggle td.tablesaw-priority-6 {
    display: table-cell;
  }
}
@media only all {
  /* Unchecked manually: Always hide */
  .tablesaw-columntoggle th.tablesaw-cell-hidden,
  .tablesaw-columntoggle td.tablesaw-cell-hidden {
    display: none;
  }
  /* Checked manually: Always show */
  .tablesaw-columntoggle th.tablesaw-cell-visible,
  .tablesaw-columntoggle td.tablesaw-cell-visible {
    display: table-cell;
  }
}
.tablesaw-columntoggle-popup .btn-group > label {
  display: block;
  padding: 0.2em 0;
  white-space: nowrap;
}

.tablesaw-columntoggle-popup .btn-group > label input {
  margin-right: 0.8em;
}

.tablesaw-sortable,
.tablesaw-sortable thead,
.tablesaw-sortable thead tr,
.tablesaw-sortable thead tr th {
  position: relative;
}

.tablesaw-sortable thead tr th {
  padding-right: 1.6em;
  vertical-align: top;
}

.tablesaw-sortable th.tablesaw-sortable-head,
.tablesaw-sortable tr:first-child th.tablesaw-sortable-head {
  padding: 0;
}

.tablesaw-sortable th.tablesaw-sortable-head button {
  padding-top: 0.9em;
  padding-bottom: 0.7em;
  padding-left: 0.6em;
  padding-right: 1.6em;
}

.tablesaw-sortable .tablesaw-sortable-head button {
  min-width: 100%;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  font: inherit;
  text-transform: inherit;
  position: relative;
}

.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-ascending button:after,
.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-descending button:after {
  width: 7px;
  height: 10px;
  content: " ";
  position: absolute;
  right: 0.5em;
}

.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-ascending button:after {
  content: "â†‘";
}

.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-descending button:after {
  content: "â†“";
}

.tablesaw-sortable .not-applicable:after {
  content: "--";
  display: block;
}

.tablesaw-sortable .not-applicable span {
  display: none;
}

.tablesaw-advance {
  float: right;
}

.tablesaw-advance.minimap {
  margin-right: 0.4em;
}

.tablesaw-advance-dots {
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tablesaw-advance-dots li {
  display: table-cell;
  margin: 0;
  padding: 0.4em 0.2em;
}

.tablesaw-advance-dots li i {
  width: 0.25em;
  height: 0.25em;
  background: #555;
  border-radius: 100%;
  display: inline-block;
}

.tablesaw-advance-dots-hide {
  opacity: 0.25;
  filter: alpha(opacity=25);
  cursor: default;
  pointer-events: none;
}

/* End of Tablesaw */
/************************************************

MAGNIFIC POPUP

************************************************/
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #cccccc;
}

.mfp-preloader a:hover {
  color: white;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block !important;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 99%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #fff;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /* Fix jump with elements that have position:fixed */
  /**
  * Remove all paddings around the image on small screen
  */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    transform-origin: 0;
  }
  .mfp-arrow-right {
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/* FlexFit - Fit whole image within responsive container (ie. logos, product images) */
.flexFit {
  position: relative;
  padding: 0 0 65% 0; /* Adjust bottom for desired height */
  height: 0px;
  overflow: hidden;
}

.flexFit img,
.flexFill .img-wrap.fit img {
  position: absolute;
  max-width: 98%;
  max-height: 98%;
  height: auto;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* FlexFill - Fill responsive container with image (ie. banner image) */
.flexFill {
  position: relative;
  padding: 0 0 65% 0; /* Adjust bottom for desired height */
  height: 0px;
  overflow: hidden;
}

.flexFill .img-wrap {
  float: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.flexFill a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.flexFill img {
  max-width: none;
  display: none;
  float: none;
  position: relative;
}

.flexFill.processed img {
  display: block !important;
}

/* FlexFill2 - Fill responsive container with image (ie. banner image) */
.flexFill2 {
  position: relative;
  padding: 0 0 65% 0; /* Adjust bottom for desired height */
  height: 0px;
  overflow: hidden;
}

.flexFill2 a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.flexFill2 img {
  max-width: none;
  float: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

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

FORM BUILDER

************************************************/
.bt-item {
  display: none;
}

.hhFormBuilder .hhForm .hhFormRow {
  margin-bottom: 15px;
}

.hhFormBuilder .hhForm .hhFormRow label {
  display: inline-block;
  margin-bottom: 3px;
  font-weight: 600;
}

.hhFormBuilder .hhForm .hhFormRow input[type=text],
.hhFormBuilder .hhForm .hhFormRow input[type=password],
.hhFormBuilder .hhForm .hhFormRow select,
#page-builder .hhFormBuilder .hhForm .hhFormRow select,
.hhFormBuilder .hhForm .hhFormRow textarea {
  border: 1px solid #aaa;
  font-size: 16px;
  font-family: inherit;
  background-color: #fff;
  padding: 7px;
  width: 100%;
  border-radius: 2px;
}

#page-builder .hhFormBuilder .hhForm .hhFormRow select,
.hhFormBuilder .hhForm .hhFormRow select {
  background: url("/pub/design/select-dropdown-caret.png") no-repeat right 11px center;
  background-size: 13px 7px;
  cursor: pointer;
  padding: 5px 32px 5px 8px;
  -o-appearance: none;
  appearance: none;
}

#page-builder select::-ms-expand,
.hhFormBuilder .hhForm .hhFormRow select::-ms-expand {
  display: none;
}

.hhFormBuilder input.hhFormButton {
  display: inline-block;
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 3px;
  background: #ddd;
  transition: all 0.3s;
}

.hhFormBuilder input.hhFormButton:hover {
  background: #ccc;
}

/**
 * FILE: jquery.ptTileSelect.css
 * 	Default style for the timeselect container.
 * 
 *  LAST UPDATED:
 * 
 * 		- $Date: 2009/04/12 20:23:02 $
 * 		- $Author: paulinho4u $
 * 		- $Revision: 1.1 $
 */
#ptTimeSelectCntr {
  width: 250px;
  font-size: 0.9em;
  position: absolute;
  z-index: 10;
  display: none;
}

#ptTimeSelectCntr .ui-widget {
  padding: 0.2em;
}

#ptTimeSelectCntr .ui-widget-header {
  padding: 0.2em;
}

#ptTimeSelectCntr #ptTimeSelectUserTime {
  font-size: 100%;
  padding: 0.2em;
  padding-left: 1em;
  text-align: center;
}

#ptTimeSelectCntr #ptTimeSelectCloseCntr {
  display: block;
  padding: 0.2em;
}

#ptTimeSelectCntr #ptTimeSelectCloseCntr a {
  display: block;
  padding: 0.2em;
}

#ptTimeSelectCntr .ui-widget-content {
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  padding: 0.2em;
}

#ptTimeSelectCntr .ui-widget.ui-widget-content {
  margin-top: 0;
}

#ptTimeSelectCntr .ptTimeSelectLeftPane.ui-widget-content {
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-right-width: 2px;
}

#ptTimeSelectCntr .ptTimeSelectRightPane.ui-widget-content {
  border: none;
}

#ptTimeSelectCntr .ptTimeSelectHrCntr a,
#ptTimeSelectCntr .ptTimeSelectMinCntr a {
  display: block;
  float: left;
  padding: 0.2em;
  width: 38%;
  margin: 1px;
  text-align: center;
  text-decoration: none;
}

#ptTimeSelectCntr .ptTimeSelectHrAmPmCntr a {
  text-align: center;
  margin: 1px;
}

#ptTimeSelectCntr .ptTimeSelectTimeLabelsCntr {
  font-weight: bold;
  font-size: 0.9em;
}

#ptTimeSelectCntr #ptTimeSelectSetButton {
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}

#ptTimeSelectCntr #ptTimeSelectSetButton a {
  display: block;
  padding: 0.2em;
  width: 30%;
  text-align: center;
  float: right;
}

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

BASE CLASSES FOR CUSTOMIZING POPUPS

************************************************/
.mfp-mobile-popup .mfp-iframe-holder .mfp-content {
  max-width: 500px;
}

.mfp-mobile-popup .mfp-iframe-scaler {
  padding-top: 105%;
}

body.mfp-popup-no-padding,
body.form-body.mfp-popup-no-padding {
  padding: 0;
}

.mfp-multiple-iframe.mfp-iframe-0 button.mfp-close {
  display: none;
}

.mfp-multiple-iframe.mfp-iframe-1 button.mfp-close {
  display: none;
}

.mfp-multiple-iframe.mfp-iframe-1 .mfp-iframe-holder .mfp-content {
  width: 90%;
}

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

DEFAULT PAGING

************************************************/
.pagination {
  text-align: center;
  color: #666;
  line-height: 37px;
}
.pagination.row {
  margin: 30px 0;
}
.pagination .total-items {
  float: left;
}
.pagination .paging-wrapper {
  float: right;
}
.pagination .paging-wrapper > * {
  display: inline-block;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  line-height: 25px;
  height: 37px;
  color: #666;
}
.pagination .paging-wrapper .page-step, .pagination .paging-wrapper input {
  vertical-align: top;
  transition: 0.3s all;
  border: 1px solid #ddd;
}
.pagination .paging-wrapper .page-step {
  text-align: center;
  font-size: 14px;
  margin: 0;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
  color: #5ab7b2;
}
.pagination .paging-wrapper .page-step:not(.in-active):hover {
  background: #f6f6f6;
  color: #5ab7b2;
}
.pagination .paging-wrapper .page-step.in-active {
  color: #ccc;
  cursor: default;
}
.pagination .paging-wrapper .page-step.previous {
  border-radius: 3px 0 0 3px;
  border-right: 0;
}
.pagination .paging-wrapper .page-step.next {
  border-radius: 0 3px 3px 0;
  border-left: 0;
}
.pagination .paging-wrapper input {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  font-size: 16px;
  margin: 0 -5px;
  width: 40px;
  padding-left: 0;
  padding-right: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}
.pagination .paging-wrapper input[type=number]::-webkit-outer-spin-button,
.pagination .paging-wrapper input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pagination .paging-wrapper input[type=number] {
  -moz-appearance: textfield;
}
.pagination .paging-wrapper .total-pages {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 0 5px;
}

.pagination-bottom {
  padding-top: 40px;
}

/* END OF DEFAULT PAGING */
#smooth-container {
  position: relative;
}

.inline-popup,
.form-popup,
.html-popup {
  background: #fff;
  margin: 0 auto;
  position: relative;
}

.close-button-above-popup.mfp-close-btn-in .mfp-close {
  top: -44px;
  color: #fff;
}

@media (max-width: 640px) {
  .mobile-h-70 .popup-inner-wrapper .embed-responsive {
    padding-bottom: 70% !important;
  }
  .mobile-h-80 .popup-inner-wrapper .embed-responsive {
    padding-bottom: 80% !important;
  }
  .mobile-h-90 .popup-inner-wrapper .embed-responsive {
    padding-bottom: 90% !important;
  }
  .mobile-h-100 .popup-inner-wrapper .embed-responsive {
    padding-bottom: 100% !important;
  }
  .mobile-h-110 .popup-inner-wrapper .embed-responsive {
    padding-bottom: 110% !important;
  }
  .mobile-h-120 .popup-inner-wrapper .embed-responsive {
    padding-bottom: 120% !important;
  }
  .mobile-h-130 .popup-inner-wrapper .embed-responsive {
    padding-bottom: 130% !important;
  }
  .mobile-h-140 .popup-inner-wrapper .embed-responsive {
    padding-bottom: 140% !important;
  }
  .mobile-h-150 .popup-inner-wrapper .embed-responsive {
    padding-bottom: 150% !important;
  }
}
/***************************/
/* SUCCESS/ERROR NOTIFICATIONS */
/***************************/
.hhError,
.page-builder-error {
  z-index: 999;
  background: #cf000f;
  color: #fff;
  left: 0;
  padding: 10px;
  position: fixed;
  text-align: center;
  bottom: 100%;
  width: 100%;
}

.hhError.hhSuccessful,
.page-builder-error.page-builder-successful {
  background: #09b736;
}

/***************************/
/* END OF SUCCESS/ERROR NOTIFICATIONS */
/***************************/
.search-results {
  position: absolute;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  background: #fff;
  z-index: 999;
  left: 0;
  top: 110%;
}
.search-results ul {
  padding: 0;
  list-style: none;
}
.search-results li {
  line-height: 1;
}
.search-results li a {
  display: block;
  padding: 6px 15px;
  text-decoration: none;
  color: #686162;
}
.search-results li a:hover {
  text-decoration: none;
  background: #f5f7f7;
  color: #402020;
}

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

DEFAULT FORM STYLING

************************************************/
/* Custom Checkbox & Radio Inputs */
.hcontent .check-radio-list,
.check-radio-list {
  padding-left: 0;
}
.hcontent .check-radio-list li,
.check-radio-list li {
  list-style: none;
}

.check-radio-wrapper {
  position: relative;
  margin: 0 3px;
  display: inline-block;
}
.check-radio-wrapper label {
  cursor: pointer;
}

.check-radio-wrapper input[type=checkbox]:disabled:not(:checked) + span,
.check-radio-wrapper input[type=checkbox]:disabled:checked + span,
.check-radio-wrapper input[type=radio]:disabled:not(:checked) + span,
.check-radio-wrapper input[type=radio]:disabled:checked + span {
  opacity: 0.6;
  cursor: default;
}

.check-radio-wrapper input[type=checkbox]:not(:checked),
.check-radio-wrapper input[type=checkbox]:checked,
.check-radio-wrapper input[type=radio]:not(:checked),
.check-radio-wrapper input[type=radio]:checked {
  position: absolute;
  top: 10px;
  left: 5px;
  z-index: -1;
  width: auto !important;
  opacity: 0;
  visibility: hidden;
  margin: 0;
}

.check-radio-wrapper span {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  min-height: 22px;
  margin-bottom: 5px;
  line-height: 1.2;
}

.check-radio-wrapper input[type=checkbox] + span:before,
.check-radio-wrapper input[type=radio] + span:before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 22px;
  height: 22px;
  margin-right: 5px;
  line-height: 18px;
  z-index: 1;
  background: #fff;
  border: 1px solid #d0b8b5;
}

.check-radio-wrapper input[type=checkbox] + span:before {
  border-radius: 2px;
  font-family: "FontAwesome";
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  text-indent: 0;
}

.check-radio-wrapper input[type=radio] + span:before {
  border-radius: 50%;
}

.check-radio-wrapper input[type=checkbox]:checked + span:before {
  background: #5ab7b2;
  border-color: #5ab7b2;
  content: "\f00c";
  color: #fff;
}

.check-radio-wrapper input[type=radio]:checked + span:before {
  border-color: #5ab7b2;
}

.check-radio-wrapper input[type=radio]:checked + span:after {
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 5px;
  content: "";
  width: 12px;
  height: 12px;
  background: #5ab7b2;
  z-index: 2;
  border-radius: 50%;
}

/* End of Custom Checkbox & Radio Inputs */
/* END OF DEFAULT FORM STYLING *************************/
/* **********************************************
**** Product details styling started here *******
**************************************************/
#wrapper_resilient_flooring_product_detai .product-order-button-wrapper a.button.button-sm:last-of-type {
  float: none;
}

.product-details-wrapper {
  padding: 50px 0 80px;
  border-bottom: 1px solid #eee5e4;
}

.back-result {
  display: inline-block;
  float: left;
}

.back-result a {
  font-size: 14px;
  color: #686162;
  transition: all 0.3s;
}

.back-result a:hover {
  color: #5ab7b2;
}

.like-share-wrapper {
  display: inline-block;
  float: right;
}

.like-share-wrapper .add-to-list, .like-share-wrapper .share {
  display: inline-block;
  font-size: 14px;
  margin-left: 25px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.like-share-wrapper .add-to-list .action-list-symbol {
  display: inline-block;
}
.like-share-wrapper .add-to-list .action-list-text {
  display: inline-block;
}

#wrapper-sharethisfloor .close-link {
  position: relative;
}
#wrapper-sharethisfloor .close-link a {
  position: absolute;
  right: 5px;
  top: 2px;
  font-size: 16px;
}
#wrapper-sharethisfloor p {
  font-size: 90%;
}
#wrapper-sharethisfloor .button-actions {
  margin-bottom: 10px;
  text-align: center;
}
#wrapper-sharethisfloor .button-actions a {
  display: inline-block;
  width: 45%;
  border: 2px solid #5ab7b2;
  border-radius: 5px;
}
#wrapper-sharethisfloor .button-actions a .on {
  color: #fff;
  background-color: #5ab7b2;
}
#wrapper-sharethisfloor .shareable-hide-show span {
  display: block;
  padding: 10px 12px;
  font-size: 90%;
  text-align: center;
  margin: 10px 5px;
  border: 1px inset #ccc;
  border-radius: 2px;
  word-wrap: break-word;
  word-break: break-all;
  background-color: #efefef;
  line-height: 1.5;
}

#ShareFloor a {
  color: #686162;
  font-size: 14px;
}

.like-share-wrapper .add-to-list:hover, .like-share-wrapper .share:hover, #ShareFloor a:hover {
  color: #5ab7b2;
}

.like-share-wrapper .add-to-list i, .like-share-wrapper .share i {
  margin-right: 5px;
}

.like-share-wrapper .share .share-icons-wrapper {
  opacity: 0;
  visibility: hidden;
  top: 100%;
  width: 248px;
  right: 0;
  background: #ffffff;
  padding: 10px;
  position: absolute;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  border: 1px solid #eee5e4;
  text-align: center;
}

.like-share-wrapper .share .share-icons-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url("/Pub/design/icon-arrow.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 22px;
  width: 22px;
  height: 12px;
  position: absolute;
  left: auto;
  right: 10px;
  top: -11px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
}

.like-share-wrapper .share .share-icons-wrapper a {
  padding: 5px;
  display: inline-block;
  font-size: 20px;
  width: 34px;
}

.like-share-wrapper .share:hover .share-icons-wrapper {
  top: 150%;
  opacity: 1;
  visibility: visible;
}

.product-slider-wrapper {
  margin-top: 30px;
}

.product-slider-wrapper .main-slides {
  border: 1px solid #eee5e4;
}

.product-slider-wrapper .main-slides .flexFill {
  padding: 0 0 66% 0;
}

.product-slider-wrapper .main-slides .slick-arrow {
  position: absolute;
  bottom: -95px;
  font-size: 0;
  background: transparent;
  border: none;
  padding: 30px;
  background-repeat: no-repeat;
  background-size: 30px auto;
  -webkit-background-size: 30px auto;
  -moz-background-size: 30px auto;
  z-index: 1;
  cursor: pointer;
}

.product-slider-wrapper .main-slides .slick-arrow.slick-next {
  background-image: url(/Pub/design/arrow-next.png);
  background-position: right center;
  right: 0;
}

.product-slider-wrapper .main-slides .slick-arrow.slick-prev {
  background-image: url(/Pub/design/arrow-prev.png);
  background-position: left center;
  left: 0;
}

.product-slider-wrapper .main-slides .zoom-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 99;
}
.product-slider-wrapper .main-slides .zoom-icon a {
  display: inline-block;
  font-size: 28px;
  padding: 12px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
.product-slider-wrapper .main-slides .zoom-icon a:hover {
  background: rgba(0, 0, 0, 0.8);
}

.product-slider-wrapper .thumb-slides {
  padding: 20px 40px;
}

.product-slider-wrapper .thumb-slides .thumb-item.slick-current {
  border: 1px solid #701c1a;
}

.product-slider-wrapper .thumb-slides .thumb-item {
  margin: 0 10px;
  padding: 4px;
  border: 1px solid #eee5e4;
  cursor: pointer;
}

/* **************************
**** Product details *******
*******************************/
.product-inner-detail {
  margin-top: 30px;
  padding: 20px 0 0 30px;
}

.product-name-wrapper span {
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 5px;
}

.product-name-wrapper h2 {
  padding: 0 0 10px 0;
}

.product-description p a {
  color: #701c1a;
  text-decoration: underline;
  margin-left: 8px;
}

.product-description p a:hover {
  color: #701c1a;
}

.product-description p {
  font-size: 16px;
}

.product-price {
  margin-top: 35px;
}

.product-price span {
  font-size: 28px;
  color: #402020;
}

.product-price span sub {
  font-size: 16px;
  text-transform: uppercase;
}

.product-price p {
  font-size: 13px;
  font-style: italic;
  display: inline-block;
  margin-left: 10px;
}

.product-order-button-wrapper {
  margin-top: 5px;
}

.product-order-button-wrapper a.button.button-sm {
  padding: 24px 30px;
  text-align: center;
  float: left;
  width: 218px;
  margin-right: 14px;
}
.product-order-button-wrapper a.button.button-sm:last-of-type {
  float: right;
  margin-right: 0;
}

.hardwood-wrapper {
  display: inline-block;
  width: 100%;
  margin: 25px 0 0 0;
}

.hardwood-wrapper h4 {
  border-bottom: 1px solid #eee5e4;
  padding-bottom: 15px;
}

.hardwood-wrapper .hardwood-body {
  padding: 24px 18px;
  border-bottom: 1px solid #eee5e4;
}
.hardwood-wrapper .hardwood-body .hardwood-body-header {
  cursor: pointer;
}

.hardwood-wrapper .hardwood-body .hardwood-body-header span {
  font-size: 18px;
}

.hardwood-wrapper .hardwood-body .hardwood-body-header a {
  color: #842d2c;
  text-decoration: underline;
  font-size: 15px;
  float: right;
}

.hardwood-wrapper .hardwood-body .hardwood-body-header a:hover {
  color: #701c1a;
}

.hardwood-body-content {
  padding: 15px 0 0 0;
  display: none;
}

.hardwood-body-content p {
  font-size: 14px;
  line-height: 1.2;
}

.hardwood-body-content > p {
  line-height: 1.4;
}

.hardwood-content-box p {
  margin-bottom: 0;
}

.hardwood-body-content .content-box-desc {
  display: none;
}

.hardwood-content-box {
  border: 1px solid #eee5e4;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  padding: 25px;
  margin-bottom: 20px;
}
.hardwood-content-box.hardwood-content-active {
  border-color: #959595;
}

.hardwood-content-box p a:hover {
  color: #842d2c;
}

.hardwood-content-box p a {
  color: #842d2c;
  text-decoration: underline;
}

.hardwood-content-box .right {
  width: 38%;
  display: inline-block;
  vertical-align: top;
}

.hardwood-content-box .left {
  width: 60%;
  display: inline-block;
  vertical-align: top;
}

.hardwood-content-box .left span {
  font-size: 16px;
  color: #402020;
  margin-bottom: 15px;
  display: block;
  font-family: "MontserratBold", Arial, sans-serif;
}

.hardwood-content-box span label {
  margin-left: 10px;
  font-family: "MontserratRegular", Arial, sans-serif;
}

.hardwood-content-box .quantity {
  float: right;
  display: block;
  width: 100%;
  text-align: right;
}

.hardwood-content-box .quantity label {
  font-size: 16px;
  display: inline-block;
  margin-right: 10px;
}

.hardwood-content-box .quantity input {
  border: 1px solid #eee5e4;
  text-align: right;
  font-size: 16px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  height: 40px;
  width: 60px;
  color: #686162;
  padding: 0 15px;
  font-family: "MontserratRegular", Arial, sans-serif;
}

.hardwood-content-box .button.button-small {
  font-size: 12px;
  padding: 8px 30px;
  float: right;
  margin-top: 10px;
}

.hardwood-content-box .button.button-small.added {
  background-color: #a6d16c;
}

.product-spec-wrapper {
  padding: 70px 0;
}

.collection-details-wrapper {
  padding-right: 40px;
  border-right: 1px solid #eee5e4;
  width: 50%;
  max-width: 690px;
  display: inline-block;
  vertical-align: top;
}

.collection-details-wrapper span {
  display: none;
}

.collection-details-wrapper h2 {
  font-size: 42px;
}

.collection-details-wrapper p {
  font-size: 16px;
  line-height: 32px;
}

.product-spec-wrapper .product-specs:first-of-type {
  display: none;
}

.product-specs {
  padding: 20px 0 20px 40px;
  width: 49%;
  display: inline-block;
  vertical-align: top;
}

.product-spec-wrapper span {
  font-size: 16px;
  color: #842d2c;
  text-transform: uppercase;
}

.product-specs ul {
  padding: 0;
  margin: 15px 0 0 0;
}

.product-specs ul li {
  width: 49%;
  display: inline-block;
  list-style: none;
  font-size: 16px;
  margin-bottom: 10px;
  vertical-align: top;
}

.product-specs ul li.sku-number {
  font-family: "MontserratBold", Arial, sans-serif;
}

.sample-box-popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: inline-block;
  z-index: 999;
  display: none;
}

.sample-box-inner-wrapper {
  width: 100%;
  max-width: 840px;
  height: 100%;
  max-height: 510px;
  background-color: #ffffff;
  padding: 70px 95px;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow-y: auto;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  text-align: left;
}

.close-popup {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 22px;
  cursor: pointer;
}

.sample-box-inner-wrapper h2 {
  font-size: 42px;
  padding: 0 0 5px 0;
  text-align: center;
}

.sample-box-inner-wrapper .sample-description p {
  font-size: 16px;
}

.sample-box-inner-wrapper .sample-description a {
  color: #701c1a;
  text-decoration: underline;
}

.sample-box-inner-wrapper .sample-description a:hover {
  color: #701c1a;
}

.important-message {
  margin-bottom: 15px;
  display: inline-block;
  width: 100%;
}

.important-message.important-message-flooring p {
  padding-top: 10px;
  margin-bottom: 0;
}

.important-message p {
  font-size: 14px;
}

.important-message p i {
  color: #5ab7b2;
  margin-right: 10px;
}

.selected-hardwood {
  border: 1px solid #eee5e4;
  border-left: 8px solid #eee5e4;
  padding: 20px;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}

.selected-hardwood .selected-img {
  display: inline-block;
  width: 96px;
  float: left;
  margin-right: 15px;
}

.selected-hardwood .product-name-wrapper {
  display: inline-block;
  float: left;
}

.selected-hardwood .product-name-wrapper h2 {
  line-height: 100%;
  padding: 0;
  text-align: left;
  font-size: 34px;
  margin-top: 10px;
}

.sample-quantity label {
  font-size: 16px;
  width: 100px;
  display: inline-block;
  vertical-align: middle;
}

.sample-box-inner-wrapper h2.sample-step-2 {
  padding-bottom: 5px;
}

.sample-box-inner-wrapper .sample-description p {
  margin-bottom: 30px;
}

.sample-buttons .col {
  text-align: center;
  margin-left: 0;
}

/* ############### */
.number-field {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.number-field input[type=number]::-webkit-inner-spin-button,
.number-field input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.number-field input[type=number] {
  -moz-appearance: textfield;
}

.number-field input {
  width: 126px;
  height: 54px;
  float: left;
  display: block;
  padding: 0;
  margin: 0;
  font-size: 21px;
  padding: 10px 45px;
  border: 1px solid #eee5e4;
  color: #686162;
  border-radius: 3px;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  font-family: "MontserratRegular", Arial, sans-serif;
}

.number-field input:focus {
  outline: 0;
  border-color: #402020;
}

.quantity-button.quantity-down {
  left: 15px;
}

.quantity-button.quantity-up {
  right: 15px;
}

.quantity-button {
  position: absolute;
  font-size: 32px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.sample-quantity .button.button-primary.button-small {
  font-size: 13px;
  padding: 16px 40px;
  vertical-align: middle;
  margin-left: 10px;
}

.pre-quiz-content {
  background-color: #ffffff;
  padding: 30px;
  border: 1px solid #eee5e4;
  box-shadow: 0 2px 12px 0px rgba(24, 23, 24, 0.15);
  -webkit-box-shadow: 0 2px 12px 0px rgba(24, 23, 24, 0.15);
  -moz-box-shadow: 0 2px 12px 0px rgba(24, 23, 24, 0.15);
  display: inline-block;
  width: 100%;
}

.pre-quiz-content h3 {
  line-height: 1.2;
}

.pre-quiz-content p {
  font-size: 16px;
}

.pre-quiz-content a {
  float: right;
}

/***************************/
/*custom row*/
/***************************/
.full-row {
  margin: 0 -15px;
}

.row-item {
  padding: 0 8px;
  float: left;
}

.row-item-25 {
  width: 33.33%;
}

.row-item-3 {
  width: 33.33%;
}

#wrapper-view .pb-default-wrapper .col-type-customhtml {
  padding: 0;
}

/***************************/
/*custom row End*/
/***************************/
/***************************/
/* flooring-wrapper */
/***************************/
body.overflow-hidden {
  overflow: hidden;
}

.dark-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: none;
}

.flooring-inner-wrapper {
  position: fixed;
  right: -800px;
  bottom: 0;
  max-width: 750px;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 999;
  text-align: left;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.flooring-inner-wrapper.flooring-inner-wrapper-show {
  right: 0;
}
.flooring-inner-wrapper .content-box-desc p {
  line-height: 1.6;
}
.flooring-inner-wrapper .flooring-top {
  padding: 50px 50px 0;
  width: 100%;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.flooring-inner-wrapper .flooring-top .hardwood-wrapper {
  margin-top: 0;
}
.flooring-inner-wrapper .flooring-top .hardwood-wrapper .hardwood-content-box .button.button-small {
  display: none;
}
.flooring-inner-wrapper .flooring-top .hardwood-body {
  padding: 0;
  border-bottom: 0;
}
.flooring-inner-wrapper .flooring-top .hardwood-body .hardwood-body-header {
  margin: 0 0 27px;
  background-color: #eee5e4;
  padding: 15px 20px 13px;
}
.flooring-inner-wrapper .flooring-top .hardwood-body .hardwood-body-header span {
  color: #402020;
  font-size: 16px;
  font-family: "MontserratRegular", Arial, sans-serif;
  font-size: 21px;
}
.flooring-inner-wrapper .flooring-top .hardwood-body .hardwood-body-header a {
  font-size: 14px;
}
.flooring-inner-wrapper .flooring-top .hardwood-body .hardwood-body-content {
  display: block;
}
.flooring-inner-wrapper .flooring-bottom {
  width: 100%;
  border-top: 5px solid #5ab7b2;
  padding: 20px 30px;
  background-color: #ffffff;
}
.flooring-inner-wrapper .flooring-bottom .flooring-bottom-mobile-toggle {
  display: none;
  padding: 20px;
  border-bottom: 1px solid #eee5e4;
  margin-bottom: 10px;
  cursor: pointer;
  font-family: "MontserratBold", Arial, sans-serif;
  color: #402020;
}
.flooring-inner-wrapper .flooring-bottom .flooring-bottom-mobile-toggle .toggle-left {
  display: inline-block;
  padding-right: 15px;
  position: relative;
}
.flooring-inner-wrapper .flooring-bottom .flooring-bottom-mobile-toggle .toggle-left:after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "FontAwesome";
  content: "\f106";
}
.flooring-inner-wrapper .flooring-bottom .flooring-bottom-mobile-toggle .toggle-right {
  float: right;
}
.flooring-inner-wrapper .flooring-bottom .flooring-bottom-mobile-toggle.toggle-flooring-bottom .toggle-left:after {
  content: "\f107";
}
.flooring-inner-wrapper .flooring-bottom .flooring-left-wrapper {
  float: left;
  width: calc(100% - 251px);
}
.flooring-inner-wrapper .flooring-bottom .flooring-left-wrapper h6 {
  display: block;
  color: #402020;
  font-family: "MontserratBold", Arial, sans-serif;
  font-size: 16px;
  padding-bottom: 6px;
}
.flooring-inner-wrapper .flooring-bottom .flooring-left-wrapper p {
  color: #402020;
  margin-bottom: 12px;
}
.flooring-inner-wrapper .flooring-bottom .flooring-left-wrapper p:last-of-type {
  margin-bottom: 0;
  font-size: 13px;
  font-style: italic;
  color: #686162;
}
.flooring-inner-wrapper .flooring-bottom .flooring-right-wrapper {
  float: right;
}
.flooring-inner-wrapper .flooring-bottom .flooring-right-wrapper .button-lg {
  width: 209px;
  height: 70px;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
}
.flooring-inner-wrapper .flooring-bottom .flooring-right-wrapper .button-lg:disabled {
  background-color: #85cac6;
}
.flooring-inner-wrapper .close-slide img {
  width: 22px;
  cursor: pointer;
}
.flooring-inner-wrapper .close-slide + h3 {
  margin-top: 15px;
}
.flooring-inner-wrapper .flooring-measuring-head {
  margin: 17px 0 27px;
  background-color: #eee5e4;
  padding: 15px 20px 13px;
  position: relative;
}
.flooring-inner-wrapper .flooring-measuring-head h6 {
  padding-bottom: 0;
  line-height: 1;
  font-size: 21px;
  font-family: "MontserratRegular", Arial, sans-serif;
  color: #402020;
}
.flooring-inner-wrapper .flooring-measuring-head h6, .flooring-inner-wrapper .flooring-measuring-head span {
  display: inline-block;
  vertical-align: middle;
}
.flooring-inner-wrapper .flooring-measuring-head span {
  color: #701c1a;
  border-bottom: 1px solid #701c1a;
  font-size: 13px;
  font-family: "MontserratBold", Arial, sans-serif;
  margin-left: 18px;
  position: relative;
  top: 2px;
  text-transform: uppercase;
}
.flooring-inner-wrapper .flooring-measuring-head a {
  float: right;
  font-size: 14px;
  color: #701c1a;
  text-decoration: underline;
  margin-top: 3px;
}
.flooring-inner-wrapper .flooring-measuring-body {
  padding: 20px 20px 0;
  width: 100%;
  margin-bottom: 20px;
}
.flooring-inner-wrapper .input-field-wrapper {
  float: left;
  width: 100%;
}
.flooring-inner-wrapper .input-field-wrapper .field-wrapper {
  float: left;
  width: calc((100% - 26px) / 2);
  margin-right: 26px;
}
.flooring-inner-wrapper .input-field-wrapper .field-wrapper:last-of-type {
  margin-right: 0;
}
.flooring-inner-wrapper .input-field-wrapper .field-wrapper .input-field-wrapper {
  padding: 0 20px;
}
.flooring-inner-wrapper .input-field-wrapper .field-wrapper label {
  font-size: 16px;
  color: #686162;
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
}
.flooring-inner-wrapper .input-field-wrapper .field-wrapper label i {
  color: #842d2c;
}
.flooring-inner-wrapper .input-field-wrapper .field-wrapper .input-field {
  position: relative;
}
.flooring-inner-wrapper .input-field-wrapper .field-wrapper .input-field span {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
  font-size: 16px;
  height: 19px;
  color: #686162;
  opacity: 0.7;
}
.flooring-inner-wrapper .input-field-wrapper .field-wrapper .input-field input {
  width: 100%;
  height: 53px;
  font-size: 16px;
  border: 1px solid #dddddd;
  border-radius: 2px;
  padding-left: 18px;
  color: #686162;
  font-family: "MontserratRegular", Arial, sans-serif;
}
.flooring-inner-wrapper .input-field-wrapper .field-wrapper .input-field input:focus {
  border-color: #959595;
}
.flooring-inner-wrapper .flooring-area-wrapper {
  float: left;
  width: 100%;
  padding: 20px 0 0 38%;
  margin-bottom: 10px;
}
.flooring-inner-wrapper .flooring-area-wrapper li {
  width: 100%;
  font-size: 16px;
  margin-top: 20px;
  color: #686162;
}
.flooring-inner-wrapper .flooring-area-wrapper li:first-child {
  margin-top: 0;
}
.flooring-inner-wrapper .flooring-area-wrapper li span {
  float: right;
}
.flooring-inner-wrapper .flooring-area-wrapper li.flooring-area-last {
  font-family: "MontserratBold", Arial, sans-serif;
  color: #402020;
}
.flooring-inner-wrapper .flooring-area-wrapper li .error-msg {
  font-size: 14px;
  margin-bottom: 3px;
  color: #701c1a;
  text-align: right;
  width: 100%;
}
.flooring-inner-wrapper .flooring-area-wrapper li .error-msg i {
  font-size: 16px;
}
.flooring-inner-wrapper .flooring-area-wrapper li .error-msg span.total-square-feet {
  float: none;
}

.important-message-flooring {
  margin-bottom: 0;
}

.important-message-flooring,
.like-share-wrapper-clone,
.product-name-wrapper-clone {
  display: none;
}

/***************************/
/* flooring-wrapper End */
/***************************/
/*******************************/
/* Collections Landing Page*/
/*******************************/
.hero-banner {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 100px;
}
.hero-banner img {
  width: 100%;
  height: 100%;
  -webkit-object-fit: cover;
  -moz-object-fit: cover;
  object-fit: cover;
  object-position: 0;
}
.hero-banner.pb-default-wrapper {
  margin-top: 0;
  margin-bottom: 100px;
}
.hero-banner.pb-default-wrapper .col {
  padding: 0;
}
.hero-banner .hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.hero-banner .logo-image {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 400px;
}
@media (max-width: 480px) {
  .hero-banner .logo-image {
    width: 350px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero-banner .hero-description {
  position: relative;
  z-index: 9;
  width: 100%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.8);
  float: right;
  text-align: left;
  padding: 60px 50px 40px 50px;
  min-height: 450px;
  height: 100%;
}
.hero-banner .hero-description h1 {
  line-height: 1.1;
  position: relative;
  padding-top: 35px;
  margin-bottom: 10px;
}
.hero-banner .hero-description h1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100px;
  background-color: #842d2c;
}
.hero-banner .hero-description p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

.collection-product {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.collection-product h2 {
  color: #402020;
  font-family: "MontserratRegular", Arial, sans-serif;
  padding-bottom: 3px;
  text-transform: uppercase;
  font-size: 21px;
  cursor: pointer;
}
.collection-product a {
  font-size: 14px;
  text-transform: uppercase;
  font-family: "MontserratBold", Arial, sans-serif;
}
.collection-product a i {
  margin-left: 8px;
}
.collection-product a.product-slider-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}
@media (max-width: 1024px) {
  .collection-product a.product-slider-link {
    pointer-events: none;
  }
}
.collection-product .product-slider {
  margin-bottom: 10px;
}
.collection-product .slick-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 0;
  z-index: 99;
}
.collection-product .slick-dots li {
  display: inline-block;
  margin: 0 4px;
  line-height: 1;
}
.collection-product .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.collection-product .slick-dots li button:hover {
  border-color: #ffffff;
}
.collection-product .slick-dots li.slick-active button {
  background-color: #ffffff;
}

.collection-story.pb-default-wrapper {
  margin: 60px 0;
}
.collection-story .hcontent h3 {
  margin-top: -13px;
}
.collection-story .hcontent p {
  font-size: 18px;
  line-height: 1.7;
}
.collection-story iframe {
  width: 100%;
  height: 320px;
}
.collection-story img {
  max-width: 100%;
  width: 100%;
}

/***************************/
/*Landing Page End*/
/***************************/
/***************************/
/*Measure example*/
/***************************/
.measure-example img[src$=".svg"] {
  width: 66%;
}
.measure-example p {
  line-height: 1.8;
  font-size: 15px;
}
.measure-example.add-em p {
  font-size: 20px;
  color: #242425;
}
.measure-example.add-em p strong {
  font-family: "MontserratBold", Arial, sans-serif;
  font-weight: normal;
}
.measure-example.add-em .col:nth-of-type(2) .grey-grid:first-of-type {
  text-align: center;
}
.measure-example.add-em .col:last-of-type .grey-grid {
  margin-top: 90px;
  text-align: center;
}
.measure-example.add-em .grey-grid p + p {
  margin-top: 10px;
}
.measure-example .grey-grid {
  background-color: #e6e6e6;
  padding: 20px;
  position: relative;
}
.measure-example .grey-grid + .grey-grid {
  margin-top: 14px;
}
.measure-example .grey-grid p {
  margin-bottom: 0;
}
.measure-example .grey-grid h4 {
  padding-bottom: 5px;
  line-height: 1.1;
}
.measure-example .grey-grid.ex-grid {
  padding-left: calc(25% + 40px);
  min-height: 120px;
}
.measure-example .grey-grid.ex-grid img {
  width: 25%;
  position: absolute;
  top: 20px;
  left: 20px;
}

/***************************/
/*Measure example End*/
/***************************/
/***************************/
/* Responsive */
/***************************/
@media (max-width: 1279px) {
  .product-order-button-wrapper a.button.button-sm {
    padding: 18px 10px;
    width: 49%;
    margin-right: 2%;
    font-size: 13px;
  }
}
@media (max-width: 1200px) {
  .collection-story .hcontent h3 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .pre-quiz-content {
    padding: 20px;
  }
  .product-slider-main .col {
    width: 100%;
    margin: 0;
  }
  .back-result, .like-share-wrapper {
    margin-bottom: 20px;
  }
  .important-message-flooring,
  .flooring-inner-wrapper .flooring-top .hardwood-wrapper,
  .product-name-wrapper-clone {
    display: block;
    padding-top: 20px;
  }
  .full-width-banner-wrapper .product-inner-detail .product-name-wrapper {
    display: none;
  }
  .product-slider-wrapper .main-slides .flexFill {
    padding-bottom: 50%;
  }
  .product-inner-detail {
    padding-left: 0;
  }
  .product-name-wrapper {
    display: none;
  }
  .product-name-wrapper-clone .product-name-wrapper {
    display: block;
  }
  .back-result, .like-share-wrapper {
    margin-bottom: 10px;
  }
  .hcontent .product-name-wrapper-clone h2 {
    font-size: 34px;
    margin-top: 10px;
  }
  #blog-container.blog-container #blog-right .blog-detail h1 {
    font-size: 35px;
  }
  #blog-container .blogtext.hcontent h3 {
    font-size: 30px;
  }
  .measure-example.add-em p {
    font-size: 16px;
  }
  .measure-example + .pb-advanced-wrapper {
    margin-top: 30px;
  }
  .measure-example.add-em .col:last-of-type .grey-grid {
    margin-top: 14px;
  }
  .measure-example img[src$=".svg"] {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 900px) {
  .collection-outer .row-item-25 {
    width: 50%;
  }
  .hcontent .collection-product h6 {
    font-size: 21px;
    padding-bottom: 8px;
  }
  .collection-product {
    margin-bottom: 30px;
  }
  .collection-product h2 {
    font-size: 21px;
    padding-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .product-details-wrapper {
    padding: 40px 0;
  }
  .product-spec-wrapper {
    padding: 40px 0;
  }
  .product-spec-wrapper .setcontainer > div {
    width: 100%;
    padding: 0;
    border: 0;
  }
  .product-spec-wrapper .product-specs:first-of-type {
    display: block;
    margin-bottom: 40px;
  }
  .collection-details-wrapper span {
    display: block;
    margin-bottom: 10px;
  }
  .collection-details-wrapper + .product-specs {
    display: none;
  }
  .pb-advanced-wrapper .full-width-banner-wrapper {
    padding: 50px 0;
  }
  .sample-box-inner-wrapper {
    padding: 40px;
  }
  .flooring-inner-wrapper .flooring-area-wrapper {
    padding-left: 0;
  }
  .collection-story .col {
    width: 100%;
    margin: 0;
  }
  .collection-story .hcontent p {
    line-height: 1.7;
  }
  .hero-banner .hero-description h1 {
    font-size: 48px;
    line-height: 1;
  }
  #blog-container.blog-container #blog-right .blog-detail p {
    text-align: left;
  }
  .measure-example .col {
    width: 100%;
    margin: 0;
  }
}
/*****************/
/*Mobile view*/
/*****************/
@media (max-width: 650px) {
  .hero-banner .hero-description {
    padding: 30px;
  }
  .product-slider-wrapper .thumb-slides {
    display: none;
  }
  .product-slider-wrapper .main-slides .slick-arrow {
    top: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    margin: auto;
    padding: 0;
    background-color: #ffffff;
  }
  .product-slider-wrapper .main-slides .flexFill {
    padding-bottom: 75%;
  }
  .product-slider-wrapper .main-slides .slick-arrow {
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
  }
  .product-slider-wrapper .main-slides .slick-arrow:hover {
    background-color: #fff;
  }
  .product-slider-wrapper .main-slides .slick-arrow.slick-prev {
    background-image: url("/Pub/design/arrow-prev-mobile.png");
    background-position: center center;
    background-size: 10px;
  }
  .product-slider-wrapper .main-slides .slick-arrow.slick-next {
    background-image: url("/Pub/design/arrow-right-mobile.png");
    background-position: center center;
    background-size: 10px;
  }
  .flooring-inner-wrapper .flooring-top .hardwood-wrapper {
    float: left;
    margin-top: 0;
  }
  .product-order-button-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px;
    border-top: 1px solid #eee5e4;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(24, 23, 24, 0.15);
    z-index: 99;
  }
  .product-name-wrapper span {
    font-size: 14px;
  }
  .product-order-button-wrapper a.button.button-sm {
    padding: 14px 10px;
    height: 50px;
  }
  .like-share-wrapper-clone {
    display: block;
  }
  .like-share-wrapper-clone {
    text-align: center;
    margin-top: 37px;
  }
  .like-share-wrapper {
    display: none;
  }
  .like-share-wrapper-clone .like-share-wrapper {
    float: none;
    margin: 0;
    display: block;
  }
  .like-share-wrapper-clone .like-share-wrapper .add-to-list {
    margin-left: 0;
  }
  .hcontent .flooring-top h3 {
    font-size: 32px;
  }
  .flooring-inner-wrapper .flooring-measuring-head h6 {
    display: block;
    width: 100%;
    font-size: 16px;
  }
  .flooring-inner-wrapper .flooring-measuring-head span {
    margin: 5px 0 0;
    text-transform: uppercase;
  }
  .flooring-inner-wrapper .flooring-measuring-head {
    padding-right: 112px;
  }
  .flooring-inner-wrapper .flooring-measuring-head > a {
    position: absolute;
    right: 20px;
    top: 14px;
    height: 14px;
  }
  .flooring-inner-wrapper .flooring-measuring-body {
    padding: 20px 0px 0;
  }
  .flooring-inner-wrapper .input-field-wrapper .field-wrapper {
    width: 100%;
    margin: 0;
  }
  .flooring-inner-wrapper .input-field-wrapper .field-wrapper + .field-wrapper {
    margin-top: 20px;
  }
  .flooring-inner-wrapper .flooring-bottom > div[class*=flooring-] {
    width: 100%;
  }
  .flooring-inner-wrapper .flooring-bottom .flooring-left-wrapper p {
    color: #402020;
    margin-bottom: 2px;
  }
  .flooring-inner-wrapper .flooring-bottom .flooring-right-wrapper .button-lg {
    height: 48px;
    width: 100%;
  }
  .flooring-inner-wrapper .flooring-top {
    padding: 20px 20px 0;
  }
  .flooring-inner-wrapper .flooring-bottom {
    padding: 0;
  }
  .flooring-inner-wrapper .flooring-bottom .flooring-bottom-mobile-toggle {
    display: block;
  }
  .flooring-inner-wrapper .flooring-bottom .flooring-right-wrapper {
    padding: 0 10px 10px 10px;
  }
  .flooring-left-wrapper {
    display: none;
    padding: 8px 14px;
  }
  .hardwood-content-box span label {
    margin: 8px 0 0;
    display: block;
  }
  .flooring-top .hardwood-body-content {
    padding-top: 0;
  }
  .hardwood-wrapper {
    margin-top: 20px;
  }
  .sample-quantity .button.button-primary.button-small {
    display: block;
    margin-top: 14px;
  }
  .footer-wrapper .setcontainer {
    padding-bottom: 80px;
  }
  .sample-box-inner-wrapper {
    max-height: 100%;
    overflow-y: auto;
  }
  .sample-quantity {
    margin-bottom: 30px;
    text-align: center;
  }
  .sample-quantity label {
    width: 100%;
    display: block;
    margin-bottom: 14px;
  }
  .sample-quantity input {
    margin: 0 auto;
  }
  .hardwood-content-box .quantity input {
    width: 46px;
  }
  .hardwood-body-content p {
    line-height: 1.5;
  }
  .hardwood-content-box {
    padding: 16px;
  }
  .hardwood-content-box .left p {
    display: none;
  }
  .hardwood-body-content .content-box-desc {
    display: block;
    margin-top: 5px;
  }
}
/*****************/
/*Mobile view End*/
/*****************/
@media (max-width: 600px) {
  .collection-outer .row-item-25 {
    width: 100%;
  }
}
@media (max-width: 520px) {
  .product-order-button-wrapper a.button.button-sm {
    font-size: 12px;
    height: 48px;
  }
  .selected-hardwood .selected-img {
    display: none;
  }
  .hardwood-content-box .quantity label {
    margin-right: 1px;
  }
  .hardwood-wrapper .hardwood-body {
    padding: 24px 12px;
  }
  .flooring-inner-wrapper .flooring-area-wrapper li {
    font-size: 13px;
  }
  .flooring-inner-wrapper .flooring-area-wrapper li {
    margin-top: 20px;
  }
  .selected-hardwood {
    padding: 14px;
  }
  .product-specs ul li {
    width: 100%;
    display: block;
  }
  .hardwood-content-box .button.button-small {
    padding: 8px 20px;
  }
  .pre-quiz-content a {
    float: left;
  }
  .flooring-inner-wrapper .flooring-area-wrapper li .error-msg {
    text-align: left;
  }
  .collection-story iframe {
    height: auto;
  }
  .hero-banner .hero-description h1 {
    font-size: 36px;
  }
  .hero-banner .hero-description h1::before {
    height: 2px;
  }
}
@media (max-width: 480px) {
  .collection-story .hcontent p {
    font-size: 16px;
  }
  .blog-toolbar .BlogSearchBox {
    margin-bottom: 10px;
    width: 100%;
  }
  .blog-toolbar .blog-category {
    width: 100%;
  }
  .blog-toolbar .blog-category h2::after {
    float: right;
  }
  .blog-toolbar .BlogSearchBox input[type=text] {
    width: calc(100% - 48px);
  }
  #wrapper_blog .blog-toolbar .BlogSearchBox input[type=submit] {
    padding: 11px 12px 10px;
    top: 0;
    float: right;
  }
}
@media (max-width: 380px) {
  .hero-banner .hero-description p {
    font-size: 14px;
  }
  .flooring-inner-wrapper .flooring-top .hardwood-body .hardwood-body-header span {
    font-size: 16px;
  }
  .product-name-wrapper span {
    font-size: 12px;
  }
}
/* Front End Form Styling */
.front-end-form,
.front-end-form .hhFormBuilder .hhForm {
  /* IMAGE/FILE UPLOAD */
}
.front-end-form .hh-required-fields,
.front-end-form .hhFormBuilder .hhForm .hh-required-fields {
  margin-bottom: 10px;
  font-size: 14px;
}
.front-end-form .input-row,
.front-end-form .hhFormBuilder .hhForm .input-row {
  clear: left;
  display: block;
  margin-bottom: 15px;
  padding: 0 0 5px 0;
}
.front-end-form label,
.front-end-form .hhFormBuilder .hhForm label {
  font-size: 16px;
  display: inline-block;
  margin-bottom: 5px;
  line-height: 1.2;
  color: #686162;
}
.front-end-form input[type=text],
.front-end-form input[type=password],
.front-end-form input[type=email],
.front-end-form input.hhTextBox,
.front-end-form .hhFormRow .hhFormRowInput input.hhTextBox,
.front-end-form select,
.front-end-form select.hhDropDown,
.front-end-form textarea, .front-end-form:not(#wrapper-submittruck) #hhImageController,
.front-end-form .hhFormBuilder .hhForm input[type=text],
.front-end-form .hhFormBuilder .hhForm input[type=password],
.front-end-form .hhFormBuilder .hhForm input[type=email],
.front-end-form .hhFormBuilder .hhForm input.hhTextBox,
.front-end-form .hhFormBuilder .hhForm .hhFormRow .hhFormRowInput input.hhTextBox,
.front-end-form .hhFormBuilder .hhForm select,
.front-end-form .hhFormBuilder .hhForm select.hhDropDown,
.front-end-form .hhFormBuilder .hhForm textarea,
.front-end-form .hhFormBuilder .hhForm:not(#wrapper-submittruck) #hhImageController {
  border: 1px solid #eee5e4;
  font-size: 16px;
  background-color: #fff;
  padding: 15px;
  width: 100%;
  max-width: 100%;
  border-radius: 2px;
  color: #4b4f54;
  height: auto;
  font-family: "MontserratRegular", Arial, sans-serif;
}
.front-end-form input[type=text]:focus,
.front-end-form input[type=password]:focus,
.front-end-form input[type=email]:focus,
.front-end-form input.hhTextBox:focus,
.front-end-form .hhFormRow .hhFormRowInput input.hhTextBox:focus,
.front-end-form select:focus,
.front-end-form select.hhDropDown:focus,
.front-end-form textarea:focus, .front-end-form:not(#wrapper-submittruck) #hhImageController:focus,
.front-end-form .hhFormBuilder .hhForm input[type=text]:focus,
.front-end-form .hhFormBuilder .hhForm input[type=password]:focus,
.front-end-form .hhFormBuilder .hhForm input[type=email]:focus,
.front-end-form .hhFormBuilder .hhForm input.hhTextBox:focus,
.front-end-form .hhFormBuilder .hhForm .hhFormRow .hhFormRowInput input.hhTextBox:focus,
.front-end-form .hhFormBuilder .hhForm select:focus,
.front-end-form .hhFormBuilder .hhForm select.hhDropDown:focus,
.front-end-form .hhFormBuilder .hhForm textarea:focus,
.front-end-form .hhFormBuilder .hhForm:not(#wrapper-submittruck) #hhImageController:focus {
  border: 1px solid #356ef5;
}
.front-end-form select,
.front-end-form .hhFormBuilder .hhForm select {
  background: #fff url("/pub/design/select-dropdown-caret.png") no-repeat right 15px center;
  background-size: auto 7px;
  cursor: pointer;
  padding: 14px 36px 14px 15px;
  -o-appearance: none;
  appearance: none;
}
.front-end-form select::-ms-expand,
.front-end-form .hhFormBuilder .hhForm select::-ms-expand {
  display: none;
}
.front-end-form select.select-default option[disabled],
.front-end-form select option[disabled],
.front-end-form .hhFormBuilder .hhForm select.select-default option[disabled],
.front-end-form .hhFormBuilder .hhForm select option[disabled] {
  color: #999;
}
.front-end-form select.select-default,
.front-end-form .hhFormBuilder .hhForm select.select-default {
  color: #999;
}
.front-end-form select.select-default option,
.front-end-form .hhFormBuilder .hhForm select.select-default option {
  color: #4b4f54;
}
.front-end-form .hhForm .hhFormRow .hhFormRowInput #hhImageController,
.front-end-form #hhImageController,
.front-end-form .hhFormBuilder .hhForm .hhForm .hhFormRow .hhFormRowInput #hhImageController,
.front-end-form .hhFormBuilder .hhForm #hhImageController {
  font-size: 0;
  text-align: left;
  padding: 0;
  position: relative;
}
.front-end-form .hhForm .hhFormRow .hhFormRowInput #hhImageController .hhImage,
.front-end-form #hhImageController .hhImage,
.front-end-form .hhFormBuilder .hhForm .hhForm .hhFormRow .hhFormRowInput #hhImageController .hhImage,
.front-end-form .hhFormBuilder .hhForm #hhImageController .hhImage {
  display: inline;
  max-width: 100px;
  max-height: 100px;
  vertical-align: top;
  position: absolute;
  top: 22px;
  left: 165px;
}
.front-end-form .hhForm .hhFormRow .hhFormRowInput #hhImageController .hhImage img,
.front-end-form #hhImageController .hhImage img,
.front-end-form .hhFormBuilder .hhForm .hhForm .hhFormRow .hhFormRowInput #hhImageController .hhImage img,
.front-end-form .hhFormBuilder .hhForm #hhImageController .hhImage img {
  width: auto;
  max-height: 25px;
}
.front-end-form .hhForm .hhFormRow .hhFormRowInput #hhImageController a:first-of-type,
.front-end-form #hhImageController a:first-of-type,
.front-end-form .hhFormBuilder .hhForm .hhForm .hhFormRow .hhFormRowInput #hhImageController a:first-of-type,
.front-end-form .hhFormBuilder .hhForm #hhImageController a:first-of-type {
  background: #919191 none repeat scroll 0 0;
  border-radius: 0;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 13px 13px 13px 35px;
  text-decoration: none;
  transition: 0.3s background;
  margin-right: 5px;
}
.front-end-form .hhForm .hhFormRow .hhFormRowInput #hhImageController a:first-of-type:before,
.front-end-form #hhImageController a:first-of-type:before,
.front-end-form .hhFormBuilder .hhForm .hhForm .hhFormRow .hhFormRowInput #hhImageController a:first-of-type:before,
.front-end-form .hhFormBuilder .hhForm #hhImageController a:first-of-type:before {
  position: absolute;
  left: 25px;
  top: 25px;
  display: inline-block;
  font-family: "FontAwesome";
  content: "\f0aa";
  font-size: 18px;
}
.front-end-form .hhForm .hhFormRow .hhFormRowInput #hhImageController a:first-of-type:hover,
.front-end-form #hhImageController a:first-of-type:hover,
.front-end-form .hhFormBuilder .hhForm .hhForm .hhFormRow .hhFormRowInput #hhImageController a:first-of-type:hover,
.front-end-form .hhFormBuilder .hhForm #hhImageController a:first-of-type:hover {
  background: #999;
}
.front-end-form .hhForm .hhFormRow .hhFormRowInput #hhImageController a:last-of-type,
.front-end-form #hhImageController a:last-of-type,
.front-end-form .hhFormBuilder .hhForm .hhForm .hhFormRow .hhFormRowInput #hhImageController a:last-of-type,
.front-end-form .hhFormBuilder .hhForm #hhImageController a:last-of-type {
  background: #bbb none repeat scroll 0 0;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  padding: 8px;
  text-decoration: none;
  transition: 0.3s background;
  margin-left: 5px;
  float: right;
  margin: 7px 7px 0 0;
}
.front-end-form .hhForm .hhFormRow .hhFormRowInput #hhImageController a:last-of-type:hover,
.front-end-form #hhImageController a:last-of-type:hover,
.front-end-form .hhFormBuilder .hhForm .hhForm .hhFormRow .hhFormRowInput #hhImageController a:last-of-type:hover,
.front-end-form .hhFormBuilder .hhForm #hhImageController a:last-of-type:hover {
  background: #919191;
}

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

FRONT-END TABLES

************************************************/
.front-end-table table,
table.front-end-table {
  border: none;
}
@media (max-width: 39.9375em) {
  .front-end-table table,
  .front-end-table table thead,
  .front-end-table table tbody,
  .front-end-table table tfoot,
  .front-end-table table tr,
  .front-end-table table th,
  .front-end-table table td,
  table.front-end-table,
  table.front-end-table thead,
  table.front-end-table tbody,
  table.front-end-table tfoot,
  table.front-end-table tr,
  table.front-end-table th,
  table.front-end-table td {
    display: block;
    width: 100% !important;
  }
}
@media (max-width: 39.9375em) {
  .front-end-table table tfoot tr td:not(:last-child),
  table.front-end-table tfoot tr td:not(:last-child) {
    display: none !important;
  }
}
.front-end-table table thead,
table.front-end-table thead {
  background: transparent;
}
.front-end-table table thead tr,
table.front-end-table thead tr {
  border-bottom: 1px solid #eee5e4;
}
.front-end-table table thead tr th,
table.front-end-table thead tr th {
  font-size: 15px;
  color: #402020;
  text-transform: uppercase;
  cursor: default !important;
}
@media (max-width: 800px) {
  .front-end-table table thead tr th,
  table.front-end-table thead tr th {
    font-size: 14px;
  }
}
.front-end-table table thead tr th:hover,
table.front-end-table thead tr th:hover {
  background: transparent !important;
  color: #402020 !important;
}
.front-end-table table thead tr:first-child th,
table.front-end-table thead tr:first-child th {
  font-family: "MontserratRegular", Arial, sans-serif;
  border-right: none;
  border-left: none;
}
.front-end-table table tbody tr,
table.front-end-table tbody tr {
  border-bottom: 1px solid #eee5e4;
}
.front-end-table table tbody tr td,
table.front-end-table tbody tr td {
  font-size: 15px;
  line-height: 1.3;
  vertical-align: top;
  color: #686162;
}
@media (max-width: 800px) {
  .front-end-table table tbody tr td,
  table.front-end-table tbody tr td {
    font-size: 14px;
  }
}
.front-end-table table tbody tr td input[type=submit],
.front-end-table table tbody tr td input[type=button],
.front-end-table table tbody tr td button,
.front-end-table table tbody tr td .button,
table.front-end-table tbody tr td input[type=submit],
table.front-end-table tbody tr td input[type=button],
table.front-end-table tbody tr td button,
table.front-end-table tbody tr td .button {
  font-family: "MontserratRegular", Arial, sans-serif;
  padding: 12px 24px;
  font-size: 14px;
  background: #8f8788;
  line-height: 1;
  text-decoration: none !important;
  text-align: center;
  display: inline-block;
  border: none;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.3s;
  color: #fff;
}
.front-end-table table tbody tr td input[type=submit]:hover,
.front-end-table table tbody tr td input[type=button]:hover,
.front-end-table table tbody tr td button:hover,
.front-end-table table tbody tr td .button:hover,
table.front-end-table tbody tr td input[type=submit]:hover,
table.front-end-table tbody tr td input[type=button]:hover,
table.front-end-table tbody tr td button:hover,
table.front-end-table tbody tr td .button:hover {
  background: #9b9495;
}
.front-end-table table tbody tr td a,
table.front-end-table tbody tr td a {
  color: #439b96;
}
.front-end-table table tbody tr td a:hover,
table.front-end-table tbody tr td a:hover {
  text-decoration: underline;
}
@media (max-width: 39.9375em) {
  .front-end-table table tbody tr td,
  table.front-end-table tbody tr td {
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .front-end-table table tbody tr td:first-child,
  table.front-end-table tbody tr td:first-child {
    padding-top: 20px;
  }
  .front-end-table table tbody tr td:last-child,
  table.front-end-table tbody tr td:last-child {
    padding-bottom: 20px;
  }
  .front-end-table table tbody tr td .tablesaw-cell-label,
  table.front-end-table tbody tr td .tablesaw-cell-label {
    font-family: "MontserratRegular", Arial, sans-serif;
    font-size: 13px;
    color: #402020;
  }
}
.front-end-table table th, .front-end-table table td,
table.front-end-table th,
table.front-end-table td {
  padding: 22px 12px;
}
@media (max-width: 39.9375em) {
  .front-end-table table th, .front-end-table table td,
  table.front-end-table th,
  table.front-end-table td {
    padding: 10px;
  }
}
.front-end-table table tfoot,
table.front-end-table tfoot {
  padding-top: 20px;
}
.front-end-table table tfoot td,
table.front-end-table tfoot td {
  padding: 14px 12px;
}

/* END OF TABLES ***********************/
.hmodal-open .hmodal #not-loggedin-popup-wrapper-outer {
  display: block;
}

#not-loggedin-popup-wrapper-outer {
  display: none;
}
#not-loggedin-popup-wrapper-outer .popup-hidden {
  display: none;
}

.hmodal-component.hmodal-popup.not-loggedin-popup-hmodal-custom .hmodal,
.not-loggedin-popup-hmodal-custom .hmodal {
  max-width: 700px;
  height: 684px;
}
.hmodal-component.hmodal-popup.not-loggedin-popup-hmodal-custom .hmodal .close-hmodal,
.not-loggedin-popup-hmodal-custom .hmodal .close-hmodal {
  z-index: 1;
}
.hmodal-component.hmodal-popup.not-loggedin-popup-hmodal-custom .hmodal #not-loggedin-popup-wrapper-outer,
.not-loggedin-popup-hmodal-custom .hmodal #not-loggedin-popup-wrapper-outer {
  height: 100%;
  position: relative;
}
.hmodal-component.hmodal-popup.not-loggedin-popup-hmodal-custom .hmodal #not-loggedin-popup-wrapper-outer .not-loggedin-iframe-popup-wrapper,
.not-loggedin-popup-hmodal-custom .hmodal #not-loggedin-popup-wrapper-outer .not-loggedin-iframe-popup-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.hmodal-component.hmodal-popup.not-loggedin-popup-hmodal-custom .hmodal #not-loggedin-popup-wrapper-outer.popup-hidden,
.not-loggedin-popup-hmodal-custom .hmodal #not-loggedin-popup-wrapper-outer.popup-hidden {
  z-index: -1;
}
.hmodal-component.hmodal-popup.not-loggedin-popup-hmodal-custom .hmodal #not-loggedin-popup-wrapper-outer iframe,
.not-loggedin-popup-hmodal-custom .hmodal #not-loggedin-popup-wrapper-outer iframe {
  width: 100%;
  height: 100%;
}

#popup-login #wrapper_login .login-box {
  padding: 0;
  max-width: 100%;
}

#account-registration #wrapper_register #agree_terms_wrapper .hh-validation-item-container:after {
  display: none !important;
}
#account-registration .sign-in-popup {
  background: transparent;
}

.hmodal-open .hmodal #not-loggedin-popup-wrapper-outer {
  display: block;
}

#registertab.tab {
  /*display: block !important;*/
  font-size: 16px;
  text-align: left;
}
#registertab.tab .row {
  margin-bottom: 15px;
}
#registertab.tab .row .hh-validation-item-container {
  margin-top: 5px;
}
#registertab.tab .row .red-star {
  color: #686162;
}
#registertab.tab .row#agree_terms_wrapper .star-red, #registertab.tab .row.agree_terms_wrapper .star-red {
  color: #686162;
}
#registertab.tab .row#agree_terms_wrapper .checkbox-row label, #registertab.tab .row.agree_terms_wrapper .checkbox-row label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  font-size: 16px;
}
#registertab.tab .row#agree_terms_wrapper .checkbox-row input[type=checkbox]:not(:checked),
#registertab.tab .row#agree_terms_wrapper .checkbox-row input[type=checkbox]:checked, #registertab.tab .row.agree_terms_wrapper .checkbox-row input[type=checkbox]:not(:checked),
#registertab.tab .row.agree_terms_wrapper .checkbox-row input[type=checkbox]:checked {
  position: absolute;
  top: 10px;
  left: 5px;
  z-index: -1;
  width: auto !important;
  opacity: 0;
  visibility: hidden;
  margin: 0;
}
#registertab.tab .row#agree_terms_wrapper .checkbox-row span, #registertab.tab .row.agree_terms_wrapper .checkbox-row span {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  min-height: 22px;
  margin-bottom: 5px;
  line-height: 1.2;
}
#registertab.tab .row#agree_terms_wrapper .checkbox-row input[type=checkbox] + span:before, #registertab.tab .row.agree_terms_wrapper .checkbox-row input[type=checkbox] + span:before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 22px;
  height: 22px;
  margin-right: 5px;
  line-height: 18px;
  z-index: 1;
  background: #fff;
  border: 1px solid #eee5e4;
  border-radius: 2px;
}
#registertab.tab .row#agree_terms_wrapper .checkbox-row input[type=checkbox] + span:before, #registertab.tab .row.agree_terms_wrapper .checkbox-row input[type=checkbox] + span:before {
  border-radius: 2px;
  font-family: "FontAwesome";
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  text-indent: 0;
}
#registertab.tab .row#agree_terms_wrapper .checkbox-row input[type=checkbox]:checked + span:before, #registertab.tab .row.agree_terms_wrapper .checkbox-row input[type=checkbox]:checked + span:before {
  border-color: #5ab7b2;
  content: "\f00c";
  color: #fff;
  border-radius: 2px;
}
#registertab.tab input.button {
  width: 100%;
}

#popup-login .login-logo {
  display: none !important;
}

.favorites-popup .collection-popup .create-new-collection label {
  cursor: pointer;
}
.favorites-popup .collection-popup .footer .align-left {
  display: inline;
}
.favorites-popup .collection-popup .footer .align-right {
  display: inline;
  float: right;
}
.favorites-popup .collection-popup.edit-sidemark-popup .o-manage-collections__new {
  margin-top: 0;
}
.favorites-popup .collection-popup.edit-sidemark-popup .collection-sidemark-component {
  margin-top: 0;
}
.favorites-popup .collection-popup.edit-sidemark-popup .popup-default-footer {
  justify-content: flex-end !important;
}

.hmodal-component.hmodal-popup.hmodal-popup-default.add-new-collection-popup .hmodal .hmodal-content-main .popup-default-inner-wrapper .popup-default-main {
  height: 200px;
}
.hmodal-component.hmodal-popup.hmodal-popup-default.add-new-collection-popup .hmodal .hmodal-content-main .popup-default-inner-wrapper .popup-default-main .o-manage-collections__new {
  margin-top: 0;
}
.hmodal-component.hmodal-popup.hmodal-popup-default.add-new-collection-popup .hmodal .hmodal-content-main .popup-default-inner-wrapper .popup-default-main .collection-sidemark-component {
  margin-top: 0;
}
.hmodal-component.hmodal-popup.hmodal-popup-default.add-new-collection-popup .hmodal .hmodal-content-main .popup-default-inner-wrapper .popup-default-footer {
  justify-content: flex-end !important;
}

.hmodal-component.hmodal-popup.last-mile-popup .hmodal {
  max-width: 1200px !important;
  padding: 25px;
}

input:focus, textarea:focus, select:focus {
  border-color: #ff6a00 !important;
}

@media (max-width: 641px) {
  .hmodal-component.hmodal-popup .hmodal {
    padding: 50px 10px;
  }
}