/*============================================================================
  [replace with theme name] | Built with Slate
    - You cannot use native CSS/Sass @imports in this file without a build script
==============================================================================*/
/*================ SASS HELPERS ================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $grid-breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
    - Will not work if `theme/_grid.scss` is removed
==============================================================================*/
/*================ Color Variables ================*/
/*====== Sizes ======*/
/*====== Typography ======*/
@font-face {
  font-family: Daytona;
  font-weight: 400;
  font-style: normal;
  src: url("https://fonts.shopifycdn.com/daytona/daytona_n4.d776539bed73d80567b5a601d6a7d197f08f2dbc.woff2?h1=cmVhbHNoYXJwa25pZmUuY29t&hmac=f1ecb54fb3f62eab2ba412a56ad5b0f21214cff0144ea5166e4706b42faa5f14") format("woff2"), url("https://fonts.shopifycdn.com/daytona/daytona_n4.35380ee1c7856627ba662026da4752f244da9084.woff?h1=cmVhbHNoYXJwa25pZmUuY29t&hmac=d265d169b0ac15cb5e7aad7af315b61c63841cddb164cd08be0183e5fb266c04") format("woff"); }

@font-face {
  font-family: Kalam;
  font-weight: 700;
  font-style: normal;
  src: url("https://fonts.shopifycdn.com/kalam/kalam_n7.58db6f68e2cb2d86480a7d332166de6fe44bfc31.woff2?h1=cmVhbHNoYXJwa25pZmUuY29t&hmac=0fca30133177da735f1b870c8feaafbc5ed0a0930b16f2a8074ba31ecf7118d4") format("woff2"), url("https://fonts.shopifycdn.com/kalam/kalam_n7.d9af5556382a9b157ce5b5c0d66c2048d636acc8.woff?h1=cmVhbHNoYXJwa25pZmUuY29t&hmac=2fe57239da0d37edad4fdf4142dfd32a707f5bb6f051766e5ecdcd3d5f31a846") format("woff"); }

@font-face {
  font-family: Daytona;
  font-weight: 700;
  font-style: normal;
  src: url("https://fonts.shopifycdn.com/daytona/daytona_n7.5b4aa61e5da1f5a2a1fcdec8be16cefde70af9ea.woff2?h1=cmVhbHNoYXJwa25pZmUuY29t&hmac=034c70f4b51fcbe4393776a61e4fe51ed0f396670fbe6d91259738e8ef42b45d") format("woff2"), url("https://fonts.shopifycdn.com/daytona/daytona_n7.91c770f6efb6cf3d2bba5a3e117f7486aebeaa26.woff?h1=cmVhbHNoYXJwa25pZmUuY29t&hmac=8edf3135c5aebb154bbc80022c8f008d4c4ba1ccee3821c141091c78eb53c922") format("woff"); }

@font-face {
  font-family: Daytona;
  font-weight: 400;
  font-style: italic;
  src: url("https://fonts.shopifycdn.com/daytona/daytona_i4.297e3574a735d95675f7c116200855861231c981.woff2?h1=cmVhbHNoYXJwa25pZmUuY29t&hmac=065570265896d6f87c2479901cf887587a599161de95ee8afea3fdf971b8622c") format("woff2"), url("https://fonts.shopifycdn.com/daytona/daytona_i4.e76ad48e282bf0798e3cee81c6016758d85fc22e.woff?h1=cmVhbHNoYXJwa25pZmUuY29t&hmac=12cf7d163c0b8d836ef9ddfe09a7e69bb8ea0b09a61c440bc5bdfba781ae021b") format("woff"); }

@font-face {
  font-family: Daytona;
  font-weight: 700;
  font-style: italic;
  src: url("https://fonts.shopifycdn.com/daytona/daytona_i7.bbad600b9e4df67f993e8249646647c222bcf3e4.woff2?h1=cmVhbHNoYXJwa25pZmUuY29t&hmac=842fde05351a416afc8d92300c99c53d65e52e63d868d38e0eab449c3092b67f") format("woff2"), url("https://fonts.shopifycdn.com/daytona/daytona_i7.29e9e1161bd661348f5e48f953a21d5e706ce424.woff?h1=cmVhbHNoYXJwa25pZmUuY29t&hmac=b40e760fafaff01749d05c5dc3a7c1dc3d0df82c38a229e42b76ed4cb814376b") format("woff"); }

/*====== z-index ======*/
/*====== Forms ======*/
/*====== Select icon ======*/
/*====== Radius ======*/
/*====== Lightbox ======*/
/*================ Gift Cards ================*/
/*================ Z-index ================*/
/*================ Mixins ================*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/master/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 ================*/
/*================ Theme mixins ================*/
/*============================================================================
  Convert pixels to ems

  eg. for a relational value of 12px write em(12) when the parent is 16px
  if the parent is another value say 24px write em(12, 24)

  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
==============================================================================*/
/*============================================================================
  Strips the unit from a number.

  @param {Number (With Unit)} $value
  @example scss - Usage
    $dimension: strip-units(10em);
  @example css - CSS Output
    $dimension: 10;
  @return {Number (Unitless)}

  based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
==============================================================================*/
/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
/*================ GLOBAL ================*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 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/10/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 of focused elements when they are also in an
 * active/hover state.
 */
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, .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.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  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; }

/**
 * 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.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

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

/* Lists
   ========================================================================== */
ul {
  list-style-type: none; }

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

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

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: #333333;
  background-color: #e8e8e8; }

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

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

.visually-hidden, .icon__fallback-text, .supports-no-js .featured-blog__post .article__featured-image-wrapper, .supports-no-js .map-section__background-wrapper .js {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.hidden {
  display: none !important; }

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

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

.label--hidden {
  position: absolute;
  height: 0;
  width: 0;
  margin-bottom: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }
  .supports-no-placeholder .label--hidden {
    position: static;
    height: auto;
    width: auto;
    margin-bottom: 2px;
    overflow: visible;
    clip: initial; }

/*============================================================================
  Skip to content button
    - Overrides .visually-hidden when focused
==============================================================================*/
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: #333333;
  background-color: #e8e8e8;
  padding: 15px;
  z-index: 10000;
  transition: none; }

/*=============== Lazy loading ===================*/
.box {
  background: no-repeat;
  background-size: contain; }

.ratio-container {
  position: relative; }

.ratio-container:after {
  content: '';
  display: block;
  height: 0;
  width: 100%;
  content: ""; }

.ratio-container > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

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

.social-sharing__link .icon.icon-google-plus {
  width: 24px; }

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)
==============================================================================*/
.supports-no-svg .icon__fallback-text {
  position: static !important;
  overflow: inherit;
  clip: none;
  height: auto;
  width: auto;
  margin: 0; }

/*================ Lists ================*/
ul,
ol {
  list-style-type: none; }

.list--inline {
  padding: 0;
  margin-bottom: -5px; }
  .list--inline li {
    display: inline-block;
    padding-right: 5px;
    padding-bottom: 5px;
    margin-bottom: 0; }
  .list--inline li:last-child {
    padding-right: 0; }

/*====== RTE ======*/
.rte img {
  height: auto; }
.rte table {
  table-layout: fixed; }
.rte ul,
.rte ol {
  margin: 0 0 15px;
  padding: 0;
  list-style-position: inside; }
.rte ul {
  list-style-type: disc; }
  .rte ul ul {
    list-style-type: circle; }
    .rte ul ul ul {
      list-style-type: square; }

.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 thead {
    display: none; }
  .responsive-table tr {
    display: block; }
  .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 #111010; } }
/*================ General media helpers ================*/
img {
  max-width: 100%; }

svg:not(:root) {
  overflow: hidden; }

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

/*================ SCAFFOLDING ================*/
/*====== 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--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--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; } }
@media only screen and (min-width: 990px) {
  /** Whole */
  .large-up--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large-up--text-center {
    text-align: center !important; } }
/*================ Build Grid Push Classes ================*/
@media only screen and (min-width: 750px) {
  /* Halves */
  .medium-up--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-up--push-eleven-twelfths {
    left: 91.66667%; } }
/*================ Grid | Vertically centered items ================*/
.grid--table {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-left: 0; }
  .grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle;
    padding-left: 0; }

.medium-up--grid--table {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-left: 0; }
  .medium-up--grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle;
    padding-left: 0; }
  @media only screen and (max-width: 749px) {
    .medium-up--grid--table {
      display: block; }
      .medium-up--grid--table > .grid__item {
        display: block; } }

.grid--uniform > .grid__item {
  margin-bottom: 30px; }

/*====== Layout styles ======*/
body,
html {
  background-color: #e8e8e8; }

.site-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px; }
  @media only screen and (min-width: 750px) {
    .site-wrapper {
      padding: 0 30px; } }

.main-content {
  overflow: hidden; }

hr {
  clear: both;
  border-top: solid #111010;
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0; }
  hr.hr--clear {
    border: 0;
    height: 1px;
    margin-bottom: 30px -1px; }
  hr.hr--small {
    margin: 15px 0; }
    hr.hr--small.hr--clear {
      margin-bottom: 15px -1px; }
  hr.hr--border {
    margin: 0; }
  hr.hr--border-top {
    margin-top: 0; }
  hr.hr--border-bottom {
    margin-bottom: 0; }

.social-sharing {
  margin: 30px 0; }

.social-sharing__link {
  padding-right: 10px;
  font-size: 11.2px;
  color: #333333;
  white-space: nowrap;
  display: inline-block; }
  .social-sharing__link:last-child {
    padding-right: 0; }
  .social-sharing__link .icon {
    width: 18px;
    height: 18px; }

.newsletter-label {
  display: block;
  margin: 15px 0; }

@media only screen and (max-width: 749px) {
  .site-footer .grid__item {
    padding-top: 10px; } }
.sub-footer {
  padding-bottom: 30px; }

.sub-footer,
.site-footer {
  color: #333333; }
  .sub-footer a,
  .site-footer a {
    color: #333333; }

.payment-icons {
  margin-top: 0; }
  .payment-icons .icon {
    width: 38px;
    height: 24px; }

/*====== Typography ======*/
body,
input,
textarea,
button,
select {
  font-size: 16px;
  font-family: Daytona, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #333333;
  line-height: 1.6; }

@media only screen and (max-width: 989px) {
  input,
  textarea {
    font-size: 16px; } }
/*================ Headings ================*/
h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: Kalam, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-rendering: optimizeLegibility;
  margin: 0 0 0.9375em;
  line-height: 1.4;
  color: #333333; }
  h1 a, .h1 a,
  h2 a,
  .h2 a,
  h3 a,
  .h3 a,
  h4 a,
  .h4 a,
  h5 a,
  .h5 a,
  h6 a,
  .h6 a {
    color: #333333;
    text-decoration: none;
    font-weight: inherit; }

h1, .h1 {
  font-size: 1.75em; }

h2, .h2 {
  font-size: 1.4375em; }

h3, .h3 {
  font-size: 1.1875em; }

h4, .h4 {
  font-size: 1.1875em;
  text-transform: uppercase; }

h5, .h5,
h6,
.h6 {
  font-size: 1em; }

/*================ RTE headings ================*/
.rte h1, .rte .h1,
.rte h2,
.rte .h2,
.rte h3,
.rte .h3,
.rte h4,
.rte .h4,
.rte h5,
.rte .h5,
.rte h6,
.rte .h6 {
  margin-top: 45px;
  margin-bottom: 30px; }
  .rte h1:first-child, .rte .h1:first-child,
  .rte h2:first-child,
  .rte .h2:first-child,
  .rte h3:first-child,
  .rte .h3:first-child,
  .rte h4:first-child,
  .rte .h4:first-child,
  .rte h5:first-child,
  .rte .h5:first-child,
  .rte h6:first-child,
  .rte .h6:first-child {
    margin-top: 0; }

/*================ Lists ================*/
.list--inline__separator {
  position: relative;
  padding-left: 18px;
  margin-left: 10px; }
  .list--inline__separator:before {
    content: '\2022';
    display: block;
    position: absolute;
    top: 0;
    left: 0; }

/*================ Paragraph styles ================*/
p {
  margin: 0 0 15px; }

.txt--minor {
  font-size: 85%; }

.txt--emphasis {
  font-style: italic; }

/*================ Blockquote ================*/
blockquote {
  font-family: Kalam, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 1.4375em;
  text-align: center;
  color: #333333;
  margin: 60px 30px; }
  blockquote cite {
    font-family: Daytona, sans-serif;
    font-style: normal;
    font-size: 0.85em;
    font-weight: 400; }

/*================ Tables ================*/
th {
  font-size: 1em;
  color: #333333; }

/*====== Link and buttons styles ======*/
.btn, .shopify-payment-button .shopify-payment-button__button--unbranded {
  position: relative;
  padding: 9px 15px;
  border-radius: 0;
  font-size: 17px;
  letter-spacing: 1px;
  border: 0; }
  @media only screen and (max-width: 749px) {
    .btn, .shopify-payment-button .shopify-payment-button__button--unbranded {
      font-size: 16px; } }
  .btn[disabled], .shopify-payment-button [disabled].shopify-payment-button__button--unbranded, .btn.btn--disabled, .shopify-payment-button .btn--disabled.shopify-payment-button__button--unbranded {
    opacity: 0.5;
    pointer-events: none; }
  .btn .icon, .shopify-payment-button .shopify-payment-button__button--unbranded .icon {
    width: 18px;
    height: 18px; }
  .btn + .btn, .shopify-payment-button .shopify-payment-button__button--unbranded + .btn, .shopify-payment-button .btn + .shopify-payment-button__button--unbranded, .shopify-payment-button .shopify-payment-button__button--unbranded + .shopify-payment-button__button--unbranded {
    margin-left: 8px; }
  .btn--unflipped + .btn, .shopify-payment-button .btn--unflipped + .shopify-payment-button__button--unbranded {
    margin-left: 0; }

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

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

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

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

.btn--ajax-disabled:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: #870303; }
.btn--ajax-disabled:after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border-radius: 50%;
  border: 3px solid #111010;
  border-top-color: transparent;
  -webkit-animation: spin 0.65s infinite linear;
  left: 50%; }

.btn--link {
  padding: 0;
  background-color: transparent;
  border: 0;
  color: #b90404;
  text-align: inherit; }
  .btn--link:hover, .btn--link:focus {
    opacity: 0.7; }

/*================ Default link styles ================*/
a {
  color: #b90404;
  text-decoration: none; }
  a:hover, a:focus {
    opacity: 0.7; }
  a.btn:hover, .shopify-payment-button a.shopify-payment-button__button--unbranded:hover, a.btn:focus, .shopify-payment-button a.shopify-payment-button__button--unbranded:focus {
    opacity: 1; }
  a.btn.btn--disabled, .shopify-payment-button a.btn--disabled.shopify-payment-button__button--unbranded {
    opacity: 0.5; }

a[href^="tel"] {
  color: inherit; }

/*================ Text links ================*/
.link-body-color {
  color: #333333; }
  .link-body-color:hover, .link-body-color:focus {
    opacity: 0.7; }

.text-link {
  color: #b90404;
  border-bottom: 1px solid;
  padding-bottom: 2px; }
  .text-link:hover, .text-link:focus {
    opacity: 0.7; }

/*============================================================================
  #Links and Buttons
==============================================================================*/
.btn, .shopify-payment-button .shopify-payment-button__button--unbranded,
.rte .btn,
.rte .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .rte .shopify-payment-button__button--unbranded {
  -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;
  cursor: pointer;
  text-transform: uppercase;
  min-height: 44px;
  line-height: 1.9;
  background-color: #b90404;
  color: #111010; }
  .btn:hover, .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
  .rte .btn:hover,
  .rte .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
  .shopify-payment-button .rte .shopify-payment-button__button--unbranded:hover {
    opacity: 0.8; }
  .btn:active, .shopify-payment-button .shopify-payment-button__button--unbranded:active, .btn:focus, .shopify-payment-button .shopify-payment-button__button--unbranded:focus,
  .rte .btn:active,
  .rte .shopify-payment-button .shopify-payment-button__button--unbranded:active,
  .shopify-payment-button .rte .shopify-payment-button__button--unbranded:active,
  .rte .btn:focus,
  .rte .shopify-payment-button .shopify-payment-button__button--unbranded:focus,
  .shopify-payment-button .rte .shopify-payment-button__button--unbranded:focus {
    background-color: #550202; }
  .btn[disabled], .shopify-payment-button [disabled].shopify-payment-button__button--unbranded, .btn.disabled, .shopify-payment-button .disabled.shopify-payment-button__button--unbranded,
  .rte .btn[disabled],
  .rte .shopify-payment-button [disabled].shopify-payment-button__button--unbranded,
  .shopify-payment-button .rte [disabled].shopify-payment-button__button--unbranded,
  .rte .btn.disabled,
  .rte .shopify-payment-button .disabled.shopify-payment-button__button--unbranded,
  .shopify-payment-button .rte .disabled.shopify-payment-button__button--unbranded {
    background-color: #b90404;
    color: #111010; }

.btn--full {
  display: block;
  width: 100%; }

.btn--secondary {
  padding: 7px 15px;
  background-color: transparent;
  color: #b90404;
  border: 2px solid #b90404; }
  .btn--secondary:hover {
    opacity: 0.8;
    background-color: transparent;
    color: #b90404;
    border: 2px solid #b90404; }
  .btn--secondary:active, .btn--secondary:focus {
    background-color: transparent;
    color: #b90404;
    border: 2px solid #b90404; }

/*================ Smart Payment Buttons ================*/
.shopify-payment-btn {
  width: 50% !important;
  white-space: normal; }
  @media only screen and (max-width: 989px) {
    .shopify-payment-btn {
      width: 100% !important; } }
  .product-form--full .shopify-payment-btn {
    width: 100% !important; }

.product-single__shopify-payment-btn .btn--view-cart {
  width: 50% !important;
  white-space: normal; }
  @media only screen and (max-width: 989px) {
    .product-single__shopify-payment-btn .btn--view-cart {
      width: 100% !important; } }
.product-form--full .btn--view-cart {
  width: 100% !important; }

.product-single__notification {
  margin: 8px 0 5px;
  font-size: 0.875em;
  width: 50%; }
  @media only screen and (max-width: 989px) {
    .product-single__notification {
      width: 100%; } }
  .product-single__shopify-payment-btn .product-single__notification {
    text-align: center; }
  .product-form--full .product-single__notification {
    width: 100%;
    text-align: center; }

.shopify-payment-button__button {
  margin-top: 15px;
  width: 50% !important; }
  @media only screen and (max-width: 989px) {
    .shopify-payment-button__button {
      width: 100% !important; } }
  .product-form--full .shopify-payment-button__button {
    width: 100% !important; }

.shopify-payment-button .shopify-payment-button__button--unbranded {
  white-space: normal; }
  .shopify-payment-button .shopify-payment-button__button--unbranded:hover {
    background-color: #eb0505 !important; }
  .shopify-payment-button .shopify-payment-button__button--unbranded:active, .shopify-payment-button .shopify-payment-button__button--unbranded:focus {
    background-color: #550202; }
.shopify-payment-button .shopify-payment-button__button--branded {
  display: inline-block; }
.shopify-payment-button .shopify-payment-button__more-options {
  width: 50%;
  font-size: 0.875em !important;
  margin-top: 8px;
  text-decoration: underline; }
  @media only screen and (max-width: 989px) {
    .shopify-payment-button .shopify-payment-button__more-options {
      width: 100%; } }
  .product-form--full .shopify-payment-button .shopify-payment-button__more-options {
    width: 100%; }
  .shopify-payment-button .shopify-payment-button__more-options:hover, .shopify-payment-button .shopify-payment-button__more-options:focus {
    opacity: 0.7; }

/*====== Table styles ======*/
table {
  border: 1px solid #111010;
  table-layout: fixed; }
  @media only screen and (max-width: 749px) {
    table {
      width: 100%; } }

td,
th {
  padding: 15px;
  border: 1px solid #111010; }

.table--no-border {
  border: 0; }
  .table--no-border td,
  .table--no-border th {
    border: 0; }

/*====== Site header styles ======*/
.announcement-bar {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  min-height: 5px;
  background-color: #b90404;
  text-decoration: none; }

.announcement-bar__message {
  display: block;
  font-weight: 700;
  margin-bottom: 0;
  padding: 10px 30px;
  color: #111010; }

.page-border {
  display: block;
  position: relative;
  height: 5px;
  background-color: #b90404; }

@media only screen and (min-width: 750px) {
  .top-bar {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    font-size: 14.4px;
    line-height: 37.76px; }
    .top-bar input {
      font-size: 13.6px; } }
@media only screen and (max-width: 749px) {
  .top-bar {
    margin-top: 10px; }
    .top-bar .icon {
      width: 25px;
      height: 25px; } }
.top-bar .search-bar {
  white-space: nowrap; }
.top-bar .search-bar__input {
  background: transparent;
  border: 0;
  width: calc(100% - 22px); }
  .top-bar .search-bar__input::-webkit-input-placeholder {
    color: #333333;
    opacity: 1; }
  .top-bar .search-bar__input::-moz-placeholder {
    color: #333333;
    opacity: 1; }
  .top-bar .search-bar__input:-ms-input-placeholder {
    color: #333333;
    opacity: 1; }
  .top-bar .search-bar__input::-ms-input-placeholder {
    color: #333333;
    opacity: 1; }
  .top-bar .search-bar__input::placeholder {
    color: #333333;
    opacity: 1; }
.top-bar .search-bar__input:focus::-webkit-input-placeholder {
  color: #e8e8e8;
  opacity: 0; }
.top-bar .search-bar__input:focus::-moz-placeholder {
  color: #e8e8e8;
  opacity: 0; }
.top-bar .search-bar__input:focus:-ms-input-placeholder {
  color: #e8e8e8;
  opacity: 0; }
.top-bar .search-bar__input:focus::-ms-input-placeholder {
  color: #e8e8e8;
  opacity: 1; }
.top-bar .search-bar__input:focus::placeholder {
  color: #e8e8e8;
  opacity: 0; }
.top-bar .search-bar__submit {
  background: transparent;
  border: 0; }

@media only screen and (min-width: 750px) {
  .icon-cart {
    margin-right: 5px;
    position: relative;
    top: -1px; } }
.vertical-divider::after {
  content: '|';
  color: #111010;
  padding: 5px;
  visibility: hidden; }

@media only screen and (min-width: 750px) {
  .site-header {
    height: 140px; } }
#HeaderLogoWrapper {
  position: relative;
  margin: 30px 0; }
  @media only screen and (max-width: 749px) {
    #HeaderLogoWrapper {
      margin: 30px auto; } }

#HeaderLogo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }
  #HeaderLogo.lazyload {
    opacity: 0; }

.site-header__logo {
  display: block;
  margin: 30px 0;
  max-width: 100%; }
  .text-center .site-header__logo {
    margin: 30px auto; }

@media only screen and (max-width: 749px) {
  .site-header__logo {
    margin: 15px auto; } }
.site-header__site-name {
  display: block;
  margin: 15px; }

@media only screen and (min-width: 750px) {
  .site-header__site-name {
    margin: 30px 0; } }
.top-bar,
.site-header {
  color: #333333; }
  .top-bar a,
  .site-header a {
    color: #333333; }

.shopify-slideshow-section {
  margin-bottom: 60px !important; }

.slideshow-container:focus {
  outline: 5px auto -webkit-focus-ring-color; }

/*================ Variables ================*/
/*============================================================================
  #FlexSlider
    - jQuery FlexSlider v2.2.0 | http://www.woothemes.com/flexslider/
    - Contributing author: Tyler Smith (@mbmufffin)
==============================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
  overflow: visible !important; }
  .flexslider li {
    margin: 0;
    max-width: 100%; }
  .flexslider .slides__slide {
    display: none;
    /* Hide the slides before the JS is loaded. Avoids image jumping */
    margin: 0;
    position: relative;
    -webkit-backface-visiblity: hidden;
    backface-visiblity: hidden; }
  .flexslider .slides {
    margin: 0;
    padding: 0;
    list-style-type: none; }

.flexslider--adapt,
.flexslider--adapt .flex-viewport {
  max-height: 90vh; }

.flexslider--adapt.flexslider--slide .slides {
  max-height: 90vh;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }
.flexslider--adapt .slides__slide {
  height: 100%;
  overflow: hidden; }
.flexslider--adapt.flexslider--fade .slides__slide {
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }
.flexslider--adapt .slides__image, .flexslider--adapt .placeholder-svg {
  height: 100%;
  overflow: hidden; }

.slide-hide {
  height: 1px; }
  .slide-hide .slides__image, .slide-hide .placeholder-svg {
    display: none;
    height: 1px; }

.slides__image {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  object-fit: cover;
  font-family: "object-fit: cover"; }

.slides {
  *zoom: 1; }
  .slides::after {
    content: '';
    display: table;
    clear: both; }

html[xmlns] .slides {
  display: block; }

* html .slides {
  height: 1%; }

/*================ No JS Fallback ================*/
.no-js .slides > li:first-child {
  display: block; }

.flexslider {
  position: relative;
  zoom: 1; }

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }

.loading .flex-viewport {
  max-height: 300px; }

.flexslider .slides {
  zoom: 1; }

.carousel li {
  margin-right: 5px; }

/*================ Controls ================*/
.slider__controls-container {
  position: relative; }

.slider__controls-button {
  width: 44px;
  height: 44px;
  position: absolute;
  border-style: none;
  background: transparent; }
  .slider__controls-button .icon {
    height: 0.7rem;
    color: #b90404;
    opacity: 1;
    transition: opacity 0.3s ease-out; }
  .slider__controls-button:hover .icon {
    opacity: 0.5; }

.slider__controls-button--pause {
  right: 4px; }
  .slider__controls-button--pause .icon {
    height: 0.5rem;
    font-size: 0.5rem;
    margin: 0 auto; }

.icon-pause {
  display: block; }
  .is-paused .icon-pause {
    display: none; }

.icon-play {
  display: none; }
  .is-paused .icon-play {
    display: block; }

/*================ Direction Nav ================*/
.slider-navigation {
  position: relative;
  margin: 0;
  z-index: 2;
  list-style: none; }
  .slider-navigation li {
    margin: 0; }

/*================ Control Nav ================*/
.flex-control-nav {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  z-index: 3; }
  .flex-control-nav li {
    margin: 0 4px;
    display: inline-block;
    zoom: 1;
    vertical-align: middle; }

.flex-control-paging a {
  width: 12px;
  height: 12px;
  display: block;
  background-color: #b90404;
  cursor: pointer;
  text-indent: -9999px;
  border-radius: 20px;
  border: 2px solid #fff;
  transition: opacity 0.3s ease-out; }
  .flex-control-paging a:hover {
    opacity: 0.5;
    background-color: #b90404; }
  .flex-control-paging a.flex-active {
    background-color: #fff;
    border-color: #b90404;
    cursor: default; }

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden; }

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0; }

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer; }

.flex-control-thumbs img:hover {
  opacity: 1; }

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default; }

/*================ Custom Flexslider Styles ================*/
.slides__slide::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: 0; }
  @media only screen and (max-width: 749px) {
    .slides__slide::before {
      content: none; } }

/*================ Slide text ================*/
.slideshow__mobile-text-container {
  display: block; }
  @media only screen and (min-width: 750px) {
    .slideshow__mobile-text-container {
      display: none; } }

.slides__text-content {
  width: 80%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1; }
  .slide-hide .slides__text-content {
    display: none; }
  .no-js .slides__text-content::after {
    opacity: 0;
    visibility: hidden;
    content: none; }

.slides__text-content--mobile {
  display: none;
  position: relative;
  transform: none;
  margin-top: 22px;
  padding-bottom: 1rem; }

.no-js .slides__text-content--mobile:first-of-type {
  display: block; }

.slides-text-content-wrapper-left {
  width: 50%; }

.slides-text-content-wrapper-right {
  width: 50%;
  margin-left: auto; }

.slides__title {
  display: none;
  margin-bottom: 0; }
  @media only screen and (min-width: 750px) {
    .slides__title {
      display: block; } }

.slides__title--small {
  font-size: 1.5em; }

.slides__title--large {
  font-size: 2em; }

.slides__title--mobile {
  display: block; }
  @media only screen and (min-width: 750px) {
    .slides__title--mobile {
      display: none; } }

.slides__btn {
  display: none;
  border: none; }
  @media only screen and (min-width: 750px) {
    .slides__btn {
      display: block; } }

.slides__title + .slides__btn {
  margin-top: 30px; }

.slides__btn {
  max-width: 100%;
  display: none;
  word-wrap: break-word;
  white-space: normal; }
  @media only screen and (min-width: 750px) {
    .slides__btn {
      display: inline-block; } }
  .slide-hide .slides__btn {
    display: none; }

.slides__btn--mobile {
  display: inline-block; }
  @media only screen and (min-width: 750px) {
    .slides__btn--mobile {
      display: none; } }

/*====== Forms styles ======*/
input,
textarea,
select {
  border-radius: 0;
  max-width: 100%;
  background-color: #fafafa;
  border: 0;
  padding: 8px; }
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  select::-webkit-input-placeholder {
    color: #333333;
    opacity: 0.6; }
  input::-moz-placeholder,
  textarea::-moz-placeholder,
  select::-moz-placeholder {
    color: #333333;
    opacity: 0.6; }
  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  select:-ms-input-placeholder {
    color: #333333;
    opacity: 0.6; }
  input::-ms-input-placeholder,
  textarea::-ms-input-placeholder,
  select::-ms-input-placeholder {
    color: #333333;
    opacity: 1; }
  input::placeholder,
  textarea::placeholder,
  select::placeholder {
    color: #333333;
    opacity: 0.6; }
  input[disabled], input.disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    color: rgba(0, 0, 0, 0.5);
    background-color: #e6e6e6; }
  input.input-full,
  textarea.input-full,
  select.input-full {
    width: 100%; }
  input.input--error,
  textarea.input--error,
  select.input--error {
    border: 1px solid #b62b2b;
    background-color: #fff0f0;
    color: #b62b2b; }
    input.input--error::-webkit-input-placeholder,
    textarea.input--error::-webkit-input-placeholder,
    select.input--error::-webkit-input-placeholder {
      color: #b62b2b;
      opacity: 0.6; }
    input.input--error::-moz-placeholder,
    textarea.input--error::-moz-placeholder,
    select.input--error::-moz-placeholder {
      color: #b62b2b;
      opacity: 0.6; }
    input.input--error:-ms-input-placeholder,
    textarea.input--error:-ms-input-placeholder,
    select.input--error:-ms-input-placeholder {
      color: #b62b2b;
      opacity: 0.6; }
    input.input--error::-ms-input-placeholder,
    textarea.input--error::-ms-input-placeholder,
    select.input--error::-ms-input-placeholder {
      color: #b62b2b;
      opacity: 1; }
    input.input--error::placeholder,
    textarea.input--error::placeholder,
    select.input--error::placeholder {
      color: #b62b2b;
      opacity: 0.6; }

textarea {
  min-height: 150px; }

/*================ Custom select style ================*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url(ico-select_v-354012039368648229.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer; }

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

/*============ Form fields stacked =========== */
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  margin-bottom: 8px;
  min-width: 300px; }
  @media only screen and (max-width: 749px) {
    .form-vertical input,
    .form-vertical select,
    .form-vertical textarea {
      width: 100%; } }
.form-vertical input[type="radio"],
.form-vertical input[type="checkbox"] {
  display: inline-block; }
  @media only screen and (max-width: 749px) {
    .form-vertical input[type="radio"],
    .form-vertical input[type="checkbox"] {
      width: auto; } }
.form-vertical input[type="submit"],
.form-vertical .btn,
.form-vertical .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .form-vertical .shopify-payment-button__button--unbranded {
  display: block;
  margin-left: 0; }

/*================ Individual block elements ================*/
.label--block {
  display: block; }

.input--block {
  display: block;
  width: 100%; }

/*================ Error & Success states ================*/
.errors,
.form--success {
  border: 1px solid;
  padding: 8px;
  margin: 8px 0; }
  .errors ul,
  .form--success ul {
    margin: 0;
    padding-left: 0; }
  .errors li,
  .form--success li {
    list-style-position: inside; }

.errors {
  border-color: #b62b2b;
  background: #fff0f0; }
  .errors li {
    color: #b62b2b; }
  @media only screen and (min-width: 750px) {
    .newsletter-section .errors {
      width: 66.66667%; } }

.form--success {
  margin-top: 60px;
  border-color: #56ad6a;
  background: #ecfef0;
  color: #56ad6a; }
  .form--success li {
    list-style-type: none; }

/*================ Contact Form ================*/
@media only screen and (min-width: 750px) {
  .contact-form .contact-form__email {
    padding-left: 8px; } }
/*=================== ======================================
  Input groups
  - Align a text input beside a submit button without
    any space between them. The button will size its parent
    based on the 1% width below while maintaining its
    padding and styles.
==========================================================*/
.input-group {
  position: relative;
  display: table;
  width: 100%;
  border-collapse: separate; }
  .form-vertical .input-group {
    margin-bottom: 30px; }
  @media only screen and (min-width: 750px) {
    .newsletter-section .input-group {
      width: 66.66667%; } }

.input-group__field,
.input-group__btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0; }

.input-group__field,
.input-group__btn .btn,
.input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .input-group__btn .shopify-payment-button__button--unbranded {
  height: 48px;
  padding-top: 0;
  padding-bottom: 0; }

.input-group__field {
  width: 100%; }
  .form-vertical .input-group__field {
    margin: 0; }

.input-group__btn {
  white-space: nowrap;
  width: 1%; }
  .input-group__btn .icon-arrow-right {
    width: 14px;
    height: 14px; }

/*====== Home page styles ======*/
.banner__image-wrapper {
  display: block;
  position: relative; }

.banner__image {
  display: block;
  width: 100%; }
  .banner__image.lazyload {
    opacity: 0; }
  .supports-js .banner__image {
    position: absolute;
    top: 0; }

/*====== Navigation styles ======*/
@media only screen and (min-width: 750px) {
  .site-nav__item {
    border-bottom: 1px solid #111010; }
    .site-nav__item:first-child {
      border-top: 1px solid #111010; }

  .site-nav__grandchild {
    margin-left: 10px; } }
@media only screen and (max-width: 749px) {
  .site-nav__grandchild:first-child {
    margin-top: 5px; } }
.site-nav__grandchild a {
  color: rgba(51, 51, 51, 0.65); }

.site-nav__link {
  display: block;
  width: 100%;
  padding: 9px 0;
  font-size: 18px;
  color: #333333; }
  @media only screen and (min-width: 750px) {
    .site-nav__link {
      padding: 12px 0; } }
  .site-nav__submenu .site-nav__link {
    padding: 4px 0; }
    @media only screen and (min-width: 750px) {
      .site-nav__submenu .site-nav__link {
        font-size: 15.3px; } }

.site-nav ul,
.site-footer__menu {
  padding-left: 0;
  margin-left: 0;
  margin-top: 0; }

.site-nav--active a,
.site-nav__submenu .site-nav--active a {
  color: #333333;
  font-weight: 700; }

@media only screen and (max-width: 749px) {
  .small--text-center .site-nav__link {
    margin: 0 auto; }

  .site-nav {
    display: none;
    margin-bottom: 30px; } }
.site-nav__submenu {
  margin: 27px 0 18px; }

@media only screen and (min-width: 750px) {
  .site-nav__submenu--grandchild {
    margin: 27px 0 3px; } }
.site-nav__expand,
.site-nav__collapse {
  white-space: nowrap; }

@media only screen and (min-width: 750px) {
  .site-nav__expand,
  .site-nav__collapse {
    white-space: normal;
    position: relative;
    text-align: left; }
    .site-nav__expand span,
    .site-nav__collapse span {
      position: absolute;
      right: 0;
      opacity: 0.8; }

  .site-nav__collapse span {
    right: 2px; } }
.social-links {
  margin-bottom: 30px; }
  .social-links a {
    color: #333333; }

.mobile-menu-icon {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  width: 33.3px;
  height: 25px;
  display: block;
  position: relative;
  margin: 20px auto;
  color: #333333;
  background: none;
  border: 0;
  outline: none; }
  .mobile-menu-icon .line {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #333333;
    border-radius: 5px;
    opacity: 1;
    left: 0; }
  .mobile-menu-icon .line:nth-child(1) {
    top: 0; }
  .mobile-menu-icon .line:nth-child(2),
  .mobile-menu-icon .line:nth-child(3) {
    top: 10px; }
  .mobile-menu-icon .line:nth-child(4) {
    top: 20px; }
  .mobile-menu-icon.open .line:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%; }
  .mobile-menu-icon.open .line:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg); }
  .mobile-menu-icon.open .line:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg); }
  .mobile-menu-icon.open .line:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%; }

.breadcrumb-nav {
  padding: 0;
  margin: -10px 0 10px;
  font-size: 14.4px;
  line-height: 25.6px; }
  @media only screen and (max-width: 749px) {
    .breadcrumb-nav {
      margin-top: 10px; } }
  .breadcrumb-nav a {
    color: #333333; }

.breadcrumb-nav--no-template {
  margin-bottom: 50px; }

.breadcrumb-nav__separator {
  font-size: 17.6px;
  padding: 0 2px; }

/*====== Collection styles ======*/
.collection-sorting {
  margin: 0 auto 30px; }

.collection-sorting__dropdown {
  display: inline-block; }
  .collection-sorting__dropdown + .collection-sorting__dropdown {
    padding-left: 15px; }

.collection-description {
  margin-bottom: 15px; }

.product {
  position: relative; }

.product__image-wrapper {
  display: block;
  margin-bottom: 10px;
  position: relative; }
  .product__image-wrapper img {
    display: block;
    margin: 0 auto; }

.product__image-wrapper--loading {
  background-color: #333333;
  -webkit-animation: placeholder-background-loading 1.5s infinite linear; }

.product__image {
  display: block;
  width: 100%;
  position: absolute;
  top: 0; }
  .product__image.lazyload {
    opacity: 0; }

.product__title {
  font-family: Kalam, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-rendering: optimizeLegibility; }

.product__title--card {
  font-size: 17.6px; }

.product__title a,
.collection__title a {
  color: #333333; }

.product__price--on-sale {
  color: #b90404; }

.badge {
  position: absolute;
  line-height: 1.1; }
  .badge span {
    height: 55px;
    width: 55px;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding: 3px;
    border-radius: 50%;
    font-size: 13px;
    color: #111010; }

.badge--sold-out {
  top: 3px;
  left: 3px; }
  .badge--sold-out span {
    background-color: #888888; }

.badge--sale {
  top: 3px;
  right: 3px; }
  .badge--sale span {
    background-color: #b90404; }

@-webkit-keyframes slide-up-animation {
  0% {
    opacity: 0;
    transform: translateY(1000px); }

  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes slide-up-animation {
  0% {
    opacity: 0;
    transform: translateY(1000px); }

  100% {
    opacity: 1;
    transform: translateY(0); } }

.slide-up-animation {
  -webkit-animation-name: slide-up-animation;
  -moz-animation-name: slide-up-animation;
  -o-animation-name: slide-up-animation; }

.animated {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s; }
  .grid--uniform .animated:nth-child(1) {
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    -o-animation-delay: 0.1s; }
  .grid--uniform .animated:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -o-animation-delay: 0.2s; }
  .grid--uniform .animated:nth-child(3) {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    -o-animation-delay: 0.3s; }
  .grid--uniform .animated:nth-child(4) {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    -o-animation-delay: 0.4s; }
  .grid--uniform .animated:nth-child(5) {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -o-animation-delay: 0.5s; }
  .grid--uniform .animated:nth-child(6) {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -o-animation-delay: 0.6s; }
  .grid--uniform .animated:nth-child(7) {
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    -o-animation-delay: 0.7s; }
  .grid--uniform .animated:nth-child(8) {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -o-animation-delay: 0.8s; }
  .grid--uniform .animated:nth-child(9) {
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
    -o-animation-delay: 0.9s; }
  .grid--uniform .animated:nth-child(10) {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s; }
  .grid--uniform .animated:nth-child(11) {
    -webkit-animation-delay: 1.1s;
    -moz-animation-delay: 1.1s;
    -o-animation-delay: 1.1s; }
  .grid--uniform .animated:nth-child(12) {
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    -o-animation-delay: 1.2s; }
  .grid--uniform .animated:nth-child(13) {
    -webkit-animation-delay: 1.3s;
    -moz-animation-delay: 1.3s;
    -o-animation-delay: 1.3s; }
  .grid--uniform .animated:nth-child(14) {
    -webkit-animation-delay: 1.4s;
    -moz-animation-delay: 1.4s;
    -o-animation-delay: 1.4s; }
  .grid--uniform .animated:nth-child(15) {
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    -o-animation-delay: 1.5s; }
  .grid--uniform .animated:nth-child(16) {
    -webkit-animation-delay: 1.6s;
    -moz-animation-delay: 1.6s;
    -o-animation-delay: 1.6s; }
  .grid--uniform .animated:nth-child(17) {
    -webkit-animation-delay: 1.7s;
    -moz-animation-delay: 1.7s;
    -o-animation-delay: 1.7s; }
  .grid--uniform .animated:nth-child(18) {
    -webkit-animation-delay: 1.8s;
    -moz-animation-delay: 1.8s;
    -o-animation-delay: 1.8s; }
  .grid--uniform .animated:nth-child(19) {
    -webkit-animation-delay: 1.9s;
    -moz-animation-delay: 1.9s;
    -o-animation-delay: 1.9s; }
  .grid--uniform .animated:nth-child(20) {
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    -o-animation-delay: 2s; }
  .grid--uniform .animated:nth-child(21) {
    -webkit-animation-delay: 2.1s;
    -moz-animation-delay: 2.1s;
    -o-animation-delay: 2.1s; }
  .grid--uniform .animated:nth-child(22) {
    -webkit-animation-delay: 2.2s;
    -moz-animation-delay: 2.2s;
    -o-animation-delay: 2.2s; }
  .grid--uniform .animated:nth-child(23) {
    -webkit-animation-delay: 2.3s;
    -moz-animation-delay: 2.3s;
    -o-animation-delay: 2.3s; }
  .grid--uniform .animated:nth-child(24) {
    -webkit-animation-delay: 2.4s;
    -moz-animation-delay: 2.4s;
    -o-animation-delay: 2.4s; }
  .grid--uniform .animated:nth-child(25) {
    -webkit-animation-delay: 2.5s;
    -moz-animation-delay: 2.5s;
    -o-animation-delay: 2.5s; }
  .grid--uniform .animated:nth-child(26) {
    -webkit-animation-delay: 2.6s;
    -moz-animation-delay: 2.6s;
    -o-animation-delay: 2.6s; }
  .grid--uniform .animated:nth-child(27) {
    -webkit-animation-delay: 2.7s;
    -moz-animation-delay: 2.7s;
    -o-animation-delay: 2.7s; }
  .grid--uniform .animated:nth-child(28) {
    -webkit-animation-delay: 2.8s;
    -moz-animation-delay: 2.8s;
    -o-animation-delay: 2.8s; }
  .grid--uniform .animated:nth-child(29) {
    -webkit-animation-delay: 2.9s;
    -moz-animation-delay: 2.9s;
    -o-animation-delay: 2.9s; }
  .grid--uniform .animated:nth-child(30) {
    -webkit-animation-delay: 3s;
    -moz-animation-delay: 3s;
    -o-animation-delay: 3s; }
  .grid--uniform .animated:nth-child(31) {
    -webkit-animation-delay: 3.1s;
    -moz-animation-delay: 3.1s;
    -o-animation-delay: 3.1s; }
  .grid--uniform .animated:nth-child(32) {
    -webkit-animation-delay: 3.2s;
    -moz-animation-delay: 3.2s;
    -o-animation-delay: 3.2s; }
  .grid--uniform .animated:nth-child(33) {
    -webkit-animation-delay: 3.3s;
    -moz-animation-delay: 3.3s;
    -o-animation-delay: 3.3s; }
  .grid--uniform .animated:nth-child(34) {
    -webkit-animation-delay: 3.4s;
    -moz-animation-delay: 3.4s;
    -o-animation-delay: 3.4s; }
  .grid--uniform .animated:nth-child(35) {
    -webkit-animation-delay: 3.5s;
    -moz-animation-delay: 3.5s;
    -o-animation-delay: 3.5s; }
  .grid--uniform .animated:nth-child(36) {
    -webkit-animation-delay: 3.6s;
    -moz-animation-delay: 3.6s;
    -o-animation-delay: 3.6s; }
  .grid--uniform .animated:nth-child(37) {
    -webkit-animation-delay: 3.7s;
    -moz-animation-delay: 3.7s;
    -o-animation-delay: 3.7s; }
  .grid--uniform .animated:nth-child(38) {
    -webkit-animation-delay: 3.8s;
    -moz-animation-delay: 3.8s;
    -o-animation-delay: 3.8s; }
  .grid--uniform .animated:nth-child(39) {
    -webkit-animation-delay: 3.9s;
    -moz-animation-delay: 3.9s;
    -o-animation-delay: 3.9s; }
  .grid--uniform .animated:nth-child(40) {
    -webkit-animation-delay: 4s;
    -moz-animation-delay: 4s;
    -o-animation-delay: 4s; }
  .grid--uniform .animated:nth-child(41) {
    -webkit-animation-delay: 4.1s;
    -moz-animation-delay: 4.1s;
    -o-animation-delay: 4.1s; }
  .grid--uniform .animated:nth-child(42) {
    -webkit-animation-delay: 4.2s;
    -moz-animation-delay: 4.2s;
    -o-animation-delay: 4.2s; }
  .grid--uniform .animated:nth-child(43) {
    -webkit-animation-delay: 4.3s;
    -moz-animation-delay: 4.3s;
    -o-animation-delay: 4.3s; }
  .grid--uniform .animated:nth-child(44) {
    -webkit-animation-delay: 4.4s;
    -moz-animation-delay: 4.4s;
    -o-animation-delay: 4.4s; }
  .grid--uniform .animated:nth-child(45) {
    -webkit-animation-delay: 4.5s;
    -moz-animation-delay: 4.5s;
    -o-animation-delay: 4.5s; }
  .grid--uniform .animated:nth-child(46) {
    -webkit-animation-delay: 4.6s;
    -moz-animation-delay: 4.6s;
    -o-animation-delay: 4.6s; }
  .grid--uniform .animated:nth-child(47) {
    -webkit-animation-delay: 4.7s;
    -moz-animation-delay: 4.7s;
    -o-animation-delay: 4.7s; }
  .grid--uniform .animated:nth-child(48) {
    -webkit-animation-delay: 4.8s;
    -moz-animation-delay: 4.8s;
    -o-animation-delay: 4.8s; }
  .grid--uniform .animated:nth-child(49) {
    -webkit-animation-delay: 4.9s;
    -moz-animation-delay: 4.9s;
    -o-animation-delay: 4.9s; }
  .grid--uniform .animated:nth-child(50) {
    -webkit-animation-delay: 5s;
    -moz-animation-delay: 5s;
    -o-animation-delay: 5s; }

@-webkit-keyframes placeholder-background-loading {
  0% {
    opacity: 0.02; }

  50% {
    opacity: 0.05; }

  100% {
    opacity: 0.02; } }

@keyframes placeholder-background-loading {
  0% {
    opacity: 0.02; }

  50% {
    opacity: 0.05; }

  100% {
    opacity: 0.02; } }

/*====== Product template styles ======*/
.product-single__title {
  margin-bottom: 0; }

.product-single__variants {
  display: none; }
  .no-js .product-single__variants {
    display: block; }

.product-single__featured-image-wrapper {
  margin: 0 auto 30px;
  position: relative;
  width: 100%; }

.product-single__photos a,
.product-single__photos img,
.product-single__thumbnails a,
.product-single__thumbnails img {
  display: block;
  margin: 0 auto;
  max-width: 100%; }

.supports-js .product-single__photos {
  position: relative; }

.product-single__photo {
  width: 100%; }
  .supports-js .product-single__photo {
    position: absolute;
    top: 0; }
  .product-single__photo.lazyload {
    opacity: 0; }

.lightbox {
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.image-zoom {
  cursor: move; }

.product-single__thumbnails li {
  margin-bottom: 30px; }

.product-single__meta {
  padding-top: 15px; }

.product-single__prices {
  margin: 5px 0; }

.product-single__cart-submit-wrapper {
  margin: 15px 0;
  clear: both; }

.product-single__cart-submit-wrapper--onboarding {
  margin-top: 40px; }

.product-single__price {
  font-size: 22.4px; }

.product-single__policies {
  font-size: 0.9375em; }

.product-single__price--on-sale {
  color: #b90404; }

.product-single__price--compare {
  margin-left: 6px;
  font-size: 20.32px; }

.product-single__quantity,
.selector-wrapper {
  display: inline-block;
  margin-bottom: 15px; }

.selector-wrapper {
  padding-right: 6px; }

.product-single__quantity input,
.quantity-selector {
  width: 55px;
  text-align: center; }

.product-form {
  margin-top: 2.4rem; }

.product-form label,
.cart label {
  font-size: 12.8px;
  margin-bottom: 3px;
  display: block;
  cursor: pointer; }

.product-form--default-variant-only .selector-wrapper {
  display: none; }

.single-option-selector {
  min-width: 55px; }

.product-single__description,
.tabs {
  margin: 30px 0; }

.product-single__full-details {
  cursor: pointer;
  border-bottom: none; }

.tab-switch__nav {
  padding: 0;
  list-style: none;
  border-top: 1px solid #111010;
  border-bottom: 1px solid #111010;
  margin: 30px 0; }
  .tab-switch__nav li {
    padding: 15px; }
  .tab-switch__nav li:first-child {
    border-right: 1px solid #111010; }

.tab-switch__trigger {
  font-family: Kalam, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1875em;
  display: block;
  color: #333333;
  margin: 0; }
  .tab-switch__trigger.is-active {
    font-weight: 700;
    color: #333333; }

.tab-switch__content {
  display: block; }
  .tab-switch__content.is-hidden {
    display: none; }

.product-unit-price {
  color: rgba(51, 51, 51, 0.8);
  display: none;
  font-size: 0.8125em; }

.product-unit-price--available {
  display: block; }

/*====== Cart page styles ======*/
.cart-table {
  width: 100%;
  margin-bottom: 30px; }
  .cart-table th:first-child {
    padding-left: 0; }
  @media only screen and (max-width: 989px) {
    .cart-table thead {
      display: none; }
    .cart-table tr {
      display: block; }
    .cart-table th,
    .cart-table td {
      display: block;
      text-align: right;
      padding: 15px;
      margin: 0; }
    .cart-table td::before {
      content: attr(data-label);
      float: left;
      text-align: center;
      padding-right: 10px; }
    .cart-table .responsive-table__row + .responsive-table__row,
    .cart-table tfoot > .responsive-table__row:first-child {
      position: relative;
      margin-top: 10px;
      padding-top: 15px; }
      .cart-table .responsive-table__row + .responsive-table__row::after,
      .cart-table tfoot > .responsive-table__row:first-child::after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 15px;
        right: 15px;
        border-bottom: 1px solid #111010; } }
  .cart-table .cart__table-cell--image {
    padding-left: 25%;
    padding-right: 25%; }
    @media only screen and (min-width: 750px) {
      .cart-table .cart__table-cell--image {
        padding-left: 35%;
        padding-right: 35%; } }
    @media only screen and (min-width: 990px) {
      .cart-table .cart__table-cell--image {
        padding-left: 0;
        padding-right: 0;
        width: 15%; } }

.cart__image-wrapper {
  margin: 0 auto; }

.cart__image-container {
  display: block;
  position: relative; }

.cart__image {
  display: block;
  width: 100%; }
  .supports-js .cart__image {
    position: absolute;
    top: 0; }
  .cart__image.lazyload {
    opacity: 0; }

.cart__note {
  margin-bottom: 50px; }
  @media only screen and (min-width: 750px) {
    .cart__note {
      margin-bottom: 30px; } }

.cart__remove {
  color: #333333; }

.cart__policies {
  margin-bottom: 50px; }

.update-cart {
  margin-right: 4px; }

@media only screen and (min-width: 990px) {
  .cart__table-cell--meta {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0;
    padding-bottom: 0;
    width: 30%; }

  .cart__table-cell--price,
  .cart__table-cell--line-price,
  .cart__table-cell--quantity {
    width: auto;
    padding: 0; }
    .cart__table-cell--price span,
    .cart__table-cell--line-price span,
    .cart__table-cell--quantity span {
      white-space: nowrap; }

  .cart__table-cell--price {
    width: 25%; } }
.cart--no-cookies .cart--empty-message {
  display: none; }

.cart--no-cookies .cart--continue-message {
  display: none; }

.cart--cookie-message {
  display: none;
  padding-bottom: 25px; }
  .cart--no-cookies .cart--cookie-message {
    display: block; }

.article .list--inline {
  margin-bottom: 15px; }

.comments {
  padding-left: 0;
  margin-left: 0; }

.article__image-wrapper {
  display: block;
  position: relative; }

.article__image {
  display: block;
  margin-bottom: 15px;
  width: 100%; }
  .supports-js .article__image {
    position: absolute;
    top: 0; }
  .article__image.lazyload {
    opacity: 0; }

/*====== Collections list styles ======*/
.collection__image-wrapper {
  display: block;
  position: relative;
  margin: 0 auto; }

.collection__image {
  display: block;
  width: 100%; }
  .supports-js .collection__image {
    position: absolute;
    top: 0; }
  .collection__image.lazyload {
    opacity: 0; }

/*====== Section template styles ======*/
.index-sections .shopify-section:last-child {
  margin-bottom: 0; }
.index-sections .shopify-section {
  margin-bottom: 30px; }

/*====== Section onboarding template styles ======*/
.placeholder-svg {
  fill: rgba(51, 51, 51, 0.35);
  background-color: rgba(51, 51, 51, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%; }

.placeholder-background {
  display: block; }
  .placeholder-background .placeholder-svg {
    padding: 30px; }

/*====== Section featured row styles ======*/
.feature-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  @media only screen and (max-width: 749px) {
    .feature-row {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -ms-flex-align: stretch;
      -webkit-align-items: stretch;
      -moz-align-items: stretch;
      -ms-align-items: stretch;
      -o-align-items: stretch;
      align-items: stretch; } }

.feature-row__item {
  -webkit-flex: 0 1 50%;
  -moz-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%; }
  @media only screen and (max-width: 749px) {
    .feature-row__item {
      -webkit-flex: 1 1 auto;
      -moz-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      max-width: 100%; } }

.feature-row__image-wrapper {
  display: block;
  margin: 0 auto;
  position: relative; }
  @media only screen and (max-width: 749px) {
    .feature-row__image-wrapper {
      order: 1; } }

.feature-row__image {
  display: block;
  width: 100%; }
  .supports-js .feature-row__image {
    position: absolute;
    top: 0; }
  .feature-row__image.lazyload {
    opacity: 0; }

.feature-row__text {
  padding-top: 35px;
  padding-bottom: 35px; }
  @media only screen and (max-width: 749px) {
    .feature-row__text {
      order: 2;
      padding-bottom: 0; } }

@media only screen and (min-width: 750px) {
  .feature-row__text--left {
    padding-left: 35px; }

  .feature-row__text--right {
    padding-right: 35px; } }
/*====== Password styles ======*/
.icon-shopify-logo {
  width: 82.28571px;
  height: 24px;
  vertical-align: middle;
  fill: currentColor; }

.icon-lock {
  width: 16px;
  height: 16px; }

.password-signup,
.password-login {
  max-width: 400px; }
  .password-signup .input-group,
  .password-login .input-group {
    margin-bottom: 15px; }

.password-login-toggle {
  display: block; }
  .password-login-toggle .icon-lock {
    position: relative;
    top: -3px; }

.password-opening-soon,
.password-message,
.password-signup,
.password-social-sharing,
.password-login {
  margin: 45px auto; }
  .password-opening-soon .section-heading,
  .password-message .section-heading,
  .password-signup .section-heading,
  .password-social-sharing .section-heading,
  .password-login .section-heading {
    margin-top: 0;
    margin-bottom: 15px; }

.password-signup .rte {
  margin-bottom: 25px; }

.password-social-sharing .social-sharing {
  margin-top: 15px; }

.template-password {
  height: 100vh;
  text-align: center; }
  .template-password .password-page__wrapper {
    display: table;
    height: 100%;
    width: 100%; }
  .template-password footer {
    margin-bottom: 10px; }

.password-header-section {
  display: table-row; }

.password-page__header {
  display: table-cell;
  padding-top: 30px; }

.password-page__main {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto; }

.password-page__main__inner {
  display: table-cell;
  vertical-align: middle;
  margin-top: 30px;
  padding: 15px 30px; }

/*====== Customer account pages styles ======*/
.form-address {
  margin-top: 30px; }

.order-table {
  border: 1px solid #111010;
  text-align: left; }
  .order-table th, .order-table td {
    border: 0; }
  .order-table tbody th,
  .order-table tfoot th {
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0; }
  .order-table tbody tr + tr {
    border-top: 1px solid #111010; }
  .order-table thead {
    border-bottom: 1px solid #333333; }
  .order-table tfoot {
    border-top: 1px solid #333333; }
    .order-table tfoot tr:first-child th, .order-table tfoot tr:first-child td {
      padding-top: 1.25em; }
    .order-table tfoot tr:nth-last-child(2) th, .order-table tfoot tr:nth-last-child(2) td {
      padding-bottom: 1.25em; }
    .order-table tfoot tr:last-child th, .order-table tfoot tr:last-child td {
      border-top: 1px solid #333333;
      font-weight: 700;
      padding-top: 1.25em;
      padding-bottom: 1.25em; }
  @media only screen and (min-width: 750px) {
    .order-table tbody tr:first-child th, .order-table tbody tr:first-child td {
      padding-top: 1.25em; }
    .order-table tbody tr:last-child th, .order-table tbody tr:last-child td {
      padding-bottom: 1.25em; }
      .order-table tbody tr:last-child th .order-discount--list, .order-table tbody tr:last-child td .order-discount--list {
        margin-bottom: 0; }
    .order-table tfoot tr td, .order-table tfoot tr th {
      vertical-align: bottom; } }
  @media only screen and (max-width: 749px) {
    .order-table {
      border: 0; }
      .order-table thead {
        display: none; }
      .order-table th,
      .order-table td {
        float: left;
        clear: left;
        width: 100%;
        text-align: right;
        padding: 0.5rem 0;
        border: 0;
        margin: 0; }
      .order-table th::before,
      .order-table td::before {
        content: attr(data-label);
        float: left;
        text-align: left;
        padding-right: 2em;
        max-width: 80%; }
      .order-table tbody tr th:first-child {
        padding-top: 1.25em; }
      .order-table tbody tr td:last-child {
        padding-bottom: 1.25em; }
      .order-table tbody th::before,
      .order-table tbody td::before {
        font-weight: 700; } }

@media only screen and (max-width: 749px) {
  .order-table__product {
    display: flex;
    justify-content: space-between; } }

.order-discount {
  text-transform: uppercase;
  color: #b90404;
  display: block;
  line-height: 1.2em; }
  .order-discount .icon-saletag {
    fill: currentColor;
    width: 1em;
    height: 1em;
    margin-right: 0.4em; }

.order-discount--title {
  word-break: break-word;
  padding-right: 1em; }

.order-discount--list {
  padding: 0;
  margin: 0.8em 0 0.6em 1.3em;
  list-style: none; }

.order-discount--cart-list {
  display: inline-block; }
  @media only screen and (max-width: 989px) {
    .order-discount--cart-list {
      max-width: 50%; } }

.order-discount__item {
  text-indent: -1.3em; }
  .order-discount__item + .order-discount__item {
    margin-top: 0.6em; }

@media only screen and (max-width: 749px) {
  .order-discount-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%; } }

.order-discount-cart-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 7.5px; }
  @media only screen and (min-width: 990px) {
    .order-discount-cart-wrapper {
      justify-content: flex-end; } }

/*================ #Giftcard Template ================*/
.giftcard__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: white;
    color: black; }

  .giftcard__print-link,
  .giftcard__apple-wallet {
    display: none; } }
/*================ Custom Giftcard Styles ================*/
.template-giftcard {
  background: #e8e8e8; }
  .template-giftcard .site-header__logo {
    padding-left: 0; }
  .template-giftcard .site-header__logo-image {
    max-width: 200px; }
  .template-giftcard .wrapper {
    max-width: 588px; }
    .template-giftcard .wrapper img,
    .template-giftcard .wrapper object,
    .template-giftcard .wrapper iframe {
      max-width: 100%; }

.giftcard-wrapper {
  max-width: 488px;
  margin: 0 auto; }

.giftcard__header {
  margin-top: 60px; }

.giftcard__tag--active {
  opacity: 0.6; }

/*================ Gift Card image ================*/
.giftcard__wrap {
  position: relative;
  margin: 15px 15px 30px; }
  .giftcard__wrap img {
    position: relative;
    display: block;
    border-radius: 10px;
    z-index: 2; }
  .giftcard__wrap::before, .giftcard__wrap::after {
    content: '';
    position: absolute;
    width: 47px;
    height: 47px;
    z-index: 3; }
  .giftcard__wrap::before {
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNDdweCIgaGVpZ2h0PSI0N3B4IiB2aWV3Qm94PSIwIDAgNDcgNDciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDQ3IDQ3IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8ZyBvcGFjaXR5PSIwLjEiPgoJCTxwYXRoIGQ9Ik00NC41ODYsMUwxLDQ0LjU4NlYxMGMwLTQuOTYzLDQuMDM3LTksOS05SDQ0LjU4NiBNNDcsMEgxMEM0LjQ3NywwLDAsNC40NzcsMCwxMHYzN0w0NywwTDQ3LDB6Ii8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNNDQuNTg2LDFMMSw0NC41ODZWMTBjMC00Ljk2Myw0LjAzNy05LDktOUg0NC41ODYiLz4KCTwvZz4KPC9nPgo8L3N2Zz4K") 0 0 no-repeat;
    top: -1px;
    left: -1px; }
  .giftcard__wrap::after {
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNDdweCIgaGVpZ2h0PSI0N3B4IiB2aWV3Qm94PSIwIDAgNDcgNDciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDQ3IDQ3IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8ZyBvcGFjaXR5PSIwLjEiPgoJCTxwYXRoIGQ9Ik0yLjQxNCw0Nkw0NiwyLjQxNFYzN2MwLDQuOTYzLTQuMDM3LDktOSw5SDIuNDE0IE0wLDQ3aDM3YzUuNTIzLDAsMTAtNC40NzcsMTAtMTBWMEwwLDQ3TDAsNDd6Ii8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMi40MTQsNDZMNDYsMi40MTRWMzdjMCw0Ljk2My00LjAzNyw5LTksOUgyLjQxNCIvPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=") 0 0 no-repeat;
    bottom: -1px;
    right: -1px; }

/*================ Gift card code ================*/
.giftcard__code {
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
  z-index: 5; }

.giftcard__code--medium {
  font-size: 0.875em; }

.giftcard__code--small {
  font-size: 0.75em; }

.giftcard__code__inner {
  display: inline-block;
  vertical-align: baseline;
  background-color: white;
  padding: 0.5em;
  border-radius: 4px;
  max-width: 450px;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); }

.giftcard__code__text {
  font-size: 1.875em;
  text-transform: uppercase;
  border: 1px dashed #111010;
  padding: 0.4em 0.5em;
  display: inline-block;
  vertical-align: baseline;
  line-height: 1; }
  .giftcard__code__text.disabled {
    color: #999999;
    text-decoration: line-through; }

/*================ Gift card amount ================*/
.giftcard__amount {
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  font-size: 2.75em;
  line-height: 1.2;
  padding: 10px;
  z-index: 5; }
  .giftcard__amount strong {
    display: block;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1); }

.giftcard__amount--medium {
  font-size: 2em; }

/*================ Tooltip ================*/
.giftcard__tooltip {
  display: block;
  position: absolute;
  top: -50%;
  right: 50%;
  margin-top: 16px;
  z-index: 4;
  color: white;
  text-align: center;
  white-space: nowrap; }
  .giftcard__tooltip::before {
    content: '';
    display: block;
    position: absolute;
    left: 100%;
    bottom: 0;
    width: 0;
    height: 0;
    margin-left: -5px;
    margin-bottom: -5px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 5px solid #333333;
    border-top: 5px solid rgba(0, 0, 0, 0.9); }

.giftcard__tooltip-label {
  display: block;
  position: relative;
  right: -50%;
  border: 0;
  border-radius: 4px;
  background-color: #333333;
  background-color: rgba(0, 0, 0, 0.9);
  min-height: 14px;
  font-size: 12px;
  text-decoration: none;
  line-height: 16px;
  text-shadow: none;
  padding: 0.5em 0.75em;
  margin-left: 0.25em; }
  .giftcard__tooltip-label small {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #b3b3b3;
    font-size: 0.875em; }

/*================ QR code (print only) ================*/
.giftcard__qr-code img {
  padding: 0;
  border: 1px solid #111010;
  border-radius: 4px;
  margin: 0 auto 30px; }

/*================ Medium-down width ================*/
@media screen and (max-width: 580px) {
  .giftcard {
    padding-top: 60px; }

  .print-link {
    display: none; } }
/*================ Small width ================*/
@media screen and (max-width: 400px) {
  .giftcard__wrap::before,
  .giftcard__wrap::after {
    display: none; }

  .giftcard__code {
    font-size: 0.75em; }

  .giftcard__code--medium {
    font-size: 0.65em; }

  .giftcard__code--small {
    font-size: 0.55em; } }
/*============================================================================
  #Print Styles
==============================================================================*/
@media print {
  .giftcard__actions,
  .giftcard__wrap::before,
  .giftcard__wrap::after,
  .giftcard__tooltip {
    display: none; }

  .shop-url {
    display: block;
    text-align: center; }

  .qr-code {
    display: block; }

  .print-link {
    display: none; } }
.custom-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
  margin-bottom: -30px;
  margin-left: -30px; }
  @media only screen and (max-width: 749px) {
    .custom-content {
      margin-bottom: -22px;
      margin-left: -22px; } }

.custom__item {
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-bottom: 30px;
  padding-left: 30px;
  max-width: 100%; }
  @media only screen and (max-width: 749px) {
    .custom__item {
      -webkit-flex: 0 0 auto;
      -moz-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      padding-left: 22px;
      margin-bottom: 22px; }
      .custom__item.small--one-half {
        -webkit-flex: 1 0 50%;
        -moz-flex: 1 0 50%;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto; } }

.custom__item-inner {
  position: relative;
  display: inline-block;
  text-align: left;
  max-width: 100%; }

.custom__item-inner--video,
.custom__item-inner--html {
  display: block; }

/*================ Flex item alignment ================*/
.align--top-middle {
  text-align: center; }

.align--top-right {
  text-align: right; }

.align--middle-left {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center; }

.align--center {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  text-align: center; }

.align--middle-right {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  text-align: right; }

.align--bottom-left {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end; }

.align--bottom-middle {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: center; }

.align--bottom-right {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: right; }

.featured-blog__post .article__featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block; }
.featured-blog__post .article__featured-image-wrapper {
  position: relative;
  margin-bottom: 30px; }
  @media only screen and (max-width: 749px) {
    .featured-blog__post .article__featured-image-wrapper {
      margin-bottom: 22px; } }
.featured-blog__post .featured-blog__meta {
  margin-top: -5px;
  display: inline-block; }
.featured-blog__post .read-more {
  margin-top: -5px;
  padding-top: 17px; }
.featured-blog__post .meta__dot:after {
  content: '\2022';
  margin: 0 5px; }

.helper .article__featured-link {
  display: block;
  margin-bottom: 30px; }
  @media only screen and (max-width: 749px) {
    .helper .article__featured-link {
      margin-bottom: 22px; } }

.collection-grid-item {
  position: relative;
  width: 100%;
  padding-bottom: 100%; }

.collection-grid-item__title {
  color: white;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  padding: 0 5px;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  font-weight: 700; }
  @media only screen and (min-width: 750px) {
    .collection-grid-item__title {
      padding: 0 15px; } }

.collection-grid-item__link {
  border: 2px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }

.collection-grid-item__overlay {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top; }

.collection-grid-item__title-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #333333;
  opacity: 0.58; }

.map-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.map-section__wrapper {
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.map-section--load-error {
  height: auto; }

.map-section__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 2; }

.map-section__error {
  position: relative;
  z-index: 3; }
  @media only screen and (max-width: 749px) {
    .map-section__error {
      position: absolute;
      margin: 0 2rem;
      top: 50%;
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); } }

.map-section__content-wrapper {
  position: relative;
  text-align: center;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }

.map-section__content {
  position: relative;
  display: inline-block;
  background-color: #fafafa;
  padding: 35px;
  width: 100%;
  text-align: center;
  z-index: 3;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 350px; }
  .map-section__content > * {
    width: 100%; }
  @media only screen and (max-width: 749px) {
    .map-section__content {
      min-height: auto; } }
  .map-section--load-error .map-section__content {
    position: static;
    transform: translateY(0); }

.map-section__container {
  height: 100%;
  min-height: 350px;
  width: 100%;
  position: relative;
  overflow: hidden; }
  @media only screen and (max-width: 749px) {
    .map-section__container {
      max-width: 990px;
      width: 100%;
      height: 55vh;
      position: relative; } }

.map_section__directions-btn [class^="icon"] {
  height: 1em; }
.map_section__directions-btn * {
  vertical-align: middle; }

.map-section__background-wrapper {
  position: relative; }
  @media only screen and (max-width: 749px) {
    .map-section__background-wrapper {
      overflow: hidden; } }
  .map-section--onboarding .map-section__background-wrapper {
    min-height: 350px; }
  .map-section__background-wrapper .placeholder-background {
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }

.map-section__image {
  min-height: 350px;
  height: 100%;
  background-size: cover;
  background-position: center; }
  .map-section--display-map .map-section__image {
    display: none !important; }
  .map-section--load-error .map-section__image {
    display: block !important; }

.gm-style-cc,
.gm-style-cc + div {
  visibility: hidden; }

.flex--half {
  -webkit-flex: 1 1 50%;
  -moz-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%; }
  @media only screen and (max-width: 749px) {
    .flex--half {
      -webkit-flex: 0 1 100%;
      -moz-flex: 0 1 100%;
      -ms-flex: 0 1 100%;
      flex: 0 1 100%;
      width: 100%;
      max-width: 100%; } }

.rich-text__heading--medium {
  font-size: 1.4375em; }

.rich-text__heading--small {
  font-size: 1.1875em; }

.rich-text__text--large {
  font-size: 1.125em; }

.rich-text__text--small {
  font-size: 0.875em; }

/*================ VENDOR =====================*/
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: white;
  opacity: 1; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }
  .mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

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

.mfp-preloader {
  color: #333333;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #333333; }
    .mfp-preloader a:hover {
      color: #555555; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }
button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.8;
  padding: 0 0 18px 10px;
  color: #333333;
  font-style: normal;
  font-size: 48px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #cccccc; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #333333;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  display: none; }

.mfp-arrow {
  position: absolute;
  opacity: 0.8;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-right {
  right: 0; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 0 0 0;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    background: #444444; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: 4;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.mfp-chevron {
  position: absolute;
  pointer-events: none; }
  .mfp-chevron:before {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    content: '';
    display: inline-block;
    position: relative;
    vertical-align: top;
    height: 25px;
    width: 25px;
    border-style: solid;
    border-width: 4px 4px 0 0; }
  .mfp-chevron.mfp-chevron-right {
    right: 55px; }
    .mfp-chevron.mfp-chevron-right:before {
      -ms-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
  .mfp-chevron.mfp-chevron-left {
    left: 55px; }
    .mfp-chevron.mfp-chevron-left:before {
      -ms-transform: rotate(-135deg);
      -webkit-transform: rotate(-135deg);
      transform: rotate(-135deg); }