@charset "UTF-8";
/*============================================================================
  [replace with theme name] | Built with Slate
    - You cannot use native CSS/Sass @imports in this file without a build script
==============================================================================*/
/*================ UTILS ================*/
/*================ Mixins ================*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/v4-stable/app/assets/stylesheets/addons/_prefixer.scss

  Usage:
    // Input:
    .element {
      @include prefix(transform, scale(1), ms webkit spec);
    }

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
==============================================================================*/
/*================ Media Query Mixin ================*/
/*================ Responsive Show/Hide Helper ================*/
/*================ Responsive Text Alignment Helper ================*/
/*================ SETTINGS ================*/
/*================ Color Variables ================*/
/*================ Typography Variables ================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
    - Will not work if `styles/global/grid.scss` is removed
==============================================================================*/
/*================ Sizing Variables ================*/
/*================ Z-Index ================*/
/*================ SVG ================*/
/*================ COMMON ================*/
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/*================ Slate specific reset ================*/
*,
*::before,
*::after {
  box-sizing: border-box; }

body,
input,
textarea,
button,
select {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

a:focus {
  color: inherit; }

img {
  max-width: 100%; }

/*================ Form element helpers ================*/
form {
  margin: 0; }

@media only screen and (max-width: 989px) {
  input,
  textarea,
  select {
    font-size: 16px; } }
button,
input[type="submit"],
label[for] {
  cursor: pointer; }

optgroup {
  font-weight: 700; }

option {
  color: #33393e;
  background-color: white; }

[tabindex='-1']:focus {
  outline: none; }

/*============================================================================
  Fast Tap
  enables no-delay taps (FastClick-esque) on supporting browsers
==============================================================================*/
a,
button,
[role="button"],
input,
label,
select,
textarea {
  touch-action: manipulation; }

/*================ Helper Classes ================*/
.clearfix {
  *zoom: 1; }
  .clearfix::after {
    content: '';
    display: table;
    clear: both; }

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.js-focus-hidden:focus {
  outline: none; }

.label-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }
  .no-placeholder .label-hidden {
    position: inherit !important;
    overflow: auto;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0; }

.visually-shown {
  position: inherit !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0; }

.no-js:not(html) {
  display: none; }
  .no-js .no-js:not(html) {
    display: block; }

.no-js .js {
  display: none; }

.supports-no-cookies:not(html) {
  display: none; }
  html.supports-no-cookies .supports-no-cookies:not(html) {
    display: block; }

html.supports-no-cookies .supports-cookies {
  display: none; }

/*============================================================================
  Skip to content button
    - Overrides .visually-hidden when focused
==============================================================================*/
.skip-link:focus {
  position: absolute !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: #33393e;
  background-color: white;
  padding: 15px;
  z-index: 10000;
  transition: none; }

/*============================================================================
  Grid
    - Based on CSS Wizardry grid
==============================================================================*/
.grid {
  *zoom: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -30px; }
  .grid::after {
    content: '';
    display: table;
    clear: both; }

.grid__item {
  float: left;
  padding-left: 30px;
  width: 100%; }
  .grid__item[class*='--push'] {
    position: relative; }

/*============================================================================
  Reversed grids allow you to structure your source in the opposite
  order to how your rendered layout will appear.
==============================================================================*/
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__item {
    direction: ltr;
    text-align: left;
    float: right; }

/*============================================================================
  Grid Columns
    - Create width classes, prepended by the breakpoint name.
==============================================================================*/
/*================ Grid push classes ================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Build Base Grid Classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

/* Halves */
.one-half {
  width: 50%; }

/* Thirds */
.one-third {
  width: 33.33333%; }

.two-thirds {
  width: 66.66667%; }

/* Quarters */
.one-quarter {
  width: 25%; }

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

/* Fifths */
.one-fifth {
  width: 20%; }

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

/* Sixths */
.one-sixth {
  width: 16.66667%; }

.two-sixths {
  width: 33.33333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.66667%; }

.five-sixths {
  width: 83.33333%; }

/* Eighths */
.one-eighth {
  width: 12.5%; }

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

/* Tenths */
.one-tenth {
  width: 10%; }

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

/* Twelfths */
.one-twelfth {
  width: 8.33333%; }

.two-twelfths {
  width: 16.66667%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.33333%; }

.five-twelfths {
  width: 41.66667%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.33333%; }

.eight-twelfths {
  width: 66.66667%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.33333%; }

.eleven-twelfths {
  width: 91.66667%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

/*================ Build Responsive Grid Classes ================*/
@media only screen and (max-width: 749px) {
  /** Whole */
  .small--one-whole {
    width: 100%; }

  /* Halves */
  .small--one-half {
    width: 50%; }

  /* Thirds */
  .small--one-third {
    width: 33.33333%; }

  .small--two-thirds {
    width: 66.66667%; }

  /* Quarters */
  .small--one-quarter {
    width: 25%; }

  .small--two-quarters {
    width: 50%; }

  .small--three-quarters {
    width: 75%; }

  /* Fifths */
  .small--one-fifth {
    width: 20%; }

  .small--two-fifths {
    width: 40%; }

  .small--three-fifths {
    width: 60%; }

  .small--four-fifths {
    width: 80%; }

  /* Sixths */
  .small--one-sixth {
    width: 16.66667%; }

  .small--two-sixths {
    width: 33.33333%; }

  .small--three-sixths {
    width: 50%; }

  .small--four-sixths {
    width: 66.66667%; }

  .small--five-sixths {
    width: 83.33333%; }

  /* Eighths */
  .small--one-eighth {
    width: 12.5%; }

  .small--two-eighths {
    width: 25%; }

  .small--three-eighths {
    width: 37.5%; }

  .small--four-eighths {
    width: 50%; }

  .small--five-eighths {
    width: 62.5%; }

  .small--six-eighths {
    width: 75%; }

  .small--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .small--one-tenth {
    width: 10%; }

  .small--two-tenths {
    width: 20%; }

  .small--three-tenths {
    width: 30%; }

  .small--four-tenths {
    width: 40%; }

  .small--five-tenths {
    width: 50%; }

  .small--six-tenths {
    width: 60%; }

  .small--seven-tenths {
    width: 70%; }

  .small--eight-tenths {
    width: 80%; }

  .small--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .small--one-twelfth {
    width: 8.33333%; }

  .small--two-twelfths {
    width: 16.66667%; }

  .small--three-twelfths {
    width: 25%; }

  .small--four-twelfths {
    width: 33.33333%; }

  .small--five-twelfths {
    width: 41.66667%; }

  .small--six-twelfths {
    width: 50%; }

  .small--seven-twelfths {
    width: 58.33333%; }

  .small--eight-twelfths {
    width: 66.66667%; }

  .small--nine-twelfths {
    width: 75%; }

  .small--ten-twelfths {
    width: 83.33333%; }

  .small--eleven-twelfths {
    width: 91.66667%; }

  .grid--uniform .small--one-half:nth-child(2n+1),
  .grid--uniform .small--one-third:nth-child(3n+1),
  .grid--uniform .small--one-quarter:nth-child(4n+1),
  .grid--uniform .small--one-fifth:nth-child(5n+1),
  .grid--uniform .small--one-sixth:nth-child(6n+1),
  .grid--uniform .small--two-sixths:nth-child(3n+1),
  .grid--uniform .small--three-sixths:nth-child(2n+1),
  .grid--uniform .small--one-eighth:nth-child(8n+1),
  .grid--uniform .small--two-eighths:nth-child(4n+1),
  .grid--uniform .small--four-eighths:nth-child(2n+1),
  .grid--uniform .small--five-tenths:nth-child(2n+1),
  .grid--uniform .small--one-twelfth:nth-child(12n+1),
  .grid--uniform .small--two-twelfths:nth-child(6n+1),
  .grid--uniform .small--three-twelfths:nth-child(4n+1),
  .grid--uniform .small--four-twelfths:nth-child(3n+1),
  .grid--uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both; }

  .small--show {
    display: block !important; }

  .small--hide {
    display: none !important; }

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

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

  .small--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 750px) {
  /** Whole */
  .medium-up--one-whole {
    width: 100%; }

  /* Halves */
  .medium-up--one-half {
    width: 50%; }

  /* Thirds */
  .medium-up--one-third {
    width: 33.33333%; }

  .medium-up--two-thirds {
    width: 66.66667%; }

  /* Quarters */
  .medium-up--one-quarter {
    width: 25%; }

  .medium-up--two-quarters {
    width: 50%; }

  .medium-up--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium-up--one-fifth {
    width: 20%; }

  .medium-up--two-fifths {
    width: 40%; }

  .medium-up--three-fifths {
    width: 60%; }

  .medium-up--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium-up--one-sixth {
    width: 16.66667%; }

  .medium-up--two-sixths {
    width: 33.33333%; }

  .medium-up--three-sixths {
    width: 50%; }

  .medium-up--four-sixths {
    width: 66.66667%; }

  .medium-up--five-sixths {
    width: 83.33333%; }

  /* Eighths */
  .medium-up--one-eighth {
    width: 12.5%; }

  .medium-up--two-eighths {
    width: 25%; }

  .medium-up--three-eighths {
    width: 37.5%; }

  .medium-up--four-eighths {
    width: 50%; }

  .medium-up--five-eighths {
    width: 62.5%; }

  .medium-up--six-eighths {
    width: 75%; }

  .medium-up--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium-up--one-tenth {
    width: 10%; }

  .medium-up--two-tenths {
    width: 20%; }

  .medium-up--three-tenths {
    width: 30%; }

  .medium-up--four-tenths {
    width: 40%; }

  .medium-up--five-tenths {
    width: 50%; }

  .medium-up--six-tenths {
    width: 60%; }

  .medium-up--seven-tenths {
    width: 70%; }

  .medium-up--eight-tenths {
    width: 80%; }

  .medium-up--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium-up--one-twelfth {
    width: 8.33333%; }

  .medium-up--two-twelfths {
    width: 16.66667%; }

  .medium-up--three-twelfths {
    width: 25%; }

  .medium-up--four-twelfths {
    width: 33.33333%; }

  .medium-up--five-twelfths {
    width: 41.66667%; }

  .medium-up--six-twelfths {
    width: 50%; }

  .medium-up--seven-twelfths {
    width: 58.33333%; }

  .medium-up--eight-twelfths {
    width: 66.66667%; }

  .medium-up--nine-twelfths {
    width: 75%; }

  .medium-up--ten-twelfths {
    width: 83.33333%; }

  .medium-up--eleven-twelfths {
    width: 91.66667%; }

  .grid--uniform .medium-up--one-half:nth-child(2n+1),
  .grid--uniform .medium-up--one-third:nth-child(3n+1),
  .grid--uniform .medium-up--one-quarter:nth-child(4n+1),
  .grid--uniform .medium-up--one-fifth:nth-child(5n+1),
  .grid--uniform .medium-up--one-sixth:nth-child(6n+1),
  .grid--uniform .medium-up--two-sixths:nth-child(3n+1),
  .grid--uniform .medium-up--three-sixths:nth-child(2n+1),
  .grid--uniform .medium-up--one-eighth:nth-child(8n+1),
  .grid--uniform .medium-up--two-eighths:nth-child(4n+1),
  .grid--uniform .medium-up--four-eighths:nth-child(2n+1),
  .grid--uniform .medium-up--five-tenths:nth-child(2n+1),
  .grid--uniform .medium-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .medium-up--two-twelfths:nth-child(6n+1),
  .grid--uniform .medium-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .medium-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .medium-up--six-twelfths:nth-child(2n+1) {
    clear: both; }

  .medium-up--show {
    display: block !important; }

  .medium-up--hide {
    display: none !important; }

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

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

  .medium-up--text-center {
    text-align: center !important; } }
/*================ Build Grid Push Classes ================*/
/*================ General layout styles ================*/
body,
html {
  background-color: white; }

.page-width {
  *zoom: 1;
  max-width: 1180px;
  padding: 0 30px;
  margin: 0 auto; }
  .page-width::after {
    content: '';
    display: table;
    clear: both; }

/*================ Icons ================*/
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  fill: currentColor; }
  .no-svg .icon {
    display: none; }

.icon--wide {
  width: 40px; }

svg.icon:not(.icon--full-color) circle,
svg.icon:not(.icon--full-color) ellipse,
svg.icon:not(.icon--full-color) g,
svg.icon:not(.icon--full-color) line,
svg.icon:not(.icon--full-color) path,
svg.icon:not(.icon--full-color) polygon,
svg.icon:not(.icon--full-color) polyline,
svg.icon:not(.icon--full-color) rect,
symbol.icon:not(.icon--full-color) circle,
symbol.icon:not(.icon--full-color) ellipse,
symbol.icon:not(.icon--full-color) g,
symbol.icon:not(.icon--full-color) line,
symbol.icon:not(.icon--full-color) path,
symbol.icon:not(.icon--full-color) polygon,
symbol.icon:not(.icon--full-color) polyline,
symbol.icon:not(.icon--full-color) rect {
  fill: inherit;
  stroke: inherit; }

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.icon-fallback-text {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }
  .no-svg .icon-fallback-text {
    position: static !important;
    overflow: auto;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0; }

/*================ Payment Icons ================*/
.payment-icons {
  -moz-user-select: "none";
  -ms-user-select: "none";
  -webkit-user-select: "none";
  user-select: "none";
  cursor: default; }

/*================ Shopify icon on password page ================*/
.icon-shopify-logo {
  width: 82.28571px;
  height: 24px; }

/*================ Rich Text Editor ================*/
.rte img {
  height: auto; }
.rte table {
  table-layout: fixed; }
.rte ul,
.rte ol {
  margin: 0 0 15px 30px; }
.rte ul {
  list-style: disc outside; }
  .rte ul ul {
    list-style: circle outside; }
    .rte ul ul ul {
      list-style: square outside; }

.text-center.rte ul,
.text-center.rte ol,
.text-center .rte ul,
.text-center .rte ol {
  margin-left: 0;
  list-style-position: inside; }

.rte-table {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

.rte__video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  height: auto; }
  .rte__video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.rte__table-wrapper {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
@media only screen and (max-width: 749px) {
  .responsive-table {
    width: 100%; }
    .responsive-table thead {
      display: none; }
    .responsive-table tr {
      display: block; }
    .responsive-table tr,
    .responsive-table td {
      float: left;
      clear: both;
      width: 100%; }
    .responsive-table th,
    .responsive-table td {
      display: block;
      text-align: right;
      padding: 15px;
      margin: 0; }
    .responsive-table td::before {
      content: attr(data-label);
      float: left;
      text-align: center;
      padding-right: 10px; }

  .responsive-table-row + .responsive-table-row,
  tfoot > .responsive-table-row:first-child {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; }
    .responsive-table-row + .responsive-table-row::after,
    tfoot > .responsive-table-row:first-child::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      right: 15px;
      border-bottom: 1px solid #f6f6f6; } }
/*================ Links & Buttons ================*/
.btn {
  -moz-user-select: "none";
  -ms-user-select: "none";
  -webkit-user-select: "none";
  user-select: "none";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border: 0; }

/*============================================================================
  Form scaffolding
    - Selectors setup for you to style form elements how you want
    - Focus, error, and disabled states are set to be extended
==============================================================================*/
input,
textarea,
select {
  border: 1px solid #f6f6f6;
  border-radius: 0;
  max-width: 100%; }
  input[disabled],
  textarea[disabled],
  select[disabled] {
    cursor: default;
    background-color: black;
    border-color: black; }

textarea {
  min-height: 100px; }

/*================ Custom select style ================*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url(//cdn.shopify.com/s/files/1/2482/8630/t/5/assets/ico-select.svg?v=18378009566847174110);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 ================*/ }
  .ie9 select {
    padding-right: 10px;
    background-image: none; }

select::-ms-expand {
  display: none; }

/*================ Error styles ================*/
input.input-error,
select.input-error,
textarea.input-error {
  border-color: black;
  background-color: black;
  color: black; }

.placeholder-svg {
  display: block;
  fill: rgba(51, 57, 62, 0.35);
  background-color: rgba(51, 57, 62, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(51, 57, 62, 0.2); }

.placeholder-svg--small {
  width: 480px; }

.placeholder-noblocks {
  padding: 40px;
  text-align: center; }

.placeholder-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  .placeholder-background .icon {
    border: 0; }

/*================ MODULES ================*/
/*================ Site Header ================*/
.site-logo {
  display: block; }
  .site-logo img {
    display: block;
    width: 100%; }

/*================ Giftcard Template ================*/
.giftcard-qr img {
  display: block;
  margin: 0 auto; }

.apple-wallet-image {
  display: block;
  margin: 0 auto; }

/*================ Print Giftcard Styles ================*/
@media print {
  @page {
    margin: 0.5cm; }

  p {
    orphans: 3;
    widows: 3; }

  html,
  body {
    background-color: #fff;
    color: #000; }

  .print-giftcard,
  .apple-wallet {
    display: none; } }
/*
Name: Commend
Template Name: Connect
Author: Xander Seren
Description: Wordpress theme for Commend
Version: 0.0.1
*/
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 200;
  src: local("Montserrat ExtraLight Italic"), local("Montserrat-ExtraLightItalic"), url(https://fonts.gstatic.com/s/montserrat/v12/zhwB3-BAdyKDf0geWr9Ft9A6ADgdVTL7gjIrG5k4wa0.ttf) format("truetype"); }

@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 300;
  src: local("Montserrat Light Italic"), local("Montserrat-LightItalic"), url(https://fonts.gstatic.com/s/montserrat/v12/zhwB3-BAdyKDf0geWr9FtwV_pQ1T3xN3K1c3sB361us.ttf) format("truetype"); }

@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: local("Montserrat Italic"), local("Montserrat-Italic"), url(https://fonts.gstatic.com/s/montserrat/v12/-iqwlckIhsmvkx0N6rwPmonF5uFdDttMLvmWuJdhhgs.ttf) format("truetype"); }

@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 500;
  src: local("Montserrat Medium Italic"), local("Montserrat-MediumItalic"), url(https://fonts.gstatic.com/s/montserrat/v12/zhwB3-BAdyKDf0geWr9FtyfxicYksyVqdB8nkjIZw2U.ttf) format("truetype"); }

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  src: local("Montserrat ExtraLight"), local("Montserrat-ExtraLight"), url(https://fonts.gstatic.com/s/montserrat/v12/eWRmKHdPNWGn_iFyeEYja22J9yQRHHBhlmQmXC5U5ok.ttf) format("truetype"); }

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: local("Montserrat Light"), local("Montserrat-Light"), url(https://fonts.gstatic.com/s/montserrat/v12/IVeH6A3MiFyaSEiudUMXE-LrC4Du4e_yfTJ8Ol60xk0.ttf) format("truetype"); }

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url(https://fonts.gstatic.com/s/montserrat/v12/zhcz-_WihjSQC0oHJ9TCYC3USBnSvpkopQaUR-2r7iU.ttf) format("truetype"); }

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: local("Montserrat Medium"), local("Montserrat-Medium"), url(https://fonts.gstatic.com/s/montserrat/v12/BYPM-GE291ZjIXBWrtCwetIZ6OFpBzzPr7LueGMiD8k.ttf) format("truetype"); }

@font-face {
  font-family: "Hobo";
  src: url("../assets/353631_0_0.ttf"); }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  margin: 0 !important;
  overflow-wrap: break-word; }

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 46px; }

h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 26px;
  line-height: 32px; }

h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 18px;
  letter-spacing: .5px;
  margin: 0 0 30px 0;
  text-transform: uppercase; }

h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  margin: 0;
  font-weight: 400; }

p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 25px; }

a {
  color: black;
  text-decoration: none; }

a:hover {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none; }

p a {
  color: blue;
  text-decoration: none; }

p a:hover {
  color: black;
  text-decoration: none; }

iframe {
  max-width: 100%; }

#tote-icon {
  width: 30px;
  position: absolute;
  display: block;
  opacity: 0.2; }

.tote-count {
  position: relative;
  display: block;
  float: right;
  margin-right: 25px;
  margin-bottom: 20px;
  width: 30px;
  height: 50px; }

.tote-count a {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  top: 13px; }

input.cart-quantity {
  width: 40px;
  padding: 5px;
  border: 1px solid black;
  font-weight: 300; }

.cart--title {
  text-align: center; }

.cart--table {
  border-collapse: collapse;
  width: 100%; }

.cart-table-titles th {
  padding-bottom: 20px; }

.cart-total {
  margin: 20px 0px;
  text-align: center;
  font-size: 20px; }

.cart-total .prices {
  font-size: 20px !important; }

.cart--table th {
  text-align: left;
  font-weight: 300;
  text-transform: uppercase;
  margin-right: 15px; }

.cart--table--row {
  border-bottom: 1px solid black; }

.cart--table--row td {
  padding: 10px 0px;
  vertical-align: top; }

.date, .categories, .prices, .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: .1em;
  text-transform: uppercase; }

.prices, .price {
  font-family: "Hobo"; }

/* Site Content */
.site-content-contain {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }

.site-content-contain .site-content, #MainContent {
  margin: auto 25px;
  margin-top: 50px; }

body.home .site-content {
  margin: 0; }

/* Home */
.template-index #MainContent {
  margin: 0; }

.shopify-section.featured-collection {
  margin-bottom: 40px;
  text-align: center; }
  .shopify-section.featured-collection .products {
    display: flex; }
    .shopify-section.featured-collection .products .product {
      padding: 0 20px; }
  @media only screen and (max-width: 989px) {
    .shopify-section.featured-collection .product a {
      font-size: 20px;
      margin-top: 10px;
      display: inline-block; }
    .shopify-section.featured-collection .product p {
      margin-top: 5px; } }

.shopify-section.featured-collection .product img {
  margin-bottom: 12px; }

.product a {
  margin: 20px 0 0 0; }

.product p {
  font-family: hobo;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 13px; }

.shopify-section.collection-menu {
  text-align: center;
  margin-bottom: 40px; }
  .shopify-section.collection-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; }
  .shopify-section.collection-menu li {
    border: 1px #000 solid;
    padding: 5px 9px;
    margin: 0 6px;
    margin-bottom: 12px; }
  @media only screen and (max-width: 989px) {
    .shopify-section.collection-menu li {
      margin-bottom: 12px; } }

.collection-menu, .featured-collection {
  margin-top: 100px; }
  .collection-menu .slick-arrow, .featured-collection .slick-arrow {
    padding-top: 7%;
    box-sizing: border-box; }
    .collection-menu .slick-arrow svg, .featured-collection .slick-arrow svg {
      fill: #6DFF8D;
      width: 30px;
      height: 30px;
      stroke: transparent;
      stroke-width: 0px; }
    .collection-menu .slick-arrow.arrow-left svg, .featured-collection .slick-arrow.arrow-left svg {
      transform: rotate(-180deg); }
    @media only screen and (max-width: 989px) {
      .collection-menu .slick-arrow, .featured-collection .slick-arrow {
        padding-top: 26%; } }

.shopify-section.browse-vibes {
  text-align: center;
  margin-bottom: 100px;
  padding-top: 70px; }
  .shopify-section.browse-vibes .tag-list {
    flex-wrap: wrap; }
    .shopify-section.browse-vibes .tag-list li {
      margin: 0; }
    .shopify-section.browse-vibes .tag-list img {
      width: 95px; }

.shopify-section.slideshow {
  margin: 0 auto;
  margin-bottom: 40px; }
  .shopify-section.slideshow .slide {
    position: relative; }
    .shopify-section.slideshow .slide .background {
      width: 100%;
      max-height: 500px; }
      .shopify-section.slideshow .slide .background img {
        width: 100%;
        height: 100%; }
    .shopify-section.slideshow .slide .content {
      line-height: 20px;
      position: absolute;
      left: 0;
      bottom: 0;
      background-color: white;
      padding: 20px;
      width: 50%;
      margin: 10px; }
    .shopify-section.slideshow .slide .content .tag-list {
      margin-top: 20px;
      justify-content: flex-start;
      position: relative;
      left: -10px; }
  @media only screen and (max-width: 989px) {
    .shopify-section.slideshow .slide .content {
      position: initial;
      left: initial;
      bottom: initial;
      background-color: #f1f1f1;
      margin: 0;
      width: 100%; }
      .shopify-section.slideshow .slide .content .tag-list {
        justify-content: flex-start;
        margin-top: 40px;
        height: 40px;
        left: -8px;
        position: relative; } }

.shopify-section.collage {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px; }
  .shopify-section.collage > :first-child {
    padding-right: 20px; }
  .shopify-section.collage > :last-child {
    padding-left: 20px; }
  .shopify-section.collage .column-left {
    display: flex;
    flex-direction: column;
    flex-basis: 66%; }
    .shopify-section.collage .column-left .block {
      flex-basis: 100%; }
      .shopify-section.collage .column-left .block img {
        width: 100%;
        height: 100%; }
  .shopify-section.collage .column-right {
    display: flex;
    flex-direction: column;
    flex-basis: 33%; }
    .shopify-section.collage .column-right > .block {
      flex-basis: 50%; }
      .shopify-section.collage .column-right > .block:first-child {
        padding-bottom: 20px; }
      .shopify-section.collage .column-right > .block:last-child {
        padding-top: 20px; }
      .shopify-section.collage .column-right > .block img {
        width: 100%;
        height: 100%; }
  .shopify-section.collage img {
    height: 100%; }
  @media only screen and (max-width: 989px) {
    .shopify-section.collage {
      display: none; } }

.home-featured-image-container {
  width: 100%;
  height: 500px;
  position: relative; }

.home-featured-image {
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: absolute; }

.store-featured {
  width: 100%;
  height: 600px;
  display: block;
  position: relative; }

.store-featured-item {
  max-height: 500px;
  position: absolute;
  width: 40%;
  box-sizing: border-box;
  padding: 1px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer; }

.store-featured-item:nth-of-type(1) {
  z-index: 904;
  left: 0; }

.store-featured-item:nth-of-type(2) {
  z-index: 903;
  left: 15%; }

.store-featured-item:nth-of-type(3) {
  z-index: 902;
  left: 30%; }

.store-featured-item:nth-of-type(4) {
  z-index: 901;
  left: 45%; }

.store-featured-item:nth-of-type(5) {
  z-index: 900;
  left: 60%; }

.store-featured-item:hover {
  z-index: 904; }

.store-featured-item:hover > .store-featured-item-info {
  display: block; }

.store-featured-item-info {
  display: none;
  position: absolute;
  bottom: 0;
  width: calc(100% - 2px);
  border: 1px solid black;
  background: white;
  box-sizing: border-box;
  padding: 15px; }

.store-featured-item img {
  max-height: 500px;
  width: 100%; }

.featured-events {
  background: #c3d1ff;
  width: 100%;
  position: relative;
  display: block;
  padding: 20px 20px;
  box-sizing: border-box; }

.featured-events .events-grid {
  margin-top: 40px; }

.ticker-container {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 40px;
  margin-right: 40px;
  width: calc(100% - 80px);
  background: #6dff8d; }

.ticker {
  background: url("assets/ticker-dot-pattern.svg");
  background-repeat: repeat;
  background-size: 10px;
  width: 100%;
  height: 100%;
  padding: 5px 0px;
  border: 1px solid black; }

.ticker {
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 60px;
  line-height: 68px;
  color: white;
  overflow-y: hidden;
  overflow-x: hidden;
  height: 68px; }

.sides-section {
  display: flex;
  justify-content: space-between;
  margin: 40px 40px; }

.sides-logo {
  width: 150px; }

.sides-section a {
  text-decoration: none; }

.sides-section article {
  display: block;
  position: relative;
  height: fit-content; }

.side-progress {
  width: 0%;
  height: 148px;
  overflow: hidden;
  display: block;
  position: absolute;
  background: #ffe3d9;
  top: 1px;
  left: 1px; }

.side-title {
  border: 1px solid black;
  padding: 60px 40px;
  font-family: "Courier New", monospace;
  color: blue;
  text-decoration: none; }

.fa-play, .fa-pause {
  font-size: 8em !important;
  color: #ffe3d9;
  cursor: pointer; }

/* Sides Page */
.sides-grid {
  display: flex;
  justify-content: space-between; }

.sides-grid article.sides {
  width: 48%; }

.sides-title {
  border: 1px solid black;
  padding: 10px;
  font-family: "Courier New", monospace;
  color: blue;
  text-decoration: none; }

/* Events and Products*/
.events-grid, .product-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.events-grid article {
  width: 30.33%; }

.product-grid .product {
  width: 22%;
  margin-bottom: 40px; }

.product-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }

.product-tags img {
  height: 40px; }

.events-grid article .wp-post-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px; }

.events-grid .event-title, .product-grid .product-title {
  text-align: center;
  line-height: 18px; }

.events-grid a, .product-grid a {
  text-decoration: none;
  color: black; }

.events-grid .date, .product-grid .price {
  text-align: center; }

.event-comemend-tag {
  width: 100px;
  display: block;
  margin: 0 auto;
  margin-top: 10px; }

.tag-list {
  padding-left: 0;
  display: flex;
  justify-content: center;
  clear: both; }

.tag-list img {
  display: block;
  width: 40px;
  margin-top: -12px; }

.tag-list li.active img {
  transform: scale(1.9); }

.pagination {
  position: fixed;
  bottom: 10px;
  margin: 0 auto;
  width: fit-content;
  width: -moz-fit-content;
  left: 0;
  right: 0; }

/* Single Event */
.single-event {
  position: relative; }

.single-event-head {
  margin: 0 auto;
  width: 400px;
  text-align: center;
  position: relative; }

.single-event-head img {
  width: 100%;
  height: auto; }

.product-body {
  max-width: 750px;
  margin: 50px auto; }

.product-head-right form label {
  font-family: "Courier New", mono-space; }

.product-head-right form {
  margin-top: 15px; }

.product-options {
  margin: 0 auto;
  width: fit-content;
  width: -moz-fit-content;
  margin-bottom: 25px; }

.product-head-left img {
  cursor: pointer; }

.product-head-right form input {
  background: transparent;
  border: 1px solid black;
  padding: 10px;
  width: 80px; }

.product-head-right .selector-wrapper {
  float: right;
  padding-left: 10px; }

.product-head-right .selector-wrapper select {
  border: 1px solid black;
  padding-top: 3px;
  padding-bottom: 3px;
  padding: 10px;
  padding-right: 20px; }

.product-head-right form button {
  border: 0px solid #fff;
  background: #6dff8d;
  color: black;
  font-family: "Courier New", mono-space;
  padding: 15px;
  display: block;
  margin: 0 auto; }

.cart-form-button-update {
  border: 1px solid black;
  background: white;
  color: black;
  font-family: "Courier New", mono-space;
  padding: 15px;
  display: block;
  margin-right: 10px;
  display: inline-block;
  box-sizing: border-box; }

.cart-total-buttons {
  margin: 0 auto;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  display: block; }

.cart-form-button-total {
  border: 0px solid #fff;
  background: #6dff8d;
  color: black;
  font-family: "Courier New", mono-space;
  padding: 15px;
  display: block;
  margin-right: 10px;
  display: inline-block; }

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
  margin: 0; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

.event-body p, .product-body p {
  max-width: 750px;
  margin: 0 auto;
  margin-bottom: 25px; }

.social-sharing {
  display: block;
  margin: 0 auto;
  margin-top: 25px;
  width: fit-content;
  width: -moz-fit-content;
  font-family: "Courier New", mono-space; }

.social-sharing a {
  text-decoration: none; }

.social-sharing a {
  padding: 0px 10px; }

.single-event-info {
  position: absolute;
  top: 0;
  right: 0;
  color: blue; }

.event-poster:after {
  content: "";
  width: 8px;
  height: 20px;
  background: blue;
  position: absolute;
  left: 25px;
  top: -10px; }

.event-poster:before {
  content: "";
  width: 8px;
  height: 20px;
  background: blue;
  position: absolute;
  right: 25px;
  top: -10px; }

.event-poster {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 20px;
  position: relative; }

.event-poster img {
  width: 190px;
  border: 2px solid blue; }

/* Single Product */
.product-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  flex-wrap: wrap;
  width: 100%; }

.product-head-left, .product-head-right {
  width: 48%; }

.product-head-left img {
  width: 100%; }

.product-head .product-title {
  text-align: center;
  margin-top: 0px;
  font-weight: 300; }

.product-head .product-price {
  text-align: center;
  margin-bottom: 50px; }

.product-image-gallery {
  display: block;
  margin-top: 40px;
  margin-bottom: 40px; }

.product-image-gallery img {
  width: 31%;
  margin: 0 1%;
  display: inline-block;
  height: auto;
  margin-bottom: 90px;
  cursor: pointer; }

.product-image-gallery img:nth-of-type(1) {
  display: none; }

.lightbox {
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  display: flex;
  justify-content: center;
  cursor: pointer; }

.lightbox img {
  max-height: 100%;
  display: block;
  max-width: 80%;
  margin: 0 auto;
  cursor: default;
  align-self: center; }

.product-body p {
  max-width: 750px;
  margin: 0 auto;
  margin-bottom: 25px; }

.single-event-info {
  position: absolute;
  top: 0;
  right: 0;
  color: blue; }

.event-poster:after {
  content: "";
  width: 8px;
  height: 20px;
  background: blue;
  position: absolute;
  left: 25px;
  top: -10px; }

.event-poster:before {
  content: "";
  width: 8px;
  height: 20px;
  background: blue;
  position: absolute;
  right: 25px;
  top: -10px; }

.event-poster {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 20px;
  position: relative; }

.event-poster img {
  width: 190px;
  border: 2px solid blue; }

/* Single 

/* Commendsee */
article.commendsee {
  width: 100%;
  position: relative; }

article.commendsee img {
  width: 100%; }

article.commendsee .commendsee-title {
  position: absolute;
  top: 75px;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: fit-content;
  text-align: center;
  color: black;
  text-decoration: none; }

/* Footer */
footer {
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 20px;
  border-top: 1px solid black; }
  @media only screen and (max-width: 989px) {
    footer {
      flex-direction: column;
      padding: 20px; }
      footer .column-left, footer .column-right {
        width: 100%; }
      footer .column-right {
        font-size: 14px;
        margin-top: 40px; } }

footer #mc_embed_signup h2 {
  margin-top: 0;
  font-size: 20px; }

footer p {
  font-size: 20px; }

.rvng-crest {
  width: 20px;
  color: blue; }

.social-links a {
  margin-right: 10px; }

.copyright {
  margin-top: 60px;
  font-size: 14px; }

footer.site-footer a {
  color: blue;
  text-decoration: none; }

footer.site-footer a:hover {
  text-decoration: none;
  color: black; }

.fa-long-arrow-up {
  transform: rotateZ(45deg);
  padding-left: 10px; }

.footer-status.closed {
  color: red; }

.footer-status.open {
  color: #6dff8d; }

.footer-contact .fa {
  padding-right: 10px; }

/* Connect Page */
.connect-body p {
  max-width: 750px;
  margin: 0 auto;
  margin-bottom: 25px; }

.wp-video {
  margin: 0 auto; }

.page-id-38 .site-content {
  margin: 0;
  margin-top: 50px; }

#searchform {
  width: calc(100% - 50px);
  margin: 25px;
  margin-top: 0;
  border: 1px solid black;
  box-sizing: border-box;
  position: relative;
  display: none; }

#searchform.active {
  display: block; }

#searchform.searched {
  display: block; }

#Search {
  background: white;
  font-family: "Courier New", monospace;
  padding-top: 10px;
  padding-left: 12px;
  font-size: 16px;
  width: 100%;
  border: 0;
  box-sizing: border-box;
  line-height: 28px;
  padding-bottom: 5px;
  background: #fffaaa;
  outline: none; }

#Search:focus {
  background: #fffaaa; }

#searchsubmit {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
  font-family: "Courier New", mono-space;
  border: 0;
  font-size: 16px;
  line-height: 28px;
  padding-top: 10px;
  padding-bottom: 5px;
  cursor: pointer;
  border-left: 1px solid black;
  height: 100%;
  width: 50px;
  background: white; }

#searchsubmit:hover {
  background: #fffaaa; }

.tag-list {
  list-style: none;
  display: flex; }

.tag-list li {
  margin-right: 15px; }

.tag-list a {
  color: black; }

.tag-list li.active {
  text-decoration: none;
  transform: scale(1.8);
  padding: 0px 10px; }

/* Home Page Shopify */
.home-collections-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%; }

.home-collections-list a {
  border: 1px solid black;
  color: black;
  text-decoration: none;
  cursor: pointer;
  padding: 9px 25px;
  font-size: 16px;
  margin-right: 10px;
  margin-top: 10px;
  font-family: "Courier New", mono-space; }

.home-collections-list a:hover {
  color: white;
  background: black; }

#mc_embed_signup_scroll input.email {
  border: 1px solid black;
  background: white;
  font-family: "Courier New", monospace;
  padding-top: 10px;
  padding-left: 12px;
  font-size: 16px;
  width: 100%;
  max-width: 350px;
  box-sizing: border-box;
  line-height: 28px;
  padding-bottom: 5px;
  outline: none;
  box-shadow: none;
  display: block;
  margin: 0 auto; }
  @media only screen and (max-width: 989px) {
    #mc_embed_signup_scroll input.email {
      margin: 0; } }

#mc_embed_signup_scroll input.email:focus {
  background: #fffaaa; }

#mc_embed_signup_scroll label {
  text-align: center;
  margin: 0 auto;
  display: block;
  font-weight: 300;
  font-size: 26px;
  line-height: 32px; }

#mc-embedded-subscribe {
  border: 0px solid #fff;
  background: #6dff8d;
  color: black;
  font-family: "Courier New", mono-space;
  padding: 15px;
  display: block;
  margin-top: 10px;
  font-size: 16px;
  cursor: pointer; }

@media screen and (max-width: 950px) {
  .single-event-content {
    display: block; }

  .single-event-content-wrapper {
    margin: 0 auto; }

  .single-event-info {
    position: relative;
    margin-left: 20px; }

  .event-poster {
    margin-top: 20px; } }
@media screen and (max-width: 800px) {
  .menu-container {
    display: block; }

  #site-navigation {
    justify-content: center; }

  .site-branding {
    padding-left: 0; }

  .site-branding img {
    margin: 0 auto;
    display: block;
    margin-bottom: 20px; }

  .site-navigation-item.come-mend {
    margin-right: 8px; }

  .events-grid article {
    width: 98%;
    margin-bottom: 25px; }

  .store-featured {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    position: relative; }

  .store-featured-item {
    left: 0 !important;
    height: auto;
    width: 98%;
    position: relative;
    transform: none;
    top: auto;
    margin-bottom: 25px;
    max-height: none; }

  .product-grid .product {
    width: 47%; }

  .store-featured-item a {
    display: block;
    position: relative; }

  .store-featured-item img {
    max-height: none;
    height: auto; }

  .store-featured-item-info {
    display: block;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    position: relative; }

  .product-head {
    display: block;
    margin: 0 auto; }

  .home-featured-image-container {
    height: 400px; }

  .home-featured-image {
    background-attachment: scroll;
    height: 400px; }

  .footer-contact {
    overflow-wrap: break-word; }

  .event-gallery-images img {
    width: 48%; }

  body {
    font-size: 16px; }

  h1 {
    font-size: 34px; }

  h2 {
    font-size: 22px; }

  h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 14px; }

  h4 {
    font-size: 16px; }

  p {
    font-size: 16px; }

  .date, .categories, .prices {
    font-size: 14px; }

  .product-head-left, .product-head-right {
    width: 100%; } }
@media screen and (max-width: 500px) {
  #site-navigation {
    display: block;
    margin-left: 18px;
    margin-right: 18px; }

  .site-navigation-item {
    margin-bottom: 16px;
    float: left;
    width: -moz-calc(33% - 16px);
    width: -webkit-calc(33% - 16px);
    width: -o-calc(33% - 16px);
    width: calc(33% - 16px);
    text-align: center;
    box-sizing: border-box;
    padding: 9px 5px; }

  .site-navigation-item.connect {
    margin-right: 0px;
    width: -moz-calc(33% - 10px);
    width: -webkit-calc(33% - 10px);
    width: -o-calc(33% - 10px);
    width: calc(33% - 10px); }

  .site-navigation-item.come-mend {
    position: absolute;
    right: 25px;
    margin: 0;
    width: 46px;
    top: 30px;
    margin-right: 0; }

  .search, #searchform {
    clear: both; }

  .product-grid .product {
    width: 98%; }

  .site-branding img {
    margin: auto;
    margin-left: 25px;
    margin-bottom: 20px; } }
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent; }

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent; }

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1; }

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25; }

.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto; }

.slick-prev:before {
  content: '←'; }

[dir='rtl'] .slick-prev:before {
  content: '→'; }

.slick-next {
  right: -25px; }

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px; }

.slick-next:before {
  content: '→'; }

[dir='rtl'] .slick-next:before {
  content: '←'; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 75px; }

.slick-dots {
  position: absolute;
  bottom: -40px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center; }

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer; }

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  background-color: transparent;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none; }

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none; }

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1; }

.slick-dots li button:before {
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  content: '';
  border: 1px #000 solid;
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
  background-color: #4cdb93; }

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer; }

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  opacity: 0;
  pointer-events: none; }

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 7px;
  width: 160px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #4cdb93;
  color: #fff;
  font-weight: bold;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2; }

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #4cdb93;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0; }

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  opacity: 1; }
