@charset "UTF-8";
/*
 Theme Name:   Mast
 Theme URI:    http://example.com/mast /
 Description:  Mast - A custom theme for clients of Mast Interactive
 Author:       Mast Interactive
 Author URI:   http://mastinteractive.com
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:        mast
 Text Domain:  mast
*/
/*-------------------------------------------------------*\
    All Styles Get Imported Here
/*-------------------------------------------------------*/
/* Include files recursively... */
/*-------------------------------------------------------*\
    Colors
/*-------------------------------------------------------*/
/* Main Theme Colors */
/* Alias names */
/* Monosaturated Colors */
/* Main Color Variants */
/* Semi-Transparent */
/* Default Event Type Colors */
/* Primary Colors */
/* Generic Defaults */
/* Admin Colors */
/*-------------------------------------------------------*\

    SETTINGS:

    All dependencies should go here
    (e.g. variables, mixins, functions, placeholders..)

/*-------------------------------------------------------*/
/*-----------------------------------------------
    Variables
/*----------------------------------------------*/
/* Basic or Advanced usage */
/* Breakpoints */
/* Panels */
/* Layout */
/* Container Restrictions */
/* Compatibility Variables */
/* Font Sizes */
/* Mixin Stuff */
/* Miscellaneous */
/*-------------------------------------------------------*\
    Fonts
/*-------------------------------------------------------*/
/*-------------------------------------------------------*\
    FontAwesome Variables
/*-------------------------------------------------------*/
/* Sizes */
/* Families */
/* Weights */
/* Redux Compatibility */
/*-------------------------------------------------------*\
    Functions
/*-------------------------------------------------------*/
/**
 * Convert fonts
 */
/*-------------------------------------------------------*\
    Mixins
/*-------------------------------------------------------*/
/*  Column width
-------------------------------------------------------*/
/*  Column push
-------------------------------------------------------*/
/*  Clearfix
-------------------------------------------------------*/
/*  Breakpoints
-------------------------------------------------------*/
/*  Column push
-------------------------------------------------------*/
/*  Breakpoints
-------------------------------------------------------*/
/*-------------------------------------------------------*\
    Mixins
/*-------------------------------------------------------*/
/*  Column width
-------------------------------------------------------*/
/*  Column push
-------------------------------------------------------*/
/*  Clearfix
-------------------------------------------------------*/
/*  Breakpoints
-------------------------------------------------------*/
/*  Prefix Helpers
-------------------------------------------------------*/
/*  Miscellaneous Helpers
-------------------------------------------------------*/
/* Style text input placeholder text */
/**
 * Fix for vw, vh, vmin, vmax on iOS 7.
 * http://caniuse.com/#feat=viewport-units
 *
 * This fix works by replacing viewport units with px values on known screen sizes.
 *
 * iPhone 6 and 6 Plus cannot run iOS 7, so are not targeted by this fix.
 * Target devices running iOS 8+ will incidentally execute the media query,
 * but this will still produce the expected result; so this is not a problem.
 *
 * As an example, replace:
 *
 *   height: 50vh;
 *   font-size: 5vmin;
 *
 * with:
 *
 *   @include viewport-unit(height, 50vh);
 *   @include viewport-unit(font-size, 5vmin);
 */
/* Flex-it */
/* Gradient background */
/* Generic image drop shadow */
/* For links that are children of h1, h2, h3, etc.. */
/* Slick underline grow on link hover */
/* Cross-browser text-stroke */
/*-------------------------------------------------------*\
    Base
/*-------------------------------------------------------*/
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow-y: scroll;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-weight: normal;
  border: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  line-height: 1.5;
  font-family: "Gotham A", helvetica, arial, sans-serif;
  font-weight: 400;
  background: white;
  color: #333333;
  font-size: 15px;
  margin: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-font-smoothing: subpixel-antialiased;
  -ms-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
  /**
   * Firefox specific rule
   */
}
@-moz-document url-prefix() {
  html body, body body {
    font-weight: 300;
  }
}

img {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}

figure {
  margin: 0;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio, canvas, progress, video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden], template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b, strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button, input, optgroup, select, textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button, select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button, html input[type=button],
input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled], html input[disabled] {
  cursor: default;
  opacity: 0.3;
}
button[disabled]:hover, html input[disabled]:hover {
  background-color: transparent;
  color: inherit;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

/*-----------------------------------------------
    Style Definitions
/*----------------------------------------------*/
/* Include files recursively... */
/*-------------------------------------------------------*\
    Buttons
/*-------------------------------------------------------*/
.button, body.page-template-template-find-a-pro .modal .wrapper .button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button, button, input[type=submit], input[type=button], a.button:link, a.button:visited {
  border-width: 2.5px;
  border-style: solid;
  display: inline-block;
  padding: 7px 25px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  border-radius: 0;
  background: transparent;
  position: relative;
}

.button, body.page-template-template-find-a-pro .modal .wrapper .button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button, button, input[type=submit], input[type=button], a.button:link, a.button:visited {
  color: #000000;
  border-color: #000000;
  -webkit-transition: all 0.35s cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: all 0.35s cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: all 0.35s cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: all 0.35s cubic-bezier(0, 0.32, 0, 1.12);
  transition: all 0.35s cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
}
.button.full, body.page-template-template-find-a-pro .modal .wrapper .full.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .full.button, button.full, input[type=submit].full, input[type=button].full, a.button:link.full, a.button:visited.full {
  display: block;
}
@media screen and (min-width: 768px) {
  .button, body.page-template-template-find-a-pro .modal .wrapper .button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button, button, input[type=submit], input[type=button], a.button:link, a.button:visited {
    min-width: 140px;
  }
}
.button strong, body.page-template-template-find-a-pro .modal .wrapper .button strong, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button strong, button strong, input[type=submit] strong, input[type=button] strong, a.button:link strong, a.button:visited strong {
  color: inherit !important;
}
.button:before, body.page-template-template-find-a-pro .modal .wrapper .button:before, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button:before, button:before, input[type=submit]:before, input[type=button]:before, a.button:link:before, a.button:visited:before {
  float: right;
  line-height: 1.5em;
  padding-left: 10px;
  margin-right: -4px;
}
.button.small, body.page-template-template-find-a-pro .modal .wrapper .small.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .small.button, button.small, input[type=submit].small, input[type=button].small, a.button:link.small, a.button:visited.small {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 18px;
  min-width: auto;
}
.button.fat, body.page-template-template-find-a-pro .modal .wrapper .fat.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .fat.button, button.fat, input[type=submit].fat, input[type=button].fat, a.button:link.fat, a.button:visited.fat {
  padding: 17px 30px;
}
.button:hover, body.page-template-template-find-a-pro .modal .wrapper .button:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button:hover, .button:focus, body.page-template-template-find-a-pro .modal .wrapper .button:focus, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button:focus, .button:active, body.page-template-template-find-a-pro .modal .wrapper .button:active, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button:active, button:hover, button:focus, button:active, input[type=submit]:hover, input[type=submit]:focus, input[type=submit]:active, input[type=button]:hover, input[type=button]:focus, input[type=button]:active, a.button:link:hover, a.button:link:focus, a.button:link:active, a.button:visited:hover, a.button:visited:focus, a.button:visited:active {
  outline: 0;
  text-decoration: none;
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  -webkit-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
}
.button.outline, body.page-template-template-find-a-pro .modal .wrapper .outline.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .outline.button, button.outline, input[type=submit].outline, input[type=button].outline, a.button:link.outline, a.button:visited.outline {
  background: transparent;
  color: #000000;
  border: solid 1px #000000;
}
.button.outline:hover, body.page-template-template-find-a-pro .modal .wrapper .outline.button:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .outline.button:hover, .button.outline:focus, body.page-template-template-find-a-pro .modal .wrapper .outline.button:focus, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .outline.button:focus, .button.outline:active, body.page-template-template-find-a-pro .modal .wrapper .outline.button:active, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .outline.button:active, button.outline:hover, button.outline:focus, button.outline:active, input[type=submit].outline:hover, input[type=submit].outline:focus, input[type=submit].outline:active, input[type=button].outline:hover, input[type=button].outline:focus, input[type=button].outline:active, a.button:link.outline:hover, a.button:link.outline:focus, a.button:link.outline:active, a.button:visited.outline:hover, a.button:visited.outline:focus, a.button:visited.outline:active {
  background: #000000;
  color: white;
  border-color: #000000;
}
.button.white, body.page-template-template-find-a-pro .modal .wrapper .white.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .white.button, button.white, input[type=submit].white, input[type=button].white, a.button:link.white, a.button:visited.white {
  background: white;
  color: #000000;
  text-decoration: none;
}
.button.white:hover, body.page-template-template-find-a-pro .modal .wrapper .white.button:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .white.button:hover, .button.white:focus, body.page-template-template-find-a-pro .modal .wrapper .white.button:focus, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .white.button:focus, button.white:hover, button.white:focus, input[type=submit].white:hover, input[type=submit].white:focus, input[type=button].white:hover, input[type=button].white:focus, a.button:link.white:hover, a.button:link.white:focus, a.button:visited.white:hover, a.button:visited.white:focus {
  background: #000000;
  border-color: white !important;
  color: white !important;
}
.button.secondary, body.page-template-template-find-a-pro .modal .wrapper .secondary.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .secondary.button, button.secondary, input[type=submit].secondary, input[type=button].secondary, a.button:link.secondary, a.button:visited.secondary {
  border-color: white;
  background: transparent;
  color: white;
}
.button.secondary:hover, body.page-template-template-find-a-pro .modal .wrapper .secondary.button:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .secondary.button:hover, .button.secondary:focus, body.page-template-template-find-a-pro .modal .wrapper .secondary.button:focus, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .secondary.button:focus, button.secondary:hover, button.secondary:focus, input[type=submit].secondary:hover, input[type=submit].secondary:focus, input[type=button].secondary:hover, input[type=button].secondary:focus, a.button:link.secondary:hover, a.button:link.secondary:focus, a.button:visited.secondary:hover, a.button:visited.secondary:focus {
  border-color: white;
  background: white;
  color: #000000;
}
.button.faded, body.page-template-template-find-a-pro .modal .wrapper .faded.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .faded.button, button.faded, input[type=submit].faded, input[type=button].faded, a.button:link.faded, a.button:visited.faded {
  border-color: #f4f4f4;
  background: #f4f4f4;
  color: #000000;
}
.button.faded:hover, body.page-template-template-find-a-pro .modal .wrapper .faded.button:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .faded.button:hover, .button.faded:focus, body.page-template-template-find-a-pro .modal .wrapper .faded.button:focus, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .faded.button:focus, button.faded:hover, button.faded:focus, input[type=submit].faded:hover, input[type=submit].faded:focus, input[type=button].faded:hover, input[type=button].faded:focus, a.button:link.faded:hover, a.button:link.faded:focus, a.button:visited.faded:hover, a.button:visited.faded:focus {
  border-color: #f4f4f4;
  background: white;
  color: #000000;
}
.button.borderless, body.page-template-template-find-a-pro .modal .wrapper .borderless.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .borderless.button, button.borderless, input[type=submit].borderless, input[type=button].borderless, a.button:link.borderless, a.button:visited.borderless {
  border-color: transparent !important;
}
.button.tertiary, body.page-template-template-find-a-pro .modal .wrapper .button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button, button.tertiary, input[type=submit].tertiary, input[type=button].tertiary, a.button:link.tertiary, a.button:visited.tertiary {
  background: #000000;
  color: white;
}
.button.tertiary.outline, body.page-template-template-find-a-pro .modal .wrapper .button.outline, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button.outline, button.tertiary.outline, input[type=submit].tertiary.outline, input[type=button].tertiary.outline, a.button:link.tertiary.outline, a.button:visited.tertiary.outline {
  color: #000000;
  border: solid 1px #000000;
}
.button.tertiary.white, body.page-template-template-find-a-pro .modal .wrapper .button.white, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button.white, button.tertiary.white, input[type=submit].tertiary.white, input[type=button].tertiary.white, a.button:link.tertiary.white, a.button:visited.tertiary.white {
  background: white;
  color: #000000;
}
.button.tertiary:hover, body.page-template-template-find-a-pro .modal .wrapper .button:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button:hover, .button.tertiary:focus, body.page-template-template-find-a-pro .modal .wrapper .button:focus, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button:focus, button.tertiary:hover, button.tertiary:focus, input[type=submit].tertiary:hover, input[type=submit].tertiary:focus, input[type=button].tertiary:hover, input[type=button].tertiary:focus, a.button:link.tertiary:hover, a.button:link.tertiary:focus, a.button:visited.tertiary:hover, a.button:visited.tertiary:focus {
  background: transparent;
  border-color: #000000;
  color: #000000;
}
.button.quaternary, body.page-template-template-find-a-pro .modal .wrapper .quaternary.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .quaternary.button, button.quaternary, input[type=submit].quaternary, input[type=button].quaternary, a.button:link.quaternary, a.button:visited.quaternary {
  background: #64b467;
  color: white;
  border-color: white;
}
.button.quaternary.outline, body.page-template-template-find-a-pro .modal .wrapper .quaternary.outline.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .quaternary.outline.button, button.quaternary.outline, input[type=submit].quaternary.outline, input[type=button].quaternary.outline, a.button:link.quaternary.outline, a.button:visited.quaternary.outline {
  color: #64b467;
  border: solid 1px #64b467;
}
.button.quaternary:hover, body.page-template-template-find-a-pro .modal .wrapper .quaternary.button:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .quaternary.button:hover, .button.quaternary:focus, body.page-template-template-find-a-pro .modal .wrapper .quaternary.button:focus, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .quaternary.button:focus, button.quaternary:hover, button.quaternary:focus, input[type=submit].quaternary:hover, input[type=submit].quaternary:focus, input[type=button].quaternary:hover, input[type=button].quaternary:focus, a.button:link.quaternary:hover, a.button:link.quaternary:focus, a.button:visited.quaternary:hover, a.button:visited.quaternary:focus {
  background: white;
  border-color: #64b467;
  color: #64b467;
}
.button.neutral, body.page-template-template-find-a-pro .modal .wrapper .neutral.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .neutral.button, button.neutral, input[type=submit].neutral, input[type=button].neutral, a.button:link.neutral, a.button:visited.neutral {
  background: #838385;
}
.button.neutral.outline, body.page-template-template-find-a-pro .modal .wrapper .neutral.outline.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .neutral.outline.button, button.neutral.outline, input[type=submit].neutral.outline, input[type=button].neutral.outline, a.button:link.neutral.outline, a.button:visited.neutral.outline {
  color: #838385;
  border: solid 1px #999999;
}
.button.neutral.white, body.page-template-template-find-a-pro .modal .wrapper .neutral.white.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .neutral.white.button, button.neutral.white, input[type=submit].neutral.white, input[type=button].neutral.white, a.button:link.neutral.white, a.button:visited.neutral.white {
  background: white;
  color: #838385;
}
.button.push-bottom, body.page-template-template-find-a-pro .modal .wrapper .push-bottom.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .push-bottom.button, button.push-bottom, input[type=submit].push-bottom, input[type=button].push-bottom, a.button:link.push-bottom, a.button:visited.push-bottom {
  margin-bottom: 8px;
}
.button.green, body.page-template-template-find-a-pro .modal .wrapper .green.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .green.button, button.green, input[type=submit].green, input[type=button].green, a.button:link.green, a.button:visited.green {
  background-color: #64b467 !important;
  color: white !important;
  border: 1px solid transparent;
}
.button.green:hover, body.page-template-template-find-a-pro .modal .wrapper .green.button:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .green.button:hover, button.green:hover, input[type=submit].green:hover, input[type=button].green:hover, a.button:link.green:hover, a.button:visited.green:hover {
  background-color: white !important;
  border-color: #64b467 !important;
  color: #64b467 !important;
}
.button + .button, body.page-template-template-find-a-pro .modal .wrapper .button + .button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button + .button, button + .button, body.page-template-template-find-a-pro .modal .wrapper button + .button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper button + .button, input[type=submit] + .button, body.page-template-template-find-a-pro .modal .wrapper input[type=submit] + .button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper input[type=submit] + .button, input[type=button] + .button, body.page-template-template-find-a-pro .modal .wrapper input[type=button] + .button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper input[type=button] + .button, a.button:link + .button, a.button:visited + .button {
  margin-left: 0.5em;
}

form button[type=submit].loading:before, form button.loading-spinner.loading:before, form .button[type=submit].loading:before, form body.page-template-template-find-a-pro .modal .wrapper [type=submit].loading.button:before, body.page-template-template-find-a-pro .modal .wrapper form [type=submit].loading.button:before, form body.page-template-template-find-a-pro .modal-loading-overlay .wrapper [type=submit].loading.button:before, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper form [type=submit].loading.button:before, form .button.loading-spinner.loading:before, form body.page-template-template-find-a-pro .modal .wrapper .loading-spinner.loading.button:before, body.page-template-template-find-a-pro .modal .wrapper form .loading-spinner.loading.button:before, form body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .loading-spinner.loading.button:before, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper form .loading-spinner.loading.button:before, form input[type=submit].loading:before, form input.loading-spinner.loading:before, form .spinner[type=submit].loading:before, form .spinner.loading-spinner.loading:before, form[isvalid=true] input[type=text] + button:not(.loading):before, form[isvalid=true] input[type=text] + .button:not(.loading):before, form[isvalid=true] body.page-template-template-find-a-pro .modal .wrapper input[type=text] + .button:not(.loading):before, form[isvalid=true] body.page-template-template-find-a-pro .modal-loading-overlay .wrapper input[type=text] + .button:not(.loading):before, form[isvalid=true] input[type=text] + input[type=submit]:not(.loading):before, form[isvalid=true] input[type=text] + .spinner:not(.loading):before {
  content: "";
  position: absolute;
  right: 100%;
  color: #000000;
  width: 13px;
  height: 100%;
  z-index: 99;
  top: 0;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
}

form[isvalid=true] input[type=text] + button:not(.loading):before, form[isvalid=true] input[type=text] + .button:not(.loading):before, form[isvalid=true] body.page-template-template-find-a-pro .modal .wrapper input[type=text] + .button:not(.loading):before, form[isvalid=true] body.page-template-template-find-a-pro .modal-loading-overlay .wrapper input[type=text] + .button:not(.loading):before, form[isvalid=true] input[type=text] + input[type=submit]:not(.loading):before, form[isvalid=true] input[type=text] + .spinner:not(.loading):before {
  background-image: url(./assets/img/check.gif);
  overflow: visible;
  padding: 0;
  width: 18px;
  background-size: contain;
  background-position: center;
  border-radius: 50%;
  height: 18px;
  bottom: 0;
  top: 9px;
  transition: all 0.35s ease-in-out !important;
  filter: blur(0.4px) hue-rotate(15deg);
}

form button[type=submit].loading, form button.loading-spinner.loading, form .button[type=submit].loading, form body.page-template-template-find-a-pro .modal .wrapper [type=submit].loading.button, body.page-template-template-find-a-pro .modal .wrapper form [type=submit].loading.button, form body.page-template-template-find-a-pro .modal-loading-overlay .wrapper [type=submit].loading.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper form [type=submit].loading.button, form .button.loading-spinner.loading, form body.page-template-template-find-a-pro .modal .wrapper .loading-spinner.loading.button, body.page-template-template-find-a-pro .modal .wrapper form .loading-spinner.loading.button, form body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .loading-spinner.loading.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper form .loading-spinner.loading.button, form input[type=submit].loading, form input.loading-spinner.loading, form .spinner[type=submit].loading, form .spinner.loading-spinner.loading {
  background-color: #838385 !important;
}
form button[type=submit].loading:before, form button.loading-spinner.loading:before, form .button[type=submit].loading:before, form body.page-template-template-find-a-pro .modal .wrapper [type=submit].loading.button:before, body.page-template-template-find-a-pro .modal .wrapper form [type=submit].loading.button:before, form body.page-template-template-find-a-pro .modal-loading-overlay .wrapper [type=submit].loading.button:before, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper form [type=submit].loading.button:before, form .button.loading-spinner.loading:before, form body.page-template-template-find-a-pro .modal .wrapper .loading-spinner.loading.button:before, body.page-template-template-find-a-pro .modal .wrapper form .loading-spinner.loading.button:before, form body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .loading-spinner.loading.button:before, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper form .loading-spinner.loading.button:before, form input[type=submit].loading:before, form input.loading-spinner.loading:before, form .spinner[type=submit].loading:before, form .spinner.loading-spinner.loading:before {
  filter: invert(1);
  background-image: url("./assets/img/loader.svg");
}
form button[type=submit].error, form button.loading-spinner.error, form .button[type=submit].error, form body.page-template-template-find-a-pro .modal .wrapper [type=submit].error.button, body.page-template-template-find-a-pro .modal .wrapper form [type=submit].error.button, form body.page-template-template-find-a-pro .modal-loading-overlay .wrapper [type=submit].error.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper form [type=submit].error.button, form .button.loading-spinner.error, form body.page-template-template-find-a-pro .modal .wrapper .loading-spinner.error.button, body.page-template-template-find-a-pro .modal .wrapper form .loading-spinner.error.button, form body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .loading-spinner.error.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper form .loading-spinner.error.button, form input[type=submit].error, form input.loading-spinner.error, form .spinner[type=submit].error, form .spinner.loading-spinner.error {
  background-color: #ff2020 !important;
}
form[isvalid=true] input[type=text]:placeholder-shown + button:before, form[isvalid=true] input[type=text]:placeholder-shown + .button:before, form[isvalid=true] body.page-template-template-find-a-pro .modal .wrapper input[type=text]:placeholder-shown + .button:before, form[isvalid=true] body.page-template-template-find-a-pro .modal-loading-overlay .wrapper input[type=text]:placeholder-shown + .button:before, form[isvalid=true] input[type=text]:placeholder-shown + input[type=submit]:before, form[isvalid=true] input[type=text]:placeholder-shown + .spinner:before {
  opacity: 0 !important;
}
/*-------------------------------------------------------*\
    Flex
/*-------------------------------------------------------*/
.flex:not(.flex-desktop):not(.flex-center) {
  display: flex;
  align-items: stretch;
  align-content: stretch;
  flex-wrap: wrap;
}
@media screen and (min-width: 1200px) {
  .flex.flex-desktop {
    display: flex;
    align-items: stretch;
    align-content: stretch;
  }
}
@media screen and (min-width: 1200px) {
  .flex.flex-center {
    display: flex;
    align-items: center;
    align-content: center;
  }
}
@media screen and (min-width: 768px) {
  .flex.flex-stretch {
    display: flex;
    align-items: stretch;
    align-content: stretch;
  }
}
.flex.top > .col, .flex.top .item {
  align-items: flex-start;
}
.flex.bottom > .col, .flex.bottom .item {
  align-items: flex-end;
}
.flex.center > .col, .flex.center .item {
  align-items: center;
}
.flex > .item {
  flex: 1;
}
.flex > .col.top, .flex .item.top {
  align-self: flex-start;
}
.flex > .col.bottom, .flex .item.bottom {
  align-self: flex-end;
}
.flex > .col.fixed, .flex .item.fixed {
  flex: none;
  max-width: 50%;
}

/*-------------------------------------------------------*\
    Forms
/*-------------------------------------------------------*/
form .select-wrapper, form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  padding: 0 25px 0 7px;
  background: white;
  border: 1.5px solid #cbcccc;
  border-radius: 0;
  outline: none;
  color: #000000;
  line-height: 1.4;
  text-indent: 0.01px;
  text-overflow: "";
  position: relative;
  width: 100%;
  min-height: 39px;
}

input[type=search] {
  -webkit-appearance: searchfield !important;
}
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: searchfield-cancel-button !important;
}

form {
  /* remove the default select arrow for IE10 and up */
}
form .input {
  position: relative;
  float: right;
  width: 100%;
}
form input {
  border-radius: 0;
  border: 1px solid #cbcccc;
}
form select {
  /* remove the default select arrow for non-IE browsers */
  cursor: pointer;
  cursor: s-resize;
}
form select::-ms-expand {
  display: none;
}
form .select-wrapper:after {
  content: "";
  font-family: fontawesome;
  font-weight: 200;
  position: absolute;
  height: 100%;
  align-items: center;
  right: 12px;
  top: 0;
  bottom: 0;
  line-height: 0;
  font-size: 16px;
  padding: 0;
  text-align: right;
  -webkit-text-stroke: 1.5px white;
  color: #64b467;
  width: 16px;
  display: flex;
}
form .select-wrapper > select {
  background: transparent;
  border: none;
  z-index: 9;
  height: 100%;
  font-size: 17.5px;
  position: absolute;
  top: 0;
  bottom: 0;
}
form .select-wrapper > select:focus, form .select-wrapper > form .select-wrapper > select:active {
  display: block;
  color: #64b467;
  font-weight: 500;
}
form .of-label {
  line-height: 1.7;
}

.text-input.error {
  box-shadow: 0px 0px 4px #ff2020;
  color: #ff2020;
  border: 1px solid rgba(255, 32, 32, 0.4);
}

@media screen and (max-width: 768px) {
  .gglcptch_recaptcha > * {
    margin-left: auto;
    margin-right: auto;
  }
}

/*-------------------------------------------------------*\
    Vintage Grid
/*-------------------------------------------------------*/
/*-------------------------------------------------------*\
    Mobile First Grid
/*-------------------------------------------------------*/
/* Small Grid
/*-------------------------------------------------------*/
@media only screen {
  .small-1 {
    width: 8.3333333333%;
  }

  .small-2 {
    width: 16.6666666667%;
  }

  .small-3 {
    width: 25%;
  }

  .small-4 {
    width: 33.3333333333%;
  }

  .small-5 {
    width: 41.6666666667%;
  }

  .small-6 {
    width: 50%;
  }

  .small-7 {
    width: 58.3333333333%;
  }

  .small-8 {
    width: 66.6666666667%;
  }

  .small-9 {
    width: 75%;
  }

  .small-10 {
    width: 83.3333333333%;
  }

  .small-11 {
    width: 91.6666666667%;
  }

  .small-12 {
    width: 100%;
  }

  .small-push-1 {
    left: 8.3333333333%;
  }

  .small-push-2 {
    left: 16.6666666667%;
  }

  .small-push-3 {
    left: 25%;
  }

  .small-push-4 {
    left: 33.3333333333%;
  }

  .small-push-5 {
    left: 41.6666666667%;
  }

  .small-push-6 {
    left: 50%;
  }

  .small-push-7 {
    left: 58.3333333333%;
  }

  .small-push-8 {
    left: 66.6666666667%;
  }

  .small-push-9 {
    left: 75%;
  }

  .small-push-10 {
    left: 83.3333333333%;
  }

  .small-push-11 {
    left: 91.6666666667%;
  }

  .small-push-12 {
    left: 100%;
  }

  .small-pull-1 {
    right: 8.3333333333%;
  }

  .small-pull-2 {
    right: 16.6666666667%;
  }

  .small-pull-3 {
    right: 25%;
  }

  .small-pull-4 {
    right: 33.3333333333%;
  }

  .small-pull-5 {
    right: 41.6666666667%;
  }

  .small-pull-6 {
    right: 50%;
  }

  .small-pull-7 {
    right: 58.3333333333%;
  }

  .small-pull-8 {
    right: 66.6666666667%;
  }

  .small-pull-9 {
    right: 75%;
  }

  .small-pull-10 {
    right: 83.3333333333%;
  }

  .small-pull-11 {
    right: 91.6666666667%;
  }

  .small-pull-12 {
    right: 100%;
  }

  .small-centered {
    margin: 0 auto;
  }
}
/* Medium Grid
/*-------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .medium-1 {
    width: 8.3333333333%;
  }

  .medium-2 {
    width: 16.6666666667%;
  }

  .medium-3 {
    width: 25%;
  }

  .medium-4 {
    width: 33.3333333333%;
  }

  .medium-5 {
    width: 41.6666666667%;
  }

  .medium-6 {
    width: 50%;
  }

  .medium-7 {
    width: 58.3333333333%;
  }

  .medium-8 {
    width: 66.6666666667%;
  }

  .medium-9 {
    width: 75%;
  }

  .medium-10 {
    width: 83.3333333333%;
  }

  .medium-11 {
    width: 91.6666666667%;
  }

  .medium-12 {
    width: 100%;
  }

  .medium-push-1 {
    left: 8.3333333333%;
  }

  .medium-push-2 {
    left: 16.6666666667%;
  }

  .medium-push-3 {
    left: 25%;
  }

  .medium-push-4 {
    left: 33.3333333333%;
  }

  .medium-push-5 {
    left: 41.6666666667%;
  }

  .medium-push-6 {
    left: 50%;
  }

  .medium-push-7 {
    left: 58.3333333333%;
  }

  .medium-push-8 {
    left: 66.6666666667%;
  }

  .medium-push-9 {
    left: 75%;
  }

  .medium-push-10 {
    left: 83.3333333333%;
  }

  .medium-push-11 {
    left: 91.6666666667%;
  }

  .medium-push-12 {
    left: 100%;
  }

  .medium-pull-1 {
    right: 8.3333333333%;
  }

  .medium-pull-2 {
    right: 16.6666666667%;
  }

  .medium-pull-3 {
    right: 25%;
  }

  .medium-pull-4 {
    right: 33.3333333333%;
  }

  .medium-pull-5 {
    right: 41.6666666667%;
  }

  .medium-pull-6 {
    right: 50%;
  }

  .medium-pull-7 {
    right: 58.3333333333%;
  }

  .medium-pull-8 {
    right: 66.6666666667%;
  }

  .medium-pull-9 {
    right: 75%;
  }

  .medium-pull-10 {
    right: 83.3333333333%;
  }

  .medium-pull-11 {
    right: 91.6666666667%;
  }

  .medium-pull-12 {
    right: 100%;
  }

  .medium-centered {
    margin: 0 auto;
  }
}
/* Large Grid
/*-------------------------------------------------------*/
@media screen and (min-width: 1200px) {
  .large-1 {
    width: 8.3333333333%;
  }

  .large-2 {
    width: 16.6666666667%;
  }

  .large-3 {
    width: 25%;
  }

  .large-4 {
    width: 33.3333333333%;
  }

  .large-5 {
    width: 41.6666666667%;
  }

  .large-6 {
    width: 50%;
  }

  .large-7 {
    width: 58.3333333333%;
  }

  .large-8 {
    width: 66.6666666667%;
  }

  .large-9 {
    width: 75%;
  }

  .large-10 {
    width: 83.3333333333%;
  }

  .large-11 {
    width: 91.6666666667%;
  }

  .large-12 {
    width: 100%;
  }

  .large-push-1 {
    left: 8.3333333333%;
  }

  .large-push-2 {
    left: 16.6666666667%;
  }

  .large-push-3 {
    left: 25%;
  }

  .large-push-4 {
    left: 33.3333333333%;
  }

  .large-push-5 {
    left: 41.6666666667%;
  }

  .large-push-6 {
    left: 50%;
  }

  .large-push-7 {
    left: 58.3333333333%;
  }

  .large-push-8 {
    left: 66.6666666667%;
  }

  .large-push-9 {
    left: 75%;
  }

  .large-push-10 {
    left: 83.3333333333%;
  }

  .large-push-11 {
    left: 91.6666666667%;
  }

  .large-push-12 {
    left: 100%;
  }

  .large-pull-1 {
    right: 8.3333333333%;
  }

  .large-pull-2 {
    right: 16.6666666667%;
  }

  .large-pull-3 {
    right: 25%;
  }

  .large-pull-4 {
    right: 33.3333333333%;
  }

  .large-pull-5 {
    right: 41.6666666667%;
  }

  .large-pull-6 {
    right: 50%;
  }

  .large-pull-7 {
    right: 58.3333333333%;
  }

  .large-pull-8 {
    right: 66.6666666667%;
  }

  .large-pull-9 {
    right: 75%;
  }

  .large-pull-10 {
    right: 83.3333333333%;
  }

  .large-pull-11 {
    right: 91.6666666667%;
  }

  .large-pull-12 {
    right: 100%;
  }

  .large-centered {
    margin: 0 auto;
  }
}
/*-------------------------------------------------------*\
    Semantic Grid
/*-------------------------------------------------------*/
/*  Column width
-------------------------------------------------------*/
/* Mobile First Grid */
.row {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 10px;
}
.row:before, .row:after {
  content: "";
  display: block;
}
.row:after {
  clear: both;
}
.row .row {
  margin-right: -10px;
  margin-left: -10px;
  width: auto;
  max-width: none;
  padding: 0;
}
.row .row.inner {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.row.no-gutter .col, .row.inner .col {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
@media screen and (min-width: 768px) {
  .row.full {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .row.full-mobile {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .row.no-gutter-mobile .inner > .col {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

.full-row {
  width: 100%;
}
.full-row:before, .full-row:after {
  content: "";
  display: block;
}
.full-row:after {
  clear: both;
}
.full-row .row {
  padding: 0;
}

.col {
  float: left;
  width: 100%;
  position: relative;
  padding: 0 10px;
}
.col.full-col, .col.expand {
  padding-left: 0;
  padding-right: 0;
}
.col.end {
  float: right;
}
@media screen and (max-width: 768px) {
  .col.end-mobile {
    float: right;
  }
}
@media screen and (min-width: 768px) {
  .col.end-desktop {
    float: right;
  }
}
.col.static {
  position: static;
}

/* Small Grid */
@media only screen {
  .small-1 {
    width: 8.3333333333%;
  }

  .small-2 {
    width: 16.6666666667%;
  }

  .small-3 {
    width: 25%;
  }

  .small-4 {
    width: 33.3333333333%;
  }

  .small-5 {
    width: 41.6666666667%;
  }

  .small-6 {
    width: 50%;
  }

  .small-7 {
    width: 58.3333333333%;
  }

  .small-8 {
    width: 66.6666666667%;
  }

  .small-9 {
    width: 75%;
  }

  .small-10 {
    width: 83.3333333333%;
  }

  .small-11 {
    width: 91.6666666667%;
  }

  .small-12 {
    width: 100%;
  }

  .small-push-1 {
    left: 8.3333333333%;
  }

  .small-push-2 {
    left: 16.6666666667%;
  }

  .small-push-3 {
    left: 25%;
  }

  .small-push-4 {
    left: 33.3333333333%;
  }

  .small-push-5 {
    left: 41.6666666667%;
  }

  .small-push-6 {
    left: 50%;
  }

  .small-push-7 {
    left: 58.3333333333%;
  }

  .small-push-8 {
    left: 66.6666666667%;
  }

  .small-push-9 {
    left: 75%;
  }

  .small-push-10 {
    left: 83.3333333333%;
  }

  .small-push-11 {
    left: 91.6666666667%;
  }

  .small-push-12 {
    left: 100%;
  }

  .small-pull-1 {
    right: 8.3333333333%;
  }

  .small-pull-2 {
    right: 16.6666666667%;
  }

  .small-pull-3 {
    right: 25%;
  }

  .small-pull-4 {
    right: 33.3333333333%;
  }

  .small-pull-5 {
    right: 41.6666666667%;
  }

  .small-pull-6 {
    right: 50%;
  }

  .small-pull-7 {
    right: 58.3333333333%;
  }

  .small-pull-8 {
    right: 66.6666666667%;
  }

  .small-pull-9 {
    right: 75%;
  }

  .small-pull-10 {
    right: 83.3333333333%;
  }

  .small-pull-11 {
    right: 91.6666666667%;
  }

  .small-pull-12 {
    right: 100%;
  }

  .small-full-col {
    padding-left: 0;
    padding-right: 0;
  }

  .small-centered {
    margin: 0 auto;
    float: none;
  }

  .small-right {
    float: right;
  }

  .small-left {
    float: left;
  }
  .small-left.end {
    float: left;
  }
}
/* Medium Grid */
@media screen and (min-width: 768px) {
  .medium-1 {
    width: 8.3333333333%;
  }

  .medium-2 {
    width: 16.6666666667%;
  }

  .medium-3 {
    width: 25%;
  }

  .medium-4 {
    width: 33.3333333333%;
  }

  .medium-5 {
    width: 41.6666666667%;
  }

  .medium-6 {
    width: 50%;
  }

  .medium-7 {
    width: 58.3333333333%;
  }

  .medium-8 {
    width: 66.6666666667%;
  }

  .medium-9 {
    width: 75%;
  }

  .medium-10 {
    width: 83.3333333333%;
  }

  .medium-11 {
    width: 91.6666666667%;
  }

  .medium-12 {
    width: 100%;
  }

  .medium-push-1 {
    left: 8.3333333333%;
  }

  .medium-push-2 {
    left: 16.6666666667%;
  }

  .medium-push-3 {
    left: 25%;
  }

  .medium-push-4 {
    left: 33.3333333333%;
  }

  .medium-push-5 {
    left: 41.6666666667%;
  }

  .medium-push-6 {
    left: 50%;
  }

  .medium-push-7 {
    left: 58.3333333333%;
  }

  .medium-push-8 {
    left: 66.6666666667%;
  }

  .medium-push-9 {
    left: 75%;
  }

  .medium-push-10 {
    left: 83.3333333333%;
  }

  .medium-push-11 {
    left: 91.6666666667%;
  }

  .medium-push-12 {
    left: 100%;
  }

  .medium-pull-1 {
    right: 8.3333333333%;
  }

  .medium-pull-2 {
    right: 16.6666666667%;
  }

  .medium-pull-3 {
    right: 25%;
  }

  .medium-pull-4 {
    right: 33.3333333333%;
  }

  .medium-pull-5 {
    right: 41.6666666667%;
  }

  .medium-pull-6 {
    right: 50%;
  }

  .medium-pull-7 {
    right: 58.3333333333%;
  }

  .medium-pull-8 {
    right: 66.6666666667%;
  }

  .medium-pull-9 {
    right: 75%;
  }

  .medium-pull-10 {
    right: 83.3333333333%;
  }

  .medium-pull-11 {
    right: 91.6666666667%;
  }

  .medium-pull-12 {
    right: 100%;
  }

  .medium-full-col {
    padding-left: 0;
    padding-right: 0;
  }

  .medium-centered {
    float: none;
    margin: 0 auto;
  }

  .medium-right {
    float: right;
  }

  .medium-left {
    float: left;
  }
  .medium-left.end {
    float: left;
  }
}
/* Large Grid */
@media screen and (min-width: 1200px) {
  .large-1 {
    width: 8.3333333333%;
  }

  .large-2 {
    width: 16.6666666667%;
  }

  .large-3 {
    width: 25%;
  }

  .large-4 {
    width: 33.3333333333%;
  }

  .large-5 {
    width: 41.6666666667%;
  }

  .large-6 {
    width: 50%;
  }

  .large-7 {
    width: 58.3333333333%;
  }

  .large-8 {
    width: 66.6666666667%;
  }

  .large-9 {
    width: 75%;
  }

  .large-10 {
    width: 83.3333333333%;
  }

  .large-11 {
    width: 91.6666666667%;
  }

  .large-12 {
    width: 100%;
  }

  .large-push-1 {
    left: 8.3333333333%;
  }

  .large-push-2 {
    left: 16.6666666667%;
  }

  .large-push-3 {
    left: 25%;
  }

  .large-push-4 {
    left: 33.3333333333%;
  }

  .large-push-5 {
    left: 41.6666666667%;
  }

  .large-push-6 {
    left: 50%;
  }

  .large-push-7 {
    left: 58.3333333333%;
  }

  .large-push-8 {
    left: 66.6666666667%;
  }

  .large-push-9 {
    left: 75%;
  }

  .large-push-10 {
    left: 83.3333333333%;
  }

  .large-push-11 {
    left: 91.6666666667%;
  }

  .large-push-12 {
    left: 100%;
  }

  .large-pull-1 {
    right: 8.3333333333%;
  }

  .large-pull-2 {
    right: 16.6666666667%;
  }

  .large-pull-3 {
    right: 25%;
  }

  .large-pull-4 {
    right: 33.3333333333%;
  }

  .large-pull-5 {
    right: 41.6666666667%;
  }

  .large-pull-6 {
    right: 50%;
  }

  .large-pull-7 {
    right: 58.3333333333%;
  }

  .large-pull-8 {
    right: 66.6666666667%;
  }

  .large-pull-9 {
    right: 75%;
  }

  .large-pull-10 {
    right: 83.3333333333%;
  }

  .large-pull-11 {
    right: 91.6666666667%;
  }

  .large-pull-12 {
    right: 100%;
  }

  .large-full-col {
    padding-left: 0;
    padding-right: 0;
  }

  .large-centered {
    float: none;
    margin: 0 auto;
  }

  .large-right {
    float: right;
  }

  .large-left {
    float: left;
  }
  .large-left.end {
    float: left;
  }
}
/* Tiny Grid */
@media screen and (max-width: 420px) {
  .tiny-1 {
    width: 8.3333333333%;
  }

  .tiny-2 {
    width: 16.6666666667%;
  }

  .tiny-3 {
    width: 25%;
  }

  .tiny-4 {
    width: 33.3333333333%;
  }

  .tiny-5 {
    width: 41.6666666667%;
  }

  .tiny-6 {
    width: 50%;
  }

  .tiny-7 {
    width: 58.3333333333%;
  }

  .tiny-8 {
    width: 66.6666666667%;
  }

  .tiny-9 {
    width: 75%;
  }

  .tiny-10 {
    width: 83.3333333333%;
  }

  .tiny-11 {
    width: 91.6666666667%;
  }

  .tiny-12 {
    width: 100%;
  }

  .tiny-push-1 {
    left: 8.3333333333%;
  }

  .tiny-push-2 {
    left: 16.6666666667%;
  }

  .tiny-push-3 {
    left: 25%;
  }

  .tiny-push-4 {
    left: 33.3333333333%;
  }

  .tiny-push-5 {
    left: 41.6666666667%;
  }

  .tiny-push-6 {
    left: 50%;
  }

  .tiny-push-7 {
    left: 58.3333333333%;
  }

  .tiny-push-8 {
    left: 66.6666666667%;
  }

  .tiny-push-9 {
    left: 75%;
  }

  .tiny-push-10 {
    left: 83.3333333333%;
  }

  .tiny-push-11 {
    left: 91.6666666667%;
  }

  .tiny-push-12 {
    left: 100%;
  }

  .tiny-pull-1 {
    right: 8.3333333333%;
  }

  .tiny-pull-2 {
    right: 16.6666666667%;
  }

  .tiny-pull-3 {
    right: 25%;
  }

  .tiny-pull-4 {
    right: 33.3333333333%;
  }

  .tiny-pull-5 {
    right: 41.6666666667%;
  }

  .tiny-pull-6 {
    right: 50%;
  }

  .tiny-pull-7 {
    right: 58.3333333333%;
  }

  .tiny-pull-8 {
    right: 66.6666666667%;
  }

  .tiny-pull-9 {
    right: 75%;
  }

  .tiny-pull-10 {
    right: 83.3333333333%;
  }

  .tiny-pull-11 {
    right: 91.6666666667%;
  }

  .tiny-pull-12 {
    right: 100%;
  }

  .tiny-full-col {
    padding-left: 0;
    padding-right: 0;
  }

  .tiny-centered {
    margin: 0 auto;
    float: none;
  }

  .tiny-right {
    float: right;
  }

  .tiny-left {
    float: left;
  }
  .tiny-left.end {
    float: left;
  }
}
/*-------------------------------------------------------*\
    Grid
/*-------------------------------------------------------*/
.row.full-row {
  max-width: 100% !important;
}
.row .row {
  /* -------------- */
  /* -------------- */
  /* -------------- */
  /* -------------- */
  /* NEED REVIEWED */
  /* -------------- */
  /* -------------- */
  /* -------------- */
  /* -------------- */
  margin-right: 0;
  margin-left: 0;
  /* -------------- */
  /* END - NEED REVIEWED */
  /* -------------- */
}
.row .row.inner-content {
  padding-left: 3vw;
  padding-right: 3vw;
  padding-bottom: 3vw;
  padding-top: 3vw;
}
.row .row.inner-content.condense {
  padding-top: 1vw;
  padding-left: 1vw;
  padding-right: 1vw;
  padding-bottom: 1vw;
}
.row .row.inner-content.compact {
  padding-top: 2vw;
  padding-left: 2vw;
  padding-right: 2vw;
  padding-bottom: 2vw;
}
.row .row.pad-horizontal {
  padding-left: 1vw;
  padding-right: 1vw;
}
@media screen and (max-width: 768px) {
  .row > .col.small-12, .row > .col:not(.small-6), .row > .col:not(.small-7), .row > .col:not(.small-8), .row > .col:not(.small-9), .row > .col:not(.small-10), .row > .col:not(.small-11), .row > .col:not(.small-5), .row > .col:not(.small-4), .row > .col:not(.small-3), .row > .col:not(.small-2), .row > .col:not(.small-1) {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
.row.fifths > .col {
  width: 20%;
}
@media screen and (min-width: 768px) {
  .row.increase-gutter > .col {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.row.decrease-gutter > .col {
  padding-left: 3.3333333333px;
  padding-right: 3.3333333333px;
}
@media screen and (min-width: 768px) {
  .row.increase-inner-gutter > .col {
    padding-left: 20px;
    padding-right: 20px;
  }
  .row.increase-inner-gutter > .col:first-child {
    padding-left: 10px;
  }
  .row.increase-inner-gutter > .col:last-child {
    padding-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .row.collapse > .col {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .row.collapse > .col:first-child {
    padding-left: 0;
  }
  .row.collapse > .col:last-child {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .row.collapse-rowless > .col {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .row.collapse-rowless > .col:nth-child(odd) {
    padding-left: 0;
  }
  .row.collapse-rowless > .col:nth-child(even) {
    padding-right: 0;
  }
}

/*-------------------------------------------------------*\
    Flexible Grid (CSS Grid Layouts)
/*-------------------------------------------------------*/
.flexible-grid-wrapper > .row {
  max-width: 100%;
  padding-left: 1vw;
  padding-right: 1vw;
}

.flexible-grid {
  display: grid;
  grid-gap: 0;
  align-items: center;
  align-content: center;
}
@media screen and (max-width: 768px) {
  .flexible-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .flexible-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .flexible-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.flexible-grid.row:before {
  display: none;
}
.flexible-grid > * {
  width: auto;
}

.flex-row {
  display: flex;
  align-items: center;
}
.flex-row.top {
  align-items: flex-start;
}
.flex-row.bottom {
  align-items: flex-end;
}

/*-------------------------------------------------------
    Helpers
/*-------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .fill-mobile {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media screen and (min-width: 768px) {
  .pad-right, .pad-all {
    padding-right: 20px !important;
  }
  .pad-right.more, .pad-all.more {
    padding-right: 40px !important;
  }
  .pad-right.less, .pad-all.less {
    padding-right: 8px !important;
  }
}

@media screen and (min-width: 768px) {
  .pad-left, .pad-all {
    padding-left: 20px !important;
  }
  .pad-left.more, .pad-all.more {
    padding-left: 40px !important;
  }
  .pad-left.less, .pad-all.less {
    padding-left: 8px !important;
  }
}

.pad-top, .pad-all {
  padding-top: 20px !important;
}
.pad-top.more, .pad-all.more {
  padding-top: 40px !important;
}
.pad-top.less, .pad-all.less {
  padding-top: 8px !important;
}

.pad-bottom, .pad-all {
  padding-bottom: 20px !important;
}
.pad-bottom.more, .pad-all.more {
  padding-bottom: 40px !important;
}
.pad-bottom.less, .pad-all.less {
  padding-bottom: 8px !important;
}

.push-up {
  margin-top: 20px !important;
}
.push-up.more {
  margin-top: 40px !important;
}
.push-up.less {
  margin-top: 8px !important;
}

.push-down {
  margin-bottom: 20px !important;
}
.push-down.more {
  margin-bottom: 40px !important;
}
.push-down.less {
  margin-bottom: 8px !important;
}

/* Clearfix */
.clear:before, .clear:after, .clearfix:before, .clearfix:after {
  content: "";
  display: block;
}
.clear:after, .clearfix:after {
  clear: both;
}

/* Make element (like a map) unclickable */
.disabled-overlay {
  position: relative;
}
.disabled-overlay:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.disabled-overlay.enabled:before {
  display: none;
}

/* Force heights & widths */
.full-width {
  width: 100% !important;
  max-width: none !important;
}

.full-height {
  height: 100% !important;
  max-height: none !important;
}

/* Text Alignment */
.u-center {
  text-align: center !important;
}

@media screen and (max-width: 768px) {
  .mobile-left {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .mobile-right {
    text-align: right;
  }
}

@media screen and (max-width: 768px) {
  .mobile-center {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .mobile-center > * {
    margin-left: auto;
    margin-right: auto;
  }
}

.text-center {
  text-align: center !important;
}
.text-center > * {
  text-align: center !important;
}

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

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

/* Font Sizes */
.small {
  font-size: 87.5%;
}

.magnify {
  font-size: 140%;
}

.jumbo {
  font-size: 160%;
}

/* Text Case Transformations */
.uppercase {
  text-transform: uppercase !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.title-case {
  text-transform: capitalize !important;
}

.italic {
  font-style: italic !important;
}

/* Font Weights */
.strong {
  font-weight: 700 !important;
}

.medium-weight {
  font-weight: 500 !important;
}

.normal-weight {
  font-weight: 400 !important;
}

.light-weight {
  font-weight: 200 !important;
}

.white-color {
  color: white !important;
}

.black-color {
  color: black !important;
}

.primary-color {
  color: #000000 !important;
}

.secondary-color {
  color: #64b467;
}
.secondary-color.important {
  color: #64b467 !important;
}

.error-color {
  color: #ff2020;
}
.error-color.important {
  color: #ff2020 !important;
}

.tertiary-color {
  color: #999999;
}
.tertiary-color.important {
  color: #999999 !important;
}

.quaternary-color {
  color: #f4f4f4;
}
.quaternary-color.important {
  color: #f4f4f4 !important;
}

.underline {
  text-decoration: underline !important;
  text-underline-position: under;
}

.dont-underline {
  text-decoration: none !important;
}

.underscore {
  border-width: 0 0 2px 0;
  border-bottom: 2px solid;
  display: block;
}

.border-color-black {
  border-color: black;
}

.border-color-white {
  border-color: white !important;
}

.border-color-primary {
  border-color: #000000;
}

.border-color-secondary {
  border-color: #64b467;
}

.border-color-tertiary {
  border-color: #999999;
}

.border-color-quaternary {
  border-color: #f4f4f4;
}

.bg-white {
  background-color: white !important;
}

.bg-black {
  background-color: black;
}

.bg-widget {
  background-color: #e3e4e2 !important;
  color: black;
}

.bg-primary {
  background-color: #000000;
}

.bg-secondary {
  background-color: #64b467;
}

.bg-tertiary {
  background-color: #999999;
}

.bg-quaternary {
  background-color: #f4f4f4;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.overflow-hidden {
  overflow: hidden !important;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.block-center {
  margin-left: auto;
  margin-right: auto;
}

.pull-up {
  margin-bottom: 0;
  padding-bottom: 0;
}

.pull-down {
  margin-top: 0;
  padding-bottom: 0;
}

.overflow-visible {
  overflow: visible !important;
}

.push-up {
  margin-top: 20px !important;
}
.push-up.more {
  margin-top: 40px !important;
}
.push-up.less {
  margin-top: 8px !important;
}

.push-down {
  margin-bottom: 20px !important;
}
.push-down.more {
  margin-bottom: 40px !important;
}
.push-down.less {
  margin-bottom: 8px !important;
}

img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

a img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*-------------------------------------------------------*\
    Helpers
/*-------------------------------------------------------*/
.no-pad {
  padding: 0 !important;
}

.no-pad-x {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.no-pad-y {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.no-pad-top {
  padding-top: 0 !important;
}

.no-pad-bottom {
  padding-bottom: 0 !important;
}

.no-pad-left {
  padding-left: 0 !important;
}

.no-pad-right {
  padding-right: 0 !important;
}

@media screen and (min-width: 768px) {
  .pad-right {
    padding-right: 20px !important;
  }
  .pad-right.more {
    padding-right: 40px !important;
  }
  .pad-right.less {
    padding-right: 8px !important;
  }
  .pad-right.minimum {
    padding-right: 2px !important;
  }
}

@media screen and (min-width: 768px) {
  .pad-left {
    padding-left: 20px !important;
  }
  .pad-left.more {
    padding-left: 40px !important;
  }
  .pad-left.less {
    padding-left: 8px !important;
  }
  .pad-left.minimum {
    padding-left: 2px !important;
  }
}

.pad-top {
  padding-top: 20px !important;
}
.pad-top.more {
  padding-top: 40px !important;
}
.pad-top.less {
  padding-top: 8px !important;
}
.pad-top.minimum {
  padding-top: 2px !important;
}

.pad-bottom {
  padding-bottom: 20px !important;
}
.pad-bottom.more {
  padding-bottom: 40px !important;
}
.pad-bottom.less {
  padding-bottom: 8px !important;
}
.pad-bottom.minimum {
  padding-bottom: 2px !important;
}

.push-up {
  margin-top: 20px !important;
}
.push-up.more {
  margin-top: 40px !important;
}
.push-up.less {
  margin-top: 8px !important;
}

.push-down {
  margin-bottom: 20px !important;
}
.push-down.more {
  margin-bottom: 40px !important;
}
.push-down.less {
  margin-bottom: 8px !important;
}

/* Clearfix */
.clear:before, .clear:after, .clearfix:before, .clearfix:after {
  content: "";
  display: block;
}
.clear:after, .clearfix:after {
  clear: both;
}

/* Make element (like a map) unclickable */
.disabled-overlay {
  position: relative;
}
.disabled-overlay:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.disabled-overlay.enabled:before {
  display: none;
}

/* Force heights & widths */
.full-width {
  width: 100% !important;
  max-width: none !important;
}

.full-height {
  height: 100% !important;
  max-height: none !important;
}

.block {
  display: block;
}

.show-for-sr {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

@media screen and (min-width: 768px) {
  .nowrap {
    white-space: nowrap;
  }
}

@media screen and (max-width: 768px) {
  .nowrap-mobile {
    white-space: nowrap;
  }
}

.grid-middle {
  display: grid;
  align-items: center;
  min-height: 100%;
}

.grid-end {
  display: grid;
  align-items: end;
  min-height: 100%;
}

.grid-start {
  display: grid;
  align-items: start;
  min-height: 100%;
}

.semi-transparent {
  opacity: 0.5 !important;
}

.almost-transparent {
  opacity: 0.25 !important;
}

/*-------------------------------------------------------*\
    Main Section
/*-------------------------------------------------------*/
main > .row {
  padding-left: 0;
  padding-right: 0;
}
main > .row > .col > *:first-child {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  main > .row > .col > *:first-child {
    margin-top: 50px;
  }
}

/*-------------------------------------------------------*\
    Footer
/*-------------------------------------------------------*/
.site-footer ul#menu-bottom-menu {
  padding-bottom: 60px;
  max-width: 420px;
  font-size: 12px;
}
.site-footer ul#menu-bottom-menu li {
  display: inline-block;
  float: left;
  font-weight: bold;
  text-decoration: none !important;
}
.site-footer .social {
  margin-bottom: 20px;
}
.site-footer .social ul {
  margin: 0;
  padding: 0;
}
.site-footer .social ul li {
  display: inline-block;
  margin-right: 20px;
}

/*-------------------------------------------------------*\
    Images
/*-------------------------------------------------------*/
figure.pad {
  padding: 8px;
}
figure.drop-shadow {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.09);
}
figure .drop-shadow {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.09);
}

img.drop-shadow {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.09);
}

/*-------------------------------------------------------*\
    Links
/*-------------------------------------------------------*/
a {
  text-decoration: none;
  color: #000000;
  cursor: pointer;
  text-decoration: none;
  outline: 0;
}
a:hover {
  color: #58595b;
  text-decoration: underline;
}
a:active {
  color: black;
}
a:focus {
  color: black;
}
a.strong:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a {
    -webkit-transition: 0.25s all cubic-bezier(0, 0.32, 0, 1.12);
    -moz-transition: 0.25s all cubic-bezier(0, 0.32, 0, 1.12);
    -ms-transition: 0.25s all cubic-bezier(0, 0.32, 0, 1.12);
    -o-transition: 0.25s all cubic-bezier(0, 0.32, 0, 1.12);
    transition: 0.25s all cubic-bezier(0, 0.32, 0, 1.12);
    transition-delay: 0s;
  }
}
a.image-link {
  -webkit-transition: all 0.27s ease-in-out;
  -moz-transition: all 0.27s ease-in-out;
  -ms-transition: all 0.27s ease-in-out;
  -o-transition: all 0.27s ease-in-out;
  transition: all 0.27s ease-in-out;
  transition-delay: 0s;
  display: block;
  backface-visibility: hidden;
}
a.image-link.thumbnail:hover {
  filter: brightness(110%);
}
a.image-link.icon:hover {
  transform: scale(1.05);
  text-decoration: none;
}
a.image-link:hover .emblem {
  transform: scale(1.1);
}
a.icon-social {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: all 0.3s ease-in-out 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: all 0.3s ease-in-out 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: all 0.3s ease-in-out 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition: all 0.3s ease-in-out 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
  top: 0;
}
a.icon-social:hover {
  color: #000000;
  top: -2px;
}
a:link.cta, a:visited.cta, a:link span.cta, a:visited span.cta {
  color: inherit;
  display: inline-block;
  text-decoration: none;
  letter-spacing: 1px;
  color: #000000;
  border-bottom: 1.5px solid;
  padding-bottom: 1.5px;
  font-weight: bold;
  font-size: 0.875em;
  transition-duration: 0.2s;
}
@media screen and (min-width: 768px) {
  a:link.cta.more-cta, a:visited.cta.more-cta, a:link span.cta.more-cta, a:visited span.cta.more-cta {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  a:link.cta, a:visited.cta, a:link span.cta, a:visited span.cta {
    transition: none;
  }
}
a:link.cta:hover, a:visited.cta:hover, a:link span.cta:hover, a:visited span.cta:hover {
  border-bottom-color: black;
  color: black;
  opacity: 1;
}
a:link.secondary, a:visited.secondary, a:link span.secondary, a:visited span.secondary {
  color: inherit;
}
a:link.secondary:hover, a:visited.secondary:hover, a:link span.secondary:hover, a:visited span.secondary:hover {
  border-bottom-color: #000000;
}
a:link.tertiary, body.page-template-template-find-a-pro .modal .wrapper a.button:link, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper a.button:link, a:visited.tertiary, body.page-template-template-find-a-pro .modal .wrapper a.button:visited, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper a.button:visited, a:link span.tertiary, a:link body.page-template-template-find-a-pro .modal .wrapper span.button, body.page-template-template-find-a-pro .modal .wrapper a:link span.button, a:link body.page-template-template-find-a-pro .modal-loading-overlay .wrapper span.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper a:link span.button, a:visited span.tertiary, a:visited body.page-template-template-find-a-pro .modal .wrapper span.button, body.page-template-template-find-a-pro .modal .wrapper a:visited span.button, a:visited body.page-template-template-find-a-pro .modal-loading-overlay .wrapper span.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper a:visited span.button {
  color: #999999;
}
a:link.tertiary:hover, body.page-template-template-find-a-pro .modal .wrapper a.button:link:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper a.button:link:hover, a:visited.tertiary:hover, body.page-template-template-find-a-pro .modal .wrapper a.button:visited:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper a.button:visited:hover, a:link span.tertiary:hover, a:link body.page-template-template-find-a-pro .modal .wrapper span.button:hover, body.page-template-template-find-a-pro .modal .wrapper a:link span.button:hover, a:link body.page-template-template-find-a-pro .modal-loading-overlay .wrapper span.button:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper a:link span.button:hover, a:visited span.tertiary:hover, a:visited body.page-template-template-find-a-pro .modal .wrapper span.button:hover, body.page-template-template-find-a-pro .modal .wrapper a:visited span.button:hover, a:visited body.page-template-template-find-a-pro .modal-loading-overlay .wrapper span.button:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper a:visited span.button:hover {
  border-bottom-color: #999999;
}
a:link.primary, a:visited.primary, a:link span.primary, a:visited span.primary {
  color: #64b467;
}
a:link.primary:hover, a:visited.primary:hover, a:link span.primary:hover, a:visited span.primary:hover {
  color: #999999;
}
a:link[disabled=disabled], a:visited[disabled=disabled], a:link span[disabled=disabled], a:visited span[disabled=disabled] {
  cursor: text !important;
}
a:link[disabled=disabled]:hover, a:visited[disabled=disabled]:hover, a:link span[disabled=disabled]:hover, a:visited span[disabled=disabled]:hover {
  color: #000000;
  text-decoration: none;
  outline: 0;
}
a:link.inherit, a:visited.inherit, a:link span.inherit, a:visited span.inherit {
  color: inherit;
  text-decoration: inherit;
}
a:link.inherit:hover, a:visited.inherit:hover, a:link span.inherit:hover, a:visited span.inherit:hover {
  opacity: 0.8 !important;
}
@media screen and (min-width: 768px) {
  a:link.inherit:hover, a:visited.inherit:hover, a:link span.inherit:hover, a:visited span.inherit:hover {
    -webkit-transition: opacity 0.25s cubic-bezier(0, 0.32, 0, 1.12);
    -moz-transition: opacity 0.25s cubic-bezier(0, 0.32, 0, 1.12);
    -ms-transition: opacity 0.25s cubic-bezier(0, 0.32, 0, 1.12);
    -o-transition: opacity 0.25s cubic-bezier(0, 0.32, 0, 1.12);
    transition: opacity 0.25s cubic-bezier(0, 0.32, 0, 1.12);
    transition-delay: 0s;
  }
}
a:link.no-action, a:visited.no-action, a:link span.no-action, a:visited span.no-action {
  cursor: default !important;
}
a.pretty-hover {
  position: relative;
  display: inline-block;
  overflow-x: visible;
  padding-bottom: 1px;
}
a.pretty-hover:after {
  position: absolute;
  content: "";
  background: #64b467;
  height: 2px;
  width: 1px;
  opacity: 0;
  bottom: 0;
  left: 0;
  display: block;
  float: none;
  clear: both;
  transition: all 0.3s ease;
}
a.pretty-hover:hover:after {
  width: 100%;
  width: calc(100% + $overflow);
  opacity: 1;
}

.link {
  cursor: pointer;
  -webkit-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
}
.link:hover {
  opacity: 0.85;
}

.link-container .link {
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.link-container .link.figure {
  background-size: 100% auto;
}
.link-container .link.figure:hover {
  background-size: 106% auto;
}

/*-------------------------------------------------------*\
    Lists
/*-------------------------------------------------------*/
ul {
  list-style: none;
}
ul li {
  position: relative;
}
ul.dots > li {
  display: list-item;
  list-style-type: disc;
  list-style-position: inherit;
  margin-left: 18px;
  padding-bottom: 10px;
}
ul.nodots {
  padding-left: 0;
}
ul.nodots li {
  list-style: none;
  margin-left: 0 !important;
  padding-left: 0 !important;
}
ul.two {
  padding-left: 0;
  margin-left: 20px;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
ul.two li {
  margin-left: 20px;
  padding-left: 10px;
}
ul.three {
  padding-left: 0;
  margin-left: 0;
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
}
ul.three li {
  margin-left: 20px;
  padding-left: 10px;
}
ul.four {
  padding-left: 0;
  margin-left: 0;
  columns: 4;
  -webkit-columns: 4;
  -moz-columns: 4;
}
ul.four li {
  margin-left: 20px;
  padding-left: 10px;
}

.dotted-lists ul > li {
  display: list-item;
  list-style-type: disc;
  list-style-position: inherit;
  margin-left: 18px;
}
.dotted-lists ul > li a:link, .dotted-lists ul > li a:visited {
  text-decoration: underline;
  color: #64b467;
}
.dotted-lists ul > li a:active, .dotted-lists ul > li a:hover {
  text-decoration: none;
}

ol {
  list-style: decimal inside;
}

ul, ol {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0.625em;
}
ul ul, ul ol, ol ul, ol ol {
  margin-top: 0;
  margin-bottom: 0;
}
ul.inline-list, ol.inline-list {
  margin-bottom: 0;
}
ul.inline-list li, ol.inline-list li {
  display: inline-block;
}

li {
  margin-bottom: 0.5em;
}

/*-------------------------------------------------------*\
    Typography
/*-------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin-top: 2px;
  margin-bottom: 8px;
  font-weight: 400;
  font-family: "Gotham A", helvetica, arial, sans-serif;
  line-height: normal;
  color: #000000;
}
h1.section-heading:after, h2.section-heading:after, h3.section-heading:after, h4.section-heading:after, h5.section-heading:after, h6.section-heading:after {
  content: "";
  display: block;
  width: 55px;
  height: 16px;
  background-repeat: no-repeat;
  margin-top: 15px;
}
h1:not(.ignore-span) span, h2:not(.ignore-span) span, h3:not(.ignore-span) span, h4:not(.ignore-span) span, h5:not(.ignore-span) span, h6:not(.ignore-span) span {
  font-weight: 700;
}
h1:not(.ignore-span) em, h2:not(.ignore-span) em, h3:not(.ignore-span) em, h4:not(.ignore-span) em, h5:not(.ignore-span) em, h6:not(.ignore-span) em {
  font-style: normal;
  color: #000000;
}
h1:not(.ignore-span) strong, h2:not(.ignore-span) strong, h3:not(.ignore-span) strong, h4:not(.ignore-span) strong, h5:not(.ignore-span) strong, h6:not(.ignore-span) strong {
  font-weight: bold;
}
h1.light, h2.light, h3.light, h4.light, h5.light, h6.light {
  color: white;
}
h1.dark, h2.dark, h3.dark, h4.dark, h5.dark, h6.dark {
  color: black;
}
h1.bold, h2.bold, h3.bold, h4.bold, h5.bold, h6.bold {
  font-weight: 700;
}

.white {
  color: #ffffff;
}
.white div, .white h1, .white h2, .white h3, .white h4, .white h5, .white h6, .white ol li, .white ul li, .white sup {
  color: inherit;
}
.white p {
  color: inherit;
}
.white p span, .white p b, .white p strong, .white p i, .white p em {
  color: inherit;
}
.white a {
  color: inherit !important;
  border-color: #ffffff !important;
}
.white a b, .white a strong, .white a i, .white a em, .white a:link, .white a:visited, .white a:link span, .white a:visited span {
  color: inherit;
}
.white a.button:active, .white body.page-template-template-find-a-pro .modal .wrapper a.button:active, body.page-template-template-find-a-pro .modal .wrapper .white a.button:active, .white body.page-template-template-find-a-pro .modal-loading-overlay .wrapper a.button:active, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .white a.button:active, .white a.button:hover, .white body.page-template-template-find-a-pro .modal .wrapper a.button:hover, body.page-template-template-find-a-pro .modal .wrapper .white a.button:hover, .white body.page-template-template-find-a-pro .modal-loading-overlay .wrapper a.button:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .white a.button:hover {
  background-color: #ffffff;
  border-color: #ffffff !important;
  color: #000000 !important;
}
.white h1 span, .white h2 span, .white h3 span {
  color: #ffffff;
}
.white img {
  margin-right: 10px;
}

.shadow-text {
  text-shadow: 0 0 10px #000;
}

span.hint {
  color: #c70930;
  font-size: 9px;
}
span.bigger {
  font-size: 1.1em;
}
span.large {
  font-size: 1.2em;
}
span.larger {
  font-size: 1.3em;
}
span.largest {
  font-size: 1.5em;
}
span.small {
  font-size: 0.9em;
}
span.smaller {
  font-size: 0.8em;
}
span.smallest {
  font-size: 0.7em;
}
span.upper {
  text-transform: uppercase;
}
span.lower {
  text-transform: lower;
}
span.big {
  font-size: 20px;
}
span.bigger {
  font-size: 24px;
}
span.biggest {
  font-size: 32px;
}
span.caption-text {
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Gotham A", helvetica, arial, sans-serif;
  font-weight: 400;
}
span.green {
  color: #64b467;
}
span.green b, span.green strong, span.green i, span.green em, span.green a:link, span.green a:visited {
  color: #64b467;
  text-decoration: none;
}
span.peach {
  color: #f4ece4;
}
span.peach b, span.peach strong, span.peach i, span.peach em, span.peach a:link, span.peach a:visited {
  color: #f4ece4;
  text-decoration: none;
}

blockquote {
  margin: 35px 0;
}
blockquote:before {
  color: #444;
  content: open-quote;
  font-size: 4em;
  font-weight: 500;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  font-family: "Gotham A", helvetica, arial, sans-serif;
  font-weight: 300;
  font-size: 1.4em;
  font-style: italic;
  margin-bottom: 20px;
  margin-top: -20px !important;
  margin-left: 50px !important;
}

.big-quote {
  display: block;
  padding: 40px 20px;
  margin: 20px 0;
  background: #efefef;
  color: #d35e13;
  font-weight: bold;
  font-size: 20px;
}

/*-------------------------------------------------------*\
    Typography
/*-------------------------------------------------------*/
/* Font Sizes */
/* Typeface Classes */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 18px;
  line-height: 1.2;
}
h1 > a:not(.button), h1 > a:not(.image-link), h1 > a:not(.inline-link), h2 > a:not(.button), h2 > a:not(.image-link), h2 > a:not(.inline-link), h3 > a:not(.button), h3 > a:not(.image-link), h3 > a:not(.inline-link), h4 > a:not(.button), h4 > a:not(.image-link), h4 > a:not(.inline-link), h5 > a:not(.button), h5 > a:not(.image-link), h5 > a:not(.inline-link), h6 > a:not(.button), h6 > a:not(.image-link), h6 > a:not(.inline-link) {
  position: relative;
  display: inline-block;
  overflow-x: visible;
  padding-bottom: 1px;
}
h1 > a:not(.button):after, h1 > a:not(.image-link):after, h1 > a:not(.inline-link):after, h2 > a:not(.button):after, h2 > a:not(.image-link):after, h2 > a:not(.inline-link):after, h3 > a:not(.button):after, h3 > a:not(.image-link):after, h3 > a:not(.inline-link):after, h4 > a:not(.button):after, h4 > a:not(.image-link):after, h4 > a:not(.inline-link):after, h5 > a:not(.button):after, h5 > a:not(.image-link):after, h5 > a:not(.inline-link):after, h6 > a:not(.button):after, h6 > a:not(.image-link):after, h6 > a:not(.inline-link):after {
  position: absolute;
  content: "";
  background: #64b467;
  height: 2px;
  width: 1px;
  opacity: 0;
  bottom: 0;
  left: 0;
  display: block;
  float: none;
  clear: both;
  transition: all 0.3s ease;
}
h1 > a:not(.button):hover:after, h1 > a:not(.image-link):hover:after, h1 > a:not(.inline-link):hover:after, h2 > a:not(.button):hover:after, h2 > a:not(.image-link):hover:after, h2 > a:not(.inline-link):hover:after, h3 > a:not(.button):hover:after, h3 > a:not(.image-link):hover:after, h3 > a:not(.inline-link):hover:after, h4 > a:not(.button):hover:after, h4 > a:not(.image-link):hover:after, h4 > a:not(.inline-link):hover:after, h5 > a:not(.button):hover:after, h5 > a:not(.image-link):hover:after, h5 > a:not(.inline-link):hover:after, h6 > a:not(.button):hover:after, h6 > a:not(.image-link):hover:after, h6 > a:not(.inline-link):hover:after {
  width: 100%;
  width: calc(100% + $overflow);
  opacity: 1;
}
h1.buffer, h2.buffer, h3.buffer, h4.buffer, h5.buffer, h6.buffer {
  padding-top: 40px;
  padding-bottom: 40px;
}

h1, .h1, body.page-template-template-find-a-pro .modal .wrapper h2, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper h2, h1, .h1 {
  font-size: 2.125em;
}
h1 a, .h1 a, body.page-template-template-find-a-pro .modal .wrapper h2 a, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper h2 a, h1 a, .h1 a {
  font-size: inherit;
  text-decoration: none;
}
h1 a:hover, .h1 a:hover, body.page-template-template-find-a-pro .modal .wrapper h2 a:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper h2 a:hover, h1 a:hover, .h1 a:hover {
  filter: brightness(105%);
}

h2, .h2, body.page-template-template-find-a-pro .modal .wrapper article h3, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper article h3, h2, .h2 {
  font-size: 1.75em;
}
h2 a, .h2 a, body.page-template-template-find-a-pro .modal .wrapper article h3 a, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper article h3 a, h2 a, .h2 a {
  font-size: inherit;
  text-decoration: none;
}
h2 a:hover, .h2 a:hover, body.page-template-template-find-a-pro .modal .wrapper article h3 a:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper article h3 a:hover, h2 a:hover, .h2 a:hover {
  filter: brightness(105%);
}

h3, .h3, h3, .h3 {
  font-size: 1.5em;
}
h3 a, .h3 a, h3 a, .h3 a {
  font-size: inherit;
  text-decoration: none;
}
h3 a:hover, .h3 a:hover, h3 a:hover, .h3 a:hover {
  filter: brightness(105%);
}

h4, .h4, h4, .h4 {
  font-size: 1.375em;
}
h4 a, .h4 a, h4 a, .h4 a {
  font-size: inherit;
  text-decoration: none;
}
h4 a:hover, .h4 a:hover, h4 a:hover, .h4 a:hover {
  filter: brightness(105%);
}

h5, .h5, h5, .h5 {
  font-size: 1.125em;
}
@media screen and (min-width: 768px) {
  h5, .h5, h5, .h5 {
    font-size: 18px;
  }
}
h5 a, .h5 a, h5 a, .h5 a {
  font-size: inherit;
  text-decoration: none;
}
h5 a:hover, .h5 a:hover, h5 a:hover, .h5 a:hover {
  filter: brightness(105%);
}

h6, .h6, h6, .h6 {
  font-size: 1em;
}
h6 a, .h6 a, h6 a, .h6 a {
  font-size: inherit;
  text-decoration: none;
}
h6 a:hover, .h6 a:hover, h6 a:hover, .h6 a:hover {
  filter: brightness(105%);
}

p.medium-text, ul.medium-text {
  font-size: 1.125em;
}
@media screen and (min-width: 1200px) {
  p.medium-text, ul.medium-text {
    font-size: 1.8vw;
  }
}
p.large-text, ul.large-text {
  font-size: 1.25em;
}
@media screen and (min-width: 1200px) {
  p.large-text, ul.large-text {
    font-size: 2vw;
  }
}

main {
  font-size: 0.9375em;
}
@media screen and (min-width: 768px) {
  main {
    font-size: 1.03125em;
  }
}
main p, main figcaption, main label {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.65em;
  padding-bottom: 20px;
}
main p.full, main figcaption.full, main label.full {
  max-width: 100%;
}
main p.large, main figcaption.large, main label.large {
  font-size: 1.2em;
}
@media screen and (min-width: 1200px) {
  main p.large, main figcaption.large, main label.large {
    font-size: 1.8vw;
  }
}
main p.x-large, main figcaption.x-large, main label.x-large {
  font-size: 1.6125em;
}
@media screen and (min-width: 1200px) {
  main p.x-large, main figcaption.x-large, main label.x-large {
    font-size: 2.2vw;
  }
}

sub, sup {
  vertical-align: baseline;
  position: relative;
}

sup {
  top: -0.4em;
}

sub {
  top: 0.4em;
}

ul, ol {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 1.25em;
}
ul li, ol li {
  font-weight: normal;
}
ul ul, ul ol, ol ul, ol ol {
  margin-top: 10px;
  margin-bottom: 0;
}

li {
  margin-bottom: 1em;
}

hr {
  border: 0;
  height: 0;
  border-top: 0;
  border-bottom: 2px solid #cbcccc;
}
hr.inner {
  max-width: 1240px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
  padding-bottom: 1.3vw;
}
h1 + p:empty, h2 + p:empty, h3 + p:empty, h4 + p:empty, h5 + p:empty, h6 + p:empty {
  display: none;
}
h1.hr, h2.hr, h3.hr, h4.hr, h5.hr, h6.hr {
  border-bottom: 5px solid black;
  padding-bottom: 7px;
  margin-bottom: 8px;
}

p:empty {
  padding-bottom: 0;
}
p + .button:last-child, body.page-template-template-find-a-pro .modal .wrapper p + .button:last-child, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper p + .button:last-child {
  margin-top: 1.3vw;
}
p a:link, p a:visited, p a:link span, p a:visited span {
  color: #64b467;
  text-decoration: underline;
  text-underline-position: under;
}
p a:active, p a:hover {
  text-decoration: none;
}
p.translate-y {
  padding-bottom: 0;
  -webkit-transform: translateY(25%);
  -moz-transform: translateY(25%);
  -ms-transform: translateY(25%);
  transform: translateY(25%);
}

small > a, small > strong, small > em {
  font-size: inherit !important;
}

.check-overflow {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  display: grid !important;
  align-items: center;
  align-self: center;
  height: 100%;
  align-content: center;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}
.check-overflow.checked {
  opacity: 1;
}
.check-overflow.is-overflowing {
  margin: 0;
  padding: 0;
  align-content: start;
}
.check-overflow.is-overflowing:after {
  position: absolute;
  bottom: 3px;
  right: 4px;
  background: white;
  content: "...";
  font-family: "Courier";
  font-size: 12px;
  border-radius: 50%;
  box-shadow: 0 0 2px #000 4px;
  align-content: start;
  align-items: start;
  align-self: start;
  display: inline-block;
  height: 17.9px;
  line-height: 9.9px;
  color: black;
  letter-spacing: -2.4px;
  text-shadow: none;
  text-align: left;
  padding: 0.5px 1.5px 0.5px 0;
  font-weight: 100;
  width: auto;
  border: 1px solid white;
  background: none;
  color: white;
  border: none;
  font-size: 11px;
  right: 3px;
  bottom: 0;
  line-height: 0;
  height: 13px;
  padding: 2px;
  text-shadow: 0 0px 5px black;
}

@supports (-webkit-line-clamp: 4) {
  .check-overflow {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: 3.6em;
    height: auto;
  }
  .check-overflow.checked {
    padding-right: 11px !important;
    height: 100%;
  }
  .check-overflow.is-overflowing {
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
  }
  .check-overflow.is-overflowing:after {
    display: none;
  }
}
/*-------------------------------------------------------
    Visibility
/*-------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .mobile-invisible {
    visibility: hidden !important;
  }
}

@media screen and (min-width: 768px) {
  .desktop-invisible {
    visibility: hidden !important;
  }
}

.transparent {
  opacity: 0;
}

.placeholder {
  opacity: 0;
}

.hidden {
  display: none !important;
}

.invisible, .show-for-sr {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.hidden-dev {
  position: fixed;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.hidden-dev.show {
  opacity: 0.75;
}
.hidden-dev.show-all {
  opacity: 1;
}

/*-------------------------------------------------------*\
    Structure
/*-------------------------------------------------------*/
.row {
  z-index: 998;
}
.row.on-top {
  z-index: 999;
}
.row.centered, .row.center {
  text-align: center;
  font-size: 0;
}
.row.centered .col, .row.center .col {
  float: none;
  display: inline-block;
}
.row.background-center {
  background-position: center;
}
.row.background-left {
  background-position: left;
}
.row.background-right {
  background-position: right;
}
.row.background-top {
  background-position: top;
}
.row.background-bottom {
  background-position: bottom;
}
.row.boxed-content section {
  margin-left: 2.35vw;
}
@media screen and (max-width: 768px) {
  .row.boxed-content section {
    margin-left: 0;
  }
}
.row.boxed-content section:first-of-type.banner {
  margin-left: 0;
}
@media screen and (max-width: 600px) {
  .row.boxed-content section.page-content .content_text {
    padding: 2vw 3vw 0;
  }
}
@media screen and (max-width: 1200px) {
  .row.boxed-content {
    padding: 0 0;
  }
  .row.boxed-content .col {
    padding: 0 0;
  }
  .row.boxed-content section.page-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*-------------------------------------------------------*\
    Flexible Content Module styles
/*-------------------------------------------------------*/
/**
 * Content/Image section
 * - one-third-two-thirds
 * - one-half-one-half
 */
main .background-peach {
  background-color: #f4ece4;
}
main .background-white {
  background-color: #ffffff;
}
main .background-black {
  background-color: #000000;
}
main .background-black h1, main .background-black h2, main .background-black h3, main .background-black h4, main .background-black h5, main .background-black h6, main .background-black p, main .background-black strong, main .background-black em {
  color: #ffffff;
}
main .background-black .gform_wrapper .gform_footer input[type=submit] {
  background-color: #64b467;
  color: #ffffff;
  border-color: #64b467;
}
main .background-black .gform_wrapper .gform_footer input[type=submit]:hover {
  border-color: #ffffff;
}
main .background-green {
  background-color: #64b467;
  margin: 0 10px;
  padding: 20px 0;
}
main .background-green h1, main .background-green h2, main .background-green h3, main .background-green h4, main .background-green h5, main .background-green h6, main .background-green p, main .background-green strong, main .background-green em, main .background-green a {
  color: #ffffff;
}
main .background-green a.button, main .background-green body.page-template-template-find-a-pro .modal .wrapper a.button, body.page-template-template-find-a-pro .modal .wrapper main .background-green a.button, main .background-green body.page-template-template-find-a-pro .modal-loading-overlay .wrapper a.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper main .background-green a.button {
  color: #ffffff;
  border-color: #ffffff;
}
main .background-green a.button:hover, main .background-green body.page-template-template-find-a-pro .modal .wrapper a.button:hover, body.page-template-template-find-a-pro .modal .wrapper main .background-green a.button:hover, main .background-green body.page-template-template-find-a-pro .modal-loading-overlay .wrapper a.button:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper main .background-green a.button:hover {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #000000;
}
main .background-grey {
  background-color: #f4f4f4;
}
main .boxed-content .medium-10 section.page-hero .row.box {
  padding-left: 50px;
}
main section {
  padding: 0 0 0 0;
}
main section.row.box-shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
main section.banner {
  padding: 0 0 3vw 0;
  background-size: cover;
}
main section.banner a.button:first-of-type, main section.banner body.page-template-template-find-a-pro .modal .wrapper a.button:first-of-type, body.page-template-template-find-a-pro .modal .wrapper main section.banner a.button:first-of-type, main section.banner body.page-template-template-find-a-pro .modal-loading-overlay .wrapper a.button:first-of-type, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper main section.banner a.button:first-of-type {
  margin-left: 0;
}
main section.banner a.button:last-of-type, main section.banner body.page-template-template-find-a-pro .modal .wrapper a.button:last-of-type, body.page-template-template-find-a-pro .modal .wrapper main section.banner a.button:last-of-type, main section.banner body.page-template-template-find-a-pro .modal-loading-overlay .wrapper a.button:last-of-type, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper main section.banner a.button:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 1200px) {
  main section.banner a.button, main section.banner body.page-template-template-find-a-pro .modal .wrapper a.button, body.page-template-template-find-a-pro .modal .wrapper main section.banner a.button, main section.banner body.page-template-template-find-a-pro .modal-loading-overlay .wrapper a.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper main section.banner a.button {
    margin: 10px 0;
  }
}
main section.page-content article .featured-image {
  margin-bottom: 20px;
}
main section.page-content article p {
  max-width: 80%;
}
@media screen and (max-width: 768px) {
  main section.page-content article p {
    max-width: 100%;
  }
}
main section.page-content article ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 10px;
}
main section.page-content article ul li {
  margin-bottom: 5px;
  line-height: 1.65em;
}
main section.page-content.featured-heading {
  margin-left: 0;
}
main section.page-content.featured-heading .content_text {
  margin-left: 2.35vw !important;
}
main section.page-content.flush-top {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
main section.page-content .content_text a:link, main section.page-content .content_text a:visited, main section.page-content .content_text a:link span, main section.page-content .content_text a:visited span {
  color: #64b467;
  text-decoration: none;
  text-underline-position: under;
}
main section.page-content .content_text a:link.button, main section.page-content .content_text a:visited.button, main section.page-content .content_text a:link span.button, main section.page-content .content_text a:visited span.button {
  color: #000000;
}
main section.page-content .content_text a:active, main section.page-content .content_text a:hover {
  text-decoration: underline;
}
main section.page-content .content_text a:active.button, main section.page-content .content_text a:hover.button {
  color: #ffffff;
}
main section.page-content .content_text ol li > * {
  display: inline-block;
}
main section.page-hero .row.box {
  padding: 10vw 0;
}
main section.page-hero .row.box h1 {
  font-size: 42.5px;
  text-shadow: 0 0 10px #000;
}
main section.page-hero .row.box p {
  text-shadow: 0 0 10px #000;
}
main section.page-hero .row.box a:link.button:first-of-type, main section.page-hero .row.box a:visited.button:first-of-type {
  margin-right: 20px;
}
main section.one-third-two-thirds {
  padding: 0;
  margin: 2vw 0;
  padding: 0;
  overflow: hidden;
}
main section.one-third-two-thirds .row {
  padding: 0;
  margin: 0 auto;
}
main section.one-third-two-thirds .col {
  padding: 0;
}
@media screen and (max-width: 768px) {
  main section.one-third-two-thirds .col.medium-4 {
    order: 1;
  }
  main section.one-third-two-thirds .col.medium-4.right {
    order: 1;
  }
  main section.one-third-two-thirds .col.medium-8 {
    order: 2;
  }
  main section.one-third-two-thirds .col.medium-6 {
    order: 2;
  }
  main section.one-third-two-thirds .col.medium-6.right {
    order: 1;
  }
}
@media screen and (max-width: 1200px) {
  main section.one-third-two-thirds .col.large-4 {
    order: 1;
  }
  main section.one-third-two-thirds .col.large-4.right {
    order: 1;
  }
  main section.one-third-two-thirds .col.large-8 {
    order: 2;
  }
  main section.one-third-two-thirds .col.large-6 {
    order: 2;
  }
  main section.one-third-two-thirds .col.large-6.right {
    order: 1;
  }
}
main section.one-third-two-thirds .content_image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
main section.one-third-two-thirds .content_image iframe {
  width: 100%;
}
main section.one-third-two-thirds .content_text {
  padding: 50px 35px;
}
main section.one-third-two-thirds .content_text ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 10px;
}
main section.one-third-two-thirds .content_text ul li {
  margin-bottom: 5px;
  line-height: 1.65em;
}
main section.one-half-one-half {
  margin: 2vw 0;
  padding: 0;
  overflow: hidden;
}
main section.one-half-one-half .row {
  padding: 0;
  margin: 0 auto;
}
main section.one-half-one-half .col {
  padding: 0;
}
@media screen and (max-width: 768px) {
  main section.one-half-one-half .col.medium-4 {
    order: 1;
  }
  main section.one-half-one-half .col.medium-4.right {
    order: 1;
  }
  main section.one-half-one-half .col.medium-8 {
    order: 2;
  }
  main section.one-half-one-half .col.medium-6 {
    order: 2;
  }
  main section.one-half-one-half .col.medium-6.right {
    order: 1;
  }
}
@media screen and (max-width: 1200px) {
  main section.one-half-one-half .col.large-4 {
    order: 1;
  }
  main section.one-half-one-half .col.large-4.right {
    order: 1;
  }
  main section.one-half-one-half .col.large-8 {
    order: 2;
  }
  main section.one-half-one-half .col.large-6 {
    order: 2;
  }
  main section.one-half-one-half .col.large-6.right {
    order: 1;
  }
}
main section.one-half-one-half .content_image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
main section.one-half-one-half .content_image iframe {
  width: 100%;
}
main section.one-half-one-half .content_text {
  padding: 50px 35px;
}
main section.one-half-one-half .content_text ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 10px;
}
main section.one-half-one-half .content_text ul li {
  margin-bottom: 5px;
  line-height: 1.65em;
}
@media screen and (max-width: 1200px) {
  main section.one-half-one-half article {
    padding: 20px;
  }
}
main section.one-half-one-half .wrapper {
  padding-top: 2vw;
  padding-bottom: 1vw;
}
main section.one-half-one-half .wrapper + .wrapper {
  padding-top: 1vw;
  padding-bottom: 2vw;
}
main section.one-half-one-half .row {
  padding: 2vw auto;
}
main section.full-width {
  padding: 9vw 0 14vw 0;
}
main section.full-width h2 {
  font-weight: 400;
}
main section.full-width a.button, main section.full-width body.page-template-template-find-a-pro .modal .wrapper a.button, body.page-template-template-find-a-pro .modal .wrapper main section.full-width a.button, main section.full-width body.page-template-template-find-a-pro .modal-loading-overlay .wrapper a.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper main section.full-width a.button {
  margin: 20px 0;
}
main section.full-width-wysiwyg .row {
  padding-top: 2vw;
}
main section.full-width-wysiwyg article .featured-image {
  margin-bottom: 20px;
}
main section.full-width-wysiwyg article p {
  max-width: 80%;
}
@media screen and (max-width: 768px) {
  main section.full-width-wysiwyg article p {
    max-width: 100%;
  }
}
main section.full-width-wysiwyg article ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 10px;
}
main section.full-width-wysiwyg article ul li {
  margin-bottom: 5px;
  line-height: 1.65em;
}
main section.content-cards h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
}
main section.content-cards .section-body-copy p {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main section.content-cards .section-body-copy p {
    max-width: 100%;
  }
}
main section.content-cards .col {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  main section.content-cards .col {
    margin-bottom: 20px;
  }
}
main section.content-cards .card, main section.content-cards .comments-area .comment-list .comment, .comments-area .comment-list main section.content-cards .comment {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 20px;
}
main section.content-cards .card .card_text, main section.content-cards .comments-area .comment-list .comment .card_text, .comments-area .comment-list main section.content-cards .comment .card_text {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  overflow: hidden;
}
main section.content-cards .card .card_text h3, main section.content-cards .comments-area .comment-list .comment .card_text h3, .comments-area .comment-list main section.content-cards .comment .card_text h3 {
  font-size: 24px;
  font-weight: 500;
}
main section.content-cards .card .card_text a.button, main section.content-cards .comments-area .comment-list .comment .card_text a.button, .comments-area .comment-list main section.content-cards .comment .card_text a.button {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  main section.content-cards .card .card_image img, main section.content-cards .comments-area .comment-list .comment .card_image img, .comments-area .comment-list main section.content-cards .comment .card_image img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1200px) {
  main section.content-cards article {
    padding: 0;
  }
  main section.content-cards article .row {
    padding: 0;
  }
  main section.content-cards article .row .col {
    padding: 0 10px;
  }
}
main section.gallery {
  margin: 2vw 0;
}
main section.gallery .headline-text p {
  max-width: 80%;
}
@media screen and (max-width: 768px) {
  main section.gallery .headline-text p {
    max-width: 100%;
  }
}
main section.gallery .grid {
  max-width: 1200px;
}
main section.gallery .grid-item {
  width: 16.6666%;
  height: 200px;
  overflow: hidden;
}
main section.gallery .grid-item .inner {
  width: 100%;
  height: 100%;
  margin: 5px;
  background-repeat: none;
  background-size: cover;
  transition: all 0.2s ease-in;
  transform: scale(1);
  opacity: 1;
}
main section.gallery .grid-item .inner.top-left {
  background-position: top left;
}
main section.gallery .grid-item .inner.top-middle {
  background-position: top center;
}
main section.gallery .grid-item .inner.top-right {
  background-position: top right;
}
main section.gallery .grid-item .inner.middle-left {
  background-position: center left;
}
main section.gallery .grid-item .inner.middle-middle {
  background-position: center center;
}
main section.gallery .grid-item .inner.middle-right {
  background-position: center right;
}
main section.gallery .grid-item .inner.bottom-left {
  background-position: bottom left;
}
main section.gallery .grid-item .inner.bottom-middle {
  background-position: bottom center;
}
main section.gallery .grid-item .inner.bottom-right {
  background-position: bottom right;
}
main section.gallery .grid-item .inner:hover {
  transition: all 0.2s ease-in;
  transform: scale(1.05);
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  main section.gallery .grid-item .inner {
    height: 200px !important;
    margin-bottom: 20px !important;
  }
}
main section.gallery .grid-item--width2 {
  width: 33.3333%;
}
main section.gallery .grid-item--width3 {
  width: 50%;
}
main section.gallery .grid-item--height2 {
  height: 400px;
}
main section.gallery .grid-item--height3 {
  height: 600px;
}
@media screen and (max-width: 768px) {
  main section.gallery .grid-item,
main section.gallery .grid-item--width2,
main section.gallery .grid-item--width3 {
    width: 50%;
  }
  main section.gallery .grid-item--height2,
main section.gallery .grid-item--height3 {
    height: 200px;
  }
}
main section.blockquote {
  margin: 3vw 0;
  padding: 50px 0 20px 0;
}
main section.blockquote h3.quote-source-text {
  font-size: 18px;
  margin-left: 50px;
}
main section.blockquote p {
  margin-right: 50px;
}
main section.blockquote > *:last-child {
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  main section.multi-column .col {
    margin-bottom: 20px;
  }
}
main section.multi-column p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
main section.multi-column figure {
  display: inline;
}
main section.multi-column figure img {
  margin-bottom: 1vw;
  max-width: 155px;
}
main section.multi-column figure h3 {
  font-size: 18px;
  font-weight: 500;
}
main section.multi-column figure h3 a:link, main section.multi-column figure h3 a:visited {
  text-decoration: none;
}
main section.taxonomy-feed h2, main section.collection-feed h2 {
  font-size: 34px;
  font-weight: 300;
}
main section.taxonomy-feed p, main section.collection-feed p {
  font-size: 0.88125em;
}
@media screen and (max-width: 1200px) {
  main section.taxonomy-feed .col, main section.collection-feed .col {
    padding: 0 10px !important;
  }
}
main section.taxonomy-feed .headline-text p, main section.collection-feed .headline-text p {
  max-width: 80%;
}
@media screen and (max-width: 768px) {
  main section.taxonomy-feed .headline-text p, main section.collection-feed .headline-text p {
    max-width: 100%;
  }
}
main section.taxonomy-feed.doors-feed, main section.taxonomy-feed.windows-feed, main section.collection-feed.doors-feed, main section.collection-feed.windows-feed {
  border-top: 1px #64b467 solid;
  margin-top: 3vw;
}
main section.taxonomy-feed.siding-feed .brand_image, main section.taxonomy-feed.other-product-feed .brand_image, main section.collection-feed.siding-feed .brand_image, main section.collection-feed.other-product-feed .brand_image {
  max-width: 200px;
  margin: 0 auto;
}
main section.taxonomy-feed.siding-feed .content, main section.taxonomy-feed.other-product-feed .content, main section.collection-feed.siding-feed .content, main section.collection-feed.other-product-feed .content {
  margin-top: 20px;
}
main section.taxonomy-feed.siding-feed .content h2, main section.taxonomy-feed.other-product-feed .content h2, main section.collection-feed.siding-feed .content h2, main section.collection-feed.other-product-feed .content h2 {
  font-size: 34px;
  font-weight: 300;
}
main section.taxonomy-feed.siding-feed.category .card .card_text h3, main section.taxonomy-feed.siding-feed.category .comments-area .comment-list .comment .card_text h3, .comments-area .comment-list main section.taxonomy-feed.siding-feed.category .comment .card_text h3, main section.taxonomy-feed.other-product-feed.category .card .card_text h3, main section.taxonomy-feed.other-product-feed.category .comments-area .comment-list .comment .card_text h3, .comments-area .comment-list main section.taxonomy-feed.other-product-feed.category .comment .card_text h3, main section.collection-feed.siding-feed.category .card .card_text h3, main section.collection-feed.siding-feed.category .comments-area .comment-list .comment .card_text h3, .comments-area .comment-list main section.collection-feed.siding-feed.category .comment .card_text h3, main section.collection-feed.other-product-feed.category .card .card_text h3, main section.collection-feed.other-product-feed.category .comments-area .comment-list .comment .card_text h3, .comments-area .comment-list main section.collection-feed.other-product-feed.category .comment .card_text h3 {
  font-size: 18px;
  text-transform: none;
  font-weight: 500;
}
main section.taxonomy-feed .card, main section.taxonomy-feed .comments-area .comment-list .comment, .comments-area .comment-list main section.taxonomy-feed .comment, main section.collection-feed .card, main section.collection-feed .comments-area .comment-list .comment, .comments-area .comment-list main section.collection-feed .comment {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
  position: relative;
  padding-bottom: 50px;
}
main section.taxonomy-feed .card .card_image, main section.taxonomy-feed .comments-area .comment-list .comment .card_image, .comments-area .comment-list main section.taxonomy-feed .comment .card_image, main section.collection-feed .card .card_image, main section.collection-feed .comments-area .comment-list .comment .card_image, .comments-area .comment-list main section.collection-feed .comment .card_image {
  position: relative;
  background-size: cover;
  background-position: center center;
  margin-bottom: 10px;
}
main section.taxonomy-feed .card .card_image > div, main section.taxonomy-feed .comments-area .comment-list .comment .card_image > div, .comments-area .comment-list main section.taxonomy-feed .comment .card_image > div, main section.collection-feed .card .card_image > div, main section.collection-feed .comments-area .comment-list .comment .card_image > div, .comments-area .comment-list main section.collection-feed .comment .card_image > div {
  height: 100%;
  display: block;
  padding-bottom: 0;
}
main section.taxonomy-feed .card .card_image > div a, main section.taxonomy-feed .comments-area .comment-list .comment .card_image > div a, .comments-area .comment-list main section.taxonomy-feed .comment .card_image > div a, main section.collection-feed .card .card_image > div a, main section.collection-feed .comments-area .comment-list .comment .card_image > div a, .comments-area .comment-list main section.collection-feed .comment .card_image > div a {
  height: 200px;
  overflow: hidden;
  text-align: center;
}
main section.taxonomy-feed .card .card_image > div a[style$="wp-content/themes/mast/assets/img/image-unavailable.png');"], main section.taxonomy-feed .comments-area .comment-list .comment .card_image > div a[style$="wp-content/themes/mast/assets/img/image-unavailable.png');"], .comments-area .comment-list main section.taxonomy-feed .comment .card_image > div a[style$="wp-content/themes/mast/assets/img/image-unavailable.png');"], main section.collection-feed .card .card_image > div a[style$="wp-content/themes/mast/assets/img/image-unavailable.png');"], main section.collection-feed .comments-area .comment-list .comment .card_image > div a[style$="wp-content/themes/mast/assets/img/image-unavailable.png');"], .comments-area .comment-list main section.collection-feed .comment .card_image > div a[style$="wp-content/themes/mast/assets/img/image-unavailable.png');"] {
  background-position: center center;
  background-size: contain;
}
main section.taxonomy-feed .card .card_image > div a:link, main section.taxonomy-feed .comments-area .comment-list .comment .card_image > div a:link, .comments-area .comment-list main section.taxonomy-feed .comment .card_image > div a:link, main section.taxonomy-feed .card .card_image > div a:visited, main section.taxonomy-feed .comments-area .comment-list .comment .card_image > div a:visited, .comments-area .comment-list main section.taxonomy-feed .comment .card_image > div a:visited, main section.collection-feed .card .card_image > div a:link, main section.collection-feed .comments-area .comment-list .comment .card_image > div a:link, .comments-area .comment-list main section.collection-feed .comment .card_image > div a:link, main section.collection-feed .card .card_image > div a:visited, main section.collection-feed .comments-area .comment-list .comment .card_image > div a:visited, .comments-area .comment-list main section.collection-feed .comment .card_image > div a:visited {
  display: block;
  text-decoration: none;
}
main section.taxonomy-feed .card .card_image > div a img, main section.taxonomy-feed .comments-area .comment-list .comment .card_image > div a img, .comments-area .comment-list main section.taxonomy-feed .comment .card_image > div a img,
main section.taxonomy-feed .card .card_image > div a .ff-container,
main section.taxonomy-feed .comments-area .comment-list .comment .card_image > div a .ff-container,
.comments-area .comment-list main section.taxonomy-feed .comment .card_image > div a .ff-container, main section.collection-feed .card .card_image > div a img, main section.collection-feed .comments-area .comment-list .comment .card_image > div a img, .comments-area .comment-list main section.collection-feed .comment .card_image > div a img,
main section.collection-feed .card .card_image > div a .ff-container,
main section.collection-feed .comments-area .comment-list .comment .card_image > div a .ff-container,
.comments-area .comment-list main section.collection-feed .comment .card_image > div a .ff-container {
  height: 100%;
}
main section.taxonomy-feed .card .card_text, main section.taxonomy-feed .comments-area .comment-list .comment .card_text, .comments-area .comment-list main section.taxonomy-feed .comment .card_text, main section.collection-feed .card .card_text, main section.collection-feed .comments-area .comment-list .comment .card_text, .comments-area .comment-list main section.collection-feed .comment .card_text {
  position: relative;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  main section.taxonomy-feed .card .card_text, main section.taxonomy-feed .comments-area .comment-list .comment .card_text, .comments-area .comment-list main section.taxonomy-feed .comment .card_text, main section.collection-feed .card .card_text, main section.collection-feed .comments-area .comment-list .comment .card_text, .comments-area .comment-list main section.collection-feed .comment .card_text {
    padding: 0 10px;
  }
}
main section.taxonomy-feed .card .card_text h3, main section.taxonomy-feed .comments-area .comment-list .comment .card_text h3, .comments-area .comment-list main section.taxonomy-feed .comment .card_text h3, main section.collection-feed .card .card_text h3, main section.collection-feed .comments-area .comment-list .comment .card_text h3, .comments-area .comment-list main section.collection-feed .comment .card_text h3 {
  font-size: 18px;
  font-weight: 500;
}
main section.taxonomy-feed .card .card_text h4, main section.taxonomy-feed .comments-area .comment-list .comment .card_text h4, .comments-area .comment-list main section.taxonomy-feed .comment .card_text h4, main section.collection-feed .card .card_text h4, main section.collection-feed .comments-area .comment-list .comment .card_text h4, .comments-area .comment-list main section.collection-feed .comment .card_text h4 {
  font-size: 12px;
  text-transform: uppercase;
  padding-bottom: 7px;
}
main section.taxonomy-feed .card .card_text .solardefense, main section.taxonomy-feed .comments-area .comment-list .comment .card_text .solardefense, .comments-area .comment-list main section.taxonomy-feed .comment .card_text .solardefense, main section.collection-feed .card .card_text .solardefense, main section.collection-feed .comments-area .comment-list .comment .card_text .solardefense, .comments-area .comment-list main section.collection-feed .comment .card_text .solardefense {
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 13px;
  font-weight: 400;
  color: #64b467;
  width: 146px;
  line-height: 1em;
  text-align: right;
}
main section.taxonomy-feed .card .card_cta, main section.taxonomy-feed .comments-area .comment-list .comment .card_cta, .comments-area .comment-list main section.taxonomy-feed .comment .card_cta, main section.collection-feed .card .card_cta, main section.collection-feed .comments-area .comment-list .comment .card_cta, .comments-area .comment-list main section.collection-feed .comment .card_cta {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  main section.taxonomy-feed .card .card_cta, main section.taxonomy-feed .comments-area .comment-list .comment .card_cta, .comments-area .comment-list main section.taxonomy-feed .comment .card_cta, main section.collection-feed .card .card_cta, main section.collection-feed .comments-area .comment-list .comment .card_cta, .comments-area .comment-list main section.collection-feed .comment .card_cta {
    position: relative;
    padding: 0 10px;
  }
}
main section.taxonomy-feed.stone_brand_type-feed .card, main section.taxonomy-feed.stone_brand_type-feed .comments-area .comment-list .comment, .comments-area .comment-list main section.taxonomy-feed.stone_brand_type-feed .comment, main section.collection-feed.stone_brand_type-feed .card, main section.collection-feed.stone_brand_type-feed .comments-area .comment-list .comment, .comments-area .comment-list main section.collection-feed.stone_brand_type-feed .comment {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 20px;
  padding-bottom: 0;
}
main section.taxonomy-feed.stone_brand_type-feed .card .card_text, main section.taxonomy-feed.stone_brand_type-feed .comments-area .comment-list .comment .card_text, .comments-area .comment-list main section.taxonomy-feed.stone_brand_type-feed .comment .card_text, main section.collection-feed.stone_brand_type-feed .card .card_text, main section.collection-feed.stone_brand_type-feed .comments-area .comment-list .comment .card_text, .comments-area .comment-list main section.collection-feed.stone_brand_type-feed .comment .card_text {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
}
main section.taxonomy-feed.stone_brand_type-feed .card .card_text h3, main section.taxonomy-feed.stone_brand_type-feed .comments-area .comment-list .comment .card_text h3, .comments-area .comment-list main section.taxonomy-feed.stone_brand_type-feed .comment .card_text h3, main section.collection-feed.stone_brand_type-feed .card .card_text h3, main section.collection-feed.stone_brand_type-feed .comments-area .comment-list .comment .card_text h3, .comments-area .comment-list main section.collection-feed.stone_brand_type-feed .comment .card_text h3 {
  font-size: 24px;
  font-weight: 500;
}
main section.taxonomy-feed.stone_brand_type-feed .card .card_text p, main section.taxonomy-feed.stone_brand_type-feed .comments-area .comment-list .comment .card_text p, .comments-area .comment-list main section.taxonomy-feed.stone_brand_type-feed .comment .card_text p, main section.collection-feed.stone_brand_type-feed .card .card_text p, main section.collection-feed.stone_brand_type-feed .comments-area .comment-list .comment .card_text p, .comments-area .comment-list main section.collection-feed.stone_brand_type-feed .comment .card_text p {
  font-size: 0.9375em;
}
main section.taxonomy-feed.stone_brand_type-feed .card .card_text a.button, main section.taxonomy-feed.stone_brand_type-feed .comments-area .comment-list .comment .card_text a.button, .comments-area .comment-list main section.taxonomy-feed.stone_brand_type-feed .comment .card_text a.button, main section.collection-feed.stone_brand_type-feed .card .card_text a.button, main section.collection-feed.stone_brand_type-feed .comments-area .comment-list .comment .card_text a.button, .comments-area .comment-list main section.collection-feed.stone_brand_type-feed .comment .card_text a.button {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  main section.taxonomy-feed.stone_brand_type-feed .card .card_image img, main section.taxonomy-feed.stone_brand_type-feed .comments-area .comment-list .comment .card_image img, .comments-area .comment-list main section.taxonomy-feed.stone_brand_type-feed .comment .card_image img, main section.collection-feed.stone_brand_type-feed .card .card_image img, main section.collection-feed.stone_brand_type-feed .comments-area .comment-list .comment .card_image img, .comments-area .comment-list main section.collection-feed.stone_brand_type-feed .comment .card_image img {
    width: 100%;
    height: auto;
  }
}
main section.accordion .accordion-toggle {
  cursor: pointer;
  background-color: #ccc;
  border-left: 5px #64b467 solid;
  padding: 10px 0;
}
main section.accordion .accordion-toggle:before {
  content: "+";
  color: #000;
  font-weight: 700;
  padding: 0 10px;
}
main section.accordion .accordion-content {
  display: block;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
main section.accordion .accordion-content p {
  padding: 20px;
}
main section.accordion .accordion-content ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 10px;
}
main section.accordion .accordion-content ul li {
  margin-bottom: 5px;
  line-height: 1.65em;
}
main section.accordion .accordion-content.active {
  max-height: 1000px;
  height: auto;
  padding: 20px 0;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
@media screen and (max-width: 768px) {
  main section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
main section .gform_wrapper {
  overflow: hidden;
  margin: 0 0 2vw 0;
  max-width: 100%;
}
main section .gform_wrapper form.newsletter .gform_body {
  display: inline-block;
  float: left;
  margin: 0;
  vertical-align: top;
  width: 70%;
  clear: none;
}
@media screen and (max-width: 768px) {
  main section .gform_wrapper form.newsletter .gform_body {
    width: 60%;
  }
}
@media screen and (max-width: 600px) {
  main section .gform_wrapper form.newsletter .gform_body {
    display: block;
    float: none;
    width: 100%;
  }
}
main section .gform_wrapper form.newsletter .gform_body ul.gform_fields li.gfield.no_padding {
  padding: 0;
}
main section .gform_wrapper form.newsletter .gform_body .top_label input.medium,
main section .gform_wrapper form.newsletter .gform_body .top_label select.medium {
  width: 100%;
  margin: 0;
}
main section .gform_wrapper form.newsletter .gform_body input[type=email],
main section .gform_wrapper form.newsletter .gform_body input[type=number],
main section .gform_wrapper form.newsletter .gform_body input[type=password],
main section .gform_wrapper form.newsletter .gform_body input[type=tel],
main section .gform_wrapper form.newsletter .gform_body input[type=text],
main section .gform_wrapper form.newsletter .gform_body input[type=url] {
  height: 50px;
  padding: 10px;
  border: none;
}
main section .gform_wrapper form.newsletter .gform_body input[type=email]::-webkit-input-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=number]::-webkit-input-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=password]::-webkit-input-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=tel]::-webkit-input-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=text]::-webkit-input-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=url]::-webkit-input-placeholder {
  font-style: italic;
}
main section .gform_wrapper form.newsletter .gform_body input[type=email]::-moz-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=number]::-moz-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=password]::-moz-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=tel]::-moz-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=text]::-moz-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=url]::-moz-placeholder {
  font-style: italic;
}
main section .gform_wrapper form.newsletter .gform_body input[type=email]:-ms-input-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=number]:-ms-input-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=password]:-ms-input-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=tel]:-ms-input-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=text]:-ms-input-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=url]:-ms-input-placeholder {
  font-style: italic;
}
main section .gform_wrapper form.newsletter .gform_body input[type=email]:-moz-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=number]:-moz-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=password]:-moz-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=tel]:-moz-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=text]:-moz-placeholder,
main section .gform_wrapper form.newsletter .gform_body input[type=url]:-moz-placeholder {
  font-style: italic;
}
main section .gform_wrapper form.newsletter .gform_body label.gfield_label + div.ginput_container {
  margin-top: 8px;
}
main section .gform_wrapper form.newsletter .gform_footer {
  display: inline-block;
  float: left;
  margin: 16px 0 0;
  padding: 0;
  vertical-align: top;
  width: 30%;
  clear: none;
}
@media screen and (max-width: 768px) {
  main section .gform_wrapper form.newsletter .gform_footer {
    width: 40%;
  }
}
@media screen and (max-width: 600px) {
  main section .gform_wrapper form.newsletter .gform_footer {
    display: block;
    float: none;
    width: 100%;
  }
}
main section .gform_wrapper form.newsletter .gform_footer input[type=submit] {
  height: 50px;
  width: 100%;
  padding: 10px;
  background-color: #000000;
  color: #ffffff;
  font-size: 13px;
}
main section .gform_wrapper form.newsletter .gform_footer input[type=submit]:hover {
  background-color: #ffffff;
  color: #000000;
}

/*-------------------------------------------------------*\
    Sections
/*-------------------------------------------------------*/
.inner-content {
  padding-left: 3vw;
  padding-right: 3vw;
  padding-top: 3vw;
  padding-bottom: 3vw;
}
.inner-content.compact {
  padding-top: 2vw;
  padding-left: 2vw;
  padding-right: 2vw;
  padding-bottom: 2vw;
}
.inner-content.condense {
  padding-top: 1vw;
  padding-left: 1vw;
  padding-right: 1vw;
  padding-bottom: 1vw;
}
.inner-content.flush {
  padding-left: 0;
  padding-right: 0;
}
.inner-content.vertical-compact {
  padding-top: 2vw;
  padding-bottom: 2vw;
}
.inner-content.vertical-condense {
  padding-top: 1vw;
  padding-bottom: 1vw;
}
.inner-content.vertical-flush {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pad-horizontal {
  padding-left: 1vw;
  padding-right: 1vw;
}

section.condense {
  padding-top: 1vw;
  padding-bottom: 1vw;
}

/*-------------------------------------------------------*\
    Search Form Stuff
/*-------------------------------------------------------*/
.search-form {
  position: relative;
  font-size: 14px;
}
.search-form .search-form-icon {
  position: absolute;
  line-height: 1.8;
  left: 28px;
}
@media screen and (max-width: 768px) {
  .search-form .search-form-icon {
    left: 20px;
  }
}
.search-form .search-form-icon-mobile {
  position: absolute;
  right: 0;
  top: 0;
  padding: 1em;
  z-index: 999;
}
.search-form label {
  float: none;
  clear: both;
  cursor: pointer;
  padding-bottom: 0;
}
.search-form > div {
  display: inline-block;
  overflow: visible;
  position: relative;
  width: 100%;
  margin-top: -6px;
  min-width: 150px;
}
.search-form > div:before {
  position: absolute;
  left: 9px;
  color: #AAAAAA;
  cursor: pointer;
  font-size: 13px;
  z-index: 999;
  line-height: 2.23em;
}
@media screen and (max-width: 768px) {
  .search-form > div:before {
    line-height: 2.275em;
    font-size: 16px;
    left: 12px;
  }
}
@media screen and (min-width: 768px) {
  .search-form > div {
    padding-right: 0.5em;
  }
}
@media screen and (max-width: 768px) {
  .search-form > div {
    max-width: 200px;
    margin: 15px auto 0;
    text-align: center;
    float: none;
    position: relative;
    width: auto;
    display: block;
  }
}
.search-form::-webkit-input-placeholder {
  color: black !important;
}

.search-form:-moz-placeholder {
  color: black !important;
}

.search-form::-moz-placeholder {
  color: black !important;
}

.search-form:-ms-input-placeholder {
  color: black !important;
}

.search-form input {
  margin: 0;
  z-index: 99;
  padding: 4px 5px;
  text-indent: 23px;
  line-height: 13px;
  height: auto;
  box-shadow: none;
  font-size: 13px;
  border: solid 1px transparent;
  border-radius: 25px;
  color: black;
  display: inline-block;
  background: transparent;
  opacity: 1;
  color: black;
}
@media screen and (max-width: 768px) {
  .search-form input {
    opacity: 1;
    padding-top: 0;
    height: auto;
    width: 100%;
    float: left;
    clear: both;
    margin: 0 auto;
    text-align: left;
    overflow: hidden;
    text-indent: 28px;
    width: 100%;
    max-width: 240px;
    background: transparent !important;
    font-weight: normal !important;
    border: none !important;
    line-height: 2.5em !important;
    position: fixed;
    top: 0.8em;
    right: 0;
    padding-right: 3.6em;
    overflow: hidden;
    text-align: right;
    text-transform: uppercase !important;
    font-weight: normal !important;
    max-width: 200px;
  }
}
@media screen and (min-width: 768px) {
  .search-form input {
    width: 134px;
  }
}
.search-form input:focus, .search-form input:active {
  padding-left: 6px;
  color: black;
  border-color: black;
}

/* Modules */
/*-------------------------------------------------------*\
    Post Navigation
/*-------------------------------------------------------*/
.post-nav .summary {
  display: block;
}
.post-nav.next-post .summary:hover {
  right: 16px !important;
}
.post-nav.next-post .summary > *:first-child:before {
  content: "NEWER";
}
@media screen and (max-width: 300px) {
  .post-nav.next-post .summary > *:first-child:before {
    content: "";
  }
}
.post-nav.next-post .summary > *:first-child:after {
  content: "";
}
.post-nav.previous-post {
  left: 0;
  margin-left: 43px;
}
.post-nav.previous-post .summary:hover {
  right: 26px !important;
}
.post-nav.previous-post .summary > *:before {
  content: "OLDER";
  right: auto;
  left: 100%;
  transform: rotate(90deg);
}
@media screen and (max-width: 300px) {
  .post-nav.previous-post .summary > *:before {
    content: "";
  }
}
.post-nav.previous-post .summary > *:after {
  content: "";
  left: 100%;
  padding-left: 11px;
  padding-right: 0;
}
.post-nav .summary > *:before {
  position: absolute;
  display: grid;
  height: 100%;
  align-items: center;
  position: absolute;
  right: 100%;
  transform: rotate(270deg);
  font-weight: bold;
  top: auto;
  bottom: auto;
  padding: 0 13px;
  text-shadow: 0 0 5px #222;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .post-nav .summary > *:before {
    padding-right: 0;
  }
}
.post-nav .summary > *:after {
  content: "";
  font-family: fontawesome;
  display: flex;
  height: 100%;
  align-items: center;
  position: absolute;
  right: 100%;
  padding-right: 11px;
  text-shadow: 0 0 3px #222;
  font-weight: 100;
  font-size: 1.2em;
}
@media screen and (max-width: 768px) {
  .post-nav .summary > * > * {
    display: none;
  }
}

/*-------------------------------------------------------*\
    Cards
/*-------------------------------------------------------*/
.card .card_image a[style*=background-image], .comments-area .comment-list .comment .card_image a[style*=background-image] {
  outline: 3px solid transparent;
  outline-offset: -2px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.card .card_image a[style*=background-image]:hover, .comments-area .comment-list .comment .card_image a[style*=background-image]:hover {
  outline-color: #333333;
}
.card .card_image a[style*=background-image] > img, .comments-area .comment-list .comment .card_image a[style*=background-image] > img {
  opacity: 0;
}
.card .card_image > a, .comments-area .comment-list .comment .card_image > a {
  backface-visibility: hidden;
}
.card .card_image > a[style*=background-image], .comments-area .comment-list .comment .card_image > a[style*=background-image] {
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  backface-visibility: hidden;
}
.card .card_image > a[style*=background-image] > img, .comments-area .comment-list .comment .card_image > a[style*=background-image] > img {
  opacity: 0;
}
.card .card_image > a[style*=background-image]:hover, .comments-area .comment-list .comment .card_image > a[style*=background-image]:hover {
  background-size: 101.5% auto;
}
.card .card_image > a:hover, .comments-area .comment-list .comment .card_image > a:hover {
  filter: brightness(110%);
}
.card.secondary-card, .comments-area .comment-list .comment {
  background-color: #ffffff;
  padding-bottom: 1.25em !important;
  box-shadow: 0 0 17px rgba(51, 51, 51, 0.25);
  margin-bottom: 20px !important;
}
.card.secondary-card h3, .comments-area .comment-list .comment h3 {
  padding-bottom: 8px;
}
.card.secondary-card p, .comments-area .comment-list .comment p {
  padding-bottom: 0;
  max-width: 100%;
}
.card.secondary-card .card_text, .comments-area .comment-list .comment .card_text {
  margin-top: 0 !important;
  padding-bottom: 0;
  padding-top: 1em;
  padding-left: 1.25em;
  padding-right: 1.25em;
}
.card.secondary-card .card_text h1 > a, .comments-area .comment-list .comment .card_text h1 > a, .card.secondary-card .card_text h2 > a, .comments-area .comment-list .comment .card_text h2 > a, .card.secondary-card .card_text h3 > a, .comments-area .comment-list .comment .card_text h3 > a, .card.secondary-card .card_text h4 > a, .comments-area .comment-list .comment .card_text h4 > a, .card.secondary-card .card_text h5 > a, .comments-area .comment-list .comment .card_text h5 > a, .card.secondary-card .card_text h6 > a, .comments-area .comment-list .comment .card_text h6 > a {
  padding-bottom: 4px;
}
.card.banner-card:before, .comments-area .comment-list .banner-card.comment:before {
  content: "";
  font-family: fontawesome;
  background: black;
  color: white;
  padding: 8px 1.2em;
  text-align: center;
  display: inline-block;
  position: relative;
  line-height: normal;
  z-index: 9;
  font-weight: 500;
  opacity: 1;
  box-shadow: 0 0 9px rgba(95, 95, 95, 0.24);
  left: auto;
  right: -12px;
  bottom: 17px;
  top: auto;
  left: -30px;
}

/*-------------------------------------------------------*\
    Post Modules
/*-------------------------------------------------------*/
@media screen and (min-width: 768px) {
  main .tri-hero-module > * {
    height: 576px;
    height: 46vw;
    max-height: 750px;
  }
}
@media screen and (min-width: 768px) {
  main .tri-hero-module > *.double .content_image {
    height: 50% !important;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
    outline: 3px solid transparent;
    transition: all 0.1s ease-in-out;
  }
}
main .tri-hero-module > * figure {
  position: relative;
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: 9;
  width: 100%;
  color: white;
}
@media screen and (max-width: 768px) {
  main .tri-hero-module > * figure {
    min-height: 300px;
    margin-top: 8px;
  }
}
main .tri-hero-module > * figure.link {
  outline: 3px solid transparent;
  outline-offset: 0;
  transition: all 0.2s ease-in-out;
}
main .tri-hero-module > * figure.link:after {
  content: "";
  display: block;
  /* width: 100%; */
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 0;
  outline: 4px solid white;
  outline-color: transparent;
  outline-offset: -4px;
  transition: outline 0.1s ease-in-out;
  background: rgba(0, 0, 0, 0.63);
  -webkit-background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.5) 100%);
  -moz-background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.5) 100%);
  -ms-background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  z-index: -1;
}
main .tri-hero-module > * figure.link:hover:after {
  opacity: 1;
}
main .tri-hero-module > * figure.link h1, main .tri-hero-module > * figure.link h2, main .tri-hero-module > * figure.link h3, main .tri-hero-module > * figure.link h4, main .tri-hero-module > * figure.link h5, main .tri-hero-module > * figure.link h6, main .tri-hero-module > * figure.link p {
  z-index: auto;
}
main .tri-hero-module > * figure.link h1 > a:after, main .tri-hero-module > * figure.link h2 > a:after, main .tri-hero-module > * figure.link h3 > a:after, main .tri-hero-module > * figure.link h4 > a:after, main .tri-hero-module > * figure.link h5 > a:after, main .tri-hero-module > * figure.link h6 > a:after, main .tri-hero-module > * figure.link p > a:after {
  height: 3px;
}
main .tri-hero-module > * figure.link:hover {
  opacity: 1;
  background-blend-mode: luminosity;
  outline: 4px solid #64b467;
  outline-offset: -4px;
  background-color: white;
}
main .tri-hero-module > * figure.link:hover h1, main .tri-hero-module > * figure.link:hover h2, main .tri-hero-module > * figure.link:hover h3, main .tri-hero-module > * figure.link:hover h4, main .tri-hero-module > * figure.link:hover h5, main .tri-hero-module > * figure.link:hover h6, main .tri-hero-module > * figure.link:hover p {
  transition: all 0.2s ease-in-out;
}
main .tri-hero-module > * figure.link:hover h1 > a, main .tri-hero-module > * figure.link:hover h2 > a, main .tri-hero-module > * figure.link:hover h3 > a, main .tri-hero-module > * figure.link:hover h4 > a, main .tri-hero-module > * figure.link:hover h5 > a, main .tri-hero-module > * figure.link:hover h6 > a, main .tri-hero-module > * figure.link:hover p > a {
  opacity: 1 !important;
}
main .tri-hero-module > * figure.link:hover h1 > a:after, main .tri-hero-module > * figure.link:hover h2 > a:after, main .tri-hero-module > * figure.link:hover h3 > a:after, main .tri-hero-module > * figure.link:hover h4 > a:after, main .tri-hero-module > * figure.link:hover h5 > a:after, main .tri-hero-module > * figure.link:hover h6 > a:after, main .tri-hero-module > * figure.link:hover p > a:after {
  width: 100%;
  width: calc(100% + $overflow);
  opacity: 1;
}
main .tri-hero-module > * figure.link:hover .sub-preheader:after {
  width: 102.5%;
}
@media screen and (min-width: 768px) {
  main .tri-hero-module > * figure.content_image {
    min-height: 350px;
  }
}
main .tri-hero-module > * figure.black {
  color: black;
}
main .tri-hero-module > * figure.black figcaption {
  text-shadow: 0 0 2px rgba(101, 101, 101, 0.32);
  color: black;
}
main .tri-hero-module > * figure.black:hover figcaption {
  color: white;
}
main .tri-hero-module > * figure figcaption {
  display: grid;
  align-items: end;
  position: absolute;
  bottom: 0;
  padding: 0.5em 2em;
  padding: 0.5vw 2.3vw;
  text-shadow: 0 0 2px rgba(101, 101, 101, 0.32);
  color: white;
}
main .tri-hero-module > * figure figcaption.black {
  color: black;
}
main .tri-hero-module > * figure figcaption.black .sub-preheader:after {
  background: black;
}
main .tri-hero-module > * figure figcaption .sub-preheader {
  text-transform: uppercase;
  color: inherit;
  letter-spacing: 2px;
  clear: both;
  font-size: 80%;
  font-weight: 700;
  padding-bottom: 0;
  display: inline-block;
  float: none;
  min-width: 0;
  max-width: none;
  width: 100%;
  width: fit-content;
  width: -ms-fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  padding-right: 10%;
}
main .tri-hero-module > * figure figcaption .sub-preheader:after {
  content: "";
  width: 60px;
  background: white;
  height: 3px;
  margin-bottom: 20px;
  float: left;
  clear: both;
  display: block;
  position: relative;
  margin-top: 10px;
  margin-bottom: 3em;
  transition: all 0.2s ease-in-out;
  left: 0;
}
main .tri-hero-module > * figure figcaption .header {
  font-weight: 400;
  color: inherit;
  padding-bottom: 3px;
  font-size: 2.125em;
}
main .tri-hero-module > * figure figcaption .header > a {
  padding-bottom: 8px;
  color: inherit !important;
  transition: none !important;
}
main .tri-hero-module > * figure figcaption p {
  padding-bottom: 18px;
  max-width: 400px !important;
  color: inherit !important;
}
main .more-articles {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  main .more-articles {
    padding-left: calc(40px + 2vw);
    padding-right: calc(40px + 2vw);
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

html.ie main .tri-hero-module > * figure.link {
  outline-color: transparent !important;
}
html.ie main .tri-hero-module > * figure.link:after {
  border: 4px solid #64b467 !important;
}

/*-------------------------------------------------------*\
    Banners
/*-------------------------------------------------------*/
.banner figure, .banner .banner-content {
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 350px;
}
.banner.tall figure, .banner.tall .banner-content {
  min-height: 500px;
}
.banner.mighty figure, .banner.mighty .banner-content {
  min-height: 650px;
}
.banner .inner-content {
  min-height: 150px;
  display: grid;
  align-items: center;
  padding-top: 2vw;
  padding-bottom: 2vw;
}

main section.page-content .featured-image[style*=background-image] {
  background-size: cover;
  max-height: 375px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: opacity 0.2s ease-in-out;
  margin-bottom: 40px;
  overflow: hidden;
}
main section.page-content .featured-image[style*=background-image] > img {
  opacity: 0;
}

html:not(.js) .page-content .featured-image {
  opacity: 1 !important;
}

/*-------------------------------------------------------*\
    Image Sliders/Galleries
/*-------------------------------------------------------*/
.gallery .gallery-slider {
  padding-bottom: 1vw;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.gallery .gallery-slider .slide img {
  height: auto;
  max-width: 100%;
  width: 100%;
  z-index: 2;
  position: relative;
}
.gallery .gallery-slider .slide figcaption {
  text-align: left;
  font-size: 0.9em;
  line-height: normal;
  padding-bottom: 8px;
}
.gallery .gallery-slider .slide:after {
  transition: all 0.3s ease-in-out;
}
.gallery .gallery-slider .slide:before {
  transition: background 0.3s ease-in-out;
}
.gallery + .remove-designer-gallery-styles {
  transition: opacity, top 0.2s ease;
  z-index: -9;
  visibility: hidden;
  top: -30px;
}
.gallery.colorize .gallery-slider .slide {
  position: relative;
}
.gallery.colorize .gallery-slider .slide:after {
  position: absolute;
  transition: all 0.3s ease-in-out;
  content: "";
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.gallery.colorize .gallery-slider .slide:before {
  opacity: 0;
  content: "";
  white-space: nowrap;
  background: transparent;
  width: 50px;
  height: 50px;
  top: -13px;
  left: 0;
  z-index: 2;
  position: absolute;
  border: 1.5px solid #fff;
  display: grid;
  align-items: end;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: white;
  padding: 0px;
  text-shadow: 0 0 16px black;
  text-align: right;
  line-height: 70px;
  text-indent: 64px;
  margin: 21px 9px;
  text-decoration: underline;
  text-decoration-line: underline;
  box-shadow: 0 0 8px black;
  text-decoration-color: rgba(255, 255, 255, 0.93);
  text-decoration-style: unset;
  text-underline-position: under;
  z-index: 5;
}
.gallery.colorize + .remove-designer-gallery-styles {
  margin-left: -16px;
  top: -16px;
  position: absolute;
  color: #222;
  font-size: 1.2rem;
  background: #fff;
  width: 24px;
  text-align: center;
  height: 24px;
  display: grid;
  align-items: center;
  box-shadow: 0 0 4px black;
  border-radius: 100%;
  line-height: 0px;
  border: 2px solid #222;
  opacity: 0.9;
  z-index: 3;
  visibility: visible;
}
.gallery.colorize + .remove-designer-gallery-styles:hover {
  top: -10px;
  opacity: 1;
}
.gallery .gallery-nav .slide {
  padding: 4px;
  cursor: pointer;
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -moz-tap-highlight-color: transparent !important;
  -ms-tap-highlight-color: transparent !important;
  tap-highlight-color: transparent !important;
}
.gallery .gallery-nav .slide:hover, .gallery .gallery-nav .slide:active {
  background: #f4f4f4;
  filter: saturate(1.35);
  transition: all 0.2s ease-in;
  transform: scale(1.015);
}
.gallery .gallery-nav .slide.active, .gallery .gallery-nav .slide.slick-current {
  background: none;
  outline: 3px solid !important;
  outline-offset: -4px;
  position: relative;
}
.gallery .gallery-nav .slide.active:after, .gallery .gallery-nav .slide.slick-current:after {
  position: absolute;
  transition: all 0.3s ease-in-out;
  content: "";
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  border: 1px solid black;
}
.gallery .gallery-nav .slide img {
  -webkit-tap-highlight-color: transparent !important;
  -moz-tap-highlight-color: transparent !important;
  -ms-tap-highlight-color: transparent !important;
  tap-highlight-color: transparent !important;
  outline: 1px solid #000;
  margin-bottom: 0;
  z-index: 2;
}
.gallery.multi {
  margin: 0 20px;
}
.gallery.multi .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -50px;
  border: 0;
  width: 25px;
  min-width: 25px;
  height: 50px;
  padding: 0;
}
.gallery.multi .slick-arrow.slick-prev {
  left: -20px;
}
.gallery.multi .slick-arrow.slick-next {
  right: -15px;
}
.gallery.multi .gallery-nav {
  margin-bottom: 50px;
}
.gallery.multi .gallery-nav .slide {
  margin: 0 10px;
}
.gallery .gallery-nav .slide:not(.slick-current) {
  outline: 3px solid !important;
  outline-offset: -3px;
  outline-color: white !important;
  position: relative;
}

.gallery.colorize .gallery-nav .slide:after {
  position: absolute;
  content: "";
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  height: 100% !important;
  width: 100% !important;
  z-index: -1;
}

/*-------------------------------------------------------*\
    Tabs
/*-------------------------------------------------------*/
.tabs-container .tabs-nav .tab-title {
  display: inline-block;
  padding: 0 20px;
  padding: 0 1.6vw;
  flex-grow: unset;
  transition: all 0.1s ease;
  z-index: 1;
  margin-bottom: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
.tabs-container .tabs-nav .tab-title:first-child {
  padding-left: 5px;
}
.tabs-container .tabs-nav .tab-title a {
  position: relative;
  display: inline-block;
  overflow-x: visible;
  padding-bottom: 1px;
  transition-property: border-color;
  padding-bottom: 10px;
}
.tabs-container .tabs-nav .tab-title a:after {
  position: absolute;
  content: "";
  background: #64b467;
  height: 2px;
  width: 1px;
  opacity: 0;
  bottom: 0;
  left: 0;
  display: block;
  float: none;
  clear: both;
  transition: all 0.3s ease;
}
.tabs-container .tabs-nav .tab-title a:hover:after {
  width: 100%;
  width: calc(100% + $overflow);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .tabs-container .tabs-nav .tab-title a {
    display: block;
    font-size: 1.125em;
    text-align: left;
  }
}
@media screen and (max-width: 600px) {
  .tabs-container .tabs-nav .tab-title {
    width: 100%;
    display: block;
    text-align: center;
    border-bottom: 1px solid #f4f4f4;
    line-height: 2;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
  }
  .tabs-container .tabs-nav .tab-title:last-child {
    border-bottom: none;
    padding-bottom: 0.6em;
  }
}
.tabs-container.ready .tabs-content .content {
  transform: translateX(100vw);
  transition-property: opacity, transform;
  margin-top: 0;
  opacity: 0;
  height: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.45s ease;
  transition-property: opacity, transform, filter;
  transform: translateX(-100vw);
  margin-top: 0;
}
.tabs-container.ready .tabs-content .content:not(.active) {
  filter: blur(5px);
}
.tabs-container.ready .tabs-content .content p > img:first-child:last-child {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.tabs-container.ready .tabs-content .content .card_text {
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}
.tabs-container.ready .tabs-content .content.active {
  filter: blur(0);
  display: block;
  opacity: 1;
  height: auto;
  overflow: visible;
  max-height: 100%;
  transform: translateX(0px);
  margin-top: 20px;
}
.tabs-container.ready .tabs-content .content.active .card_text {
  opacity: 1 !important;
}

.tabs-container-parent.ready .tabs-content .content {
  display: none;
}
.tabs-container-parent.ready .tabs-content .content.active {
  display: block;
}

nav .tabs li {
  display: inline-block;
}
nav .tabs li > a {
  border-bottom: 5px solid transparent;
}
nav .tabs li.btn {
  border-bottom: none !important;
  position: relative;
}
nav .tabs li.btn:nth-child(odd) {
  padding-left: 0;
}
nav .tabs li.btn:nth-child(even) {
  padding-right: 0;
}
nav .tabs li.btn .button, nav .tabs li.btn body.page-template-template-find-a-pro .modal .wrapper .button, body.page-template-template-find-a-pro .modal .wrapper nav .tabs li.btn .button, nav .tabs li.btn body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper nav .tabs li.btn .button {
  text-decoration: none;
  max-width: 100%;
  width: 100%;
  font-weight: bold;
  white-space: normal;
  padding: 11px 5px 13px;
  line-height: 1.6em;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  nav .tabs li.btn .button, nav .tabs li.btn body.page-template-template-find-a-pro .modal .wrapper .button, body.page-template-template-find-a-pro .modal .wrapper nav .tabs li.btn .button, nav .tabs li.btn body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper nav .tabs li.btn .button {
    font-size: 0.625em;
  }
}
nav .tabs .active > a {
  border-bottom: 5px solid #000000;
}
nav .tabs .active.btn {
  border-bottom: none;
}
nav .tabs .active.btn .button {
  background: #000000;
  color: white;
  border-color: #000000;
}
nav .tabs .active.btn .button:hover {
  background: white;
  color: #000000;
}
nav .tabs .active a {
  font-weight: bold;
}
nav.tabs-parent-nav .tabs > li > a {
  display: block;
  padding-bottom: 6px;
}
nav.tabs-parent-nav .tabs > li.active {
  border-bottom-color: transparent;
}
nav.tabs-parent-nav .tabs > li.active > a {
  border-bottom: 3.5px solid #000000;
}

.content-tabbed {
  margin-top: 40px;
}
.content-tabbed .content a:not(.button):hover {
  opacity: 0.8;
}

.content-tabbed nav, .tabs-container nav {
  width: 100%;
  margin-bottom: 25px;
  position: relative;
}
.content-tabbed nav:before, .content-tabbed nav:after, .tabs-container nav:before, .tabs-container nav:after {
  content: "";
  display: block;
}
.content-tabbed nav:after, .tabs-container nav:after {
  clear: both;
}
@media screen and (min-width: 768px) {
  .content-tabbed nav, .tabs-container nav {
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .content-tabbed nav > ul, .tabs-container nav > ul {
    padding-left: 7px;
  }
}
.content-tabbed nav:after, .tabs-container nav:after {
  content: "";
  border-bottom: 1px solid #999999;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 2px;
  z-index: 0;
}
.content-tabbed figure, .tabs-container figure {
  text-align: center;
}
.content-tabbed figure img, .tabs-container figure img {
  margin-bottom: 18px;
}
.content-tabbed figure figcaption a, .tabs-container figure figcaption a {
  text-decoration: none;
}

nav .tabs li.btn a.button:hover {
  border-color: #cbcccc;
  color: #64b467;
}

@supports (display: grid) {
  @media screen and (max-width: 768px) {
    .grid-small {
      display: grid;
      grid-template-areas: "a" "b" "c" "d";
      grid-auto-columns: 100%;
    }
    .grid-small .grid-child {
      float: none !important;
      width: 100%;
      position: relative;
      max-width: 100%;
      overflow: hidden;
    }
    .grid-small .grid-child.grid-b > * {
      display: grid;
      max-width: 100%;
      width: 100%;
      white-space: normal;
      display: block;
      width: auto !important;
    }
    .grid-small .grid-child.grid-a {
      grid-area: a;
    }
  }
}
/*-------------------------------------------------------*\
    Equal Heights
/*-------------------------------------------------------*/
.equal-heights-smallest.equalized img.equal-smallest {
  width: auto;
  text-align: center;
  float: none;
  margin: 0 auto;
}

.equal-heights .equal.fade-in, .equal-heights .equal-inner.fade-in {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}
.equal-heights.equalized .equal.fade-in, .equal-heights.equalized .equal-inner.fade-in {
  opacity: 1;
}
.equal-heights.equalized .equal .bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  opacity: 1;
  padding: 0 10px 20px;
  text-align: left;
}

/*-------------------------------------------------------*\
    Scroll Horizontal Animate
/*-------------------------------------------------------*/
.scroll-container {
  position: relative;
  overflow: hidden;
}
.scroll-container .scroll-trigger {
  position: absolute;
  z-index: 9;
  height: 80%;
  width: 4.5%;
  min-width: 20px;
  left: 0;
  right: 0;
  display: grid;
  align-items: center;
  bottom: 0;
  top: 0;
  z-index: 9999999999;
  background: rgba(255, 255, 255, 0.9);
  color: transparent;
  box-shadow: 0 -2px 6px #eee;
}
.scroll-container .scroll-trigger[style="display: none;"] + .hover-track-children {
  left: 0 !important;
}
.scroll-container .scroll-trigger i {
  font-size: 12px;
  transition: all 0.15s ease-in-out;
  padding: 0 5px;
  text-align: inherit;
  opacity: 0.15;
  color: #000000;
}
.scroll-container .scroll-trigger:hover {
  cursor: pointer;
}
.scroll-container .scroll-trigger:hover i {
  opacity: 0.8;
  color: #000000;
}
.scroll-container .scroll-trigger.left-scroll {
  left: 0;
  right: auto;
  text-align: left;
}
.scroll-container .scroll-trigger.right-scroll {
  right: 0;
  left: auto;
  text-align: right;
}

/*-------------------------------------------------------*\
    Modals
/*-------------------------------------------------------*/
.modal, .modal-loading-overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: left;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.25s ease;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.modal.active, .active.modal-loading-overlay {
  opacity: 1;
  visibility: visible;
  z-index: 99999999;
}
.modal.active .modal-inner, body.page-template-template-find-a-pro .modal.active .wrapper, .modal.active body.page-template-template-find-a-pro .modal-loading-overlay .wrapper, .active.modal-loading-overlay .modal-inner, .active.modal-loading-overlay body.page-template-template-find-a-pro .modal .wrapper, body.page-template-template-find-a-pro .active.modal-loading-overlay .wrapper {
  top: 0;
}
.modal .modal-inner, body.page-template-template-find-a-pro .modal .wrapper, .modal-loading-overlay .modal-inner, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper {
  transition: top 0.25s ease;
  top: -100em;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  margin: auto;
  overflow: auto;
  background: white;
  border-radius: 5px;
  border: 3px solid black;
  width: 100%;
  max-width: 1000px;
  top: 0;
  bottom: 0;
  height: auto;
  overflow: auto;
  vertical-align: middle;
  color: #333333;
  padding: 30px;
}
.modal .modal-inner .overflow, body.page-template-template-find-a-pro .modal .wrapper .overflow, .modal-loading-overlay .modal-inner .overflow, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .overflow {
  overflow: auto;
  max-height: 680px;
  right: -30px;
  position: relative;
  padding-right: 20px;
  top: -30px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: -59px;
}
.modal .modal-inner figure, body.page-template-template-find-a-pro .modal .wrapper figure, .modal-loading-overlay .modal-inner figure, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper figure {
  text-align: center;
}
.modal .modal-inner figure img, body.page-template-template-find-a-pro .modal .wrapper figure img, .modal-loading-overlay .modal-inner figure img, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper figure img {
  max-height: 500px;
  width: auto;
  min-width: 100px;
  margin: 0 auto;
}
.modal .modal-inner.abs, body.page-template-template-find-a-pro .modal .abs.wrapper, .modal-loading-overlay .modal-inner.abs, body.page-template-template-find-a-pro .modal-loading-overlay .abs.wrapper {
  position: absolute !important;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  cursor: pointer;
  z-index: 9999999;
  color: transparent !important;
  cursor: pointer;
  line-height: 1;
  transition: none;
  display: block;
}
@media screen and (max-width: 768px) {
  .modal-close {
    position: fixed;
  }
}
.modal-close:after, .modal-close:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 1.5em;
  background: #999999;
  display: block;
  transform: rotate(45deg);
  left: 50%;
  margin: -3px 0 0 -1px;
  top: 0;
  transition: all 0.3s ease-in-out;
}
.modal-close:hover {
  transform-origin: right center;
  transform: translateZ(-100px) rotateY(21deg);
}
@media screen and (max-width: 768px) {
  .modal-close:hover {
    border-color: #000000;
  }
}
.modal-close:hover:after, .modal-close:hover:before {
  background: #000000;
  box-shadow: none;
  transform-origin: right center;
}
.modal-close:before {
  transform: rotate(-45deg);
}

.modal-loading-overlay.active {
  display: block;
  visibility: visible;
  opacity: 1;
  z-index: 99999;
  background-image: url("../img/loader.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100px 100px;
}

@supports (display: grid) {
  .modal, .modal-loading-overlay {
    display: grid;
    align-items: center;
    align-content: center;
  }
  .modal .modal-inner, body.page-template-template-find-a-pro .modal .wrapper, .modal-loading-overlay .modal-inner, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper {
    display: block !important;
    position: relative !important;
    overflow: auto;
    align-items: center !important;
    align-content: center !important;
  }
  @media screen and (max-width: 768px) {
    .modal .modal-inner, body.page-template-template-find-a-pro .modal .wrapper, .modal-loading-overlay .modal-inner, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper {
      position: fixed !important;
      align-content: normal !important;
    }
  }
}
.slide-in-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: -100%;
  left: -100vw;
  width: 0;
  z-index: 1050;
  overflow: auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  background: rgba(238, 238, 238, 0.9);
  height: 100vh;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  transition-delay: 0s;
}
.slide-in-modal.active {
  opacity: 1;
  display: block;
  left: 160px;
  border-left: 1px solid #ccc;
  width: 100%;
  padding-right: 180px;
}
.slide-in-modal .card > *, .slide-in-modal .comments-area .comment-list .comment > *, .comments-area .comment-list .slide-in-modal .comment > * {
  position: relative;
  overflow: hidden;
}
.slide-in-modal .card .card_image, .slide-in-modal .comments-area .comment-list .comment .card_image, .comments-area .comment-list .slide-in-modal .comment .card_image {
  min-height: 200px;
}
@media screen and (min-width: 768px) {
  .slide-in-modal .card .card_image, .slide-in-modal .comments-area .comment-list .comment .card_image, .comments-area .comment-list .slide-in-modal .comment .card_image {
    min-height: 15vw;
  }
}
.slide-in-modal .card .card_image a[style*=background-image], .slide-in-modal .comments-area .comment-list .comment .card_image a[style*=background-image], .comments-area .comment-list .slide-in-modal .comment .card_image a[style*=background-image] {
  position: absolute;
  z-index: 0;
  height: 100%;
  width: 100%;
  min-height: 200px;
}
.slide-in-modal .card .card_image a[style$="assets/img/image-unavailable.png');"], .slide-in-modal .comments-area .comment-list .comment .card_image a[style$="assets/img/image-unavailable.png');"], .comments-area .comment-list .slide-in-modal .comment .card_image a[style$="assets/img/image-unavailable.png');"] {
  background-position: center center !important;
  background-size: contain !important;
}
.slide-in-modal .modal-close {
  position: fixed;
  margin: 0.6 1em;
}
.slide-in-modal .modal-close:before, .slide-in-modal .modal-close:after {
  background-color: #000000;
}

/*-------------------------------------------------------*\
    Widgets
/*-------------------------------------------------------*/
.widget-module {
  background: #e3e4e2;
  background-size: cover;
  color: black;
  position: relative;
}
@media screen and (min-width: 768px) {
  .widget-module {
    max-width: 768px;
  }
}
.widget-module.inner-content.compact {
  padding: 21px 26px;
}
.widget-module p {
  padding-bottom: 0 !important;
  font-weight: 500 !important;
  padding-left: 0;
  padding-right: 0;
}
.widget-module .row {
  z-index: 1;
  position: relative;
}
.widget-module.all-regions form .view-all {
  display: none;
}
.widget-module.all-regions form label span {
  display: none;
}
.widget-module.all-regions form label button:before {
  content: "Submit";
}
.widget-module.east-region.single-collection .unavailable, .widget-module.east-region.single-collection .available, .widget-module.west-region.single-collection .unavailable, .widget-module.west-region.single-collection .available {
  display: block !important;
}
.widget-module form input.zip-field {
  color: black;
  margin: 0;
  width: 100%;
  z-index: 99;
  height: auto;
  font-size: 16px;
  font-weight: 400;
  padding: 10px;
  border-radius: 0px;
  line-height: normal;
  box-shadow: none;
  border-color: transparent;
  transition: 0.25s, all;
}
.widget-module form .unavailable span {
  color: rgba(247, 59, 59, 0.93);
}
.widget-module form .available {
  display: none;
}
.widget-module form .available.west, .widget-module form .available.east, .widget-module form .available.both-regions {
  display: block;
}
.widget-module form input[type=text] {
  max-width: 100%;
  float: left;
}
@media screen and (min-width: 768px) {
  .widget-module form input[type=text] {
    margin-right: 15px;
  }
}
.widget-module form label p {
  color: white;
  padding-bottom: 5px;
  font-weight: 500;
}
.widget-module form label.error p {
  color: white;
}
.widget-module form .view-all {
  display: block;
  clear: both;
  float: left;
  margin-bottom: 15px;
  margin-top: -10px;
}
.widget-module form .view-all span {
  color: white;
}
.widget-module form .view-all i {
  margin-right: 5px;
  font-size: 16px;
  color: #64b467;
}
.widget-module form.error [aria-invalid=true] {
  box-shadow: 0px 0px 4px #ff2020;
  color: #ff2020;
  border: 1px solid rgba(255, 32, 32, 0.4);
}
.widget-module form.error [aria-invalid=true] + .submit, .widget-module form.error [aria-invalid=true] + [type=submit] {
  color: #ff2020;
  border-color: #ff2020;
}

.widget-form-module button {
  position: absolute;
  right: 0;
  background: #64b467;
  color: white !important;
  bottom: auto;
  top: 0;
  height: 100%;
  border: none;
  line-height: normal;
  position: absolute;
  bottom: 0;
  top: auto;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: bold;
  padding-left: 8px;
  padding-right: 8px;
  min-width: 0;
}

/*-------------------------------------------------------*\
    Color Scroll
/*-------------------------------------------------------*/
.designer-color-hover > .content:before,
.designer-color > .content:before {
  background: inherit;
  position: absolute;
  width: 100%;
  height: 15px;
  bottom: 0px;
  left: 0;
  content: "";
  z-index: 99999999;
}
.designer-color-hover .scroll-trigger,
.designer-color .scroll-trigger {
  display: flex;
}
.designer-color-hover .scroll-trigger i,
.designer-color .scroll-trigger i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.designer-color-hover .options-list,
.designer-color .options-list {
  display: inline-block;
  flex-basis: auto;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  min-width: 100%;
  width: auto;
  z-index: 0;
  overflow: hidden;
  padding-bottom: 10px;
  position: relative;
}
.designer-color-hover .options-list > li,
.designer-color .options-list > li {
  display: inline-block;
  -webkit-margin-before: 0 !important;
  -webkit-margin-after: 0 !important;
  margin-left: 0;
  margin-right: 0;
  vertical-align: top;
  padding-right: 0;
  border: 2px solid transparent;
}
.designer-color-hover .options-list > li:last-child,
.designer-color .options-list > li:last-child {
  padding-right: 66px;
}
.designer-color-hover .options-list > li:hover a, .designer-color-hover .options-list > li:hover .designer-action, .designer-color-hover .options-list > li.current a, .designer-color-hover .options-list > li.current .designer-action,
.designer-color .options-list > li:hover a,
.designer-color .options-list > li:hover .designer-action,
.designer-color .options-list > li.current a,
.designer-color .options-list > li.current .designer-action {
  border: 3px solid black;
  min-width: 88px;
  width: auto;
}
.designer-color-hover .options-list > li:hover a > span, .designer-color-hover .options-list > li:hover .designer-action > span, .designer-color-hover .options-list > li.current a > span, .designer-color-hover .options-list > li.current .designer-action > span,
.designer-color .options-list > li:hover a > span,
.designer-color .options-list > li:hover .designer-action > span,
.designer-color .options-list > li.current a > span,
.designer-color .options-list > li.current .designer-action > span {
  font-size: 8.5px;
  zoom: 1;
  visibility: visible;
  clip: unset;
  position: absolute;
  z-index: 999999999999;
  text-transform: uppercase;
  white-space: normal;
  opacity: 0.8;
  align-items: end;
  margin: 0;
  mix-blend-mode: unset;
  color: #000;
  display: block;
  background: none;
  height: 100%;
  text-shadow: none !important;
  filter: none !important;
  line-height: 1em;
  padding: 0.7em 0em 0.4em 0;
  font-weight: 500;
  max-width: 100%;
  right: 0;
  text-align: left;
  border: none;
  left: auto;
  bottom: -100% !important;
  top: auto;
}
.designer-color-hover .options-list > li:hover a[style$="assets/img/spacer.gif'); "], .designer-color-hover .options-list > li:hover .designer-action[style$="assets/img/spacer.gif'); "], .designer-color-hover .options-list > li.current a[style$="assets/img/spacer.gif'); "], .designer-color-hover .options-list > li.current .designer-action[style$="assets/img/spacer.gif'); "],
.designer-color .options-list > li:hover a[style$="assets/img/spacer.gif'); "],
.designer-color .options-list > li:hover .designer-action[style$="assets/img/spacer.gif'); "],
.designer-color .options-list > li.current a[style$="assets/img/spacer.gif'); "],
.designer-color .options-list > li.current .designer-action[style$="assets/img/spacer.gif'); "] {
  background-position: 8% 14% !important;
}
.designer-color-hover .options-list > li a, .designer-color-hover .options-list > li .designer-action,
.designer-color .options-list > li a,
.designer-color .options-list > li .designer-action {
  border: 2px solid #fff;
  margin-bottom: 6px;
  display: block;
  min-width: 22px;
  width: auto;
  -webkit-transition: min-width 0.375s ease-in-out;
  -moz-transition: min-width 0.375s ease-in-out;
  -ms-transition: min-width 0.375s ease-in-out;
  -o-transition: min-width 0.375s ease-in-out;
  transition: min-width 0.375s ease-in-out;
  transition-delay: 0s;
}
.designer-color-hover .options-list > li a > span, .designer-color-hover .options-list > li .designer-action > span,
.designer-color .options-list > li a > span,
.designer-color .options-list > li .designer-action > span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  border: 1px solid #ccc;
  z-index: 999999999;
  opacity: 1;
  overflow: visible;
  clip: unset;
  color: transparent;
  font-size: 0;
  transition: color 0.5s ease;
}
.designer-color-hover .options-list > li a[style$="assets/img/spacer.gif'); "], .designer-color-hover .options-list > li .designer-action[style$="assets/img/spacer.gif'); "],
.designer-color .options-list > li a[style$="assets/img/spacer.gif'); "],
.designer-color .options-list > li .designer-action[style$="assets/img/spacer.gif'); "] {
  background: url(/wp-content/themes/mast/assets/img/no-color-available.png?v=1) no-repeat center center rgba(0, 0, 0, 0.29) !important;
  background-size: auto 20% !important;
}
.designer-color-hover .options-list > li:nth-child(1n+8):hover a, .designer-color-hover .options-list > li:nth-child(1n+8):hover .designer-action, .designer-color-hover .options-list > li:nth-child(1n+8).current a, .designer-color-hover .options-list > li:nth-child(1n+8).current .designer-action,
.designer-color .options-list > li:nth-child(1n+8):hover a,
.designer-color .options-list > li:nth-child(1n+8):hover .designer-action,
.designer-color .options-list > li:nth-child(1n+8).current a,
.designer-color .options-list > li:nth-child(1n+8).current .designer-action {
  border: 3px solid black;
  min-width: 88px;
  width: auto;
}
.designer-color-hover .options-list > li:nth-child(1n+8):hover a > span, .designer-color-hover .options-list > li:nth-child(1n+8):hover .designer-action > span, .designer-color-hover .options-list > li:nth-child(1n+8).current a > span, .designer-color-hover .options-list > li:nth-child(1n+8).current .designer-action > span,
.designer-color .options-list > li:nth-child(1n+8):hover a > span,
.designer-color .options-list > li:nth-child(1n+8):hover .designer-action > span,
.designer-color .options-list > li:nth-child(1n+8).current a > span,
.designer-color .options-list > li:nth-child(1n+8).current .designer-action > span {
  text-align: left !important;
}
.designer-color .options-list > li:hover a, .designer-color .options-list > li:hover .designer-action, .designer-color .options-list > li.current a, .designer-color .options-list > li.current .designer-action {
  border: 3px solid black;
}
.designer-color .options-list > li a, .designer-color .options-list > li .designer-action {
  min-width: 88px;
  width: auto;
  border: 2px solid #fff;
}
.designer-color .options-list > li a > span, .designer-color .options-list > li .designer-action > span {
  font-size: 8.5px;
  zoom: 1;
  visibility: visible;
  clip: unset;
  position: absolute;
  z-index: 999999999999;
  text-transform: uppercase;
  white-space: normal;
  opacity: 0.8;
  align-items: end;
  margin: 0;
  mix-blend-mode: unset;
  color: #000;
  display: block;
  background: none;
  height: 100%;
  text-shadow: none !important;
  filter: none !important;
  line-height: 1em;
  padding: 0.7em 0em 0.4em 0;
  font-weight: 500;
  max-width: 100%;
  right: 0;
  text-align: left;
  border: none;
  left: auto;
  bottom: -100% !important;
  top: auto;
}
.designer-color .options-list > li a[style$="assets/img/spacer.gif'); "], .designer-color .options-list > li .designer-action[style$="assets/img/spacer.gif'); "] {
  background-position: 8% 14% !important;
}

.modal .options-list, .modal-loading-overlay .options-list {
  display: flex;
  flex-wrap: wrap;
  white-space: normal;
  width: 100%;
  max-width: 100%;
  z-index: 0;
  overflow: hidden;
  padding-bottom: 10px;
  position: relative;
}
.modal .options-list > li, .modal-loading-overlay .options-list > li {
  display: inline-block;
  -webkit-margin-before: 0 !important;
  -webkit-margin-after: 0 !important;
  margin-left: 0;
  margin-right: 0;
  vertical-align: top;
  padding-right: 0;
  white-space: nowrap;
  border: 2px solid transparent;
}
.modal .options-list > li a.designer-action, .modal-loading-overlay .options-list > li a.designer-action {
  border: 1px solid black;
  min-width: 88px;
  width: auto;
}
.modal .options-list > li a.designer-action[style$="assets/img/spacer.gif'); "], .modal-loading-overlay .options-list > li a.designer-action[style$="assets/img/spacer.gif'); "] {
  background-position: 8% 14% !important;
}

/*-------------------------------------------------------*\
    Regionalization
/*-------------------------------------------------------*/
.regionalization.region-east .region-dependent.west {
  display: none;
}
.regionalization.region-west .region-dependent.east {
  display: none;
}
.region-loading-wrapper .availability-info-message > .col {
  margin-bottom: 10px;
}
.region-loading-wrapper .availability-info-message > .col:before {
  content: "";
  font-size: 28px;
  font-weight: 300;
  font-family: fontawesome;
  color: #838385;
  float: left;
  position: absolute;
  left: 100%;
  top: 7px;
  display: grid;
  align-items: center;
  right: 0;
  left: auto;
  right: 100%;
  font-size: 19px;
  padding-right: 2px;
}
.region-loading-wrapper .availability-info-message .message {
  color: #000000;
}
.region-loading-wrapper .availability-info-message .message .user-region-current-value {
  color: #64b467;
  text-transform: uppercase;
  font-weight: 700 !important;
  font-size: 112.5%;
}

body .widget-module {
  background-color: #e3e4e2;
}
body .widget-module .show-for-sr {
  display: none;
}
body .widget-module > .row {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  body .widget-module > .row {
    flex-flow: wrap-reverse;
    align-content: center;
    align-items: center;
  }
  body .widget-module > .row > .col {
    padding-bottom: 10px;
  }
}
body .widget-module p {
  font-weight: 400;
}
body .widget-module .availability-alert .view-available-products-single {
  display: none !important;
}
body .widget-module .availability-alert.unavailable strong {
  color: #ff2020 !important;
}
body .widget-module .availability-alert.unavailable .view-available-products-single {
  display: block !important;
}
body .widget-module .availability-alert.unavailable .availability-target {
  color: inherit;
  display: inline;
}
body .widget-module .availability-alert.is-available .availability-target {
  display: none;
}
body .widget-module .availability-alert.is-available strong {
  color: #000000 !important;
}
body .widget-module .availability-alert.single-collection .single-hidden {
  display: none;
}
body .widget-module form .searching {
  opacity: 0;
}
body .widget-module form .searching + .user-region-current-value {
  display: none;
  opacity: 1;
  text-transform: uppercase;
}
body .widget-module form .button[type=submit] + .searching, body.page-template-template-find-a-pro .widget-module form .modal .wrapper [type=submit].button + .searching, body.page-template-template-find-a-pro .widget-module form .modal-loading-overlay .wrapper [type=submit].button + .searching, body .widget-module form .button[type=submit] + .searching + .user-region-current-value {
  transition: all 0.6s ease-in-out;
  position: absolute;
  top: auto;
  margin-top: 2px;
  font-size: 70%;
  bottom: 100%;
}
body .widget-module form .button[type=submit].loading + .searching, body.page-template-template-find-a-pro .widget-module form .modal .wrapper [type=submit].loading.button + .searching, body.page-template-template-find-a-pro .widget-module form .modal-loading-overlay .wrapper [type=submit].loading.button + .searching {
  opacity: 1;
}
body .widget-module form .button[type=submit].loading + .searching + .user-region-current-value {
  opacity: 0;
}
body.single .widget-module form {
  margin-top: -20px;
}
body.single .widget-module form .searching + .user-region-current-value {
  display: block;
}

.availability-info-message {
  margin-top: 4px;
  text-align: left;
  width: 100%;
  font-size: 75%;
  color: #666;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .availability-info-message:before {
    font-size: 16px;
    height: 100%;
    width: 10px;
    content: "";
    opacity: 0.6;
    display: grid;
    align-items: start;
    font-family: fontawesome;
    text-align: right;
    float: none;
    position: absolute;
    left: auto;
    right: auto;
    margin-left: -20px;
    top: 0px;
    color: black;
    line-height: 1.2 !important;
  }
}
.availability-info-message > * > * {
  text-align: left !important;
  left: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .availability-info-message {
    left: 0 !important;
    padding-left: 53%;
    padding-left: calc(50% + 20px) !important;
    margin-left: 0 !important;
  }
}
.availability-info-message .clear-zip-trigger {
  color: #64b467 !important;
  padding-top: 1px;
  display: block;
  text-align: right;
}
.availability-info-message .clear-zip-trigger:hover {
  color: #000000 !important;
  text-decoration: none !important;
}
.availability-info-message .message {
  font-weight: normal !important;
  display: block;
  text-align: right;
}

body.collection-template-default.single #zip-code-module-container form .button[type=submit] + .searching, body.collection-template-default.single #zip-code-module-container form body.page-template-template-find-a-pro .modal .wrapper [type=submit].button + .searching, body.collection-template-default.single #zip-code-module-container form body.page-template-template-find-a-pro .modal-loading-overlay .wrapper [type=submit].button + .searching, body.collection-template-default.single #zip-code-module-container form .button[type=submit] + .searching + .user-region-current-value {
  transition: all 0.6s ease-in-out;
  position: absolute;
  top: 100%;
  bottom: auto;
  margin-top: 2px;
  font-size: 80%;
}
body.collection-template-default.single #zip-code-module-container .availability-info-message {
  display: none !important;
}
body.collection-template-default.single #zip-code-module-container .single-product-availability-message {
  margin-bottom: 2px !important;
  display: block;
  opacity: 0 !important;
  line-height: 1.4;
  font-size: 75%;
  color: #58595b;
  font-weight: normal !important;
  text-align: right;
  height: 0;
}
body.collection-template-default.single #zip-code-module-container .single-product-availability-message strong em.availability-target {
  color: #ff2020 !important;
}
body.collection-template-default.single #zip-code-module-container .single-product-availability-message.visible {
  height: auto;
  opacity: 1 !important;
}
body.collection-template-default.single #zip-code-module-container .view-available-products-single {
  padding-top: 1px;
  display: block;
  font-size: 75%;
  color: #58595b;
  font-weight: normal !important;
  text-align: right;
  display: none;
  line-height: 1.3;
}
body.collection-template-default.single #zip-code-module-container .view-available-products-single a {
  color: #64b467 !important;
}
body.collection-template-default.single #zip-code-module-container .view-available-products-single a:hover {
  text-decoration: none !important;
}

/*-------------------------------------------------------*\
    Anchor Content
/*-------------------------------------------------------*/
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(244, 244, 244, 0);
  width: 40px;
  height: 40px;
  display: block;
  text-decoration: none;
  border-radius: 35px;
  border-radius: 35px;
  z-index: 99;
  -webkit-transition: opacity 0.35s ease;
  -moz-transition: opacity 0.35s ease;
  -ms-transition: opacity 0.35s ease;
  -o-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
  transition-delay: 0s;
}
.back-to-top:before {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: inherit;
  margin: auto;
  position: relative;
  font-size: inherit;
  content: "";
}
.back-to-top span {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}
.back-to-top:before {
  color: #000000;
  margin: 0;
  position: relative;
  transition: all 0.3s ease-in-out !important;
  transform: translateY(-1vh);
  right: 22px;
  font-size: 1.125em;
  text-align: center;
  padding: 0;
  display: grid;
  align-items: center;
  height: 100%;
  font-weight: 100;
  right: 25px;
  bottom: 25px;
  font-size: 1.5625em;
  cursor: pointer;
  opacity: 0.3;
}
.back-to-top.idle {
  opacity: 0;
  -webkit-transition: opacity 0.45s ease;
  -moz-transition: opacity 0.45s ease;
  -ms-transition: opacity 0.45s ease;
  -o-transition: opacity 0.45s ease;
  transition: opacity 0.45s ease;
  transition-delay: 0s;
}
.back-to-top.idle.active {
  opacity: 0.65;
  z-index: 9999999999;
}
.back-to-top.idle:not(.active) {
  visibility: hidden !important;
  cursor: default !important;
}
.back-to-top.idle:hover {
  opacity: 0;
}
.back-to-top.active {
  opacity: 0.85;
  filter: none !important;
}
.back-to-top.active:after {
  content: "";
  width: 1px;
  height: 2px;
  background: #64b467;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.15s ease-in-out;
}
.back-to-top.active:hover {
  opacity: 0.9;
  background: transparent;
}
.back-to-top.active:hover:before {
  color: #64b467;
  margin-top: -3px;
  padding-bottom: 3px;
  transition: all 0.45s ease-in-out;
  opacity: 0.85;
}

/*-------------------------------------------------------*\
    Accordions
/*-------------------------------------------------------*/
.accordion-set .accordion {
  border: 1.5px solid #cbcccc;
  background: white;
  padding: 8px 10px;
  margin-bottom: 8px;
  text-align: left;
}
.accordion-set .accordion .button.input-button, .accordion-set .accordion body.page-template-template-find-a-pro .modal .wrapper .input-button.button, body.page-template-template-find-a-pro .modal .wrapper .accordion-set .accordion .input-button.button, .accordion-set .accordion body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .input-button.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .accordion-set .accordion .input-button.button {
  text-align: left;
  margin-bottom: 8px;
  padding: 8px 15px;
  text-transform: none;
  font-weight: normal;
  font-size: 16px;
  border: solid 1px #cbcccc;
  border-radius: 1px;
  line-height: 1.4;
  letter-spacing: 0;
  margin-left: 0;
}
.accordion-set .accordion .button.input-button .form-label {
  top: 1px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .accordion-set .accordion .button.input-button .form-label {
    display: block;
    overflow: hidden;
  }
}
.accordion-set .accordion .button.input-button .accordion-content .accordion-subtitle {
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.accordion-set .accordion .button.input-button:last-child {
  margin-bottom: 0;
}
.accordion-set .accordion.active {
  border-color: #64b467;
}
.accordion-set .accordion.active .accordion-toggle:before {
  font-family: fontawesome;
  content: "";
  transform: none;
}
.accordion-set .accordion.active .accordion-content {
  max-height: 1000px;
  overflow: auto;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}
.accordion-set .accordion.active .accordion-content .accordion-subtitle {
  opacity: 1;
}
.accordion-set .accordion .accordion-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.accordion-set .accordion .accordion-toggle.bulleted {
  background-color: white;
  padding: 4px 7px !important;
  letter-spacing: 0;
  font-size: 17.5px;
}
.accordion-set .accordion .accordion-toggle.bulleted:before {
  content: "";
  font-family: fontawesome;
  font-weight: 200;
  padding-right: 8px;
  padding-left: 0;
  font-size: 9px;
  align-items: normal;
  margin-left: -6px;
  position: relative;
}
.accordion-set .accordion .accordion-toggle.icon {
  font-size: 26px;
}
.accordion-set .accordion .accordion-toggle.icon .count-indicator {
  font-family: "Gotham A", helvetica, arial, sans-serif;
  font-weight: 500;
  padding-left: 23px;
  font-size: 14px;
  color: #333333;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: right;
  float: right;
  right: 0;
  left: auto;
  display: block;
  line-height: 2;
}
.accordion-set .accordion .accordion-toggle.icon .count-indicator.seen:after {
  content: "Edit";
  position: absolute;
  top: 100%;
  font-size: 10px;
  font-weight: 700;
  color: #999999;
  border-left: 1px solid #cccccc;
  padding: 0px 6px;
  text-align: right;
  right: 0;
  position: relative;
  margin: 0 0 0 11px;
  line-height: 2.6;
}
.accordion-set .accordion .accordion-content {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0px 15px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.accordion-set .accordion .accordion-content p {
  padding: 20px;
}
.accordion-set .accordion .accordion-content ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 10px;
}
.accordion-set .accordion .accordion-content ul li {
  margin-bottom: 5px;
  line-height: 1.65em;
}
.accordion-set .accordion.accordion-group {
  padding: 20px;
  border-color: #cbcccc;
  border-width: 4px;
}
@media screen and (min-width: 768px) {
  .accordion-set .accordion.accordion-group {
    padding: 40px;
  }
}
.accordion-set .accordion.accordion-group .header {
  padding-bottom: 0;
}
.accordion-set .accordion.accordion-group .header.accordion-toggle:before {
  font-size: 10px;
  position: absolute;
  right: 100%;
  display: block !important;
  content: "";
  font-family: fontawesome;
}
.accordion-set .accordion.accordion-group .accordion-content {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.accordion-set .accordion.accordion-group .accordion-content p {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}
.accordion-set .accordion.accordion-group.active .header {
  padding-bottom: 20px;
}
.accordion-set .accordion.accordion-group.active .accordion-content {
  display: block;
  max-height: 10000px;
  overflow: visible;
}
.accordion-set .accordion.accordion-group .accordion-toggle.continue {
  outline: 0;
  text-decoration: none;
  background: black;
  color: white;
  border-color: black;
  transition-delay: 0s;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: -10px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .accordion-set .accordion.accordion-group .accordion-toggle.continue:hover {
    background-color: white;
    color: #64b467;
  }
}
.accordion-set .accordion.accordion-group:last-child {
  margin-bottom: 40px;
}

/*-------------------------------------------------------*\
    Loading & Load More Modules
/*-------------------------------------------------------*/
.load-more-wrapper {
  -webkit-transition: 0.5s all cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: 0.5s all cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: 0.5s all cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: 0.5s all cubic-bezier(0, 0.32, 0, 1.12);
  transition: 0.5s all cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
  position: relative;
}
.load-more-wrapper.taxonomy-feed {
  border-top: 2px solid #64b467;
  padding-top: 1.5vw;
  margin-top: 2vw;
}
.load-more-wrapper.locked:before {
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  display: block;
  align-items: center;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: url("./assets/img/loader.svg");
  background-repeat: no-repeat;
  top: 0;
  background-size: 100px auto;
  background-position: center 50%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
  opacity: 1;
  position: absolute;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.load-more-wrapper.loading {
  opacity: 0.7;
}
.load-more-wrapper.loading .load-more-trigger {
  filter: grayscale(1);
}
.load-more-wrapper.loading.locked:before {
  opacity: 1 !important;
  display: block !important;
}

.loading-container {
  -webkit-transition: 0.5s all cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: 0.5s all cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: 0.5s all cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: 0.5s all cubic-bezier(0, 0.32, 0, 1.12);
  transition: 0.5s all cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
  display: none;
  opacity: 0;
}
.loading-container .pieces {
  -webkit-transition: 0.5s all cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: 0.5s all cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: 0.5s all cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: 0.5s all cubic-bezier(0, 0.32, 0, 1.12);
  transition: 0.5s all cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
  margin: 20px auto;
  width: 60px;
  height: 60px;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: white;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.loading-container .pieces:before {
  content: "";
  position: fixed;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: calc(-27.5vw + 32.5px);
  box-shadow: 0 0 10vw #000;
  border-radius: 50%;
  background: transparent;
  height: 0;
  width: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  filter: blur(14px);
  transition: all 0.4s ease-in-out;
}
.loading-container.loading {
  display: block;
  opacity: 1;
}
.loading-container.loading:before {
  display: block;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 0;
  background: rgba(255, 255, 255, 0.5);
}
.loading-container.loading.submitting .pieces:before {
  overflow: visible;
  background: rgba(117, 117, 117, 0.6);
  opacity: 0.2;
  filter: blur(64px);
  height: 55vw;
  width: 55vw;
}
.loading-container .piece {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.loading-container .piece:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  -webkit-animation: loader-foldCubeAngle 2.4s infinite linear both;
  animation: loader-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.loading-container .piece:nth-child(2):before, .loading-container .piece:nth-child(3):before {
  background-color: #64b467;
}
.loading-container.branded .piece:before {
  background-color: #64b467;
}
.loading-container .piece-2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  -moz-transform: scale(1.1) rotateZ(90deg);
  -ms-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}
.loading-container .piece-2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.loading-container .piece-3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  -moz-transform: scale(1.1) rotateZ(180deg);
  -ms-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}
.loading-container .piece-3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.loading-container .piece-4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  -moz-transform: scale(1.1) rotateZ(270deg);
  -ms-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}
.loading-container .piece-4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
@-webkit-keyframes loader-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    -moz-transform: perspective(140px) rotateX(-180deg);
    -ms-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    -moz-transform: perspective(140px) rotateX(0deg);
    -ms-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    -moz-transform: perspective(140px) rotateY(180deg);
    -ms-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
@keyframes loader-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    -moz-transform: perspective(140px) rotateX(-180deg);
    -ms-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    -moz-transform: perspective(140px) rotateX(0deg);
    -ms-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    -moz-transform: perspective(140px) rotateY(180deg);
    -ms-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

.loading-1 {
  position: relative;
  height: 200px;
  margin: 1em 0;
  background: #000000;
}
.loading-1:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 150px;
  border-radius: 10px;
  border: solid 10px #64b467;
  transform: translate(-50%, -50%);
}

.loading-1:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  z-index: 999;
  border-radius: 50%;
  background: #d9d9d9;
  animation-name: example-1;
  animation-duration: 2s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes example-1 {
  0% {
    transform: translate(-72.5px, -7.5px);
  }
  100% {
    transform: translate(58.5px, -7.5px);
  }
}
.loading-2 {
  padding: 0 1em;
  border: solid 3px #000000;
}
.loading-2 #more {
  position: relative;
  padding: 1em;
  text-align: center;
  border: dashed 2px #000000;
}
.loading-2 #more:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 100px;
  border-radius: 10px;
  border: solid 5px #000000;
  transform: translate(-50%, -50%);
}
.loading-2 #more:target:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  z-index: 999;
  border-radius: 50%;
  border: solid 5px #d9d9d9;
  animation-name: example-2;
  animation-duration: 1s;
  animation-direction: alternate;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.loading-2 #more:target a {
  visibility: hidden;
}

@keyframes example-2 {
  0% {
    transform: translate(-50px, -10px);
  }
  100% {
    transform: translate(30px, -10px);
  }
}
.loading-3 {
  position: relative;
}
.loading-3:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 40px;
  z-index: 999;
  border-radius: 20px;
  border: solid 10px #d9d9d9;
  transform: translate(-50%, -50%);
}

.loading-3:hover:after {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  z-index: 999;
  background: #000000;
  animation-name: example-3;
  animation-duration: 1s;
  animation-direction: alternate;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes example-3 {
  0% {
    transform: translate(-40px, -10px);
  }
  100% {
    transform: translate(20px, -10px);
  }
}
.loading-4 {
  position: relative;
  padding: 1em;
  margin: 1em 0;
  text-align: center;
  border: dashed 2px #000000;
}

#page:target {
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.9);
}

#page:target {
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.9);
}

#page:target:before {
  content: "";
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #000000;
  animation-name: example-4a;
  animation-duration: 1s;
  animation-direction: alternate;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

#page:target:after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #000000;
  animation-name: example-4b;
  animation-duration: 1s;
  animation-direction: alternate;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes example-4a {
  0% {
    transform: translate(-70px, -10px);
  }
  100% {
    transform: translate(-10px, -10px);
  }
}
@keyframes example-4b {
  0% {
    transform: translate(70px, -10px);
  }
  100% {
    transform: translate(10px, -10px);
  }
}
.loaders-container {
  padding: 20px;
  margin: 0 auto;
  width: 700px;
  text-align: center;
  font-size: 0;
}
.loaders-container .container {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  padding: 30px;
  width: 25%;
  height: 140px;
}

.loader-box {
  position: relative;
  box-sizing: border-box;
  border: 4px solid #FFF;
  width: 80px;
  height: 80px;
  animation: spin 3s infinite linear;
}
.loader-box:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  border: 4px solid #FFF;
  width: 60px;
  height: 60px;
  animation: pulse 1.5s infinite ease;
}

.loader-line {
  position: absolute;
  top: 50%;
  margin-left: 10px;
  width: 60px;
  height: 4px;
  background: #FFF;
  animation: spin 1.5s infinite ease;
}
.loader-line:nth-of-type(2) {
  animation-delay: 0.1s;
}
.loader-line:nth-of-type(3) {
  animation-delay: 0.2s;
}
.loader-line:nth-of-type(4) {
  animation-delay: 0.3s;
}

.loader-circle {
  box-sizing: border-box;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  border: 10px solid rgba(255, 255, 255, 0.2);
  border-top-color: #FFF;
  animation: spin 1s infinite linear;
}

.loader-wave {
  margin-top: 15px;
  float: left;
  width: 18px;
  height: 40px;
  box-sizing: border-box;
  border: 2px solid #FFF;
  margin-left: -2px;
  animation: slide 0.6s infinite linear;
}
.loader-wave:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.loader-wave:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.loader-wave:nth-child(2n+1) {
  animation-delay: 0.3s;
}

.loader-circleloader {
  position: absolute;
  box-sizing: border-box;
  top: 50%;
  margin-top: -10px;
  border-radius: 16px;
  width: 80px;
  height: 20px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.4);
}
.loader-circleloader:before {
  content: "";
  position: absolute;
  border-radius: 16px;
  width: 20px;
  height: 12px;
  left: 0;
  background: #FFF;
  animation: push 1s infinite linear;
}

.loader-switchbox {
  position: relative;
  height: 80px;
  animation: spin 2s infinite linear;
}
.loader-switchbox .switch {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background: #FFF;
  border-radius: 20px;
  animation: cross 2s infinite linear;
}
.loader-switchbox .switch:nth-of-type(2) {
  animation-delay: -1s;
}

.loader-bouncybox {
  height: 100px;
  width: 40px;
  margin-left: 20px;
}
.loader-bouncybox .bouncy {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #ecf0f1;
  animation: bouncy 2s infinite ease-in-out;
}

@keyframes bouncy {
  40% {
    height: 40px;
  }
  50% {
    transform: translate(0, 65px);
    height: 34px;
    border-radius: 20px;
  }
  65% {
    height: 40px;
  }
}
@keyframes push {
  50% {
    left: 56px;
  }
}
@keyframes slide {
  50% {
    margin-top: 25px;
  }
}
@keyframes pulse {
  50% {
    border-width: 30px;
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes cross {
  50% {
    margin-left: 60px;
  }
}
/*-------------------------------------------------------*\
    Site Alerts
/*-------------------------------------------------------*/
.site-alert {
  position: fixed;
  opacity: 0;
  top: -200px;
  width: 100%;
  margin: 0 auto;
  display: block;
  z-index: 99;
  left: 0;
  transition: opacity, top 0.35s ease-in-out;
}
.site-alert.active {
  top: 0;
  opacity: 1;
  z-index: 100000000000000020;
}
.site-alert > .content {
  border: 1px solid #000000;
  display: block;
  font-weight: 400;
  margin-bottom: 1.5vw;
  padding: 3vw;
  position: relative;
  background-color: #333333;
  color: white;
  font-size: 18px;
  text-align: center;
  opacity: 0.95;
}
.site-alert > .content.success {
  font-weight: 700;
  background-color: #64b467;
  color: white;
  text-transform: uppercase;
  border-color: white;
  border-top-color: white;
}
.site-alert > .content.warning {
  font-weight: 700;
  color: #64b467;
  border-color: #64b467;
  border-top-color: #000000;
  padding: 40px;
  border-bottom: 3px solid #ff2020;
}
.site-alert > .content.warning strong {
  color: #ff2020 !important;
}
.site-alert > .content.error {
  background-color: #ff2020;
  font-weight: 700;
  color: #64b467;
  border-color: #64b467;
  border-top-color: #000000;
  padding: 40px;
}

/*-------------------------------------------------------*\
    Social Media Sharing Links
/*-------------------------------------------------------*/
main .social-sharing {
  position: absolute;
  right: 0;
  left: 90vw;
  border-bottom: 1.5px solid transparent;
  align-items: center;
  display: grid;
  text-align: center;
  float: none;
  margin: 0 auto;
  width: 60px;
  align-items: center;
  display: grid;
  text-align: center;
  float: none;
  margin: 0 auto;
  position: absolute;
  z-index: 1;
  right: auto;
}
@media screen and (min-width: 768px) {
  main .social-sharing {
    top: 579px;
  }
}
@media screen and (max-width: 768px) {
  main .social-sharing {
    left: 0;
    right: auto;
    z-index: 9999;
    max-width: 51px;
    overflow: visible;
    position: fixed;
    padding-bottom: 1em;
    top: 83px;
    bottom: auto;
    border-top: 1px solid #cbcccc;
    padding: 4px 0;
    border-bottom: 1px solid #cbcccc;
    background: white;
    border-right: 1px solid #cbcccc;
    border-radius: 0 4px 4px 0;
  }
}
@media screen and (max-width: 768px) {
  main .social-sharing {
    text-align: left;
    padding: 2px;
    transform: scale(0.8);
    display: flex;
    max-width: 80vw;
    margin: auto;
    position: absolute;
    top: -5px;
    width: auto;
    min-width: 0;
    right: 0;
    left: auto;
    background: white;
    border-radius: 0 0 10px 10px;
    opacity: 0.9;
  }
}
main .social-sharing > a {
  display: block;
  clear: both;
  width: 50px;
  height: 50px;
  padding: 2px;
  margin-bottom: 2vw;
  background-size: cover;
  background-position: center center;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.4;
  background-repeat: no-repeat;
  transition: all 0.2s ease-in-out;
  background-color: white;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  main .social-sharing > a {
    max-width: 100%;
    padding: 0;
    width: 100%;
    height: 37px;
    margin: 0;
    opacity: 0.8;
    background-size: auto 75%;
    float: left;
    clear: none;
    display: inline-block;
    width: 37px;
  }
}
main .social-sharing > a:hover {
  opacity: 1;
  padding: 1px;
  top: 0;
  transform: scale(1.1) !important;
}
@media screen and (min-width: 768px) {
  main .social-sharing > a:hover {
    transform: scale(1.03);
  }
}
main .social-sharing > a.button-facebook {
  background-image: url("./assets/img/social/facebook.svg");
}
main .social-sharing > a.button-twitter {
  background-image: url("./assets/img/social/twitter.svg");
}
main .social-sharing > a.button-googleplus {
  background-image: url("./assets/img/social/googleplus.svg");
}
main .social-sharing > a.button-pinterest {
  background-image: url("./assets/img/social/pinterest.svg");
}

/*-------------------------------------------------------*\
    Comments
/*-------------------------------------------------------*/
.comments-area .input {
  margin-bottom: 8px;
}
.comments-area textarea {
  min-height: 60px;
  padding: 8px !important;
  margin-top: 0;
  border: 1px solid #cbcccc;
  border-radius: 2px;
  background-color: #e3e4e2 !important;
  color: #000000;
  padding-left: 83px !important;
  margin-bottom: 0 !important;
  line-height: 2.8 !important;
  min-width: 100%;
  max-width: 100%;
  max-height: 300px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .comments-area textarea {
    min-width: 500px;
  }
}
.comments-area textarea:focus {
  background-color: white !important;
  min-height: 130px;
  line-height: normal;
}
.comments-area .form-submit {
  max-height: 40px;
}
.comments-area .icon.submit-form {
  position: absolute;
  top: 0;
  height: 60px;
  top: 0;
  margin-top: 0;
  border: none;
  font-size: 38px;
  left: 0;
  padding: 0 !important;
  min-width: 82px;
  transition: all 0.3s ease-in;
}
.comments-area .icon.submit-form:hover, .comments-area .icon.submit-form:active, .comments-area .icon.submit-form:focus {
  color: #64b467 !important;
  border: none !important;
  cursor: pointer;
  background-color: transparent !important;
}
.comments-area .icon.submit-form:hover i:before, .comments-area .icon.submit-form:active i:before, .comments-area .icon.submit-form:focus i:before {
  content: "" !important;
}
.comments-area input[type=text], .comments-area input[type=email], .comments-area input[type=tel], .comments-area input[type=number], .comments-area input.text-input, .comments-area textarea[type=text], .comments-area textarea[type=email], .comments-area textarea[type=tel], .comments-area textarea[type=number], .comments-area textarea.text-input {
  color: #000000;
  width: 100%;
  line-height: normal;
  outline-color: transparent;
  background: white;
  padding: 8px 3px 7px;
  box-shadow: none !important;
  margin-bottom: 8px;
}
.comments-area input[type=text][isvalid=false], .comments-area input[type=email][isvalid=false], .comments-area input[type=tel][isvalid=false], .comments-area input[type=number][isvalid=false], .comments-area input.text-input[isvalid=false], .comments-area textarea[type=text][isvalid=false], .comments-area textarea[type=email][isvalid=false], .comments-area textarea[type=tel][isvalid=false], .comments-area textarea[type=number][isvalid=false], .comments-area textarea.text-input[isvalid=false] {
  color: #ff2020;
  border-color: #ff2020;
  box-shadow: none !important;
}
.comments-area input[type=text]:focus, .comments-area input[type=text]:active, .comments-area input[type=email]:focus, .comments-area input[type=email]:active, .comments-area input[type=tel]:focus, .comments-area input[type=tel]:active, .comments-area input[type=number]:focus, .comments-area input[type=number]:active, .comments-area input.text-input:focus, .comments-area input.text-input:active, .comments-area textarea[type=text]:focus, .comments-area textarea[type=text]:active, .comments-area textarea[type=email]:focus, .comments-area textarea[type=email]:active, .comments-area textarea[type=tel]:focus, .comments-area textarea[type=tel]:active, .comments-area textarea[type=number]:focus, .comments-area textarea[type=number]:active, .comments-area textarea.text-input:focus, .comments-area textarea.text-input:active {
  border-color: #000000;
}
.comments-area input[type=text], .comments-area input[type=email], .comments-area input[type=tel], .comments-area input[type=number], .comments-area textarea[type=text], .comments-area textarea[type=email], .comments-area textarea[type=tel], .comments-area textarea[type=number] {
  font-size: 17px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #000000;
  background-image: none !important;
}
.comments-area input[type=text].zip-field, .comments-area input[type=email].zip-field, .comments-area input[type=tel].zip-field, .comments-area input[type=number].zip-field, .comments-area textarea[type=text].zip-field, .comments-area textarea[type=email].zip-field, .comments-area textarea[type=tel].zip-field, .comments-area textarea[type=number].zip-field {
  padding-right: 10px !important;
  padding-left: 10px !important;
  margin-top: -9px;
}
.comments-area input[type=text]:focus, .comments-area input[type=text]:active, .comments-area input[type=email]:focus, .comments-area input[type=email]:active, .comments-area input[type=tel]:focus, .comments-area input[type=tel]:active, .comments-area input[type=number]:focus, .comments-area input[type=number]:active, .comments-area textarea[type=text]:focus, .comments-area textarea[type=text]:active, .comments-area textarea[type=email]:focus, .comments-area textarea[type=email]:active, .comments-area textarea[type=tel]:focus, .comments-area textarea[type=tel]:active, .comments-area textarea[type=number]:focus, .comments-area textarea[type=number]:active {
  border-bottom: 2px solid #64b467 !important;
  background-color: rgba(255, 255, 255, 0.1);
  outline: 0 !important;
  box-shadow: none !important;
}
.comments-area input.zip-field {
  color: black;
  margin: 0;
  width: 100%;
  z-index: 99;
  height: auto;
  font-size: 16px;
  font-weight: 400;
  border-radius: 0px;
  line-height: normal;
  box-shadow: none;
  transition: 0.25s, all;
}
.comments-area input[type=text] {
  max-width: 100%;
  float: left;
}
@media screen and (min-width: 768px) {
  .comments-area input[type=text] {
    margin-right: 15px;
  }
}
.comments-area label p {
  color: white;
  padding-bottom: 5px;
  font-weight: 500;
}
.comments-area label.error p {
  color: white;
}
.comments-area.error [aria-invalid=true] {
  box-shadow: none !important;
  outline: 0;
  color: #ff2020;
  border: 1px solid rgba(255, 32, 32, 0.4);
}
.comments-area.error [aria-invalid=true] + .submit, .comments-area.error [aria-invalid=true] + [type=submit] {
  color: #ff2020;
  border-color: #ff2020;
}
.comments-area #aec_edit_options, .comments-area #reply-title, .comments-area .logged-in-as {
  display: none;
}
.comments-area .comment-form > label {
  width: 50% !important;
  float: left;
  color: #333;
  text-transform: uppercase;
  font-size: 12px;
  margin-top: 16px;
  padding-right: 20px;
}
.comments-area .comment-form > label + label {
  margin-top: 15px;
  padding-right: 0;
}
.comments-area .comment-list {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.comments-area .comment-list .comment {
  box-shadow: none;
  position: relative;
  border: 1.5px solid #cbcccc;
  border-radius: 0;
}
.comments-area .comment-list .comment p {
  margin-bottom: 8px !important;
}
.comments-area .comment-list .comment .comment-content {
  padding: 0px 13px 7px;
  font-size: 13px;
}
.comments-area .comment-list .comment .logged-in-as, .comments-area .comment-list .comment .comment-reply-title {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}
.comments-area .comment-list .comment .reply {
  padding: 8px;
  text-transform: uppercase;
  left: 20px;
  font-size: 14px;
  height: 0;
  position: absolute;
  top: auto !important;
  bottom: 40px;
}
.comments-area .comment-list .comment .reply a {
  padding: 8px 20px;
  text-align: center;
  font-weight: 500;
  color: #64b467;
  display: inline-block;
  margin-bottom: 0 !important;
  min-width: 67px;
  padding-left: 5px;
}
.comments-area .comment-list .comment article {
  padding: 15px;
}
.comments-area .comment-list .comment .comment-meta {
  margin-bottom: 8px;
}
.comments-area .comment-list .comment .comment-meta img {
  padding: 3px;
  padding-left: 0;
}
.comments-area .comment-list .comment .comment-meta > * {
  padding-left: 8px;
  font-size: 14px;
}
.comments-area .comment-list .comment .comment-meta b {
  position: absolute;
  top: 0;
  padding: 18px;
  width: auto;
  line-height: 1.5;
}
.comments-area .comment-list .comment .comment-meta b > span {
  letter-spacing: 1px;
  font-weight: 500;
  padding-bottom: 1px;
  display: inline-block;
  padding-top: 2px;
}
.comments-area .comment-list .comment .comment-meta b > time {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.comments-area .comment-list .comment .comment-meta .says {
  display: none;
}
.comments-area .comment-list .comment .comment-metadata {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px 20px;
  font-size: 14px;
  height: 100%;
}
.comments-area .comment-list .comment .comment-metadata .edit-link {
  float: none;
  clear: both;
  display: block;
  text-align: right;
  text-transform: uppercase;
  text-decoration: underline;
  position: absolute;
  right: 0;
  padding: 10px;
  bottom: 0;
  top: auto;
  display: none;
}
.comments-area .comment-list .comment .comment-metadata .edit-link a {
  color: #64b467;
}
.comments-area .comment-list .comment .edit-comment-admin-links a, .comments-area .comment-list .comment .ajax-edit-time-left, .comments-area .comment-list .comment .aec-dropdown-container a {
  margin-left: 0;
  text-align: right;
  float: right;
  padding-left: 28px;
  font-weight: normal;
  text-transform: uppercase;
  text-decoration: underline !important;
  line-height: 1.5em !important;
  color: #aaa !important;
  margin-top: 6px;
  overflow: visible;
}
.comments-area .comment-list .comment .edit-comment-admin-links a span, .comments-area .comment-list .comment .ajax-edit-time-left, .comments-area .comment-list .comment .aec-dropdown-container a span {
  opacity: 0.7 !important;
  text-decoration: underline;
  font-size: 12px;
  padding: 0 !important;
  line-height: 1.4em !important;
}
.comments-area .comment-list .comment-metadata time:after {
  content: "";
  width: 25px;
  height: 25px;
  background: white;
  position: absolute;
  right: 0;
  top: 0;
}
.comments-area .comment-list .comment-metadata time {
  position: relative;
  letter-spacing: 2px;
}
.comments-area .comment-list .edit-comment-admin-links, .comments-area .comment-list .edit-comment-user-link {
  top: 10px;
  position: relative;
}

#edit_options {
  filter: saturate(0);
  margin: 14px;
  padding-bottom: 30px;
}

/* PlyGem Legacy Styles */
.brand-categories-nav, .category-nested-nav, .category-page-nav, .content-page-nav, .general-content-nested-nav, .general-content-page-nav, .other-brands-nav {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.navbar > .container-fluid .navbar-brand {
  padding: 5px 0;
  width: 241px;
  height: 73px;
  line-height: inherit;
  margin-left: 10px;
}

.navbar-nav.navbar-right:last-child {
  position: relative;
  overflow: hidden;
  margin-right: 0;
}

.navbar-nav.navbar-right li.how-to-buy {
  float: right;
}

#pg-bottom-nav > .container-fluid {
  max-width: 1200px;
}

#pg-bottom-nav > .container-fluid > .navbar-header > .hidden-xs {
  display: inline;
}

#pg-bottom-nav .navbar-header {
  max-height: 73px;
}

#pg-bottom-nav .navbar-header::after {
  content: " ";
  width: 150px;
  height: 71px;
  display: inline-block;
  position: relative;
  left: 75px;
  -webkit-transform: skewX(-37.5deg);
  -ms-transform: skewX(-37.5deg);
  transform: skewX(-37.5deg);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
}

.navbar, .navbar-inverse .navbar-nav > .active > a {
  background-image: none;
}

#pg-nav {
  width: 100%;
  top: 0;
  -webkit-transition: top 1s;
  transition: top 1s;
  z-index: 101;
}

#pg-nav.out {
  top: -110px;
}

#pg-nav.in {
  position: fixed;
}

#pg-nav .btn {
  margin: 2px;
}

.navbar {
  min-height: initial;
  background-color: transparent;
  border-color: transparent;
  margin-bottom: 0;
}

.navbar-inverse .navbar-brand, .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > li > a {
  color: #221F1F;
  text-shadow: none;
  padding-top: 12px;
  font-size: 12px;
  font-weight: 400;
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover {
  background-color: rgba(0, 0, 0, 0);
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > li > a:focus, .navbar-inverse .navbar-nav > li > a:hover {
  color: inherit;
  box-shadow: none;
}

#pg-top-nav {
  width: 100%;
  z-index: 1001;
  font-weight: 500;
}

#pg-bottom-nav .nav > li > a {
  padding: 21px 20px 27px;
}

#navsearchtrigger, #pg-how-to-buy-mobile {
  display: none;
}

@media (min-width: 1024px) {
  #pg-nav {
    height: 175px;
  }

  #navsearchform, #navsearchli, #navsearchtrigger, #pg-top-nav {
    height: 41px;
  }

  #navsearchtrigger {
    display: block;
    float: right;
    border: none;
    text-align: center;
  }

  #pg-top-nav ul.dropdown-menu li a {
    color: #000;
  }

  .glyphicon {
    line-height: 1rem;
  }

  .ps-offcanvas-underlay {
    display: none;
  }

  #navsearchli {
    z-index: 2;
    -webkit-transition: right 0.5s;
    transition: right 0.5s;
  }

  #navsearchli.open {
    right: 0;
  }

  #navsearchform.collapsing {
    -webkit-transition: none;
    transition: none;
  }

  #navsearchli {
    position: absolute;
    right: -100%;
    width: 100%;
  }

  #navsearchform {
    width: 100%;
  }

  #navsearchform .wpthemeSearch {
    height: 40px;
    width: 100%;
    font-size: 1rem;
    border-radius: 0;
    margin: 0;
    border: none;
    padding: 0;
    background-color: #fff;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  #navsearchform .wpthemeSearch .input-wrapper {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  #navsearchform .wpthemeSearch button.close-search-button, #navsearchform .wpthemeSearch button.search-button {
    padding-top: 0;
    padding-bottom: 0;
    border: none;
    background-color: transparent;
    width: 50px;
  }

  #navsearchform .wpthemeSearch button.close-search-button {
    width: 75px;
    color: #f3f3f3;
    margin-top: 2px;
  }

  #navsearchform .wpthemeSearch button.close-search-button .glyphicon, #navsearchform .wpthemeSearch button.search-button .glyphicon {
    line-height: 2.125rem;
  }

  #navsearchform .wpthemeSearch input.wpthemeSearchText {
    width: 100%;
    color: #221F1F;
    padding: 5px 15px;
  }

  #navsearchform .wpthemeSearch .close-search {
    background-color: #000;
    height: 40px;
    text-align: center;
  }

  .navbar {
    border: none;
  }

  .navbar > .container-fluid .navbar-brand {
    width: 180px;
    height: 39px;
    margin-left: 0;
  }

  #mobile-offcanvas-menu .navbar-nav > li > a {
    font-size: 14px;
  }
}
@media (min-width: 1251px) {
  #pg-how-to-buy-mobile {
    display: none;
  }

  #home-page .rich-text-content {
    max-width: 1200px;
    margin: auto;
  }
}
#pg-nav {
  position: relative;
  height: auto;
  background-size: cover;
}

#pg-nav.open {
  background: #fff;
}

.pg-dropdown-items {
  position: absolute;
  left: 0;
  top: 86px;
  width: 100%;
  text-align: center;
  z-index: 99999990;
}

@media (min-width: 768px) {
  #pg-nav {
    padding: 20px 0;
  }

  .pg-dropdown-items {
    top: 68px;
  }
}
.prodbranddrop.open {
  width: 100%;
  display: block;
  background-color: #fff;
  text-align: left;
}

.content-block-list > div, .page-logo {
  text-align: center;
}

.prodbranddrop a, .prodbranddrop a:hover {
  font-size: 13px;
  color: #221f1f;
  text-decoration: none;
}

li.dropdown.pull-right .prodbranddrop {
  right: auto;
}

#nav-offsite-brands {
  border-top: 2px solid #eee;
  margin: 20px;
  padding-top: 20px;
}

#nav-offsite-brands .title {
  font-size: 1rem;
  font-weight: 700;
}

#nav-offsite-brand-list {
  list-style-type: none;
}

#nav-offsite-brand-list li {
  display: inline-block;
}

.pg-dropdown-item {
  display: none;
}

#pg-bottom-nav {
  font-size: 1.125rem;
  font-weight: 300;
  height: 73px;
  border-style: solid;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #pg-how-to-buy-mobile {
    display: block;
  }
}
@media (min-width: 1024px) {
  #pg-nav {
    padding: 40px 0;
  }

  .pg-dropdown-items {
    top: 88px;
  }

  #pg-bottom-nav-dropdowns {
    float: right;
    padding-right: 20px;
    margin-right: -20px;
    width: 75%;
    background: -webkit-linear-gradient(315deg, #fff, #fff 36px, rgba(125, 125, 125, 0.3) 36px, rgba(0, 0, 0, 0));
    background: linear-gradient(135deg, #fff, #fff 36px, rgba(125, 125, 125, 0.3) 36px, rgba(0, 0, 0, 0));
  }
}
#pg-drop-brands, #pg-drop-ideaslearning, #pg-drop-products {
  font-weight: 400;
  background-color: #fff;
  box-shadow: 0 5px 4px 0 rgba(0, 0, 0, 0.17);
  position: relative;
  display: none;
}

#pg-drop-brands.open, #pg-drop-ideaslearning.open, #pg-drop-products.open {
  display: block;
  z-index: 1001;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pg-dropdown-item {
  text-align: left;
  padding: 0 20px;
}

.pg-dropdown-item .nav-img-list, .pg-dropdown-item .other-brands-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pg-dropdown-item img {
  display: none;
}

@media (min-width: 768px) {
  .pg-dropdown-item {
    padding: 20px 0;
  }

  .pg-dropdown-item h3 {
    margin-top: 0;
  }

  .pg-dropdown-item .nav-img-list li {
    width: 18%;
    height: 180px;
    float: left;
    position: relative;
    overflow: hidden;
    margin: 10px 1%;
    text-align: center;
    background: #000;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
  }

  .pg-dropdown-item .nav-img-list li img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
  }

  .pg-dropdown-item .nav-img-list span.title {
    position: relative;
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 2;
    line-height: 1.2em;
    display: block;
  }

  .pg-dropdown-item .nav-img-list span.title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -13px;
    width: 26px;
    height: 2px;
    background: #66B360;
  }

  .pg-dropdown-item .nav-img-list span.new {
    color: red;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 0;
    text-transform: uppercase;
    font-weight: 700;
  }

  .pg-dropdown-item .other-brands-list li {
    float: left;
    margin-right: 30px;
    text-align: center;
  }

  .pg-dropdown-item .other-brands-list li img {
    display: inline-block;
  }

  #pg-drop-brands .nav-img-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  #pg-drop-brands .nav-img-list li {
    width: auto;
    height: 90px;
    background-color: #fff;
    display: inline-block;
    margin: 0 2% 0 0;
    padding: 0 20px;
  }

  #pg-drop-brands .nav-img-list li img {
    width: auto;
    min-width: initial;
    height: auto;
    min-height: auto;
    position: static;
    top: auto;
    left: auto;
  }

  #pg-drop-brands .nav-img-list li img.plygem-logo {
    width: 160px;
  }

  #pg-drop-brands .nav-img-list li a {
    height: 100%;
    width: 100%;
    display: block;
  }

  #pg-drop-brands .nav-img-list li .logo-wrapper {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }

  #pg-drop-brands .nav-img-list li span.title {
    display: none;
    font-size: 17px;
  }

  #pg-drop-ideaslearning .nav-img-list li {
    width: 23%;
    height: 315px;
  }
}
#pg-drop-brands {
  padding: 20px 0 10px;
}

#pg-drop-brands .offsite-brand-list h3 {
  margin-top: 10px;
}

@media (min-width: 768px) {
  #pg-drop-brands {
    padding: 20px 0;
  }

  #pg-drop-brands .offsite-brand-list h3 {
    margin-top: 0;
  }

  #pg-drop-brands .offsite-brand-list .brand {
    display: block;
    margin: 15px 0;
  }

  #pg-drop-brands .offsite-brand-list .brand img {
    display: block;
  }

  #pg-drop-brands .offsite-brand-list .brand .title {
    display: none;
  }

  #pg-drop-brands .other-brands .brand img {
    display: block;
    width: 75px;
  }

  #pg-drop-brands .other-brands .brand {
    display: inline-block;
    width: auto;
    margin-right: 50px;
    text-align: center;
    line-height: 20px;
  }

  #pg-drop-brands .other-brands {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
  }
}
@media (min-width: 1024px) {
  #pg-drop-brands .plygem-brands {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #pg-drop-brands .plygem-brands .brand {
    width: 49%;
  }
}
.pg-dropdown-close {
  display: none;
}

.pg-dropdown-close.show {
  display: block;
  height: 45px;
  font-weight: 500;
  font-size: 0.813rem;
  background-color: #ddd;
  padding: 10px 20px;
}

.pg-dropdown-close .glyphicon {
  color: #66B360;
}

#pg-nav .navbar-brand {
  height: 39px;
  width: 130px;
  padding: 10px;
  margin-left: 0;
}

@media (min-width: 768px) {
  #pg-nav .navbar-brand {
    margin-right: 20px;
    width: auto;
    padding: 0;
  }

  .navbar-inverse .navbar-brand, .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > li > a {
    font-size: 18px;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .navbar-inverse .navbar-nav > li > a {
    padding-left: 5px;
    padding-right: 5px;
  }

  #pg-nav .navbar-brand {
    margin-right: 10px;
  }
}
@media (max-width: 1023px) {
  .navbar-header, .navbar-nav > li {
    float: none;
  }

  #pg-top-nav {
    height: 41px;
    border-width: 0 0 5px;
    overflow: visible;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar > .container-fluid .navbar-brand {
    width: 136px;
    height: 30px;
    padding: 10px 0 0;
    line-height: inherit;
  }

  .navbar > .container .navbar-brand img {
    max-width: 100%;
  }

  .offcanvas-hamburger {
    width: 15px;
    height: 15px;
    margin-right: 10px;
  }

  #pg-bottom-nav {
    background-image: none;
    height: 45px;
    z-index: 1001;
  }

  #pg-bottom-nav .container-fluid {
    padding: 0;
  }

  .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover {
    background-color: inherit;
  }

  #pg-nav.offcanvas, #ps-sticky-footer.offcanvas, .ps-offcanvas-underlay.shown, body.offcanvas, div.row.footer.offcanvas {
    right: 250px;
    -webkit-transition: right 0.5s;
    transition: right 0.5s;
  }

  div.row.footer {
    position: relative;
  }

  .nav > li.pg-dropdown {
    display: inline-block;
    margin: 0 auto;
  }

  #pg-bottom-nav .nav > li > a {
    padding: 10px;
    height: 45px;
  }

  .pg-mobile-lower-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -10px;
  }

  #mobile-offcanvas-menu {
    background-color: #fff;
    border: none;
    display: block;
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    max-height: 100%;
    height: 100% !important;
    -webkit-transition: right 0.5s;
    transition: right 0.5s;
    padding: 0;
    margin: 0;
    overflow: scroll;
  }

  #mobile-offcanvas-menu > .nav > li > a {
    color: #000;
    font-size: 1rem;
    line-height: 3.125rem;
    padding: 0;
    font-weight: 300;
  }

  #mobile-offcanvas-menu.shown {
    right: 0;
    z-index: 2000;
  }

  #mobile-offcanvas-menu .how-to-buy {
    float: none;
    margin-bottom: 10px;
  }

  #mobile-offcanvas-menu > .nav > li.how-to-buy > a {
    line-height: 1.125rem;
    font-weight: 700;
  }

  .ps-offcanvas-underlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: -1000;
    opacity: 0;
  }

  .ps-offcanvas-underlay.shown {
    z-index: 1000;
    opacity: 0.8;
    -webkit-transition: right 0.5s, opacity 1s;
    transition: right 0.5s, opacity 1s;
  }

  #mobile-offcanvas-menu .nav {
    margin: 0;
    padding: 30px 30px 0;
    border-bottom: 1px solid #55554d;
  }

  #navsearchli .wpthemeSearch {
    margin: 0;
    border-radius: 0;
    background: 0 0;
  }

  #searchQuery {
    height: 40px;
    width: 100%;
    font-size: 12px;
    color: #221F1F;
    font-weight: 400;
  }

  #navsearchli {
    background-color: transparent;
    border: none;
    margin: 0 -30px;
    padding: 0 30px 20px;
    border-bottom: 1px solid #55554d;
  }

  #navsearchli .navbar-left {
    float: none !important;
  }

  #navsearchform, #navsearchform .wpthemeSearch {
    display: block;
  }

  #navsearchform div.close-search, #pg-bottom-nav .navbar-header::after, .pg-separator:last-child {
    display: none;
  }

  #navsearchform button.search-button {
    font-size: 0.9rem;
    color: #000;
    border: none;
    background-color: transparent;
    float: right;
    position: relative;
    top: -34px;
    left: 5px;
  }

  .navbar-inverse .ps-offcanvas .navbar-nav .open .dropdown-menu li a:focus, .navbar-inverse .ps-offcanvas .navbar-nav .open .dropdown-menu li a:hover {
    color: grey;
  }

  #pg-bottom-nav {
    border: 0;
    border-top: 1px solid #a5a5a5;
    margin: 0 20px 0 47px;
  }

  #pg-bottom-nav li a {
    color: #000;
    font-weight: 400;
  }

  #pg-bottom-nav.open {
    height: 55px;
    background-color: #fff;
  }

  #pg-bottom-nav.open li a {
    color: grey;
  }

  #pg-bottom-nav.open li.open a {
    color: #000;
  }

  .navbar-inverse .navbar-toggle .icon-bar {
    background-color: #000;
    width: 24px;
  }

  .navbar-brand {
    margin-left: 20px;
  }

  .navbar-toggle .icon-bar {
    width: 1.375rem;
  }

  #pg-top-nav .navbar-header {
    overflow: hidden;
  }

  #pg-mobile-offcanvas-btn-wrapper {
    float: right;
    height: 45px;
    color: #fff;
    position: relative;
  }

  #pg-mobile-offcanvas-btn-wrapper button, #pg-mobile-offcanvas-btn-wrapper button:focus, #pg-mobile-offcanvas-btn-wrapper button:hover {
    border: none;
    padding: 7px 20px;
    height: 45px;
    margin: 0;
    background: 0 0;
  }

  #pg-bottom-nav.open .pg-separator {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .pg-dropdown-items {
    width: 100%;
    text-align: center;
  }

  .col-1-5 {
    width: 49%;
  }

  #pg-drop-brands .offsite-brands .offsite-brand-list .brand div, #pg-drop-ideaslearning .col-1-5 {
    width: 100%;
  }

  #pg-drop-brands, #pg-drop-ideaslearning, #pg-drop-products {
    font-weight: 300;
    font-size: 13px;
  }

  #pg-drop-ideaslearning .row, #pg-drop-products .row {
    padding: 10px 0;
  }

  #pg-drop-ideaslearning .row:first-child, #pg-drop-products .row:first-child {
    padding-top: 20px;
  }

  #pg-drop-ideaslearning .row:nth-last-child(2), #pg-drop-products .row:nth-last-child(2) {
    padding-bottom: 20px;
  }

  #pg-drop-brands .row.pg-dropdown-close, #pg-drop-ideaslearning .row.pg-dropdown-close, #pg-drop-products .row.pg-dropdown-close, .pg-dropdown-close.show {
    display: block;
    height: 45px;
    font-weight: 500;
    font-size: 0.813rem;
    background-color: #ddd;
    padding: 10px 20px;
  }

  #pg-drop-brands {
    top: 0;
  }

  #pg-drop-ideaslearning-items .col-1-5, #pg-drop-ideaslearning-items .col-1-5:nth-last-child(-n+5), #pg-drop-products-items .col-1-5, #pg-drop-products-items .col-1-5:nth-last-child(-n+5) {
    padding-bottom: 5px;
  }

  #pg-drop-ideaslearning-items .col-1-5:last-child, #pg-drop-products-items .col-1-5:nth-last-child(-n+2) {
    padding-bottom: 0;
  }

  #pg-drop-products-items .col-1-5:nth-child(odd) {
    border-right: 1px solid #e6e6e6;
  }

  #pg-drop-brands .row:first-child {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: auto;
  }

  #pg-drop-brands .brand-grid, #pg-drop-brands .offsite-brands {
    padding: 10px 20px;
  }

  #pg-drop-brands .brand img, #pg-drop-brands .brand-grid .img-row, #pg-drop-brands .brandlarge img {
    display: none;
  }

  #pg-drop-brands .brandlargetext {
    display: inline-block;
    vertical-align: middle;
  }

  #pg-drop-brands h3, #pg-drop-brands p {
    font-weight: 300;
    font-size: 13px;
  }

  #pg-drop-brands h3 {
    margin-top: 0;
    padding-top: 0;
    font-weight: 700;
    text-transform: uppercase;
  }

  #pg-drop-brands .other-brands .brand div {
    margin-left: 0;
  }

  #pg-drop-brands a, #pg-drop-ideaslearning a, #pg-drop-products a {
    display: block;
    width: 100%;
  }
}
#ps-cta-footer a, .page-logo {
  color: #fff;
}

#searchQuery:focus {
  border: none !important;
}

.page-logo {
  min-height: 90px;
  padding: 30px 0 0;
  font-size: 1.25em;
  vertical-align: middle;
  background-color: #585850;
}

.content-page-nav li, .general-content-page-nav li {
  padding: 11px 18px;
  background-color: #E0E0E0;
  border-bottom: 2px solid #EAEAEA;
}

@media (min-width: 768px) {
  .content-page-nav li, .general-content-page-nav li {
    background-color: transparent;
    border-bottom: none;
  }
}
.content-page-nav li:not(.parent) a:hover, .general-content-page-nav li:not(.parent) a:hover {
  color: #4c8b00;
}

.content-page-nav li, .content-page-nav li a, .general-content-page-nav li a {
  color: #221f1f;
  font-size: 20px;
}

.brand-categories-nav {
  padding: 0 0 150px;
}

.brand-categories-nav li {
  padding: 15px 0 0 20px;
}

.brand-categories-nav li a {
  color: #4c8b00;
  font-size: 1rem;
}

.brand-categories-nav li a::after {
  content: "";
  font-family: "Glyphicons Halflings";
  padding: 0 3px;
  font-size: 0.7em;
}

.general-content-page-nav .parent {
  border: none;
  padding: 11px 3px;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
}

.general-content-page-nav .parent::before {
  content: "";
  font-family: "Glyphicons Halflings";
  padding: 0 2px;
  font-size: 0.7em;
  min-width: 15px;
}

.general-content-page-nav .selected {
  background-color: #EAEAEA;
}

.general-content-page-nav .selected a {
  color: #4c8b00;
}

.general-content-page-nav .general-content-nested-nav li:first-child {
  margin: 7px 0 0;
}

.general-content-page-nav .general-content-nested-nav li {
  padding: 7px 12px;
  border-bottom: none;
  background-color: inherit;
  border-left: 1px solid #d3d3d3;
}

.general-content-page-nav .general-content-nested-nav li a {
  color: #221f1f;
  font-size: 0.9em;
}

.categories-nav {
  padding: 20px 0 0;
  margin: 25px 5px 0;
}

.categories-nav .title, .categories-nav ul, .categories-nav ul > div {
  padding: 0;
}

.categories-nav .title a {
  font-weight: 700;
}

.categories-nav .category-list-details {
  margin: 10px 0 0;
}

.categories-nav .category-list-details .thumbnail {
  border: none;
  box-shadow: none;
}

#ps-footer-prompt, .layer2 {
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.5);
}

.categories-nav .category-list-details .summary {
  padding: 0 0 0 15px;
  font-size: 1rem;
}

.categories-nav .category-list-details .summary a, .categories-nav .category-list-details .view-category-link {
  color: #66B360;
  font-weight: 700;
  padding: 5px 0 0;
}

.categories-nav .category-list-details .summary a::after, .categories-nav .category-list-details .view-category-link::after {
  content: "";
  font-family: "Glyphicons Halflings";
  padding: 0 3px;
  font-weight: 400;
  font-size: 0.7em;
}

.categories-nav .category-list-details .subcategories {
  padding-left: 20px;
}

.subcategories .category-nested-nav li {
  padding: 5px 0;
}

.subcategories .category-nested-nav li a {
  color: #66B360;
  font-size: 1.1em;
}

.category-page-nav {
  padding: 10px 0 15px;
}

.category-page-nav .parent {
  border: none;
  padding: 3px 0 3px 15px;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
}

.category-page-nav .parent::before {
  content: "";
  font-family: "Glyphicons Halflings";
  color: #10498F;
  font-size: 0.7em;
  min-width: 15px;
}

.category-page-nav .parent a, .general-content-page-nav .parent a {
  padding: 0 5px;
}

.category-page-nav .selected, .other-brands-nav {
  margin: 10px 15px 0;
  padding: 15px 0 0;
  border-top: 1px solid #d3d3d3;
}

.category-page-nav .selected a, .other-brands-nav li a, .other-brands-nav span {
  color: #333;
  font-weight: 700;
}

.category-page-nav .category-nested-nav {
  padding: 0 0 0 20px;
}

.category-page-nav .category-nested-nav li:first-child {
  padding: 10px 0 3px;
}

.category-page-nav .category-nested-nav li {
  padding: 3px 0;
}

.other-brands-nav li:first-of-type {
  padding: 10px 0 3px 20px;
}

.other-brands-nav li {
  padding: 3px 0 3px 20px;
}

.category-page-nav .category-nested-nav li a, .other-brands-nav li a {
  color: #10498F;
  font-weight: 400;
}

/* Pages */
/*-------------------------------------------------------*\
    Stone
/*-------------------------------------------------------*/
/*-------------------------------------------------------*\
    Siding
/*-------------------------------------------------------*/
body.single-siding-collection, body.single-other-product {
  /* Hide color swatche modal over gallery for Single Siding & Other Products */
}
body.single-siding-collection .product-designer, body.single-other-product .product-designer {
  background: none;
  padding: 0 0 15px;
}
body.single-siding-collection .action-items .button, body.single-siding-collection .action-items body.page-template-template-find-a-pro .modal .wrapper .button, body.page-template-template-find-a-pro .modal .wrapper body.single-siding-collection .action-items .button, body.single-siding-collection .action-items body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper body.single-siding-collection .action-items .button, body.single-other-product .action-items .button, body.single-other-product .action-items body.page-template-template-find-a-pro .modal .wrapper .button, body.page-template-template-find-a-pro .modal .wrapper body.single-other-product .action-items .button, body.single-other-product .action-items body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper body.single-other-product .action-items .button {
  padding: 15px 30px;
  font-weight: bold;
}
body.single-siding-collection .tabs-content .gallery-nav, body.single-other-product .tabs-content .gallery-nav {
  opacity: 0;
  z-index: -99;
}
body.single-siding-collection .tabs-content article ul > li, body.single-other-product .tabs-content article ul > li {
  display: list-item;
  list-style-type: disc;
  list-style-position: inherit;
  margin-left: 18px;
  padding-bottom: 10px;
}
body.single-siding-collection .card_image .image-link, body.single-other-product .card_image .image-link {
  display: block;
}
@media screen and (min-width: 768px) {
  body.single-siding-collection .card_image .image-link, body.single-other-product .card_image .image-link {
    overflow: hidden;
    max-height: 190px;
  }
}
body.single-siding-collection .gallery.colorize .gallery-slider .slide:before, body.single-siding-collection .remove-designer-gallery-styles, body.single-other-product .gallery.colorize .gallery-slider .slide:before, body.single-other-product .remove-designer-gallery-styles {
  display: none !important;
}
body .visualizer-wrapper {
  display: block;
  width: inherit;
  height: 750px;
}
body .embed-responsive {
  overflow: hidden;
  position: relative;
}
body .embed-responsive .embed-responsive-item {
  border: 0 none;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/*-------------------------------------------------------*\
    Products
/*-------------------------------------------------------*/
/*
 * Product Designer
 */
.product-designer {
  margin-top: 20px;
  background: none;
  padding: 18px 20px;
}
.product-designer .product-options-list > li {
  margin-bottom: 20px;
}
.product-designer .product-options-list.square-thumbs nav > ul.tabs-nav.options-list {
  display: flex;
  padding-left: 0;
  flex-wrap: wrap;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .product-designer .product-options-list.square-thumbs nav > ul.tabs-nav.options-list {
    padding-left: 0;
  }
}
.product-designer .product-options-list.square-thumbs nav > ul.tabs-nav.options-list li {
  flex-grow: 0;
  width: 23%;
  padding: 0;
  margin-right: 2%;
  margin-bottom: 2%;
}
.product-designer .product-options-list.square-thumbs nav > ul.tabs-nav.options-list li.tab-title:first-child {
  padding-left: 0;
}
.product-designer .product-options-list.square-thumbs nav > ul.tabs-nav.options-list li a.designer-action {
  width: 100%;
  min-height: 100px;
}
@media screen and (max-width: 1200px) {
  .product-designer .product-options-list.square-thumbs nav > ul.tabs-nav.options-list li a.designer-action {
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .product-designer .product-options-list.square-thumbs nav > ul.tabs-nav.options-list li a.designer-action {
    min-height: 100px;
  }
}
.product-designer .product-options-list.square-thumbs nav:after {
  border-bottom: 0;
}

.options-list .option-label {
  text-decoration: none;
}
.options-list li {
  display: inline-block;
}
.options-list li a, .options-list li .designer-action {
  display: block;
  width: 53px;
  height: 65px;
  border: 1px solid #ddd;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.options-list li a .color-overlay, .options-list li .designer-action .color-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  border: 1px solid #ddd;
}
.options-list li a .color-overlay + img, .options-list li .designer-action .color-overlay + img {
  opacity: 0;
}
.options-list li .option-caption {
  font-size: 12px;
  line-height: 1.2em;
  white-space: normal;
}
.options-list li.selected a, .options-list li.selected .designer-action {
  border-color: #000000;
}
.options-list.image-options li a, .options-list.image-options li .designer-action {
  width: auto;
  height: auto;
  background-size: contain;
}
.options-list.image-options li a img, .options-list.image-options li .designer-action img {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 8px;
}
.options-list.image-options li span {
  font-size: 13px;
  display: block;
  text-align: center;
}
.options-list.image-options li.selected a img, .options-list.image-options li.selected .designer-action img {
  border-color: #000000;
}
.options-list.categorized li a, .options-list.categorized li .designer-action {
  border: none;
  width: 100%;
  height: auto;
}
.options-list.categorized li a img, .options-list.categorized li .designer-action img {
  max-height: 170px;
  width: auto;
  border: none;
  vertical-align: bottom;
}

.product-card {
  border: 1px solid transparent;
  border-radius: 4px;
}
.product-card.product-link:hover img {
  transition: all 0.2s ease-in;
}
.product-card.product-link:hover img[src$=".png"], .product-card.product-link:hover img[src$=".jpg"], .product-card.product-link:hover img[src$=".jpeg"] {
  transition: 0.2s ease-in;
  transform: scale(1.035);
}
.product-card figure .ff-container {
  text-align: center;
  float: none;
  margin-left: auto;
  margin-right: auto;
}
.product-card figure img {
  text-align: center;
  float: none;
  margin-left: auto;
  margin-right: auto;
  max-height: 210px;
  width: auto;
}
.product-card figure figcaption {
  padding-bottom: 0;
}
.product-card figure figcaption > * {
  padding-bottom: 8px;
}
.product-card figure a.image-link img, .product-card figure .designer-action.image-link img {
  margin-bottom: 8px;
}

.collection-grilles ul.products {
  display: flex;
  flex-wrap: wrap;
}

@supports (display: grid) {
  .options-list.categorized li a, .options-list.categorized li .designer-action {
    display: grid;
    align-items: center;
    align-content: center;
  }

  .product-card figure a.image-link, .product-card figure .designer-action.image-link {
    display: grid;
    align-items: center;
    align-content: center;
  }
}
/* Single Collection Options */
.tabs-content .content.collection-style article p, .tabs-content .content.collection-glass article p, .tabs-content .content.collection-grilles article p, .tabs-content .content.collection-hardware article p {
  max-width: 90%;
}
@media screen and (max-width: 768px) {
  .tabs-content .content.collection-style article p, .tabs-content .content.collection-glass article p, .tabs-content .content.collection-grilles article p, .tabs-content .content.collection-hardware article p {
    max-width: 100%;
  }
}
.tabs-content .content p a:link, .tabs-content .content p a:visited {
  text-decoration: underline;
  color: #64b467;
}
.tabs-content .content p a:active, .tabs-content .content p a:hover {
  text-decoration: none;
}
.tabs-content .content.collection-glass h5 {
  font-weight: 700;
  text-align: left;
}
.tabs-content .content.collection-glass ul {
  margin-bottom: 25px;
  display: flex;
  flex-flow: wrap;
}
.tabs-content .content.collection-glass ul li {
  margin-bottom: 5px;
}

/*-------------------------------------------------------*\
    Blog Styles
/*-------------------------------------------------------*/
body.blog-area main .card .read-more, body.blog-area main .comments-area .comment-list .comment .read-more, .comments-area .comment-list body.blog-area main .comment .read-more {
  display: inline-block !important;
  width: auto !important;
}
body.blog-area main .card.trending, body.blog-area main .comments-area .comment-list .trending.comment, .comments-area .comment-list body.blog-area main .trending.comment {
  position: relative;
}
body.blog-area main .card.trending:before, body.blog-area main .comments-area .comment-list .trending.comment:before, .comments-area .comment-list body.blog-area main .trending.comment:before {
  content: "TRENDING";
  background: #64b467;
  color: white;
  padding: 8px 2em;
  text-align: center;
  display: inline-block;
  position: absolute;
  line-height: normal;
  left: 0;
  z-index: 9;
  font-weight: bold;
  top: 8%;
  opacity: 1;
  box-shadow: 0 0 9px rgba(95, 95, 95, 0.24);
}
body.blog-area main .background-grey {
  background: #eeeeee;
}
body.blog-area main > section {
  padding-left: 160px;
}
body.blog-area main > section.page-content, body.blog-area main > section + section {
  padding-top: 0;
}
body.blog-area main > section.page-content {
  margin-top: 0;
  margin-bottom: 0;
}
body.blog-area main > section.balanced {
  padding-left: calc(40px + 2vw);
  padding-right: calc(40px + 2vw);
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
}
body.blog-area main > section form input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  text-indent: 10px;
}
body.blog-area main > section .tabs-container nav {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  body.blog-area main > section .tabs-container nav ul {
    padding-left: 5px;
    font-size: 90%;
  }
}
@media screen and (max-width: 768px) {
  body.blog-area main > section .tabs-container nav ul {
    padding: 0;
    margin-left: 0;
  }
}
body.blog-area main > section .tabs-container nav ul li {
  text-transform: uppercase;
}
body.blog-area main > section .tabs-container nav ul li.active a {
  border-color: #64b467;
}
body.blog-area main > section .tabs-container nav:after {
  display: none;
}
body.blog-area main .main-content {
  background-color: #eeeeee;
  display: grid;
  align-items: start;
  align-content: start;
}
body.blog-area main .main-content > section {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  body.blog-area main .main-content > section > article > .row > .col {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  body.blog-area main .main-content > section > article > .row > .col > figure.link {
    margin-top: 0;
    border-bottom: 1.5px solid #fff;
  }
}
body.blog-area main .main-content > section > article > .row > .col:last-child > figure.link:last-child {
  border-bottom-color: #000000;
}
body.blog-area main .main-content > section + section {
  padding-left: 1.4em;
  padding-right: 1.4em;
  padding-bottom: 1.4em;
}
@media screen and (min-width: 768px) {
  body.blog-area main .main-content > section:last-child {
    margin-bottom: 1.4em;
    border-left: 1.4em solid #eeeeee;
    border-right: 1.4em solid #eeeeee;
  }
}
@media screen and (max-width: 768px) {
  body.blog-area main .main-content .one-half-one-half {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  body.blog-area main .main-content .one-half-one-half .wrapper {
    padding: 0;
  }
}
body.blog-area main .main-content .one-half-one-half .wrapper .box-shadow {
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  body.blog-area main .main-content .one-half-one-half .content_text {
    padding: 8vw 6vw;
  }
  body.blog-area main .main-content .one-half-one-half .content_text ul {
    padding: 0;
  }
}
body.blog-area main .main-content .one-half-one-half .content_image {
  background-size: contain;
}
@media screen and (min-width: 768px) {
  body.blog-area main .main-content .one-half-one-half .content_image {
    background-size: 90% auto;
  }
}
@media screen and (max-width: 768px) {
  body.blog-area main .main-content .one-half-one-half .content_image {
    min-height: 125px;
    background-size: cover;
    width: 100%;
  }
}
body.blog-area main .more-articles .tri-hero-module {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
body.blog-area main .more-articles .tri-hero-module > .col {
  padding: 5px !important;
}
body.blog-area main .more-articles .tri-hero-module > .col figure {
  outline: none !important;
}
body.blog-area main .more-articles .tri-hero-module > .col figure:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 0;
  outline: 4px solid white;
  outline-color: transparent;
  outline-offset: -4px;
  transition: all 0.3s ease-in-out;
  -webkit-background: linear-gradient(to right, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.13) 15%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.13) 85%, rgba(0, 0, 0, 0.05) 100%);
  -moz-background: linear-gradient(to right, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.13) 15%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.13) 85%, rgba(0, 0, 0, 0.05) 100%);
  -ms-background: linear-gradient(to right, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.13) 15%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.13) 85%, rgba(0, 0, 0, 0.05) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.13) 15%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.13) 85%, rgba(0, 0, 0, 0.05) 100%);
}
body.blog-area main .more-articles .tri-hero-module > .col figure:hover:before {
  outline-color: #64b467;
  -webkit-background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.5) 100%);
  -moz-background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.5) 100%);
  -ms-background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.5) 100%);
}
body .banner.page-hero {
  min-height: 540px;
  display: grid;
  align-items: end;
  padding-bottom: 0;
}
body .banner.page-hero .box {
  display: grid;
  padding-bottom: 0;
  align-items: end;
  align-content: end;
  float: none;
  padding: 2.5em 0 !important;
}
body .banner.page-hero .box h1 {
  padding-bottom: 8px;
}
body.single.single-post main .main-content .content_text img {
  box-shadow: 0 0 2px #ccc;
}
@media screen and (max-width: 768px) {
  body.single.single-post main .main-content .content_text img {
    margin-top: 1em !important;
    margin-bottom: 1.5em !important;
  }
}
@media screen and (max-width: 600px) {
  body.single.single-post main .main-content .content_text img {
    display: block;
    width: 100%;
    max-width: none !important;
  }
}
@media screen and (max-width: 600px) {
  body.single.single-post main .main-content .content_text img.alignleft, body.single.single-post main .main-content .content_text img.alignright {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
  }
}
body.single.single-post main .main-content > * {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  body.single.single-post main .main-content > * {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
body.single.single-post main .main-content > *.featured-image {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  min-height: 300px;
  display: grid;
  align-items: center;
  align-content: center;
}
body.single.single-post main .main-content > *.featured-image:before {
  display: block;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  -webkit-background: linear-gradient(to right, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.13) 15%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.13) 85%, rgba(0, 0, 0, 0.05) 100%);
  -moz-background: linear-gradient(to right, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.13) 15%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.13) 85%, rgba(0, 0, 0, 0.05) 100%);
  -ms-background: linear-gradient(to right, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.13) 15%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.13) 85%, rgba(0, 0, 0, 0.05) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.13) 15%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.13) 85%, rgba(0, 0, 0, 0.05) 100%);
}
body.single.single-post main .main-content > *.featured-image:before.black-text {
  -webkit-background: linear-gradient(to right, rgba(0, 0, 0, 0.065) 0%, rgba(0, 0, 0, 0.5) 15%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 85%, rgba(0, 0, 0, 0.65) 100%);
  -moz-background: linear-gradient(to right, rgba(0, 0, 0, 0.065) 0%, rgba(0, 0, 0, 0.5) 15%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 85%, rgba(0, 0, 0, 0.65) 100%);
  -ms-background: linear-gradient(to right, rgba(0, 0, 0, 0.065) 0%, rgba(0, 0, 0, 0.5) 15%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 85%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.065) 0%, rgba(0, 0, 0, 0.5) 15%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 85%, rgba(0, 0, 0, 0.65) 100%);
}
body.single.single-post main .main-content > *.featured-image > img {
  display: none;
}
@media screen and (min-width: 768px) {
  body.single.single-post main .main-content > *.featured-image {
    min-height: 500px;
    height: 33vw;
  }
}
body.single.single-post main .main-content > *.featured-image .post-nav {
  color: #eeeeee;
  max-width: 282px;
  max-height: 100px;
  right: 0;
  position: absolute;
  bottom: 50px;
}
body.single.single-post main .main-content > *.featured-image .post-nav .sideways {
  transform: rotate(-90deg);
  position: absolute;
  right: 76%;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  body.single.single-post main .main-content > *.featured-image .post-nav {
    height: 100%;
    bottom: auto;
    top: auto;
  }
}
body.single.single-post main .main-content > *.featured-image .post-nav .box {
  padding: 0;
  margin-bottom: 0.5em;
  right: 20px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  body.single.single-post main .main-content > *.featured-image .post-nav .box {
    max-height: 95px;
    outline: 2px solid rgba(255, 255, 255, 0.7098039216);
  }
}
body.single.single-post main .main-content > *.featured-image .post-nav .box:hover {
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  filter: contrast(110%);
}
body.single.single-post main .main-content > *.featured-image .post-nav .box > div {
  width: 100%;
  height: 100%;
}
body.single.single-post main .main-content > *.featured-image .post-nav.black {
  color: black;
}
body.single.single-post main .main-content > *.featured-image .post-nav * {
  color: white;
}
body.single.single-post main .main-content > *.featured-image .post-nav .thumb {
  background-size: cover;
  background-position: center center;
  background-color: rgba(0, 0, 0, 0.88);
  box-shadow: 0 0 1px #ffffff78;
  max-height: 100%;
  margin-bottom: auto;
  margin-top: 0;
}
body.single.single-post main .main-content > *.featured-image .post-nav .thumb img {
  opacity: 0;
  max-height: 100%;
}
body.single.single-post main .main-content > *.featured-image .post-nav .summary-inner {
  align-items: center;
  overflow: visible;
  max-height: 100%;
  font-size: 13px;
  line-height: 1.4em;
  padding: 0;
  letter-spacing: -0.5px;
  display: block;
}
body.single.single-post main .main-content > *.featured-image .post-nav .summary-inner > span {
  align-items: start;
  padding: 2px 15px 2px 7px;
  font-size: 1.3em;
  text-align: center;
  line-height: normal;
  max-height: 100%;
  display: grid;
  overflow: hidden;
  line-height: 23px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.55);
  letter-spacing: 0px;
  display: block;
  max-width: 200px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: normal !important;
  background-color: rgba(0, 0, 0, 0.5);
}
body.single.single-post main .main-content > *.featured-image .hero-text {
  text-align: center;
  color: #eeeeee;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: auto;
  align-items: center;
  align-content: center;
  display: inline-grid;
  position: relative;
}
body.single.single-post main .main-content > *.featured-image .hero-text.black {
  color: black;
}
body.single.single-post main .main-content > *.featured-image .hero-text h1 {
  font-size: 3.1875em;
  padding-bottom: 8px;
  font-weight: normal;
}
@media screen and (max-width: 600px) {
  body.single.single-post main .main-content > *.featured-image .hero-text h1 {
    font-size: 31px;
    font-size: 7vw;
    white-space: normal;
  }
}
body.single.single-post main .main-content > *.featured-image .hero-text * {
  color: inherit;
  margin-left: auto;
  max-width: 670px;
  margin-right: auto;
  text-shadow: 0 0 8px rgba(34, 34, 34, 0.675);
  font-weight: 500 !important;
}
@media screen and (max-width: 768px) {
  body.single.single-post main .main-content > *.featured-image .hero-text * {
    max-width: 65%;
  }
}
body.single.single-post main .main-content > *.featured-image.black-text > * {
  z-index: 9;
  color: white !important;
}
body.single.single-post main .main-content > *.featured-image.black-text:after {
  background: rgba(0, 0, 0, 0.34);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  z-index: 0;
}
@media screen and (min-width: 768px) {
  body.single.single-post main .main-content > *.content_text {
    padding-left: 20vw;
    padding-right: 5vw;
    max-width: 1500px;
  }
}
body.single.single-post main .main-content > *.content_text h1 {
  font-weight: bold;
  font-size: 2.125em;
}
body.single.single-post main .main-content > *.content_text h1, body.single.single-post main .main-content > *.content_text h2, body.single.single-post main .main-content > *.content_text h3, body.single.single-post main .main-content > *.content_text h4, body.single.single-post main .main-content > *.content_text h5, body.single.single-post main .main-content > *.content_text h6 {
  padding-bottom: 18px;
}
@media screen and (min-width: 768px) {
  body.single.single-post main .main-content > *.content_text h1, body.single.single-post main .main-content > *.content_text h2, body.single.single-post main .main-content > *.content_text h3, body.single.single-post main .main-content > *.content_text h4, body.single.single-post main .main-content > *.content_text h5, body.single.single-post main .main-content > *.content_text h6 {
    padding-right: 60px;
  }
}
@media screen and (min-width: 768px) {
  body.single.single-post main .main-content > *.content_text p {
    padding-right: 60px;
  }
}
body.single.single-post main .main-content > *.content_text p > img {
  margin-top: 20px;
  margin-right: auto;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.09);
}
@media screen and (min-width: 768px) {
  body.single.single-post main .main-content > *.content_text p > img {
    margin-left: 0 !important;
    position: relative;
    left: 1vw;
    margin-bottom: 8px;
  }
}
body.single.single-post main header {
  background: transparent !important;
}
body.single.single-post main section article > .row {
  max-width: 100%;
}
body.single.single-post main section article > .row:first-child > .col {
  padding-top: 0;
}
body.single.single-post #comments {
  display: block !important;
}

@supports (display: grid) {
  body #replace-content-modal .card.secondary-card, body #replace-content-modal .comments-area .comment-list .comment, .comments-area .comment-list body #replace-content-modal .comment {
    display: grid;
  }
}
@media screen and (max-width: 768px) {
  body.single.single-post main .main-content > *.featured-image .post-nav .summary-inner {
    position: absolute;
    width: 50%;
    bottom: 0;
    right: 0;
    padding: 30px;
    opacity: 0;
  }

  body.single.single-post main .main-content > *.featured-image .post-nav a > *:before {
    max-width: none;
    padding: 17px 32px;
    line-height: 0;
    z-index: 10000000000000002000;
    transform: none;
  }
}
/*-------------------------------------------------------*\
    Page Transitions
/*-------------------------------------------------------*/
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.fast {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}
.animated.slow {
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s;
}
.animated.delay {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}
.animated.delay-short {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.animated.delay-shortest {
  -webkit-animation-delay: 0.02s;
  animation-delay: 0.02s;
}
.animated.delay-long {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp, .animated-sequence .animated.slideBothUp.active {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp, .animated-sequence .animated.slideBothUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated-sequence .animated.slideBothUp {
  height: 0;
  overflow: hidden;
}
.animated-sequence .animated.slideBothUp.active {
  height: auto;
  overflow: auto;
  overflow: hidden;
}

.animate-hover {
  isolation: isolate;
}
.animate-hover.draw-stroke:before, .animate-hover.draw-stroke:after {
  border: 2px solid transparent;
  width: 0;
  height: 0;
}
.animate-hover.draw-stroke:before {
  top: 0;
  left: 0;
}
.animate-hover.draw-stroke:after {
  bottom: 0;
  right: 0;
}
.animate-hover.draw-stroke:hover {
  color: #64b467;
}
.animate-hover.draw-stroke:hover::before, .animate-hover.draw-stroke:hover::after {
  width: 100%;
  height: 100%;
}
.animate-hover.draw-stroke:hover::before {
  border-top-color: #64b467;
  border-right-color: #64b467;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}
.animate-hover.draw-stroke:hover::after {
  border-bottom-color: #64b467;
  border-left-color: #64b467;
  transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}

/*-------------------------------------------------------*\
    Find a Pro
/*-------------------------------------------------------*/
@media screen and (min-width: 768px) {
  body.page-template-template-find-a-pro > header {
    background-color: #eeeeee;
  }
}
body.page-template-template-find-a-pro > header .container > .row.mobile {
  border: none;
}
body.page-template-template-find-a-pro main {
  background-color: white;
}
body.page-template-template-find-a-pro main #main {
  margin-top: 0 !important;
}
body.page-template-template-find-a-pro .banner-notice {
  text-align: center;
  background: #000;
  color: white;
  padding: 5px 0 !important;
  line-height: normal;
  font-size: 14px;
  border-top: 7px solid #eee;
  box-shadow: 0 -4px 10px rgba(51, 51, 51, 0.55);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  body.page-template-template-find-a-pro .sequence-step.active {
    min-height: 40vh;
  }
}
body.page-template-template-find-a-pro .sequence-step:not(.active) {
  padding: 0;
}
body.page-template-template-find-a-pro .sequence-step + .sequence-step {
  padding-top: 0;
  background-color: #eeeeee;
}
body.page-template-template-find-a-pro .sequence-step + .sequence-step > * > * {
  padding-top: 35px;
}
body.page-template-template-find-a-pro .page-content .wrapper {
  background: white;
}
body.page-template-template-find-a-pro .page-content .wrapper .featured-image {
  width: 100%;
  min-height: 540px;
  display: grid;
  align-items: end;
  padding-bottom: 0;
  max-height: 700px;
  height: 47vw;
  min-height: 620px;
  margin-bottom: 0;
}
body.page-template-template-find-a-pro .page-content .wrapper .featured-image h1 {
  padding-bottom: 8px;
}
body.page-template-template-find-a-pro .modal, body.page-template-template-find-a-pro .modal-loading-overlay {
  width: 100%;
  margin: 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  max-width: 1240px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  top: 0;
  max-width: 860px;
  padding: 0.5vw;
}
body.page-template-template-find-a-pro .modal:before, body.page-template-template-find-a-pro .modal-loading-overlay:before, body.page-template-template-find-a-pro .modal:after, body.page-template-template-find-a-pro .modal-loading-overlay:after {
  content: "";
  display: block;
}
body.page-template-template-find-a-pro .modal:after, body.page-template-template-find-a-pro .modal-loading-overlay:after {
  clear: both;
}
body.page-template-template-find-a-pro .modal .wrapper, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper {
  border-color: white;
  background: white;
  box-shadow: 0 0 17px rgba(51, 51, 51, 0.25);
  padding: 3vw 1.5vw;
}
body.page-template-template-find-a-pro .modal .wrapper p, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper p {
  max-width: 100%;
}
body.page-template-template-find-a-pro .modal .wrapper h2, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper h2 {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
body.page-template-template-find-a-pro .modal .wrapper article input[type=checkbox], body.page-template-template-find-a-pro .modal-loading-overlay .wrapper article input[type=checkbox], body.page-template-template-find-a-pro .modal .wrapper article input[type=radio], body.page-template-template-find-a-pro .modal-loading-overlay .wrapper article input[type=radio] {
  position: absolute;
  top: auto;
  bottom: 0;
  width: 100%;
  height: 41px;
  margin: 0 auto;
  display: block;
  z-index: 99999999999;
}
body.page-template-template-find-a-pro .modal .wrapper article input[type=checkbox]:checked + .button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper article input[type=checkbox]:checked + .button, body.page-template-template-find-a-pro .modal .wrapper article input[type=radio]:checked + .button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper article input[type=radio]:checked + .button {
  background-color: #64b467;
  color: white;
  border: 1px solid #64b467;
}
body.page-template-template-find-a-pro .modal .wrapper article input[type=checkbox]:checked + .button:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper article input[type=checkbox]:checked + .button:hover, body.page-template-template-find-a-pro .modal .wrapper article input[type=radio]:checked + .button:hover, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper article input[type=radio]:checked + .button:hover {
  background-color: white;
  color: #64b467;
  border-color: #64b467;
}
body.page-template-template-find-a-pro .modal .wrapper article h3, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper article h3 {
  font-weight: bold;
}
body.page-template-template-find-a-pro .modal .wrapper .button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .button {
  color: white;
  width: 100%;
  border-width: 2px !important;
}
body.page-template-template-find-a-pro .form-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top-left;
}
body.page-template-template-find-a-pro .form-image img {
  opacity: 0;
}
body.page-template-template-find-a-pro .navbar {
  box-shadow: 0 0 17px rgba(51, 51, 51, 0.25);
  display: flex;
  align-items: center;
  background: white;
  float: none;
  align-content: center;
  line-height: normal;
  height: 0;
  overflow: hidden;
  padding: 0;
  transition: all 0.7s ease-in-out !important;
}
body.page-template-template-find-a-pro .navbar.slideOutUp, body.page-template-template-find-a-pro .animated-sequence .navbar.animated.slideBothUp, .animated-sequence body.page-template-template-find-a-pro .navbar.animated.slideBothUp {
  height: 0 !important;
  overflow: hidden;
  padding: 0 !important;
}
body.page-template-template-find-a-pro .navbar.show {
  padding: 2.1em;
  height: auto;
  overflow: auto;
}
body.page-template-template-find-a-pro .navbar h1, body.page-template-template-find-a-pro .navbar h2, body.page-template-template-find-a-pro .navbar h3, body.page-template-template-find-a-pro .navbar h4, body.page-template-template-find-a-pro .navbar h5, body.page-template-template-find-a-pro .navbar h6 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  body.page-template-template-find-a-pro .navbar .lead-form-title {
    display: inline-block;
    float: left;
  }
}
body.page-template-template-find-a-pro .navbar .lead-form-title + .subtext {
  line-height: 1.9;
  position: relative;
  color: #000000;
  text-align: center;
  clear: both;
}
body.page-template-template-find-a-pro .navbar .lead-form-title + .subtext a {
  color: #64b467;
  text-decoration: underline;
  cursor: w-resize;
}
body.page-template-template-find-a-pro .navbar .lead-form-title + .subtext a > * {
  color: #64b467;
  font-weight: inherit;
}
body.page-template-template-find-a-pro .navbar .lead-form-title + .subtext a:hover, body.page-template-template-find-a-pro .navbar .lead-form-title + .subtext a:hover > * {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  body.page-template-template-find-a-pro .navbar .lead-form-title + .subtext {
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  body.page-template-template-find-a-pro .navbar .lead-form-title + .subtext {
    clear: none;
    display: inline-block;
    float: left;
    padding-left: 1.8vw;
    margin-left: 2vw;
    border-left: 2px solid #64b467;
  }
}
@media screen and (max-width: 768px) {
  body.page-template-template-find-a-pro .navbar ul {
    text-align: center;
    width: 100%;
    display: flex;
    float: none !important;
  }
}
@media screen and (max-width: 600px) {
  body.page-template-template-find-a-pro .navbar ul {
    display: block;
  }
}
body.page-template-template-find-a-pro .navbar ul li {
  padding: 0;
  margin: 0 20px;
  line-height: 1.6em;
  margin-bottom: 0;
  font-weight: 200;
  display: inline-block;
  text-underline-position: under;
  border-bottom: 3px solid transparent;
  border-top: 3px solid transparent;
}
@media screen and (max-width: 600px) {
  body.page-template-template-find-a-pro .navbar ul li {
    width: 100%;
    clear: both;
    white-space: normal;
    float: left;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  body.page-template-template-find-a-pro .navbar ul li {
    flex-grow: 1;
    margin: 0 auto;
    padding: 0 20px;
  }
}
body.page-template-template-find-a-pro .navbar ul li.completed {
  color: #64b467;
}
body.page-template-template-find-a-pro .navbar ul li.completed a {
  color: inherit;
  font-weight: 500;
}
body.page-template-template-find-a-pro .navbar ul li > a:hover {
  color: #58595b;
}
body.page-template-template-find-a-pro .navbar ul li.selected {
  text-decoration: none;
  font-weight: bold;
  border-bottom: 3px solid;
  color: #000000;
}
body.page-template-template-find-a-pro .navbar ul li.selected a {
  color: inherit;
}
@media screen and (min-width: 768px) {
  body.page-template-template-find-a-pro .navbar .flexible-nav {
    display: flex;
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-template-find-a-pro .navbar .flexible-nav > .col {
    flex-grow: 1;
    float: none;
    width: auto;
    display: block;
  }
  body.page-template-template-find-a-pro .navbar .flexible-nav > .col:last-child {
    text-align: right;
  }
}
body.page-template-template-find-a-pro form .submit-form .user-state {
  font-size: 14px;
  letter-spacing: 0;
  padding-left: 3px;
  padding-right: 31px;
  overflow: hidden;
}
body.page-template-template-find-a-pro form .visible-on {
  display: none !important;
}
@media screen and (max-width: 768px) {
  body.page-template-template-find-a-pro form[data-current-step=step-1] .visible-on.step-1 {
    display: block !important;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-template-find-a-pro form[data-current-step=step-1] .visible-on.step-1 {
    display: inline-block !important;
  }
}
body.page-template-template-find-a-pro form[data-current-step=step-1] .visible-on.step-1.display-block {
  display: block !important;
}
@media screen and (max-width: 768px) {
  body.page-template-template-find-a-pro form[data-current-step=step-2] .visible-on.step-2 {
    display: block !important;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-template-find-a-pro form[data-current-step=step-2] .visible-on.step-2 {
    display: inline-block !important;
  }
}
body.page-template-template-find-a-pro form[data-current-step=step-2] .visible-on.step-2.display-block {
  display: block !important;
}
@media screen and (max-width: 768px) {
  body.page-template-template-find-a-pro form[data-current-step=step-3] .visible-on.step-3 {
    display: block !important;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-template-find-a-pro form[data-current-step=step-3] .visible-on.step-3 {
    display: inline-block !important;
  }
}
body.page-template-template-find-a-pro form[data-current-step=step-3] .visible-on.step-3.display-block {
  display: block !important;
}
@media screen and (max-width: 1200px) {
  body.page-template-template-find-a-pro form[data-current-step=step-3] .visible-on.step-3.subtext {
    display: block !important;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-template-find-a-pro form[data-current-step=step-3] .visible-on.step-3.subtext {
    text-align: left !important;
  }
}
body.page-template-template-find-a-pro form.homeowner-mode .only-visible.professional-view {
  display: none !important;
}
body.page-template-template-find-a-pro form.professional-mode .only-visible.homeowner-view {
  display: none !important;
}
body.page-template-template-find-a-pro form.professional-mode .only-visible.professional-view.expand.accordion-toggle + .icon {
  opacity: 0 !important;
}
body.page-template-template-find-a-pro form .spinner.loading-spinner {
  background: transparent !important;
}
body.page-template-template-find-a-pro form .spinner.loading-spinner:before {
  top: 0 !important;
}
@media screen and (max-width: 768px) {
  body.page-template-template-find-a-pro form .timing-selection {
    padding-top: 20px;
  }
}
body.page-template-template-find-a-pro form label {
  cursor: pointer;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  body.page-template-template-find-a-pro form label {
    font-size: 85%;
    margin-top: 0;
    padding-bottom: 0;
    display: block;
  }
}
body.page-template-template-find-a-pro form label.error {
  color: #ff2020;
  border-bottom: 0px solid red;
  padding-bottom: 0px;
  font-weight: bold;
  font-size: 10px;
  text-transform: uppercase;
  padding-top: 0 !important;
  margin-top: 0;
  display: block;
}
body.page-template-template-find-a-pro form label.button.lead-button .form-label:after, body.page-template-template-find-a-pro form label.timing-label .form-label:after {
  content: "" !important;
}
body.page-template-template-find-a-pro form label .form-label.sub {
  text-transform: uppercase;
  color: #58595b;
  font-weight: bold;
  font-size: 11px;
  margin-bottom: 3px;
  clear: both;
  line-height: normal;
  display: block;
}
body.page-template-template-find-a-pro form .formset-required label .form-label:after {
  content: "*";
  top: -0.4em;
  padding-left: 2px;
  display: inline-block;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  font-family: fontawesome;
  font-size: 82%;
}
body.page-template-template-find-a-pro form input[type=radio], body.page-template-template-find-a-pro form input[type=checkbox] {
  margin-right: 5px;
  top: -2px;
  left: -4px;
  position: relative;
  visibility: hidden;
}
body.page-template-template-find-a-pro form input[type=radio] + .input-shadow, body.page-template-template-find-a-pro form input[type=checkbox] + .input-shadow {
  height: 100%;
  padding: 0 10px;
  display: block;
  display: grid;
  align-items: center;
  align-content: center;
}
body.page-template-template-find-a-pro form input[type=radio] + .input-shadow:before, body.page-template-template-find-a-pro form input[type=checkbox] + .input-shadow:before {
  font-style: normal;
  height: 100%;
  line-height: 0.9em;
  color: #999999;
  font-family: fontawesome;
  content: "";
  /* .fa-circle-thin */
  -webkit-font-smoothing: antialiased;
  text-align: center;
  font-size: 20px;
  position: absolute;
  display: block;
  display: grid;
  align-items: start;
  visibility: visible;
  width: 16px;
  height: 16px;
  opacity: 1;
  padding: 0;
  border: none;
  background: transparent;
  align-items: center;
  align-content: center;
  text-align: center;
  padding: 0 10px;
}
body.page-template-template-find-a-pro form input[type=radio]:checked + .input-shadow + span, body.page-template-template-find-a-pro form input[type=checkbox]:checked + .input-shadow + span {
  font-weight: bold;
}
body.page-template-template-find-a-pro form input[type=radio]:checked + .input-shadow + span:after, body.page-template-template-find-a-pro form input[type=checkbox]:checked + .input-shadow + span:after {
  content: "" !important;
}
body.page-template-template-find-a-pro form input[type=radio]:checked + .input-shadow:before, body.page-template-template-find-a-pro form input[type=checkbox]:checked + .input-shadow:before {
  content: "";
  color: #64b467;
}
body.page-template-template-find-a-pro form .input {
  margin-bottom: 20px;
}
body.page-template-template-find-a-pro form textarea {
  min-height: 250px;
  padding: 8px !important;
  margin-top: 8px;
  border: 2px solid #cbcccc;
}
body.page-template-template-find-a-pro form input[type=text], body.page-template-template-find-a-pro form input[type=email], body.page-template-template-find-a-pro form input[type=tel], body.page-template-template-find-a-pro form input[type=number], body.page-template-template-find-a-pro form input.text-input, body.page-template-template-find-a-pro form textarea[type=text], body.page-template-template-find-a-pro form textarea[type=email], body.page-template-template-find-a-pro form textarea[type=tel], body.page-template-template-find-a-pro form textarea[type=number], body.page-template-template-find-a-pro form textarea.text-input {
  color: #000000;
  width: 100%;
  line-height: normal;
  outline-color: transparent;
  background: white;
  padding: 8px 3px 7px;
  box-shadow: none !important;
  margin-bottom: 2px;
  max-width: 100%;
}
body.page-template-template-find-a-pro form input[type=text][isvalid=false], body.page-template-template-find-a-pro form input[type=email][isvalid=false], body.page-template-template-find-a-pro form input[type=tel][isvalid=false], body.page-template-template-find-a-pro form input[type=number][isvalid=false], body.page-template-template-find-a-pro form input.text-input[isvalid=false], body.page-template-template-find-a-pro form textarea[type=text][isvalid=false], body.page-template-template-find-a-pro form textarea[type=email][isvalid=false], body.page-template-template-find-a-pro form textarea[type=tel][isvalid=false], body.page-template-template-find-a-pro form textarea[type=number][isvalid=false], body.page-template-template-find-a-pro form textarea.text-input[isvalid=false] {
  color: #ff2020;
  box-shadow: none !important;
}
body.page-template-template-find-a-pro form input[type=text].error, body.page-template-template-find-a-pro form input[type=email].error, body.page-template-template-find-a-pro form input[type=tel].error, body.page-template-template-find-a-pro form input[type=number].error, body.page-template-template-find-a-pro form input.text-input.error, body.page-template-template-find-a-pro form textarea[type=text].error, body.page-template-template-find-a-pro form textarea[type=email].error, body.page-template-template-find-a-pro form textarea[type=tel].error, body.page-template-template-find-a-pro form textarea[type=number].error, body.page-template-template-find-a-pro form textarea.text-input.error {
  color: #000000;
}
body.page-template-template-find-a-pro form input[type=text].error + .spinner.loading-spinner:before, body.page-template-template-find-a-pro form input[type=email].error + .spinner.loading-spinner:before, body.page-template-template-find-a-pro form input[type=tel].error + .spinner.loading-spinner:before, body.page-template-template-find-a-pro form input[type=number].error + .spinner.loading-spinner:before, body.page-template-template-find-a-pro form input.text-input.error + .spinner.loading-spinner:before, body.page-template-template-find-a-pro form textarea[type=text].error + .spinner.loading-spinner:before, body.page-template-template-find-a-pro form textarea[type=email].error + .spinner.loading-spinner:before, body.page-template-template-find-a-pro form textarea[type=tel].error + .spinner.loading-spinner:before, body.page-template-template-find-a-pro form textarea[type=number].error + .spinner.loading-spinner:before, body.page-template-template-find-a-pro form textarea.text-input.error + .spinner.loading-spinner:before {
  content: "" !important;
  top: 0 !important;
  font-family: fontawesome;
  background: none;
  font-style: normal;
  color: rgba(255, 0, 0, 0.64);
  filter: none;
  font-size: 16px;
}
body.page-template-template-find-a-pro form input[type=text].error:placeholder-shown + .spinner.loading-spinner, body.page-template-template-find-a-pro form input[type=email].error:placeholder-shown + .spinner.loading-spinner, body.page-template-template-find-a-pro form input[type=tel].error:placeholder-shown + .spinner.loading-spinner, body.page-template-template-find-a-pro form input[type=number].error:placeholder-shown + .spinner.loading-spinner, body.page-template-template-find-a-pro form input.text-input.error:placeholder-shown + .spinner.loading-spinner, body.page-template-template-find-a-pro form textarea[type=text].error:placeholder-shown + .spinner.loading-spinner, body.page-template-template-find-a-pro form textarea[type=email].error:placeholder-shown + .spinner.loading-spinner, body.page-template-template-find-a-pro form textarea[type=tel].error:placeholder-shown + .spinner.loading-spinner, body.page-template-template-find-a-pro form textarea[type=number].error:placeholder-shown + .spinner.loading-spinner, body.page-template-template-find-a-pro form textarea.text-input.error:placeholder-shown + .spinner.loading-spinner {
  opacity: 0 !important;
}
body.page-template-template-find-a-pro form input[type=text]:focus, body.page-template-template-find-a-pro form input[type=text]:active, body.page-template-template-find-a-pro form input[type=email]:focus, body.page-template-template-find-a-pro form input[type=email]:active, body.page-template-template-find-a-pro form input[type=tel]:focus, body.page-template-template-find-a-pro form input[type=tel]:active, body.page-template-template-find-a-pro form input[type=number]:focus, body.page-template-template-find-a-pro form input[type=number]:active, body.page-template-template-find-a-pro form input.text-input:focus, body.page-template-template-find-a-pro form input.text-input:active, body.page-template-template-find-a-pro form textarea[type=text]:focus, body.page-template-template-find-a-pro form textarea[type=text]:active, body.page-template-template-find-a-pro form textarea[type=email]:focus, body.page-template-template-find-a-pro form textarea[type=email]:active, body.page-template-template-find-a-pro form textarea[type=tel]:focus, body.page-template-template-find-a-pro form textarea[type=tel]:active, body.page-template-template-find-a-pro form textarea[type=number]:focus, body.page-template-template-find-a-pro form textarea[type=number]:active, body.page-template-template-find-a-pro form textarea.text-input:focus, body.page-template-template-find-a-pro form textarea.text-input:active {
  border-color: #000000;
}
body.page-template-template-find-a-pro form input[type=text], body.page-template-template-find-a-pro form input[type=email], body.page-template-template-find-a-pro form input[type=tel], body.page-template-template-find-a-pro form input[type=number], body.page-template-template-find-a-pro form textarea[type=text], body.page-template-template-find-a-pro form textarea[type=email], body.page-template-template-find-a-pro form textarea[type=tel], body.page-template-template-find-a-pro form textarea[type=number] {
  font-size: 17px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #000000;
  background-image: none !important;
}
body.page-template-template-find-a-pro form input[type=text].zip-field, body.page-template-template-find-a-pro form input[type=email].zip-field, body.page-template-template-find-a-pro form input[type=tel].zip-field, body.page-template-template-find-a-pro form input[type=number].zip-field, body.page-template-template-find-a-pro form textarea[type=text].zip-field, body.page-template-template-find-a-pro form textarea[type=email].zip-field, body.page-template-template-find-a-pro form textarea[type=tel].zip-field, body.page-template-template-find-a-pro form textarea[type=number].zip-field {
  padding-right: 10px !important;
  padding-left: 10px !important;
}
body.page-template-template-find-a-pro form input[type=text]:focus, body.page-template-template-find-a-pro form input[type=text]:active, body.page-template-template-find-a-pro form input[type=email]:focus, body.page-template-template-find-a-pro form input[type=email]:active, body.page-template-template-find-a-pro form input[type=tel]:focus, body.page-template-template-find-a-pro form input[type=tel]:active, body.page-template-template-find-a-pro form input[type=number]:focus, body.page-template-template-find-a-pro form input[type=number]:active, body.page-template-template-find-a-pro form textarea[type=text]:focus, body.page-template-template-find-a-pro form textarea[type=text]:active, body.page-template-template-find-a-pro form textarea[type=email]:focus, body.page-template-template-find-a-pro form textarea[type=email]:active, body.page-template-template-find-a-pro form textarea[type=tel]:focus, body.page-template-template-find-a-pro form textarea[type=tel]:active, body.page-template-template-find-a-pro form textarea[type=number]:focus, body.page-template-template-find-a-pro form textarea[type=number]:active {
  border-bottom: 2px solid #64b467 !important;
  background-color: rgba(255, 255, 255, 0.1);
  outline: 0 !important;
  box-shadow: none !important;
}
body.page-template-template-find-a-pro form input.zip-field {
  color: black;
  margin: 0;
  width: 100%;
  z-index: 99;
  height: auto;
  font-size: 16px;
  font-weight: 400;
  border-radius: 0px;
  line-height: normal;
  box-shadow: none;
  transition: 0.25s, all;
}
body.page-template-template-find-a-pro form .unavailable span {
  color: rgba(247, 59, 59, 0.93);
}
body.page-template-template-find-a-pro form .available {
  display: none;
}
body.page-template-template-find-a-pro form .available.west, body.page-template-template-find-a-pro form .available.east, body.page-template-template-find-a-pro form .available.both-regions {
  display: block;
}
body.page-template-template-find-a-pro form input[type=text] {
  max-width: 100%;
  float: left;
  min-height: 39px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  body.page-template-template-find-a-pro form input[type=text] {
    margin-right: 15px;
  }
}
body.page-template-template-find-a-pro form label p {
  color: white;
  padding-bottom: 5px;
  font-weight: 500;
}
body.page-template-template-find-a-pro form label.error p {
  color: white;
}
body.page-template-template-find-a-pro form .view-all {
  display: block;
  clear: both;
  float: left;
  margin-bottom: 15px;
  margin-top: -10px;
}
body.page-template-template-find-a-pro form .view-all span {
  color: white;
}
body.page-template-template-find-a-pro form .view-all i {
  margin-right: 5px;
  font-size: 16px;
  color: #64b467;
}
body.page-template-template-find-a-pro form.error [aria-invalid=true] {
  box-shadow: none !important;
  outline: 0;
  color: #ff2020;
  border: 1px solid rgba(255, 32, 32, 0.4);
}
body.page-template-template-find-a-pro form.error [aria-invalid=true] + .submit, body.page-template-template-find-a-pro form.error [aria-invalid=true] + [type=submit] {
  color: #ff2020;
  border-color: #ff2020;
}
body.page-template-template-find-a-pro .contain {
  max-width: 530px;
  float: none;
  margin: auto;
  max-width: 530px;
  max-width: 530px;
}
body.page-template-template-find-a-pro .contain.tiny {
  max-width: 300px;
}
body.page-template-template-find-a-pro p.contain {
  margin-left: 0;
  margin-right: 0;
}
body.page-template-template-find-a-pro details > summary {
  outline: none;
  background-image: none;
  -webkit-appearance: none;
}
body.page-template-template-find-a-pro details > summary::-webkit-details-marker {
  display: none;
}
body.page-template-template-find-a-pro .loading-spinner {
  position: absolute;
  top: 10px;
  right: -20px;
  z-index: 9;
  width: 20px;
  height: 20px;
  background: transparent !important;
}
@media screen and (min-width: 768px) {
  body.page-template-template-find-a-pro .button.continue, body.page-template-template-find-a-pro .modal .wrapper .continue.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .continue.button {
    min-width: 180px;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-template-find-a-pro .button.results-continue, body.page-template-template-find-a-pro .modal .wrapper .results-continue.button, body.page-template-template-find-a-pro .modal-loading-overlay .wrapper .results-continue.button {
    float: right;
  }
}
body.page-template-template-find-a-pro .results-list {
  overflow: hidden;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  body.page-template-template-find-a-pro .results-list > * {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
body.page-template-template-find-a-pro .results .card, body.page-template-template-find-a-pro .results .comments-area .comment-list .comment, .comments-area .comment-list body.page-template-template-find-a-pro .results .comment {
  border: 2px solid #cbcccc;
  background: white;
  margin-bottom: 5px;
  padding: 31px 24px;
  position: relative;
}
body.page-template-template-find-a-pro .results .card ul, body.page-template-template-find-a-pro .results .comments-area .comment-list .comment ul, .comments-area .comment-list body.page-template-template-find-a-pro .results .comment ul {
  margin: 0;
  list-style: none;
  padding: 0 0 15px;
}
body.page-template-template-find-a-pro .results .card ul li, body.page-template-template-find-a-pro .results .comments-area .comment-list .comment ul li, .comments-area .comment-list body.page-template-template-find-a-pro .results .comment ul li {
  padding-right: 10px;
  max-width: 65px;
  border: 1px solid #efefef;
  padding: 0;
  margin: 0 5px 0 0;
  width: 65px;
  height: 65px;
  vertical-align: top;
  display: inline-grid;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
body.page-template-template-find-a-pro .results .card ul li img, body.page-template-template-find-a-pro .results .comments-area .comment-list .comment ul li img, .comments-area .comment-list body.page-template-template-find-a-pro .results .comment ul li img {
  max-width: 100%;
  box-shadow: 0 0px 2px rgba(51, 51, 51, 0.25);
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 1.0000000000000001e+21;
  position: relative;
  cursor: help;
}
body.page-template-template-find-a-pro .results .card .button.pro-select, body.page-template-template-find-a-pro .results .comments-area .comment-list .comment .button.pro-select, .comments-area .comment-list body.page-template-template-find-a-pro .results .comment .button.pro-select {
  z-index: 99;
  position: relative;
  background-color: #64b467;
  color: white;
  border-color: #64b467;
  border-width: 1.5px;
  padding: 9px;
}
body.page-template-template-find-a-pro .results .card .button.pro-select:hover, body.page-template-template-find-a-pro .results .comments-area .comment-list .comment .button.pro-select:hover, .comments-area .comment-list body.page-template-template-find-a-pro .results .comment .button.pro-select:hover, body.page-template-template-find-a-pro .results .card .button.pro-select:focus, body.page-template-template-find-a-pro .results .comments-area .comment-list .comment .button.pro-select:focus, .comments-area .comment-list body.page-template-template-find-a-pro .results .comment .button.pro-select:focus {
  background-color: #000000;
  border-color: #000000;
}
body.page-template-template-find-a-pro .results .card .name, body.page-template-template-find-a-pro .results .comments-area .comment-list .comment .name, .comments-area .comment-list body.page-template-template-find-a-pro .results .comment .name {
  min-height: 95px;
  padding-right: 2em;
}
body.page-template-template-find-a-pro .results .card .name:after, body.page-template-template-find-a-pro .results .comments-area .comment-list .comment .name:after, .comments-area .comment-list body.page-template-template-find-a-pro .results .comment .name:after {
  content: "";
  height: 4.5px;
  width: 100%;
  max-width: 45px;
  background: black;
  position: absolute;
  bottom: 15px;
  left: 10px;
}
body.page-template-template-find-a-pro .results .card figure img, body.page-template-template-find-a-pro .results .comments-area .comment-list .comment figure img, .comments-area .comment-list body.page-template-template-find-a-pro .results .comment figure img {
  height: 30px;
  width: auto;
}
body.page-template-template-find-a-pro .results .card p, body.page-template-template-find-a-pro .results .comments-area .comment-list .comment p, .comments-area .comment-list body.page-template-template-find-a-pro .results .comment p {
  max-width: 100%;
  line-height: 1.4;
  font-size: 15px;
}
body.page-template-template-find-a-pro .results .card p a, body.page-template-template-find-a-pro .results .comments-area .comment-list .comment p a, .comments-area .comment-list body.page-template-template-find-a-pro .results .comment p a {
  text-decoration: none;
  position: relative;
  z-index: 99999999999999;
  display: table;
  width: auto;
  clear: both;
}
body.page-template-template-find-a-pro .results .card p a:hover, body.page-template-template-find-a-pro .results .comments-area .comment-list .comment p a:hover, .comments-area .comment-list body.page-template-template-find-a-pro .results .comment p a:hover {
  text-decoration: underline;
  color: #999999;
}
body.page-template-template-find-a-pro .results .card footer p, body.page-template-template-find-a-pro .results .comments-area .comment-list .comment footer p, .comments-area .comment-list body.page-template-template-find-a-pro .results .comment footer p {
  margin-bottom: 0;
  padding-bottom: 0;
}
body.page-template-template-find-a-pro .results .card footer p a, body.page-template-template-find-a-pro .results .comments-area .comment-list .comment footer p a, .comments-area .comment-list body.page-template-template-find-a-pro .results .comment footer p a {
  display: block;
  margin-top: 3px;
  letter-spacing: 0.75px;
}
body.page-template-template-find-a-pro .results .card.selected, body.page-template-template-find-a-pro .results .comments-area .comment-list .selected.comment, .comments-area .comment-list body.page-template-template-find-a-pro .results .selected.comment {
  border-color: #64b467;
}
body.page-template-template-find-a-pro .results .card-toggle-input {
  top: 0;
  position: absolute;
  z-index: 1;
  width: 100%;
  opacity: 0;
  visibility: visible;
  height: 100%;
  cursor: pointer;
  cursor: cell;
}
body.page-template-template-find-a-pro .results .card-toggle-input + .input-shadow {
  background: white;
  visibility: hidden;
  position: static;
  top: 10px;
  left: 10px;
  border: none;
  outline: none;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 0;
}
body.page-template-template-find-a-pro .results .card-toggle-input + .input-shadow:before {
  content: "";
  visibility: visible !important;
  width: 18px;
  height: 18px;
  font-family: fontawesome;
  position: absolute;
  opacity: 1;
  bottom: 0;
  top: 7.5px;
  left: 7.5px;
  padding: 0;
  border-radius: 0;
  display: grid;
  align-items: start;
  color: #cbcccc;
  font-size: 21px;
  text-align: center;
  line-height: 0.9em;
  background: transparent;
  border: none;
  -webkit-font-smoothing: antialiased;
}
body.page-template-template-find-a-pro .results .card-toggle-input:checked {
  cursor: pointer;
}
body.page-template-template-find-a-pro .results .card-toggle-input:checked + .input-shadow:before {
  color: #64b467;
  content: "";
}
body.page-template-template-find-a-pro .results .card-toggle-input:checked + .input-shadow:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
  visibility: visible;
  outline: 3px solid #64b467;
}
@media screen and (min-width: 768px) {
  body.page-template-template-find-a-pro .results .card-toggle-input:checked + .input-shadow:after {
    transition: all 0.2s ease;
  }
}
body.page-template-template-find-a-pro .results .card-toggle-input:checked + .input-shadow + footer label {
  border-width: 1.5px;
  border-color: #cbcccc;
  background-color: white;
  color: #000000;
}
body.page-template-template-find-a-pro .results .card-toggle-input:checked + .input-shadow + footer label:hover {
  background-color: #cbcccc;
  color: #000000;
}
body.page-template-template-find-a-pro .results .card-toggle-input:checked + .input-shadow + footer label > .default {
  display: none;
}
body.page-template-template-find-a-pro .results .card-toggle-input:checked + .input-shadow + footer label > .selected {
  display: block !important;
}
body .results-bar.bottom {
  z-index: 999999999999999;
  color: white;
  background: black;
  position: fixed !important;
  width: 100%;
  bottom: 0;
  align-items: start;
  display: flex;
  height: 40px;
  box-sizing: border-box;
  flex-flow: row;
  align-items: center;
  padding: 18px 25px;
  height: auto;
  text-transform: uppercase;
}
body .results-bar.bottom > * {
  padding: 0 !important;
  display: block !important;
  color: white;
}
body .results-bar.bottom > * * {
  padding: 0;
}
body .results-bar.bottom > * h6 {
  color: inherit;
}
body .results-bar.bottom > * h6 + p {
  display: inline-block;
  text-align: left;
  font-size: 12px;
  padding-top: 7px;
  border-top: 1.5px solid #64b467;
  margin-top: 7px;
  width: auto;
}
body .results-bar.bottom .continue {
  text-transform: uppercase;
  margin: 0;
  position: relative;
  border: none;
  background: black;
  width: 100%;
  height: 100%;
  display: inline-block;
  align-items: center;
  padding: 20px 0;
}
body .results-bar[disabled] + .results-list {
  padding-top: 40px !important;
}
body .results-group {
  border-top: 18px solid white;
  box-shadow: inset 0 8px 16px rgba(170, 170, 170, 0.08);
  position: relative;
}
body .results-group .header {
  font-weight: bold;
  font-size: 24px;
  font-weight: 500;
}
body .results-group .header em {
  font-size: 14px;
  text-underline-position: under;
  padding-left: 17px;
  border-left: 1px solid #444444;
  margin-left: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #222;
}
body .results-group button.accordion-toggle.expand {
  display: inline-block;
  display: grid;
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  margin: auto;
  max-width: 100%;
  width: 100%;
  bottom: 0;
  height: 35px;
  align-items: center;
  opacity: 0.325;
  border-width: 2px;
  z-index: 9;
}
@media screen and (min-width: 768px) {
  body .results-group button.accordion-toggle.expand {
    right: 9px;
    width: 182px;
  }
}
body .results-group button.accordion-toggle.expand:hover {
  opacity: 1;
}
body .results-group.active button {
  display: inline-block !important;
}
body .results-group.active .trigger {
  display: none;
}
body .results-group.active button.accordion-toggle.expand {
  display: none !important;
}
body .results-group:first-child:last-child .next {
  display: none !important;
}
body .results-group:first-child:last-child .accordion-toggle {
  cursor: default !important;
}

/**
 * MOBILE ONLY
 */
@media screen and (max-width: 768px) {
  body.page-template-template-find-a-pro #findapro-form .sequence-step#fap-sequence-step-2 {
    padding: 0;
  }
  body.page-template-template-find-a-pro #findapro-form .sequence-step#fap-sequence-step-2 > * {
    padding: 0;
  }
  body.page-template-template-find-a-pro #findapro-form .sequence-step .form-image {
    max-height: 200px;
    background-position: center 20%;
    padding: 0;
    border-top: 2px solid #ccc;
    background-blend-mode: color-burn;
    background-color: #00000052;
    border-bottom: 2px solid #ccc;
  }
  body.page-template-template-find-a-pro #findapro-form .featured-image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: color;
    height: 100%;
    max-height: none;
  }
  body.page-template-template-find-a-pro #findapro-form .modal, body.page-template-template-find-a-pro #findapro-form .modal-loading-overlay {
    position: relative !important;
    overflow: visible;
    max-height: none !important;
    height: auto;
    margin-top: 29px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  body.page-template-template-find-a-pro #findapro-form .modal, body.page-template-template-find-a-pro #findapro-form .modal-loading-overlay {
    height: 100vh;
    overflow: auto;
    margin: 10px auto;
    padding: 20px 10px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  body.page-template-template-find-a-pro #findapro-form .modal .modal-inner, body.page-template-template-find-a-pro #findapro-form .modal-loading-overlay .modal-inner, body.page-template-template-find-a-pro #findapro-form .modal .wrapper, body.page-template-template-find-a-pro #findapro-form .modal-loading-overlay .wrapper {
    position: absolute !important;
    overflow: visible;
    max-height: none !important;
    height: auto !important;
    top: 0 !important;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  body.page-template-template-find-a-pro #findapro-form .modal .modal-inner, body.page-template-template-find-a-pro #findapro-form .modal-loading-overlay .modal-inner, body.page-template-template-find-a-pro #findapro-form .modal .wrapper, body.page-template-template-find-a-pro #findapro-form .modal-loading-overlay .wrapper {
    position: relative !important;
  }
}
/* GRID SUPPORT */
@supports (display: grid) {
  body.page-template-template-find-a-pro .navbar .flexible-nav > .col:last-child {
    align-items: center;
    display: grid;
  }
  @media screen and (min-width: 600px) {
    body.page-template-template-find-a-pro .navbar .flexible-nav > .col:last-child {
      white-space: nowrap;
    }
  }
  body.page-template-template-find-a-pro form input[type=radio], body.page-template-template-find-a-pro form input[type=checkbox] {
    top: 0;
    position: absolute;
  }
  body.page-template-template-find-a-pro form input[type=radio] + .input-shadow, body.page-template-template-find-a-pro form input[type=checkbox] + .input-shadow {
    top: 0;
  }
  body.page-template-template-find-a-pro form input[type=radio] + .input-shadow:before, body.page-template-template-find-a-pro form input[type=checkbox] + .input-shadow:before {
    width: auto;
    height: auto;
    align-items: center;
    line-height: 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
  }
  body.page-template-template-find-a-pro form input[type=radio] + .input-shadow + span, body.page-template-template-find-a-pro form input[type=checkbox] + .input-shadow + span {
    padding-left: 25px;
  }
  body.page-template-template-find-a-pro form output.counter {
    opacity: 0;
    position: absolute;
    right: 0;
    height: auto !important;
    font-size: 11px;
    color: #ccc;
    border-radius: 0;
    width: 100%;
    padding-left: 0 !important;
    white-space: nowrap;
    font-weight: bold;
    align-content: center;
    min-height: 100%;
    max-height: 100%;
    letter-spacing: normal;
    line-height: normal;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
    line-height: 1.2;
    padding: 1.1em 2px 0 !important;
    transition: opacity 0.3s ease-in-out;
  }
  body.page-template-template-find-a-pro form output.counter.active {
    opacity: 1;
  }
  body.page-template-template-find-a-pro form output.counter .num {
    font-size: 3vw;
    letter-spacing: 3px;
    top: -7px;
    position: relative;
    font-weight: normal;
    color: #69b45f;
    padding-bottom: 4px;
  }
  body.page-template-template-find-a-pro form output.counter .after {
    position: relative;
    padding-top: 5px;
    font-size: 13px;
    letter-spacing: -1px !important;
    top: 3px;
    left: -1px;
    font-weight: 500;
    text-align: left !important;
    color: white;
  }
  body.page-template-template-find-a-pro form output.counter .after small {
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 9px;
  }
  body.page-template-template-find-a-pro .start-over {
    font-size: 12px;
    font-weight: bold;
    border-top: 1px solid #ccc;
    clear: both;
    margin-top: 0 !important;
    max-width: 1070px;
    z-index: 1 !important;
    border: none;
    padding-bottom: 0 !important;
    align-items: center !important;
    text-align: center;
    left: 0;
    position: absolute;
    transform: none;
    display: grid !important;
    padding: 0 9px;
    background: none;
  }
  body.page-template-template-find-a-pro .start-over > a {
    height: 16px;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 10px !important;
    left: 0;
    border: none !important;
    filter: invert(1);
    transition: all 0.3s ease !important;
    display: grid !important;
  }
  body.page-template-template-find-a-pro .start-over > a > i {
    position: absolute;
    bottom: 0;
    display: grid;
    align-items: center;
    top: 0;
    width: 15px;
    height: auto;
    text-align: center;
    padding: 0;
    font-size: 16px;
    line-height: 0.9;
    color: #aaa;
    padding-left: 3px;
  }
  body.page-template-template-find-a-pro .start-over:hover > a {
    left: 5px !important;
    filter: invert(0);
    padding: 0px !important;
  }
  body.page-template-template-find-a-pro .start-over:hover > a:after {
    display: none;
  }
  body.page-template-template-find-a-pro .start-over span {
    line-height: 0 !important;
  }
  @media screen and (min-width: 768px) {
    body.page-template-template-find-a-pro .start-over {
      display: block !important;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      height: 18px;
      margin: auto !important;
    }
  }
  body.page-template-template-find-a-pro nav#find-a-pro-crumbs {
    overflow: visible;
    z-index: 9999999;
    position: relative;
  }
  body.page-template-template-find-a-pro #main {
    overflow: visible !important;
  }
}
.ie .input-shadow {
  left: 0 !important;
  position: absolute !important;
  top: 10px !important;
  line-height: 29px !important;
  bottom: 0 !important;
}
.ie .accordion-set .input-shadow {
  left: -3px !important;
  height: 20px !important;
}
.ie .results-group .input-shadow {
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 100% !important;
  width: 100% !important;
  visibility: visible !important;
  background: transparent !important;
}
.ie .results-group .card-toggle-input:checked + .input-shadow {
  outline: 2px solid #64b467;
}
.ie label span.form-label {
  padding-left: 20px !important;
}
.ie label.timing-label .form-label {
  line-height: 39px !important;
}
.ie body.page-template-template-find-a-pro .start-over {
  left: 27px !important;
  position: absolute !important;
  top: 41% !important;
}
.ie body.page-template-template-find-a-pro .page-content .wrapper {
  position: relative !important;
  height: auto !important;
}

/* Admin */
/*-------------------------------------------------------*\
    Frontend Admin User Interface
/*-------------------------------------------------------*/
body.hide-admin-bar #wpadminbar {
  top: -29px;
  transition: top 0.35s ease;
}
body.hide-admin-bar #wpadminbar:after {
  content: "";
  display: block;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 12px;
}
body.hide-admin-bar #wpadminbar:hover {
  top: 0 !important;
  opacity: 1;
  overflow: visible;
}
body.hide-admin-bar #wpadminbar:hover:after {
  height: 0;
}
body.hide-admin-bar #wpadminbar #wp-admin-bar-edit a:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 20px;
  width: auto;
  content: "";
  font-family: fontawesome;
  padding: 5px 12px;
  text-align: center;
  line-height: normal;
  height: auto;
  border-radius: 0 0 6px 6px;
  left: 1px;
  position: fixed;
}

html #wpadminbar {
  overflow: hidden;
}
html #wpadminbar:hover {
  overflow: visible;
}
html.admin-bar-present {
  margin-top: 0 !important;
}
html #wpadminbar {
  opacity: 0.3;
  top: -29px;
  transition: top 0.35s ease;
  transition-property: top opacity background-color;
}
@media screen and (max-width: 768px) {
  html #wpadminbar {
    top: -40px !important;
    opacity: 0;
  }
}
html #wpadminbar:hover {
  top: 0 !important;
  opacity: 1;
}
html #wpadminbar:after {
  content: "";
  opacity: 0;
  height: 15px;
  width: 100%;
  left: 0;
  position: fixed;
  top: 0;
  cursor: pointer;
}

html #wpadminbar {
  overflow: hidden;
}
html #wpadminbar:hover {
  overflow: visible;
}
html.admin-bar-present {
  margin-top: 0 !important;
}
html #wpadminbar {
  opacity: 0.3;
  top: -29px;
  transition: top 0.35s ease;
  transition-property: top opacity background-color;
}
@media screen and (max-width: 768px) {
  html #wpadminbar {
    top: -40px !important;
    opacity: 0;
  }
}
html #wpadminbar:hover {
  top: 0 !important;
  opacity: 1;
}
html #wpadminbar:after {
  content: "";
  opacity: 0;
  height: 15px;
  width: 100%;
  left: 0;
  position: fixed;
  top: 0;
  cursor: pointer;
}

/*-------------------------------------------------------*\
    Front-End Admin Styles
/*-------------------------------------------------------*/
html #wpadminbar {
  overflow: hidden;
}
html #wpadminbar:hover {
  overflow: visible;
}
html.admin-bar-present {
  margin-top: 0 !important;
}
html #wpadminbar {
  opacity: 0.3;
  top: -29px;
  transition: top 0.35s ease;
  transition-property: top opacity background-color;
}
@media screen and (max-width: 768px) {
  html #wpadminbar {
    top: -40px !important;
    opacity: 0;
  }
}
html #wpadminbar:hover {
  top: 0 !important;
  opacity: 1;
}
html #wpadminbar:after {
  content: "";
  opacity: 0;
  height: 15px;
  width: 100%;
  left: 0;
  position: fixed;
  top: 0;
  cursor: pointer;
}

body.hide-admin-bar #wpadminbar {
  top: -29px;
  transition: top 0.35s ease;
}
body.hide-admin-bar #wpadminbar:after {
  content: "";
  display: block;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 12px;
}
body.hide-admin-bar #wpadminbar:hover {
  top: 0 !important;
  opacity: 1;
  overflow: visible;
}
body.hide-admin-bar #wpadminbar:hover:after {
  height: 0;
}
body.hide-admin-bar #wpadminbar #wp-admin-bar-edit a:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 20px;
  width: auto;
  content: "";
  font-family: fontawesome;
  padding: 5px 12px;
  text-align: center;
  line-height: normal;
  height: auto;
  border-radius: 0 0 6px 6px;
  left: 1px;
  position: fixed;
}

body {
  font-family: "Gotham A", helvetica, arial, sans-serif;
  color: #000000;
  vertical-align: baseline;
  line-height: 1.2em;
  -webkit-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
}
body.underlay-visible {
  right: 250px;
  position: relative;
  -webkit-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
}

a:link, a:visited, a:link span, a:visited span {
  color: #000000;
  text-underline-position: under;
}
a:active, a:hover {
  text-decoration: none;
}

main {
  overflow: hidden;
}

.underlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -1000;
  opacity: 0;
  -webkit-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
}
.underlay.visible {
  z-index: 1000;
  opacity: 0.8;
  -webkit-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
}

.social,
.social-icon-block {
  display: block;
  margin: 0;
  padding: 0;
  width: auto;
}
.social ul.icons,
.social-icon-block ul.icons {
  overflow: hidden;
  list-style: none;
  float: left;
  margin: 0 20px 0 0;
}
.social ul.icons li,
.social-icon-block ul.icons li {
  list-style: none;
  float: left;
  display: inline-block;
  padding-left: 0;
  text-indent: 0;
}
.social ul.icons li:before,
.social-icon-block ul.icons li:before {
  content: " ";
}
.social ul.icons li a,
.social-icon-block ul.icons li a {
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0 10px 0 0;
  overflow: hidden;
  text-decoration: none;
  background-color: #fff;
  border-radius: 50%;
}
.social ul.icons li a i,
.social-icon-block ul.icons li a i {
  width: 100%;
  text-align: center;
  line-height: 1.6em;
  color: #000000;
}
.social ul.icons li a:hover,
.social-icon-block ul.icons li a:hover {
  background-color: #000000;
  text-decoration: none;
}

header {
  width: 100%;
  background: #f5f5f5;
  padding: 0;
  box-sizing: border-box;
  z-index: 999;
  -webkit-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
}
@media screen and (min-width: 768px) {
  header .logo {
    padding-right: 23px;
    padding-top: 0px;
  }
}
@media screen and (max-width: 1200px) {
  header .logo {
    padding-left: 2vw;
  }
  header .logo img {
    width: 200px;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  header .logo {
    position: relative;
    left: 10px;
  }
  header .logo img {
    max-width: 110px;
  }
}
@media screen and (min-width: 768px) {
  header .logo a:hover {
    filter: saturate(180%) brightness(80%);
  }
}
header.headroom--not-top, header.headroom--pinned.headroom--top, header.headroom--not-top.headroom--pinned {
  z-index: 8999;
  background: #fff;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
}
header.headroom--not-top.headroom--unpinned {
  -webkit-transform: translateY(-110%);
  -ms-transform: translateY(-110%);
  transform: translateY(-110%);
}

.logo {
  padding: 0;
  margin: 0;
}
.logo h1 {
  padding: 0;
  margin: 20px 0;
}
.logo h1 a img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.search-wrap .searchform {
  width: 100%;
}
.search-wrap .searchform div {
  width: 100%;
}
.search-wrap .searchform div #s {
  width: 100%;
}

.shadow {
  box-shadow: 0 10px 38px rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.top-shadow {
  box-shadow: 0 -15px 38px rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.hidden-lg {
  display: none;
}

.wpb_widgetised_column ul {
  margin-left: 0;
  padding: 0;
}

.widget_nav_menu ul {
  margin: 0 0 30px 0;
  padding: 0;
}
.widget_nav_menu ul li {
  list-style: none;
}
.widget_nav_menu ul li a:link, .widget_nav_menu ul li a:visited {
  display: block;
  padding: 10px 10px 10px 40px;
  border-bottom: 1px #fff solid;
  background-color: #99cc76;
  color: #fff;
  font-family: "Gotham A", helvetica, arial, sans-serif;
  font-weight: normal;
  text-decoration: none;
  -webkit-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
}
.widget_nav_menu ul li a:active, .widget_nav_menu ul li a:hover {
  color: #99cc76;
  background-color: #fff;
  padding-left: 50px;
  -webkit-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
}
.widget_nav_menu ul li.current_page_item a, .widget_nav_menu ul li:not(.current-page-parent).current-page-ancestor a {
  color: #fff;
  background-color: #000000;
  padding-left: 50px;
  -webkit-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
}
.widget_nav_menu ul li a.current-page {
  color: #fff;
  background-color: #000000;
  padding-left: 50px;
  -webkit-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -moz-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -ms-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  -o-transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition: all 0.25s cubic-bezier(0, 0.32, 0, 1.12);
  transition-delay: 0s;
}

.breadcrumb ul {
  list-style: none;
  margin: 10px 0 0 0;
}
.breadcrumb ul li {
  display: inline-block;
  padding: 0;
  margin: 0;
  text-indent: 0;
}
.breadcrumb ul li::before {
  content: " ";
}
.breadcrumb ul li::after {
  content: " > ";
  color: #999999;
  font-size: 13px;
}
.breadcrumb ul li:last-of-type::after {
  content: " ";
}
.breadcrumb ul li a {
  color: #999999;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Gotham A", helvetica, arial, sans-serif;
}
.breadcrumb ul li a:active, .breadcrumb ul li a:hover {
  text-decoration: underline;
}

/* Blog, Search, Archives */
.blog .content,
.single .content,
.archive .content,
.category .content,
.search .content {
  max-width: 1240px;
  margin: 0 auto;
  text-align: left;
}
.blog .content .page-header .vc_wp_custommenu .widget_nav_menu li a,
.single .content .page-header .vc_wp_custommenu .widget_nav_menu li a,
.archive .content .page-header .vc_wp_custommenu .widget_nav_menu li a,
.category .content .page-header .vc_wp_custommenu .widget_nav_menu li a,
.search .content .page-header .vc_wp_custommenu .widget_nav_menu li a {
  padding-left: 55px;
  padding-right: 55px;
}
.blog .content .post-date,
.single .content .post-date,
.archive .content .post-date,
.category .content .post-date,
.search .content .post-date {
  font-size: 1.2em;
  color: #64b467;
}
.blog .content h3 a,
.single .content h3 a,
.archive .content h3 a,
.category .content h3 a,
.search .content h3 a {
  line-height: 1.2em;
}
.blog .content .entry-meta,
.single .content .entry-meta,
.archive .content .entry-meta,
.category .content .entry-meta,
.search .content .entry-meta {
  border-top: 1px #ccc solid;
  border-bottom: 1px #ccc solid;
  padding: 5px 0;
  margin: 10px 0;
}
.blog .content .blog-sidebar,
.single .content .blog-sidebar,
.archive .content .blog-sidebar,
.category .content .blog-sidebar,
.search .content .blog-sidebar {
  margin-top: 35px;
  border-left: 1px #ccc solid;
}
.blog .content .blog-sidebar .wpb_widgetised_column .searchform,
.single .content .blog-sidebar .wpb_widgetised_column .searchform,
.archive .content .blog-sidebar .wpb_widgetised_column .searchform,
.category .content .blog-sidebar .wpb_widgetised_column .searchform,
.search .content .blog-sidebar .wpb_widgetised_column .searchform {
  float: none;
  display: block;
  padding: 0;
  margin: 35px 0;
}
.blog .content .blog-sidebar .wpb_widgetised_column .searchform #s,
.single .content .blog-sidebar .wpb_widgetised_column .searchform #s,
.archive .content .blog-sidebar .wpb_widgetised_column .searchform #s,
.category .content .blog-sidebar .wpb_widgetised_column .searchform #s,
.search .content .blog-sidebar .wpb_widgetised_column .searchform #s {
  border: 1px #ccc solid;
  border-radius: 0;
  background: #f1f1f1;
  color: #777;
  margin-right: 0;
}
.blog .content .blog-sidebar .wpb_widgetised_column .searchform div,
.single .content .blog-sidebar .wpb_widgetised_column .searchform div,
.archive .content .blog-sidebar .wpb_widgetised_column .searchform div,
.category .content .blog-sidebar .wpb_widgetised_column .searchform div,
.search .content .blog-sidebar .wpb_widgetised_column .searchform div {
  background-image: none;
  float: none;
  display: block;
}

.site-footer {
  background-image: url("assets/img/plygem-watermark.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left top;
}
.site-footer .footer-logo {
  position: relative;
  display: table;
  height: 200px;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-logo {
    height: 100px;
    margin: 10px auto;
  }
}
.site-footer .footer-logo a {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}
.site-footer .footer-logo a img {
  max-width: 175px;
}
.site-footer .footer-nav {
  display: table;
  height: 300px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-nav {
    height: auto;
  }
}
.site-footer .footer-nav nav {
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .site-footer .footer-nav nav {
    padding-left: 10%;
  }
}
.site-footer .copyright p {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .site-footer .copyright p {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .site-footer .bottom-nav {
    text-align: center;
  }
}

#comments {
  display: none;
}

.clear {
  clear: both;
}

.hide {
  dislay: none;
}

/*# sourceMappingURL=style.css.map */
/*--------Sweepstakes Forms--------------*/

.sweepstakes_form ul.gform_fields li.gfield {
    padding-right: 0px !important;
}
.sweepstakes_form ul.gform_fields li.gfield input {
    width: 100%;
}
.sweepstakes_form .sweepstakes_firstname, .sweepstakes_form .sweepstakes_lastname, .sweepstakes_form .sweepstakes_businessname, .sweepstakes_form .sweepstakes_email, .sweepstakes_form .sweepstakes_zipcode, .sweepstakes_form .sweepstakes_phonenumber {
    width: 49%;
    clear: inherit !important;
    float: left;
}
.sweepstakes_form .sweepstakes_firstname, .sweepstakes_form .sweepstakes_businessname, .sweepstakes_form .sweepstakes_zipcode {
    margin-right: 2%;
}
.sweepstakes_form .sweepstakes_zipcode span, .sweepstakes_form .sweepstakes_zipcode span input {
    width: 100% !important;
    padding-right: 0 !important;
}
.sweepstakes_form .sweepstakes_iama_dropdown, .sweepstakes_form .sweepstakes_iama_dropdown select {
    width: 100%;
}
.sweepstakes_form .sweepstakes_iama_dropdown select {
    width: 100% !important;
}
}
.sweepstakes_form .sweepstakes_builder_where, .sweepstakes_form .sweepstakes_contractor_html_where, .sweepstakes_form .sweepstakes_receiveInformation {
    width: 100%;
}
.sweepstakes_form .sweepstakes_builder_storename, .sweepstakes_form .sweepstakes_builder_storecity, .sweepstakes_form .sweepstakes_form .sweepstakes_builder_storestate, .sweepstakes_form .sweepstakes_form .sweepstakes_contractor_storename, .sweepstakes_form .sweepstakes_contractor_storecity, .sweepstakes_form .sweepstakes_contractor_storestate {
    width: 50%;
}
..sweepstakes_form .sweepstakes_builder_sectionend, .sweepstakes_form .sweepstakes_contractor_sectionstart, .sweepstakes_form .sweepstakes_contractor_sectionend, .sweepstakes_form .sweepstakes_other_sectionstart {
    clear: both;
    width: 100%;
}
.sweepstakes_form .sweepstakes_iama_dropdown select {
    margin-left: 0px !important;
    border-width: 1px !important;
    min-height: 31px;
    -webkit-appearance: menulist !important;
}
.sweepstakes_form .sweepstakes_iama_dropdown {
    margin-bottom: 40px !important;
}
.sweepstakes_form .sweepstakes_receiveInformation input[type=checkbox] {
    margin-top: 0px !important;
    margin-right: 15px;
}
.sweepstakes_form .sweepstakes_receiveInformation {
    margin-top: 40px !important;
}
.sweepstakes_form .sweepstakes_receiveInformation>label {
    font-weight: 700;
}
.sweepstakes_form .sweepstakes_builder_where,.sweepstakes_form  .sweepstakes_contractor_html_where{
    /*margin-top: 40px !important;*/
    font-weight: 700;
    margin-bottom: 25px !important;
}
.sweepstakes_form .sweepstakes_builder_storename, .sweepstakes_form .sweepstakes_contractor_storename,.sweepstakes_form .sweepstakes_contractor_storecity,.sweepstakes_form .sweepstakes_contractor_storestate, .sweepstakes_form .sweepstakes_builder_storecity, .sweepstakes_form .sweepstakes_contractor__storecity,.sweepstakes_form .sweepstakes_contractor__storestate .sweepstakes_form .sweepstakes_builder_storestate {
    width: 100%
}
.sweepstakes_form .sweepstakes_builder_storename > label,.sweepstakes_form .sweepstakes_contractor_storename > label, .sweepstakes_form .sweepstakes_builder_storecity>label,.sweepstakes_form .sweepstakes_contractor_storecity>label, .sweepstakes_form .sweepstakes_builder_storestate>label,.sweepstakes_form .sweepstakes_contractor_storestate>label {
    clear: inherit;
    float: left;
    display: block;
    width: 135px !important;
    padding-left: 20px !important;
}
.sweepstakes_form .sweepstakes_builder_storename div input, .sweepstakes_form .sweepstakes_builder_storecity div input, .sweepstakes_form .sweepstakes_builder_storestate div input {
    width: 50% !important;
}
.sweepstakes_form .sweepstakes_contractor_storename div input, .sweepstakes_form .sweepstakes_contractor_storecity div input, .sweepstakes_form .sweepstakes_contractor_storestate div input {
    width: 50% !important;
}
.sweepstakes_form .sweepstakes_receiveInformation>div {
    margin-left: 20px !important;
    margin-top: 0px !important;
}
@media only screen and (max-width: 767px) {
    .sweepstakes_form .sweepstakes_firstname, .sweepstakes_form .sweepstakes_lastname, .sweepstakes_form .sweepstakes_businessname, .sweepstakes_form .sweepstakes_email, .sweepstakes_form .sweepstakes_zipcode, .sweepstakes_form .sweepstakes_phonenumber {
        width: 100%;
        float: none;
    }
}
/*--------Sweepstakes Forms End--------------*/

/*** for siding slider start***/
button:focus,
a:focus,
a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  outline: none !important;
}

select::-moz-focusring {
  outline: none !important;
}

.form-group {
  position: relative;
  margin: 15px 0 30px;
}

ul, ol {
  list-style: none;
}

html,
body {
  font-family: "Gotham A";
  font-size: 13px;
  overflow-x: hidden;
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #1C1D26;
}

@media only screen and (min-width: 1280px) {
  html,
  body {
    font-size: 15px;
  }
}

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

html,
body,
ul {
  margin: 0;
  padding: 0;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none !important;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

button {
  border: none;
}

button:focus {
  outline: none;
}

p {
  margin: 0;
  padding: 0;
}

.banner-inner {
  min-height: 540px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 0;
  padding-bottom: 70px;
  background-size: cover;
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .banner-inner {
    padding-bottom: 0;
  }
}

.banner-inner .slider-box {
  display: -ms-grid;
  display: grid;
  padding-bottom: 0;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -ms-flex-line-pack: end;
      align-content: end;
  float: none;
  padding: 2.5em 0 !important;
}

.banner-inner .slider-box h1 {
  font-size: 42.5px;
  text-shadow: 0 0 10px #000;
  font-family: 'Gotham A';
  font-weight: 500 !important;
  line-height: 1.33;
  margin-bottom: 0;
  padding-bottom: 1.3vw;
}

.banner-inner .slider-box h1 {
  padding-bottom: 8px;
}

.banner-inner .slider-box p {
  text-shadow: 0 0 10px #000;
}

.banner-inner .slider-box p {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.65em;
  padding-bottom: 20px;
}

.banner-inner .slider-box .btnWrapper {
  margin: 20px 0 0;
}

.banner-inner .slider-box .btnWrapper a {
  padding: 25px;
  color: #fff;
  border-color: #292b2c;
  border-width: 2.5px;
  border-style: solid;
  display: inline-block;
  padding: 8.5px 15px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  border-radius: 0;
  background: transparent;
  position: relative;
  -webkit-transition: background-color 0.1s ease-in;
  transition: background-color 0.1s ease-in;
  border-color: #fff !important;
  min-width: 140px;
  padding: 8.5px 25px;
  letter-spacing: 0.1em;
}

.banner-inner .slider-box .btnWrapper a:hover {
  color: #ffffff;
  background-color: #fff;
  border-color: #fff;
}

.banner-inner .slider-box .btnWrapper a:hover {
  color: #292b2c !important;
}

.banner-inner.white p {
  color: inherit;
}

@media only screen and (min-width: 768px) {
  .banner-inner {
    font-size: 1.03125em;
  }
}

.slider .slick-arrow {
  position: absolute;
  bottom: 15px;
  right: 50px;
  z-index: 999;
  font-family: "Font Awesome 5 Pro";
  font-size: 0;
  padding: 21px 26.5px;
  background: rgba(238, 238, 238, 0.3);
  border: none;
  min-width: 0;
}

.slider .slick-arrow::before {
  font-size: 24px;
  color: #ffffff;
  padding: 0 !important;
  margin-right: 0px;
  line-height: normal;
}

.slider .slick-arrow.slick-prev {
  right: 90px;
}

.slider .slick-arrow.slick-prev:before {
  content: '\f053';
}

@media only screen and (min-width: 992px) {
  .slider .slick-arrow.slick-prev {
    right: 126px;
  }
}

.slider .slick-arrow.slick-next {
  right: 15px;
}

.slider .slick-arrow.slick-next:before {
  content: '\f054';
}

@media only screen and (min-width: 992px) {
  .slider .slick-arrow.slick-next {
    right: 50px;
  }
}

@media only screen and (min-width: 992px) {
  .slider .slick-arrow {
    bottom: 50px;
  }
}

/*** for siding slider end ***/
/*** IE Fixes windows animation Start***/
.img-outer {
      max-width: 400px;
      margin: 0 auto;
      position: relative;
    }

    .img-outer.image-active .ff-canvas {
      opacity: 0 !important;
    }

    .img-outer.image-active .ff-container .ff-canvas.ff-canvas-ready+.ff-image.ff-image-ready {
      opacity: 1 !important;
    }

    .img-hover-loading {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      display: none;
      z-index: 2;
      align-items: center;
      justify-content: center;
    }

    .img-hover-loading .loader {
      border: 6px solid #010000;
      border-radius: 50%;
      border-top: 6px solid #65b360;
      width: 40px;
      height: 40px;
      -webkit-animation: spin 2s linear infinite;
      animation: spin 2s linear infinite;
    }

    @-webkit-keyframes spin {
      0% {
        -webkit-transform: rotate(0deg);
      }

      100% {
        -webkit-transform: rotate(360deg);
      }
    }

    @keyframes spin {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

    .img-outer.image-hover .img-hover-loading {
      display: flex;
    }

    .img-outer.image-active .img-hover-loading {
      display: none;
    }
    img.my_class_2.freezeframe.ff-setup.ff-image.ff-image-ready {
      width: 100% !important;
      max-height: 200px !important;
    }
    .ff-container .ff-canvas {
      width: 100% !important;
      height: 100% !important;
    }
img.my_class_2.freezeframe.ff-setup.ff-image.ff-image-ready {
      width: 100% !important;
      max-height: 200px !important;
    }
    .ff-container .ff-canvas {
      width: 100% !important;
      height: 100% !important;
    }
/*** IE Fixes windows animation End***/