fpopup/* global variables, mixins, functions, etc. */
/* ==========================================================================
   SASS Base: Variables, mixins, etc.
   ========================================================================== */
/*
 * Easy conversion to em from pixels
 */
/*
 * Replicate adobe tracking values in em
 */
/*
 * Photoshop Text Shadow
 * NOTE: $spread has no effect for text shadows
 * https://gist.github.com/heygrady/1039282
 */
/*
 * Using variation specific font names from the start to avoid IE8 issues
 * http://help.typekit.com/customer/portal/articles/6855-Using-multiple-weights-and-styles
 */
/* import useful mixins from compass */
/*
 * HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/
 * Don't edit
 */
/* normalize.css v1.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

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

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Address `font-family` inconsistency between `textarea` and other form
 * elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

/**
 * Address margins handled incorrectly in IE 6/7.
 */
body {
  margin: 0;
}

* {
  box-sizing: border-box;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address font sizes and margins set differently in IE 6/7.
 * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
 * and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.67em;
  margin: 2.33em 0;
}

/**
 * Address styling not present in IE 7/8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

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

blockquote {
  margin: 2em 40px;
  border-left: 3px solid rgba(0,0,0,.3);
  padding-left: 20px;
  border-left-style: double;
  font-style: italic;
  -webkit-margin-before: 2em;
  -webkit-margin-after: 2em;
}

@media (min-width: 40em) {
  blockquote {
    margin: 2em 20px;
  }
}

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

/**
 * Address differences between Firefox and other browsers.
 * Known issue: no IE 6/7 normalization.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

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

/**
 * Address margins set differently in IE 6/7.
 */
p,
pre {
  margin: 1em 0;
}

/**
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/**
 * Address CSS quotes not supported in IE 6/7.
 */
q {
  quotes: none;
}

/**
 * Address `quotes` property not supported in Safari 4.
 */
q:before,
q:after {
  content: '';
  content: none;
}

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

/* ==========================================================================
   Lists
   ========================================================================== */
/**
 * Address margins set differently in IE 6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0 0 0 40px;
}

/**
 * Address paddings set differently in IE 6/7.
 */
menu,
ol,
ul {
  padding: 0 0 0 40px;
}

/**
 * Correct list images handled incorrectly in IE 7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

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

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

/**
 * 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 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

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

/**
 * 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 Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
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.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

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

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

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

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html,
button,
input,
select,
textarea {
  color: #222;
}

html {
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1;
}

/* user defined base styles */
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on October 6, 2014 */
@font-face {
  font-family: 'Josefin Sans Semibold Italic';
  src: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-semibolditalic-webfont.eot?v=8589212863633992304);
  src: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-semibolditalic-webfont.eot?%23iefix&v=8589212863633992304) format("embedded-opentype"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-semibolditalic-webfont.woff2?v=1570295766956376939) format("woff2"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-semibolditalic-webfont.woff?v=8383739192123511477) format("woff"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-semibolditalic-webfont.ttf?v=17126505356019960729) format("truetype"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-semibolditalic-webfont.svg%23josefin_sanssemibold_italic?37) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Josefin Sans Semibold';
  src: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-semibold-webfont.eot?v=13427842121179426576);
  src: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-semibold-webfont.eot?%23iefix&v=13427842121179426576) format("embedded-opentype"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-semibold-webfont.woff2?v=1523189913814665625) format("woff2"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-semibold-webfont.woff?v=2875515239984791962) format("woff"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-semibold-webfont.ttf?v=9095196916521794917) format("truetype"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-semibold-webfont.svg%23josefin_sanssemibold?37) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Josefin Sans Light Italic';
  src: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-lightitalic-webfont.eot?v=2893596803636739872);
  src: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-lightitalic-webfont.eot?%23iefix&v=2893596803636739872) format("embedded-opentype"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-lightitalic-webfont.woff2?v=6376003875260978885) format("woff2"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-lightitalic-webfont.woff?v=193321077526957843) format("woff"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-lightitalic-webfont.ttf?v=5512381038642894961) format("truetype"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-lightitalic-webfont.svg%23josefin_sanslight_italic?37) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Josefin Sans Regular Italic';
  src: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-italic-webfont.eot?v=11985474641467118264);
  src: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-italic-webfont.eot?%23iefix&v=11985474641467118264) format("embedded-opentype"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-italic-webfont.woff2?v=9971884676980699402) format("woff2"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-italic-webfont.woff?v=11398350534983589326) format("woff"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-italic-webfont.ttf?v=13178167798817546003) format("truetype"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-italic-webfont.svg%23josefin_sansitalic?37) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Josefin Sans Light';
  src: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-light-webfont.eot?v=8333529546114610363);
  src: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-light-webfont.eot?%23iefix&v=8333529546114610363) format("embedded-opentype"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-light-webfont.woff2?v=16658873026788718549) format("woff2"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-light-webfont.woff?v=13545024758180698341) format("woff"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-light-webfont.ttf?v=9841454027564174260) format("truetype"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-light-webfont.svg%23josefin_sanslight?37) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Josefin Sans Regular';
  src: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-regular-webfont.eot?v=8358472678837941712);
  src: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-regular-webfont.eot?%23iefix&v=8358472678837941712) format("embedded-opentype"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-regular-webfont.woff2?v=8195948611552347172) format("woff2"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-regular-webfont.woff?v=5269042737562518875) format("woff"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-regular-webfont.ttf?v=8308100570892403698) format("truetype"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-regular-webfont.svg%23josefin_sansregular?37) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Josefin Sans Bold Italic';
  src: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-bolditalic-webfont.eot?v=11607048447686124837);
  src: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-bolditalic-webfont.eot?%23iefix&v=11607048447686124837) format("embedded-opentype"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-bolditalic-webfont.woff2?v=4740277561069852292) format("woff2"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-bolditalic-webfont.woff?v=9414300512193049075) format("woff"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-bolditalic-webfont.ttf?v=3022039317086210727) format("truetype"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-bolditalic-webfont.svg%23josefin_sansbold_italic?37) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Josefin Sans Bold';
  src: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-bold-webfont.eot?v=9672832478641728984);
  src: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-bold-webfont.eot?%23iefix&v=9672832478641728984) format("embedded-opentype"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-bold-webfont.woff2?v=13372109479999907148) format("woff2"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-bold-webfont.woff?v=17651755643610217860) format("woff"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-bold-webfont.ttf?v=7147616703713716879) format("truetype"), url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/josefinsans-bold-webfont.svg%23josefin_sansbold?37) format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'icons';
  src: url('//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/icons.eot?v=18441058871124941546');
  src: url('//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/icons.woff?v=10497549339318658546') format("woff"),
       url('//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/icons.ttf?v=4213706429374904951') format("truetype"),
       url('//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/icons.svg?v=13863627245179419258#shop-icons') format("svg");
  font-style: normal;
}

html, body {
  background-color: #fff;
  font-size: 16px;
  margin-top: 0 !important;
  font-family: "Josefin Sans Regular", sans-serif;
  font-style: normal;
  font-weight: 400;
}

#admin_bar_iframe {
  display: none !important;
}

.valign {
  display: table;
  width: 100%;
  height: 100%;
}
.valign .valign-cell {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.page-container {
  padding-top: 7.125em;
}
@media (min-width: 60em) {
  .page-container {
    padding-top: 10.25em;
    -webkit-transition: padding 0.5s ease-in-out;
    -webkit-transition-delay: 0s;
    -moz-transition: padding 0.5s ease-in-out 0s;
    -o-transition: padding 0.5s ease-in-out 0s;
    transition: padding 0.5s ease-in-out 0s;
  }
  .page-container.condensed {
    padding-top: 3.75em;
    -webkit-transition: padding 0.5s ease-in-out;
    -webkit-transition-delay: 0s;
    -moz-transition: padding 0.5s ease-in-out 0s;
    -o-transition: padding 0.5s ease-in-out 0s;
    transition: padding 0.5s ease-in-out 0s;
  }
}

/* ==========================================================================
   Global button styles
   ========================================================================== */
.btn {
  color: #fff;
  text-transform: uppercase;
  padding: 1.66667em 1em;
  text-align: center;
  display: inline-block;
  background: #87004c;
  font-size: 0.75em;
  line-height: 1em;
  letter-spacing: 0.25em;
  text-decoration: none;
  border: 0;
  outline: 0;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-transition: background 0.5s ease-in-out;
  -webkit-transition-delay: 0s;
  -moz-transition: background 0.5s ease-in-out 0s;
  -o-transition: background 0.5s ease-in-out 0s;
  transition: background 0.5s ease-in-out 0s;
}
.btn:hover {
  text-decoration: none;
  color: #fff;
  background: #6e003e;
}
.btn.pink {
  background: #87004c;
}
.btn.pink:hover {
  background: #6e003e;
}
.btn.blue {
  background: #1e2e59;
}
.btn.blue:hover {
  background: #182446;
}
.btn.green {
  background: #50552d;
}
.btn.green:hover {
  background: #404424;
}
.btn.red {
  background: #b4442e;
}
.btn.red:hover {
  background: #a03c29;
}
.btn.gray {
  background: #757575;
}
.btn.gray:hover {
  background: #686868;
}

/* ==========================================================================
   Global Input Styles
   ========================================================================== */
/* ==========================================================================
   Global link styles
   ========================================================================== */
a {
  color: #0000ee;
  text-decoration: none;
}

a:hover {
  color: #0000ee;
  text-decoration: underline;
}

/*
 *  Core Owl Carousel CSS File
 *  v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/*
*   Owl Carousel Owl Demo Theme
* v1.3.3
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center;
}

/*
 *  Owl Carousel CSS3 Transitions
 *  v1.3.2
 */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}

/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}

.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}

/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}

/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}

/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}

/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}

@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}

@keyframes empty {
  0% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}

@-moz-keyframes backSlideOut {
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
}

@keyframes backSlideOut {
  25% {
    opacity: .5;
    transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
}

@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}

@-moz-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0);
  }
}

@keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: .5;
    transform: translateZ(-500px);
  }

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

@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}

@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}

@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}

@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}

@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%);
  }
}

@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}

@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}

@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}

@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}

@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}

@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}

@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}

/* module or section specific styles */
.page-section {
  overflow: hidden;
  width: 100%;
}

.page-section--site-header {
  position: fixed;
  width: 100%;
  top: 0px !important;
  left: 0;
  background: #fff;
  z-index: 1000;
}
@media (max-width: 60em) {
  .page-section--site-header.nav-up {
    top: -114px !important;
  }
}

.page-section--promos {
  background: no-repeat transparent 50% 50%;
  background-size: cover;
}

.page-section--collection-header {
  background: #87004c;
}

.page-section--subnav {
  position: fixed;
  z-index: 1000;
  overflow: hidden;
  width: 100%;
  background: #f2f2f2;
  max-height: 0px;
  -webkit-transition: max-height 0.5s ease-in-out;
  -webkit-transition-delay: 0s;
  -moz-transition: max-height 0.5s ease-in-out 0s;
  -o-transition: max-height 0.5s ease-in-out 0s;
  transition: max-height 0.5s ease-in-out 0s;
}
.page-section--subnav.active {
  max-height: 500px;
  border-bottom: 1px solid #f2f2f2;
  -webkit-transition: max-height 0.5s ease-in-out;
  -webkit-transition-delay: 0s;
  -moz-transition: max-height 0.5s ease-in-out 0s;
  -o-transition: max-height 0.5s ease-in-out 0s;
  transition: max-height 0.5s ease-in-out 0s;
}

.page-section--site-footer {
  background: #fff;
  padding: 6.25em 0;
  /*
   * For PROMO
   * padding: 0 0 6.25em;
   */
}
@media (max-width: 40em) {
  .page-section--site-footer {
    padding: 0.25em 0 1.5625em 0;
  }
}

.section-content {
  margin: 0 auto;
  max-width: 68.75em;
  overflow: hidden;
  width: 96%;
  padding: 0 2%;
}

.section-content--promos {
  width: 100%;
  max-width: 100%;
  padding: 0;
  position: relative;
}
.section-content--promos img {
  width: 100%;
  height: auto;
}

.section-content--instagram-feed {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.section-content--product-grid,
.section-content--subnav {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.section-content--lookbook-carousel {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.section-content--standard-page {
  width: 90%;
  padding: 0 5%;
  max-width: 33.125em;
}

.section-content--collection-listing {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.site-header {
  width: 100%;
  overflow: hidden;
  -webkit-transition: padding 0.5s ease-in-out;
  -webkit-transition-delay: 0s;
  -moz-transition: padding 0.5s ease-in-out 0s;
  -o-transition: padding 0.5s ease-in-out 0s;
  transition: padding 0.5s ease-in-out 0s;
}
@media (min-width: 60em) {
  .site-header {
    padding: 2.625em 0;
  }
}
.site-header .site-nav {
  float: left;
  width: 100%;
}
@media (min-width: 60em) {
  .site-header .site-nav {
    width: 40%;
  }
}
.site-header .site-logo {
  float: left;
  width: 100%;
}
@media (min-width: 60em) {
  .site-header .site-logo {
    width: 20%;
  }
}
.site-header .additional-nav {
  float: left;
  width: 100%;
}
@media (min-width: 60em) {
  .site-header .additional-nav {
    width: 40%;
  }
}

@media (min-width: 60em) and (min-width: 60em) {
  .condensed .site-header {
    padding: 1em 0;
  }
}

.site-logo h1 {
  font-size: 16px;
  width: 9.0625em;
  height: 5em;
  margin: 0 auto;
  overflow: hidden;
  -webkit-transition: width 0.7s ease-in-out, height 0.7s ease-in-out, margin 0.7s ease-in-out;
  -webkit-transition-delay: 0s, 0s, 0s;
  -moz-transition: width 0.7s ease-in-out 0s, height 0.7s ease-in-out 0s, margin 0.7s ease-in-out 0s;
  -o-transition: width 0.7s ease-in-out 0s, height 0.7s ease-in-out 0s, margin 0.7s ease-in-out 0s;
  transition: width 0.7s ease-in-out 0s, height 0.7s ease-in-out 0s, margin 0.7s ease-in-out 0s;
}
.site-logo h1 a {
  background: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/brave-logo.png?v=1769634074013148278) no-repeat transparent 0px 0px;
  background-size: contain;
  background-position: 50%;
  display: block;
  height: 5em;
  text-indent: -9999px;
  width: 9.0625em;
  -webkit-transition: width 0.7s ease-in-out, height 0.7s ease-in-out, background-position 0.7s ease-in-out;
  -webkit-transition-delay: 0s, 0s, 0s;
  -moz-transition: width 0.7s ease-in-out 0s, height 0.7s ease-in-out 0s, background-position 0.7s ease-in-out 0s;
  -o-transition: width 0.7s ease-in-out 0s, height 0.7s ease-in-out 0s, background-position 0.7s ease-in-out 0s;
  transition: width 0.7s ease-in-out 0s, height 0.7s ease-in-out 0s, background-position 0.7s ease-in-out 0s;
}
@media (max-width: 59.9375em) {
  .site-logo {
    position: absolute;
    left: 0;
    top: 10px;
  }
  .site-logo h1 {
    height: 2.5em;
    overflow: hidden;
  }
  .site-logo h1 a {
    height: 2.5em;
  }
}

@media (min-width: 60em) {
  .condensed .site-logo h1 {
    height: 2.5em;
    overflow: hidden;
  }
  .condensed .site-logo h1 a {
    height: 2.5em;
  }
}
.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav ul li {
  margin: 1.875em 1.875em 0 0;
  display: inline-block;
  -webkit-transition: margin 0.7s ease-in-out;
  -webkit-transition-delay: 0s;
  -moz-transition: margin 0.7s ease-in-out 0s;
  -o-transition: margin 0.7s ease-in-out 0s;
  transition: margin 0.7s ease-in-out 0s;
}
.site-nav ul li:last-child {
  margin-right: 0;
}
.site-nav ul li a {
  text-transform: uppercase;
  font-size: 0.6875em;
  line-height: 1em;
  letter-spacing: 0.2em;
  text-decoration: none;
  font-weight: bold;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.site-nav ul li a.page-shop {
  color: #87004c;
}
.site-nav ul li a.page-story {
  color: #50552d;
}
.site-nav ul li a.page-look-book, .site-nav ul li a.page-lookbook {
  color: #1e2e59;
}
.site-nav ul li a.page-press {
  color: #b4442e;
}
@media (max-width: 59.9375em) {
  .site-nav ul {
    width: 100%;
    float: left;
    clear: both;
    text-align: center;
    margin-top: 40px;
  }
  .site-nav ul li {
    margin: 1.875em 0.9375em 0 0.9375em;
  }
}
@media (max-width: 30em) {
  .site-nav ul li {
    margin-right: 0.125em;
    margin-left: 0.125em;
  }
  .site-nav ul li:first-child {
    margin-left: 0;
  }
  .site-nav ul li:last-child {
    margin-right: 0;
  }
}

@media (min-width: 60em) {
  .condensed .site-nav ul li {
    margin-top: 1.125em;
  }
}
.preload .subnav {
  display: none;
}

.subnav .subnav-grid {
  text-align: center;
  font-size: 0;
  max-width: 1400px;
  margin: 0 auto;
}
.subnav .subnav-grid .subnav-grid-item {
  width: 100%;
  max-height: 430px;
  float: left;
  position: relative;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
  border-bottom: 1px solid #f2f2f2;
  text-align: center;
}
.subnav .subnav-grid .subnav-grid-item a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.subnav .subnav-grid .subnav-grid-item a .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.5s ease-in-out;
  -webkit-transition-delay: 0s;
  -moz-transition: opacity 0.5s ease-in-out 0s;
  -o-transition: opacity 0.5s ease-in-out 0s;
  transition: opacity 0.5s ease-in-out 0s;
}
.subnav .subnav-grid .subnav-grid-item a:hover .overlay {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -webkit-transition-delay: 0s;
  -moz-transition: opacity 0.5s ease-in-out 0s;
  -o-transition: opacity 0.5s ease-in-out 0s;
  transition: opacity 0.5s ease-in-out 0s;
}
.subnav .subnav-grid .subnav-grid-item .image {
  max-width: 6.25em;
  float: left;
}
@media (max-width: 33.75em) {
  .subnav .subnav-grid .subnav-grid-item .image {
    width: 20%;
  }
}
.subnav .subnav-grid .subnav-grid-item .image img {
  width: 100%;
  height: auto;
}
.subnav .subnav-grid .subnav-grid-item .text {
  position: absolute;
  top: 50%;
  margin-top: -5px;
  width: 100%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.625em;
  line-height: 1em;
  letter-spacing: 0.25em;
}
@media (max-width: 40em) {
  .subnav .subnav-grid .subnav-grid-item .text {
    color: #757575;
    width: 80%;
    right: 0;
  }
}
.subnav .subnav-grid .subnav-grid-item .text.shop {
  color: #87004c;
}
@media (min-width: 48em) {
  .subnav .subnav-grid .subnav-grid-item {
    width: 33%;
    border-bottom: 0;
    border-left: 1px solid #f2f2f2;
    border-right: 1px solid #f2f2f2;
    float: none;
    display: inline-block;
  }
  .subnav .subnav-grid .subnav-grid-item .image {
    float: none;
    max-width: 100%;
  }
  .subnav .subnav-grid .subnav-grid-item .text {
    bottom: 3.125em;
    top: auto;
    margin-top: 0;
  }
}

.additional-nav {
  text-align: right;
  margin-top: 2em;
  -webkit-transition: margin 0.7s ease-in-out;
  -webkit-transition-delay: 0s;
  -moz-transition: margin 0.7s ease-in-out 0s;
  -o-transition: margin 0.7s ease-in-out 0s;
  transition: margin 0.7s ease-in-out 0s;
}
@media (max-width: 59.9375em) {
  .additional-nav {
    margin: 0.625em 0;
  }
}
.additional-nav .cart-link {
  float: right;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.6875em;
  line-height: 2em;
  letter-spacing: 0.2em;
  text-decoration: none;
  font-style: normal;
  margin-left: 3.75em;
}
@media (max-width: 59.9375em) {
  .additional-nav .cart-link {
    float: left;
    clear: both;
    margin: 0;
    width: 100%;
    text-align: center;
    display: none;
  }
  .additional-nav .cart-link.is-active {
    display: block;
  }
}
.additional-nav .cart-link a {
  color: #757575;
  text-decoration: none;
}
.additional-nav .social-links {
  float: right;
}
@media (max-width: 59.9375em) {
  .additional-nav .social-links {
    display: none;
  }
}
.additional-nav .social-links a {
  font-size: 1.125em;
  line-height: 0.88889em;
  color: #757575;
  margin-right: 1.875em;
  -webkit-transition: color 0.5s ease-in-out;
  -webkit-transition-delay: 0s;
  -moz-transition: color 0.5s ease-in-out 0s;
  -o-transition: color 0.5s ease-in-out 0s;
  transition: color 0.5s ease-in-out 0s;
}
.additional-nav .social-links a:hover {
  color: #424242;
}

@media (min-width: 60em) {
  .condensed .additional-nav {
    margin-top: .85em;
  }
}
.promos .text {
  text-align: center;
  width: 100%;
  margin: 12.5em 0 15.625em 0;
}
@media (min-width: 40em) {
  .promos .text {
    width: 100%;
  }
}
.promos .text p {
  text-transform: uppercase;
  font-size: 1.75em;
  /* line-height: 1.71429em; */
  letter-spacing: 0.1em;
  margin-bottom: 4.14286em;
  font-family: "Josefin Sans Light", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  /* PROMO STYLES
   * text-shadow: 0px 0px 39.6px rgba(0, 0, 0, 0.5);
   * background-color: rgba(255, 255, 255, 0.7);
   * color: #000;
   */
}

@media (max-width: 40em) {
  .promos .text p {
    font-size: 1.25em;
    line-height: 1.51429em;
    margin: 30px;
  }
}
.promos .text .left--md {
  background: none;
  bottom: 0;
  font-size: 1.25em;
  line-height: 1.31429em;
  margin-bottom: 2em;
  position: absolute;
  text-align: center;
}
@media (min-width: 50em) {
  .promos .text .left--md {
    margin-bottom: 0;
    padding: .5em 1em;
    text-align: left;
    width: 45%;
  }
}
@media (max-width: 40em) {
  .promos .text p br {
    display: none;
  }
}
.promos .celebrate-text {
  text-align: center;
  width: 100%;
  margin: 6.25em 0 9.375em 0;
}
@media (min-width: 40em) {
  .promos .celebrate-text {
    width: 50%;
    float: right;
  }
}
.promos .celebrate-text p {
  text-transform: uppercase;
  font-size: 3em;
  line-height: 1.33333em;
  letter-spacing: 0.1em;
  color: #fff;
  font-family: "Josefin Sans Light", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.promos .celebrate-text p span {
  font-size: 0.5em;
}
.promos .celebrate-text p.with-icon {
  padding-top: 1.45833em;
  background: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/celebrate-icon.png?v=15157936961053004984) no-repeat transparent 50% 0;
}
.promos .celebrate-text p.sub {
  font-size: 1.125em;
  line-height: 1.5em;
  letter-spacing: 0.025em;
  text-transform: none;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
}
.promos .courage-text {
  text-align: center;
  margin: 0 auto;
  background: #fff;
  position: relative;
  width: 20em;
  height: 20em;
  -webkit-border-radius: 10em;
  -moz-border-radius: 10em;
  -ms-border-radius: 10em;
  -o-border-radius: 10em;
  border-radius: 10em;
}
@media (min-width: 35.3125em) {
  .promos .courage-text {
    width: 35.3125em;
    height: 35.3125em;
    -webkit-border-radius: 17.625em;
    -moz-border-radius: 17.625em;
    -ms-border-radius: 17.625em;
    -o-border-radius: 17.625em;
    border-radius: 17.625em;
  }
}
.promos .courage-text .circle-text {
  height: 100%;
}
.promos .courage-text p {
  text-transform: none;
  font-size: 1.5em;
  line-height: 1.5em;
  letter-spacing: 0.025em;
  color: #757575;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
}
.promos .courage-text p.hash {
  text-align: center;
  color: #d52176;
  font-size: 1em;
  text-transform: uppercase;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 35.3125em) {
  .promos .courage-text p.hash {
    font-size: 0.75em;
  }
}
.promos .courage-text p.with-icon {
  padding-top: 1.45833em;
  background: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/courage-icon.png?v=8914362063745677862) no-repeat transparent 50% 0;
}
.promos .courage-text p.replace-text {
  text-indent: -9999px;
  width: 100%;
  height: 79px;
  background: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/courage-text-image.png?v=17919411225436688418) no-repeat transparent 50% 0;
  background-size: contain;
}
.promos .courage-text p.sub {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.5em;
  line-height: 2.25em;
  letter-spacing: 0.025em;
  text-transform: none;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 35.3125em) {
  .promos .courage-text p.sub {
    font-size: 0.875em;
    line-height: 1.5em;
  }
}
.promos--bar {
  background-color: rgba(0,0,0,0);
  width: 100%;
  text-align: center;
}

.promos--bar a {
  text-decoration: none;
}

.promos--bar p {
  color: #FFF;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 1.31429em;
  letter-spacing: 0.1em;
  font-family: "Josefin Sans Light", sans-serif;
  font-style: normal;
  font-weight: 300;
  padding: .5em 25px;
  max-width: 40em;
}

.product-grid.in-category {
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  margin: 1.25em 0;
  overflow: hidden;
}
.product-grid .product-grid-item {
  position: relative;
  float: left;
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
  box-sizing: border-box;
  width: 100%;
  padding-bottom: 100%;
}
@media (max-width: 40em) {
  .product-grid .product-grid-item.mobile-hide {
    display: none;
  }
}
.product-grid .product-grid-item .image {
  position: absolute;
  top: 0;
}
.product-grid .product-grid-item .image img {
  width: 100%;
  height: auto;
}
.product-grid .product-grid-item .text {
  position: absolute;
  top: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.2s ease-in-out;
  -webkit-transition-delay: 0s;
  -moz-transition: opacity 0.2s ease-in-out 0s;
  -o-transition: opacity 0.2s ease-in-out 0s;
  transition: opacity 0.2s ease-in-out 0s;
  opacity: 0;
  color: #fff;
  font-family: "Josefin Sans Semibold", sans-serif;
  font-style: normal;
  font-weight: 600;
}
.product-grid .product-grid-item .text .title {
  margin-top: 2.0625em;
  display: block;
}
.product-grid .product-grid-item .price {
  position: absolute;
  bottom: 1.75em;
  width: 100%;
  text-align: center;
  color: #fff;
  left: 0;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5em;
}
.product-grid .product-grid-item:hover .text {
  opacity: 1;
}
@media (max-width: 40em) {
  .product-grid .product-grid-item .image { 
    padding: 60px;
  }
  .product-grid .product-grid-item .text {
    background-color: transparent;
    opacity: 1;
  }
  .product-grid .product-grid-item .text .title,
  .product-grid .product-grid-item .text .price {
    color: #757575;
  }
}
@media (min-width: 40em) {
  .product-grid .product-grid-item {
    width: 50%;
    padding-bottom: 50%;
  }
}
@media (min-width: 64em) {
  .product-grid .product-grid-item {
    width: 25%;
    padding-bottom: 25%;
  }
}
@media (min-width: 100em) {
  .product-grid .product-grid-item {
    width: 20%;
    padding-bottom: 20%;
  }
}
.product-grid.with-borders .product-grid-item {
  border-bottom: 1px solid #f2f2f2;
}

.homepage .product-grid .product-grid-item {
  width: 100%;
  padding-bottom: 100%;
  border-bottom: 1px solid #f2f2f2;
}
@media (min-width: 40em) {
  .homepage .product-grid .product-grid-item {
    width: 50%;
    padding-bottom: 50%;
  }
}
@media (min-width: 48em) {
  .homepage .product-grid .product-grid-item {
    width: 25%;
    padding-bottom: 25%;
    border-bottom: 0px solid #f2f2f2;
  }
}

.center-one {
 text-align: center; 
}

.grid-item-centered {
 display: inline-block;
 float: none !important;
}

.site-footer {
  overflow: hidden;
}
.site-footer .back-to-top {
  display: none;
}
@media (max-width: 47.9375em) {
  .site-footer {
    text-align: center;
  }
  .site-footer .back-to-top {
    display: block;
    margin: 0 auto;
    color: #757575;
    text-transform: uppercase;
    font-size: 0.6875em;
    line-height: 1em;
    letter-spacing: 0.1em;
    text-decoration: none;
    font-weight: bold;
    margin: 1.25em 0;
    font-family: "Josefin Sans Bold", sans-serif;
    font-style: normal;
    font-weight: 700;
  }
  .site-footer .back-to-top:hover {
    text-decoration: none;
  }
}
.site-footer .footer-nav {
  width: 100%;
  float: left;
  clear: both;
}
.site-footer .footer-nav ul {
  float: left;
  width: 100%;
}
@media (min-width: 48em) {
  .site-footer .footer-nav ul {
    float: right;
    text-align: right;
    width: 68%;
  }
}
.site-footer .footer-copy {
  float: left;
  width: 100%;
  margin-top: 3.125em;
}
@media (min-width: 48em) {
  .site-footer .footer-copy {
    width: 30%;
  }
}
.site-footer .footer-copy p {
  margin: 0;
  color: #757575;
  text-transform: uppercase;
  font-size: 0.5em;
  line-height: 2em;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-weight: bold;
  margin: 1.25em 0;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.site-footer .footer-newsletter {
  width: 100%;
  float: left;
  margin-bottom: 40px;
}
@media (min-width: 48em) {
  .site-footer .footer-newsletter {
    width: 68%;
    margin-left: 2%;
    margin-bottom: 0;
  }
}

.footer-nav img {
  margin: 2.1875em 10px 0 0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 1.875em 0 0 0;
}
.footer-nav ul li {
  margin: 0 1.875em 0 0;
  display: inline-block;
}
.footer-nav ul li a {
  color: #757575;
  text-transform: uppercase;
  font-size: 0.6875em;
  line-height: 1em;
  letter-spacing: 0.2em;
  text-decoration: none;
  font-weight: bold;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
}

.footer-newsletter {
  margin-top: 3.125em;
}
.footer-newsletter label {
  color: #757575;
  text-transform: uppercase;
  font-size: 0.6875em;
  line-height: 1em;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-weight: bold;
  width: 100%;
  float: left;
  margin: 1.25em 0;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
}
@media (min-width: 48em) {
  .footer-newsletter label {
    width: 50%;
  }
}
.footer-newsletter .input-wrap {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 1.25em;
  height: 40px;
}
@media (min-width: 48em) {
  .footer-newsletter .input-wrap {
    margin-top: 0;
    width: 50%;
  }
}

#searchresults {
  margin: 0 auto;
}

#searchresults h3 {
  margin: 15px 0 15px 5px;
}

.search-form {
  width: 100%;
  position: relative;
  height: 60px;
}

@media (min-width: 48em) {
  .search-form {
    width: 35%;
  }
  
  ol {
  padding:  0 0 0 15px;
  }
}


@media (max-width: 48em) {  
  ol { 
    padding: 0;
    margin: 0;
    list-style: none;
  }
}

.item__information {
  display: flex;
  align-items: center;
}

.result-image {
  margin-right: 25px;
}

.footer-newsletter input[type="email"],
#searchresults input[type="search"] {
  border: 0;
  font-size: 0.6875em;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  outline: 0;
  background: #f2f2f2;
  padding: 1.25em;
  box-sizing: border-box;
}

#searchresults input[type="search"] {
  font-size: 1rem;
  padding-right: 0;
}

.footer-newsletter input[type="submit"],
#searchresults input[type="submit"] {
  position: absolute;
  right: 0.625em;
  top: 50%;
  margin-top: -5px;
  border: 0;
  text-indent: -9999px;
  width: 10px;
  height: 9px;
  background: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/small-arrow.png?v=6883889212092934987) no-repeat transparent 50% 50%;
  background-size: 10px 9px;
}
.nav-search {
  position: relative;
  width: 0%;
  min-width: 24px;
  height: 24px;
  float: right;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  transition: width 0.3s;
  -webkit-backface-visibility: hidden;
 }
.search-input {
  border: 0;
  font-size: 0.6875em;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  height: 24px;
  margin: 0;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  outline: 0;
  background: #f2f2f2;
  padding: 1.25em;
  z-index: 9;
}
.nav-search .icon-search,
.search-submit {
  position: absolute;
  right: 0.625em;
  top: 50%;
  margin-top: -5px;
  border: 0;
  text-indent: -9999px;
  width: 10px;
  height: 9px;
  background: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/small-arrow.png?v=6883889212092934987) no-repeat transparent 50% 50%;
  background-size: 10px 9px;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}
.search-submit {
  border: none;
  outline: none;
  z-index: -1;
}
.search-submit.open {
  z-index: 10;
}

.section-content--instagram-feed .user {
  margin: 6.25em auto 6.25em auto;
  text-align: center;
  font-size: 0.75em;
  letter-spacing: 0.1em;
}
.section-content--instagram-feed .user.with-icon {
  padding-top: 5.83333em;
  background: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/instagram-icon.png?v=355753258059442503) no-repeat transparent 50% 0;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.section-content--instagram-feed .user a {
  color: #757575;
  text-decoration: none;
}

.instagram-feed {
  overflow: hidden;
}
.instagram-feed a {
  width: 25%;
  float: left;
}
.instagram-feed img {
  width: 100%;
  height: auto;
}
.instagram-feed .instagram-grid-item {
  position: relative;
  float: left;
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
  box-sizing: border-box;
  width: 100%;
  padding-bottom: 100%;
  border-bottom: 1px solid #f2f2f2;
}
.instagram-feed .instagram-grid-item .image {
  position: absolute;
  top: 0;
}
.instagram-feed .instagram-grid-item .image img {
  width: 100%;
  height: auto;
}
.instagram-feed .instagram-grid-item .text {
  position: absolute;
  top: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  background: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/instagram.png?v=6337227483658291794) no-repeat center 2.0625em rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.2s ease-in-out;
  -webkit-transition-delay: 0s;
  -moz-transition: opacity 0.2s ease-in-out 0s;
  -o-transition: opacity 0.2s ease-in-out 0s;
  transition: opacity 0.2s ease-in-out 0s;
  opacity: 0;
  color: #fff;
  font-size: 0.75em;
  font-family: "Josefin Sans Semibold", sans-serif;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.instagram-feed .instagram-grid-item .text .title {
  margin-top: 2.0625em;
  display: block;
}
@media (max-width: 40em) {
  .instagram-feed .instagram-grid-item .text {
    opacity: 1;
  }
}
.instagram-feed .instagram-grid-item .caption {
  position: absolute;
  bottom: 2.0625em;
  width: 90%;
  padding: 0 5%;
  text-align: center;
  color: #fff;
  left: 0;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875em;
  display: table-cell;
  vertical-align: bottom;
}
.instagram-feed .instagram-grid-item:hover .text {
  opacity: 1;
}
@media (min-width: 40em) {
  .instagram-feed .instagram-grid-item {
    width: 50%;
    padding-bottom: 50%;
  }
}
@media (min-width: 48em) {
  .instagram-feed .instagram-grid-item {
    width: 25%;
    padding-bottom: 25%;
    border-bottom: 0px solid #f2f2f2;
  }
}

.twitter-feed {
  margin: 6.25em auto 3.125em auto;
}
.twitter-feed .user {
  text-align: center;
  font-size: 0.75em;
  letter-spacing: 0.1em;
}
.twitter-feed .user.with-icon {
  padding-top: 5.83333em;
  background: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/twitter-icon.png?v=11169619988696501580) no-repeat transparent 50% 0;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.twitter-feed .user a {
  color: #757575;
  text-decoration: none;
}

.twitter-text {
  text-align: center;
  width: 75%;
  margin: 0 auto;
}
.twitter-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.twitter-text ul li {
  margin: 0;
  padding: 0;
}
.twitter-text p {
  text-transform: none;
  font-size: 1.5em;
  line-height: 1.44444em;
  letter-spacing: 0.025em;
  color: #757575;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
}
.twitter-text p a {
  color: #d52176;
  text-decoration: none;
}
.twitter-text p a:hover {
  text-decoration: underline;
}
.twitter-text p span {
  font-size: 0.5em;
}
.twitter-text p.timePosted {
  display: none;
}
.twitter-text p.replace-text {
  text-indent: -9999px;
  width: 100%;
  height: 79px;
  background: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/courage-text-image.png?v=17919411225436688418) no-repeat transparent 50% 0;
  background-size: contain;
}
.twitter-text p.sub {
  font-size: 1.5em;
  line-height: 2.25em;
  letter-spacing: 0.025em;
  text-transform: none;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
}

.collection-header {
  text-align: center;
  color: #fff;
  padding: 3.125em 0;
}
.collection-header h2 {
  margin: 0 0 0.3125em 0;
  font-size: 2em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: "Josefin Sans Light", sans-serif;
  font-style: normal;
  font-weight: 300;
}
@media (min-width: 48em) {
  .collection-header h2 {
    font-size: 2.5em;
  }
}
@media (min-width: 60em) {
  .collection-header h2 {
    font-size: 3.75em;
  }
}
@media (min-width: 68.75em) {
  .collection-header h2 {
    font-size: 4.5em;
  }
}
.collection-header .description {
  font-size: 1em;
  line-height: 1.5em;
  letter-spacing: 0.025em;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
}
@media (min-width: 48em) {
  .collection-header .description {
    font-size: 1.5em;
    line-height: 1.5em;
    max-width: 70%;
    margin: 0 auto;
  }
}

.product-details {
  overflow: hidden;
  padding: 3.125em 0;
}
.product-details .product-images {
  width: 100%;
}
.product-details .product-images .product-photo-container {
  position: relative;
  margin-bottom: 0.3125em;
}
.product-details .product-images .product-thumbs {
  text-align: center;
}
.product-details .product-images .product-thumbs img {
  max-width: 100px;
  max-height: 100px;
  height: auto;
  width: auto;
}
@media (max-width: 40em) {
  .product-details .product-images .product-thumbs img {
    max-width: 50px;
  }
}
.product-details .product-images .slide {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: no-repeat transparent 50% 50%;
  background-size: contain;
}
@media (min-width: 40em) {
  .product-details .product-images .slide {
    min-height: 500px;
  }
}
.product-details .product-images .controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
@media (max-width: 40em) {
  .product-details .product-images .controls {
    display: none;
  }
}
.product-details .product-images .controls .prev {
  width: 20%;
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  cursor: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/back-cursor.png?v=11873174651928326945), auto;
}
.product-details .product-images .controls .zoom {
  width: 60%;
  position: absolute;
  top: 0;
  height: 100%;
  left: 20%;
  cursor: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/magnify.png?v=17818468855177408739), auto;
}
.product-details .product-images .controls .next {
  width: 20%;
  position: absolute;
  top: 0;
  height: 100%;
  left: 80%;
  cursor: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/next-cursor.png?v=7269868266577069665), auto;
}
.product-details .product-images img {
  width: 100%;
  height: auto;
}
@media (min-width: 48em) {
  .product-details .product-images {
    width: 50%;
    float: left;
  }
}
.product-details .product-info {
  width: 100%;
}
@media (max-width: 40em) {
  .product-details .product-info {
    text-align: center;
  }
}
@media (min-width: 48em) {
  .product-details .product-info {
    width: 38%;
    margin-left: 12%;
    float: left;
  }
}
.product-details .product-info h1 {
  font-size: 1.75em;
  line-height: 1.5em;
  padding-bottom: .5em;
  letter-spacing: 0.1em;
  color: #757575;
  margin: 0;
  font-family: "Josefin Sans Light", sans-serif;
  font-style: normal;
  font-weight: 300;
}
@media (max-width: 48em) {
	.product-details .product-info h1 {
      line-height: 1.28571em;
      margin-top: 20px;
    }
}
.product-details .product-info .product-description {
  font-size: 0.875em;
  line-height: 1.5em;
  letter-spacing: 0.025em;
  color: #757575;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 2.5em;
  margin-bottom: 2.5em;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
}
.product-details .product-info .product-description p {
  margin: 0 0 0.71429em 0;
}
.product-details .product-info .product-tabs {
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 2.5em;
  margin-bottom: 2.5em;
}
.product-details .product-info .product-tabs .tabs {
  padding: 0;
  margin: 0;
  margin-bottom: 2.5em;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 40em) {
  .product-details .product-info .product-tabs .tabs {
    text-align: center;
  }
}
.product-details .product-info .product-tabs .tabs li {
  display: inline-block;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  width: auto;
  margin-right: 0.9375em;
  text-align: left;
}
@media (max-width: 30em) {
  .product-details .product-info .product-tabs .tabs li {
    font-size: 0.875em;
    float: none;
  }
}
.product-details .product-info .product-tabs .tabs li a {
  color: #757575;
  text-decoration: none;
  font-size: 0.6875em;
  letter-spacing: 0.2em;
}
.product-details .product-info .product-tabs .tabs li a.active {
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.product-details .product-info .product-tabs .tab-content div {
  display: none;
  font-size: 0.875em;
  line-height: 1.5em;
  letter-spacing: 0.025em;
  color: #757575;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
}
.product-details .product-info .product-tabs .tab-content .active {
  display: block;
}
.product-details .product-info .product-share {
  overflow: hidden;
}
@media (max-width: 40em) {
  .product-details .product-info .product-share {
    margin: 0 auto;
    width: 13.75em;
  }
}
.product-details .product-info .product-share .share {
  float: left;
  text-transform: uppercase;
  font-size: 0.75em;
  line-height: 1em;
  letter-spacing: 0.25em;
  margin-right: 1.25em;
  font-family: "Josefin Sans Regular", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #b5b5b5;
}
.product-details .product-info .product-share .share-links {
  float: left;
  margin: 3px 0;
}
.product-details .product-info .product-share .share-links a {
  color: #757575;
  font-size: 1.25em;
  margin: 0 0.3125em;
}
.product-details .product-info .product-price-wrap {
  font-size: 1.5em;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 1.45833em;
  margin-bottom: 1.45833em;
  color: #757575;
}
.product-details .product-info .product-form {
  min-width: 18.75em;
  overflow: hidden;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 1.45833em;
  margin-bottom: 1.45833em;
}
@media (max-width: 40em) {
  .product-details .product-info .product-form {
    margin: 0 auto;
    width: 17.5em;
    min-width: 17.5em;
  }
}
.product-details .product-info .product-form .product-quantity,
.product-details .product-info .product-form #product-variants {
  float: left;
  margin-right: 1.25em;
}
.product-details .product-info .product-form .product-quantity label,
.product-details .product-info .product-form #product-variants label {
  font-size: 0.75em;
  line-height: 1em;
  letter-spacing: 0.25em;
  margin-right: 0.625em;
  font-family: "Josefin Sans Regular", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #b5b5b5;
  text-transform: uppercase;
}
.product-details .product-info .product-form .product-quantity input,
.product-details .product-info .product-form #product-variants select {
  width: 3.91667em;
  height: 3.91667em;
  border: 2px solid #f2f2f2;
  text-align: center;
  font-size: 0.75em;
  line-height: 1em;
  color: #b5b5b5;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  outline: 0;
}
.product-details .product-info .product-form #product-variants select {
  width: 6em;
  background: white;
  border-radius: 0;
  height: 53px;
}
.product-details .product-info .product-form .product-action {
  float: left;
}

.product-carousel {
  position: fixed;
  top: 0 !important;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  display: none;
}
.product-carousel .close-link {
  top: 0.83333em;
  right: 0.83333em;
  position: absolute;
  font-family: "Josefin Sans Light", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 3em;
  color: #757575;
  z-index: 100;
}
.product-carousel .close-link:hover {
  text-decoration: none;
}
.product-carousel .carousel {
  width: 100%;
  height: 100%;
}
.product-carousel .owl-theme .owl-controls {
  bottom: 2.5em;
  position: absolute;
  width: 100%;
}
.product-carousel .owl-theme .owl-controls .owl-buttons {
  position: absolute;
  right: 1.25em;
  width: 80px;
  height: 40px;
  bottom: 0;
}
.product-carousel .owl-theme .owl-controls .owl-buttons .owl-prev, .product-carousel .owl-theme .owl-controls .owl-buttons .owl-next {
  padding: 0;
  margin: 0;
  position: absolute;
}
.product-carousel .owl-theme .owl-controls .owl-buttons .owl-prev.owl-prev, .product-carousel .owl-theme .owl-controls .owl-buttons .owl-next.owl-prev {
  width: 40px;
  height: 40px;
  display: block;
  text-indent: -9999px;
  background: transparent;
  border-radius: 0;
  left: 0;
}
.product-carousel .owl-theme .owl-controls .owl-buttons .owl-prev.owl-prev:after, .product-carousel .owl-theme .owl-controls .owl-buttons .owl-next.owl-prev:after {
  content: "<";
  width: 40px;
  height: 40px;
  font-size: 2.5em;
  color: #000;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  text-indent: 0px;
}
.product-carousel .owl-theme .owl-controls .owl-buttons .owl-prev.owl-next, .product-carousel .owl-theme .owl-controls .owl-buttons .owl-next.owl-next {
  width: 40px;
  height: 40px;
  display: block;
  text-indent: -9999px;
  background: transparent;
  border-radius: 0;
  right: 0;
}
.product-carousel .owl-theme .owl-controls .owl-buttons .owl-prev.owl-next:after, .product-carousel .owl-theme .owl-controls .owl-buttons .owl-next.owl-next:after {
  content: ">";
  width: 40px;
  height: 40px;
  font-size: 2.5em;
  color: #000;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  text-indent: 0px;
}
.product-carousel .slide {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.product-carousel .slide img {
  width: 80%;
  height: auto;
}

.section-content--story-section,
.page-section--story-section {
  overflow: visible;
}

.story-section {
  padding-top: 50px;
}
.story-section .dots {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 960px) {
  .story-section .dots {
    display: none !important;
  }
}
.story-section td {
  vertical-align: top;
  text-align: center;
  padding-bottom: 12.5em;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 60em) {
  .story-section td {
    display: block;
    float: left;
    width: 100%;
  }
  .story-section td img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 60em) {
  .story-section td {
    padding-bottom: 0.625em;
  }
}
.story-section h3 {
  font-size: 3.125em;
  font-family: "Josefin Sans Light", sans-serif;
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  line-height: 0.76em;
}
.story-section h3 i, .story-section h3 em {
  font-style: normal;
  display: inline-block;
  position: relative;
  top: -10px;
  font-size: 0.48em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: "Josefin Sans Light", sans-serif;
  font-style: normal;
  font-weight: 300;
}
@media (max-width: 40em) {
  .story-section h3 {
    font-size: 1.875em;
    letter-spacing: 0.4em;
    line-height: 0.76em;
  }
  .story-section h3 i, .story-section h3 em {
    top: auto;
  }
}
.story-section p {
  font-size: 1em;
  line-height: 1.75em;
  letter-spacing: 0.025em;
  color: #757575;
  padding: 0 2.5em;
}
@media (max-width: 640px) {
  .story-section p {
    font-size: 0.875em;
    line-height: 1.71429em;
    padding: 0 0.625em;
  }
}

@media (min-width: 60em) {
  .story-section {
    position: relative;
  }

  .dot {
    position: absolute;
    display: block !important;
    z-index: 1;
  }
  .story-section td p,
  .story-section td h3,
  .story-section td h4,
  .story-section td li {
    position: relative;
    z-index: 100;
  }

  .story-section td img {
    position: fixed;
    display: block;
    z-index: 1;
  }
}
@media (min-width: 60em) and (max-width: 48em) {
  .dot {
    display: none !important;
  }
}

.cart {
  /* float: left; */
  width: 100%;
  margin-bottom: 80px;
}
.cart > h2 {
  font-size: 3em;
  line-height: 3.5em;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  font-family: "Josefin Sans Light", sans-serif;
  font-style: normal;
  font-weight: 300;
}
@media (max-width: 48em) {
  .cart > h2 {
    font-size: 2em;
    line-height: 1.5em;
  }
}
.cart table {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.cart table thead {
  display: none;
}
.cart table tr {
  border-bottom: 1px solid #d5d5d5;
}
.cart table td {
  width: 22%;
  padding: 10px 0;
}
.cart table td img {
  width: 50%;
  height: auto;
}
.cart table td.cell-image {
  padding: 10px 0px;
}
@media screen and (min-width: 0px) and (max-width: 319px) {
  .cart table td.cell-image {
    display: none;
  }
}
.cart table td.cell-description {
  text-align: left;
  padding: 40px 40px;
  width: 30%;
}
.cart table td.cell-action {
  width: 14%;
  text-align: center;
}
.cart table td.cell-action a {
  width: 22px;
  height: 23px;
  display: inline-block;
  text-indent: -9999px;
  background: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/remove-btn.png?v=3738147071659902301) no-repeat transparent 0 0;
  opacity: 0.9;
}
.cart table td.cell-action a:hover {
  opacity: 1;
}
.cart p {
  font-size: 14px;
  margin: 0;
  color: #757575;
}
.cart .empty {
  margin: 0 auto;
  text-align: center;
}
.cart h2 {
  margin: 0;
}
@media (max-width: 40em) {
  .cart h2 {
    font-size: 16px;
    line-height: 18px;
  }
}
.cart h2 a {
  text-align: center;
  text-transform: none;
  font-weight: normal;
  font-size: 20px;
  color: #757575;
  letter-spacing: 0.03em;
  line-height: 32px;
  margin: 0;
  text-decoration: none;
}
@media (max-width: 40em) {
  .cart h2 a {
    font-size: 16px;
    line-height: 18px;
  }
}
.cart .description p, .cart .description li, .cart .description ul, .cart .description ol, .cart .description blockquote, .cart .description h3, .cart .description h4, .cart .description h5, .cart .description h6, .cart .description div {
  display: none;
}
.cart .description h2 {
  display: block;
  color: #757575;
  font-size: 14px;
}
.cart .quantity-input {
  float: left;
}
.cart .quantity-input input {
  width: 19px;
  height: 19px;
  border: 1px solid #757575;
  text-align: center;
  padding: 0;
  font-size: 14px;
  color: #757575;
  float: left;
}
.cart .quantity-input input::-webkit-outer-spin-button,
.cart .quantity-input input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}
.cart .size, .cart .price {
  float: left;
  color: #757575;
  font-size: 14px;
}
.cart .size {
  margin: 0 0 0 40px;
}
.cart .price {
  float: right;
}
@media only screen and (min-width: 0px) and (max-width: 319px) {
  .cart .cell-price .quantity-input, .cart .cell-price .size, .cart .cell-price .price {
    float: left;
    width: 100%;
    clear: both;
    margin: 0 !important;
  }
  .cart .cell-description {
    padding-left: 10px !important;
  }
}
.cart .additional {
  max-width: 1080px;
  width: 100%;
  margin: 40px auto;
  padding-bottom: 40px;
  border-bottom: 1px solid #d5d5d5;
  overflow: auto;
}
.cart .additional .instructions {
  width: 48%;
  float: left;
  margin-right: 4%;
}
.cart .additional .instructions textarea {
  width: 80%;
  max-width: 480px;
  border: 1px solid #d5d5d5;
  height: 75px;
  color: #757575;
  padding: 20px 5%;
}
.cart .additional .checkout-actions {
  width: 48%;
  float: left;
}
.cart .additional .checkout-actions h3 {
  float: left;
  color: #757575;
  font-size: 14px;
}
.cart .additional .checkout-actions h3 em {
  font-size: 24px;
  font-weight: normal;
  font-style: normal;
}
.cart .additional .checkout-actions .buttons {
  float: right;
}
.cart .additional .checkout-actions .buttons input[type="submit"] {
  padding-left: 30px;
  padding-right: 30px;
}
.cart .additional .checkout-actions .buttons p {
  width: 100%;
  margin-top: 40px;
}
.cart .additional .checkout-actions .buttons p a {
  text-decoration: none;
}

@media only screen and (max-width: 769px) {
  .cart .additional .instructions,
  .cart .additional .checkout-actions {
    width: 100%;
    float: left;
  }

  .cart .additional .instructions {
    width: 100%;
    float: left;
    margin-bottom: 20px;
  }
  .cart .additional .instructions textarea {
    max-width: 240px;
    margin: 0 auto;
    display: block;
  }
  .cart .additional .checkout-actions {
    width: 100%;
    float: left;
  }
  .cart .additional .checkout-actions h3 {
    width: 100%;
    text-align: center;
  }
  .cart .additional .checkout-actions .buttons {
    width: 100%;
    text-align: center;
  }
  .cart .additional .checkout-actions .buttons input[type="submit"] {
    display: inline-block;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .cart table td.cell-action a {
    background-image: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/remove-btn@2x.png?v=3738147071659902301);
    background-size: 22px 23px;
  }
}
.lookbook-carousel-container {
  position: relative;
  width: 100%;
}
.lookbook-carousel-container .controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
@media (max-width: 40em) {
  .lookbook-carousel-container .controls {
    display: none;
  }
}
.lookbook-carousel-container .controls .prev {
  width: 50%;
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  cursor: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/back-cursor.png?v=11873174651928326945), auto;
}
.lookbook-carousel-container .controls .next {
  width: 50%;
  position: absolute;
  top: 0;
  height: 100%;
  left: 50%;
  cursor: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/next-cursor.png?v=7269868266577069665), auto;
}

.lookbook-carousel p {
  margin: 0;
}
.lookbook-carousel img {
  width: 100%;
  height: auto;
}
.lookbook-carousel.owl-theme .owl-controls {
  position: relative;
  z-index: 100;
}
.lookbook-carousel.owl-theme .owl-controls .owl-page span {
  width: 10px;
  height: 10px;
  background: #fff;
  border: 1px solid #b5b5b5;
  margin: 5px;
}
.lookbook-carousel.owl-theme .owl-controls .owl-page.active span {
  background: #b5b5b5;
}

.grid {
  border-top: 1px solid #f2f2f2;
}
.grid .grid-sizer {
  width: 10%;
}
.grid .grid-item {
  width: 10%;
  padding-bottom: 10%;
  height: 0;
  float: left;
  box-sizing: border-box;
  border: 1px solid #f2f2f2;
  text-align: center;
  position: relative;
  background: #fff;
}
.grid .grid-item.featured {
  width: 20%;
  padding-bottom: 20%;
  border: 0;
}
@media (max-width: 100em) {
  .grid .grid-item {
    width: 12.5%;
    padding-bottom: 12.5%;
  }
  .grid .grid-item.featured {
    width: 25%;
    padding-bottom: 25%;
  }
}
@media (max-width: 75em) {
  .grid .grid-item {
    width: 20%;
    padding-bottom: 20%;
  }
  .grid .grid-item.featured {
    width: 40%;
    padding-bottom: 40%;
  }
}
@media (max-width: 64em) {
  .grid .grid-item {
    width: 25%;
    padding-bottom: 25%;
  }
  .grid .grid-item.featured {
    width: 50%;
    padding-bottom: 50%;
  }
}
@media (max-width: 48em) {
  .grid .grid-item {
    width: 33%;
    padding-bottom: 33%;
  }
  .grid .grid-item.featured {
    width: 66%;
    padding-bottom: 66%;
  }
}
@media (max-width: 40em) {
  .grid .grid-item {
    width: 50%;
    padding-bottom: 50%;
    border-left: 1px solid #f2f2f2;
    border-right: 0;
  }
  .grid .grid-item.featured {
    width: 100%;
    padding-bottom: 100%;
  }
}
.grid .grid-item img {
  width: 75%;
  height: auto;
}
.grid .grid-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #757575;
  font-size: 0.625em;
  text-transform: uppercase;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.grid .grid-item a:hover .hover-view {
  opacity: 1;
}
.grid .grid-item .text {
  position: absolute;
  bottom: 10%;
  width: 100%;
  text-align: center;
  left: 0;
}
.grid .grid-item .hover-view {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/hover-icon.png?v=2459989037974029218) no-repeat rgba(0, 0, 0, 0.5) 50% 50%;
  background-size: 50px 50px;
  -webkit-transition: opacity 0.3s ease-in-out;
  -webkit-transition-delay: 0s;
  -moz-transition: opacity 0.3s ease-in-out 0s;
  -o-transition: opacity 0.3s ease-in-out 0s;
  transition: opacity 0.3s ease-in-out 0s;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .grid .grid-item .hover-view {
    background-image: url(//cdn.shopify.com/s/files/1/0110/4422/t/12/assets/hover-icon@2x.png?v=2459989037974029218);
  }
}
.grid .grid-item.featured {
  background: no-repeat transparent 0 100%;
  background-size: cover;
  cursor: pointer;
  padding-top: 4px;
}
.grid .grid-item.featured .hover-text {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.5s ease-in-out;
  -webkit-transition-delay: 0s;
  -moz-transition: opacity 0.5s ease-in-out 0s;
  -o-transition: opacity 0.5s ease-in-out 0s;
  transition: opacity 0.5s ease-in-out 0s;
}
.grid .grid-item.featured .hover-text a {
  color: #fff;
  text-decoration: none;
}
.grid .grid-item.featured .hover-text img {
  display: none;
}
.grid .grid-item.featured .hover-text .content {
  width: 80%;
  height: 80%;
  margin: 10%;
}
.grid .grid-item.featured .hover-text p {
  font-size: 1.125em;
  letter-spacing: 0.02em;
  line-height: 1.38889em;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
}
.grid .grid-item.featured .hover-text p a {
  display: none;
}
.grid .grid-item.featured .hover-text i, .grid .grid-item.featured .hover-text em {
  font-size: 0.85714em;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: "Josefin Sans Light", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.grid .grid-item.featured .hover-text b, .grid .grid-item.featured .hover-text strong {
  font-size: 0.5em;
  font-style: normal;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 0.2em;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.grid .grid-item.featured .hover-text .title {
  margin: 0;
  position: absolute;
  bottom: 1.42857em;
  width: 100%;
  left: 0;
  text-align: center;
}
.grid .grid-item.featured:hover .hover-text {
  opacity: 1;
}

.stockists .column {
  width: 100%;
  float: left;
  text-align: center;
}
.stockists h1 {
  text-align: center;
  font-size: 1.75em;
  margin-top: 1.25em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "Josefin Sans Light", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #757575;
}
.stockists h2 {
  font-size: 0.625em;
  line-height: 2.4em;
  margin-top: 5em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.stockists p {
  font-size: 0.875em;
  line-height: 1.71429em;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
  color: #757575;
}
.stockists p a {
  color: #757575;
  text-decoration: underline;
}
.stockists p a:hover {
  text-decoration: underline;
}
@media (min-width: 48em) {
  .stockists .column {
    width: 25%;
    float: left;
  }
}

.standard-page {
  text-align: center;
}
.standard-page h1 {
  text-align: center;
  font-size: 1.75em;
  margin-top: 1.25em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "Josefin Sans Light", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #757575;
}
.standard-page h2 {
  font-size: 0.625em;
  line-height: 2.4em;
  margin: 5em 0 3em 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Josefin Sans Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.standard-page p {
  font-size: 0.875em;
  line-height: 1.71429em;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
  color: #757575;
}
.standard-page p a {
  color: #757575;
  text-decoration: underline;
}

.big-head {
  height: 140px;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0 !important;
  left: 0;
  background: #f2f2f2;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  -webkit-transition-delay: 0s;
  -moz-transition: -moz-transform 0.5s ease-in-out 0s;
  -o-transition: -o-transform 0.5s ease-in-out 0s;
  transition: transform 0.5s ease-in-out 0s;
  -webkit-transform: translateY(-140px);
  -moz-transform: translateY(-140px);
  -ms-transform: translateY(-140px);
  -o-transform: translateY(-140px);
  transform: translateY(-140px);
}
.big-head.is-pushed {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.push-it {
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  -webkit-transition-delay: 0s;
  -moz-transition: -moz-transform 0.5s ease-in-out 0s;
  -o-transition: -o-transform 0.5s ease-in-out 0s;
  transition: transform 0.5s ease-in-out 0s;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.push-it.is-pushed {
  -webkit-transform: translateY(140px);
  -moz-transform: translateY(140px);
  -ms-transform: translateY(140px);
  -o-transform: translateY(140px);
  transform: translateY(140px);
}

.page-section--site-header.push-it {
  -webkit-transition: -webkit-transform 0.5s ease-in-out, top 0.5s ease-in-out;
  -webkit-transition-delay: 0s, 0s;
  -moz-transition: -moz-transform 0.5s ease-in-out 0s, top 0.5s ease-in-out 0s;
  -o-transition: -o-transform 0.5s ease-in-out 0s, top 0.5s ease-in-out 0s;
  transition: transform 0.5s ease-in-out 0s, top 0.5s ease-in-out 0s;
}

.big-header-wrap {
  overflow: hidden;
  height: 140px;
}
.big-header-wrap form {
  height: 100%;
}
.big-header-wrap .text {
  text-align: left;
  width: 50%;
  float: left;
}
.big-header-wrap .text .image {
  float: left;
  margin-right: 1.25em;
}
.big-header-wrap .text p {
  font-size: 1.125em;
  line-height: 1.5em;
  letter-spacing: 0.025em;
  color: #757575;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
}
.big-header-wrap .total {
  width: 25%;
  float: left;
  font-size: 1.125em;
  line-height: 1.5em;
  letter-spacing: 0.025em;
  color: #757575;
  text-transform: uppercase;
  font-family: "Josefin Sans Light", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.big-header-wrap .action {
  width: 25%;
  float: left;
  text-align: center;
}
.big-header-wrap .close {
  width: 25%;
  float: left;
  text-align: center;
  display: none;
}

.collection-listing.listing .collection-item {
  width: 100%;
  padding: 2.5em 0;
  background: no-repeat transparent 50% 50%;
  background-size: cover;
  overflow: hidden;
}
@media (min-width: 60em) {
  .collection-listing.listing .collection-item {
    border-bottom: 80px solid #f2f2f2;
    padding-bottom: 0;
  }
  .collection-listing.listing .collection-item .product-grid.in-category {
    margin-bottom: 0;
  }
  .collection-listing.listing .collection-item:last-child {
    border-bottom: 0;
  }
}
.collection-listing.listing .text-row {
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
.collection-listing.listing .text-row p.title {
  text-transform: uppercase;
  font-size: 1.75em;
  line-height: 2.28571em;
  letter-spacing: 0.1em;
  color: #757575;
  margin: 0 0 0.71429em 0;
  font-family: "Josefin Sans Regular", sans-serif;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 40em) {
  .collection-listing.listing .text-row p.title {
    font-size: 1.5em;
    line-height: 1.25em;
  }
}
.collection-listing.listing .text-row .btn {
  margin-bottom: 1.875em;
}
.collection-listing.listing.details .text p.title {
  color: #fff;
}
.collection-listing.listing.details .text p {
  color: #fff;
}

.collection-listing.details .collection-item {
  width: 100%;
  padding: 2.5em 0;
  background: no-repeat transparent 50% 50%;
  background-size: cover;
  overflow: hidden;
}
@media (min-width: 40em) {
  .collection-listing.details .collection-item {
    padding: 7.8125em 0;
  }
}

.collection-listing.details .text {
  text-align: center;
  width: 80%;
  max-width: 350px;
  margin: 0 auto;
}
@media (min-width: 40em) {
  .collection-listing.details .text {
    width: 50%;
    float: left;
    margin-left: 6.25em;
  }
  .collection-listing.details .text.alt {
    float: right;
    margin-right: 6.25em;
    margin-left: 0;
  }
}
.collection-listing.details .text p {
  font-size: 1.05em;
  line-height: 1.33333em;
  letter-spacing: 0.025em;
  color: #fff;
  margin: 0.625em 0 0 0;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
}
.collection-listing.details .text .title {
  text-transform: uppercase;
  font-size: 2.4em;
  line-height: 1.33333em;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 0 0;
  font-family: "Josefin Sans Light", sans-serif;
  font-style: normal;
  font-weight: 300;
  word-spacing: 350px;
}
@media (max-width: 40em) {
  .collection-listing.details .text .title {
    font-size: 2em;
  }
}

#compass-capsule__img {
  position: relative;
}
#compass-capsule__img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .7;
}
@media (max-width: 40em) {
  #compass-capsule__img::before {
    opacity: .4;
  }
}

#compass-capsule__img .text p {
  color: #ED695A;
}

[class^="shopify-social-icon-"]:before, [class*=" shopify-social-icon-"]:before {
  font-size: 1.2em;
  vertical-align: middle;
}

/*============== Popup Styles ==============*/
.popup {
  color: #000;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  padding: 5px;
  bottom: 60px;
  left: 60px;
  width: 280px;
  height: 280px;
  transition: all .4s;
}

@media (max-width: 640px) {
  .popup {
    width: 65vw;
    height: 65vw;
  }
}

.popup.active {
  opacity: 1;
  visibility: visible;
  display: block;
}

.popup__inner__container {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.popup__border {
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: relative;
  transform: rotate(45deg);
  border: 1px solid #eeeeee;
  z-index: -1;
}

.popup__inner {
  position: relative;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 100%;
  display: flex;
}

.popup__close {
  position: absolute;
  color: #fff;
  cursor: pointer;
  top: 3px;
  right: 3px;
  font-size: 40px;
  line-height: 40px;
}

.popup .social-links {
  text-align: center;
}

.popup__form__input {
  position: relative;
}

.popup__form__input__sign {
  position: absolute;
  left: 0;
  top: 0;
}

#subs-container {
  width: 60%;
}

.popup p {
  text-align: center;
  margin-top: 1em;
  max-width: 70%;
  font-size: 1.2rem;
}

.popup__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
}

.popup__form__email {
  flex-grow: 1;
  border: 0;
  border-bottom: 1px solid #333;
  width: 100%;
  font-family: "Josefin Sans Regular", sans-serif;
  font-style: normal;
  font-weight: 400;
  outline: 0;
  padding: 0 0 0 15px;
}

.popup__form__input.birthday__container {
  position: relative;
  margin-top: 10px;
  border-bottom: 1px solid black;
}

.birthday__placeholder {
  padding-left: 15px;
  width: 100%;
  position: absolute;
  background: white;
  color: darkgrey;
  pointer-events: none;
}

.popup__form__input__birthday {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border: 0;
  outline: 0;
  width: 1.7em;
  text-align: center;
  font-family: "Josefin Sans Regular", sans-serif;
}

.popup__form__input__birthday.month {
  padding-left: 15px;
}

.popup__form__submit {
  border: 1px solid #333;
  font-family: "Josefin Sans Bold", sans-serif;
  text-transform: uppercase;
  width: 50%;
  padding: 5px;
  font-size: .9rem;
  background: none;
  margin-top: 25px;
  letter-spacing: 1px;
}
  
.popup__banner {
 position: fixed;
 left: 0px;
 bottom: 0px;
 width: 100%;
 top: auto !important;
 text-align: center;
 min-height: 200px;
 background: #87004c;
 color: white;
 font-size: 20px;
 opacity: 0.9;
 display: none;
}

#popup__close__btn {
  float:right;
  padding: 5px;
  padding-right: 10px;
}


/*========== Alternate Blog Styles ==========*/
  
/*=====BLOG=====*/
.blog {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog a {
  color: #222;
  text-decoration: underline;
}
.blog img {
  height: auto;
  max-width: 100%;
}
.blog__heading { 
  text-align: center;
  font-size: 1.17em;
}
.blog__heading a {
  color: #757575;
  text-decoration: none;
  width: 100%;
}
.blog--archive iframe {
  display: none;
}

.blog--articles {
  display: flex;
  flex-wrap: wrap;
}

.blog--teaser {
  margin-right: 2%;
  width: 23.5%;
}

.blog--teaser:nth-of-type(4n) {
  margin-right: 0;
}

.blog--teaser__image {
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
}
.blog--teaser__image img {
	width: 100%;
}
.blog--teaser__image:hover .blog--teaser__caption {
  opacity: 1;
  visibility: visible;
}

.blog--teaser__caption {
  align-items: center;
  border-radius: 50%;
  background-color: rgba(36,70,77, .8);
  color: white;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  transition: opacity .5s;
  opacity: 0;
  visibility: hidden;
  width: 100%;
}


.blog--teaser__caption__text {
  font-size: 18px;
  margin: 0 20px;
}
.blog--teaser__caption__text::before {
  content: open-quote;
}
.blog--teaser__caption__text::after {
  content: close-quote;
}

@media (min-width: 40em) {
  .blog--indented-images iframe:not([style]), .blog--indented-images iframe[style="float: none;"],
  .blog--indented-images img:not([style]), .blog--indented-images img[style="float: none;"] {
    max-width: 140%;
    margin-left: -20%;
  }
}
@media (max-width: 40em) {
  .blog--indented-images iframe:not([style]), .blog--indented-images iframe[style="float: none;"],
  .blog--indented-images img:not([style]), .blog--indented-images img[style="float: none;"] {
    max-width: 120%;
    margin-left: -10%;
  }
  
  .blog--teaser {
    width: 100%;
    margin-left: 50px;
    margin-right: 50px;
  }
  
  .blog--teaser__caption {
    display: none;
  }
}

/*===ARTICLE===*/
.article-meta {
  margin-bottom: 3em;
}
.article-meta li+li:before,
.comment-meta li+li:before {
  content: '\2022';
  display: block;
  position: absolute;
  left: 0;
}
.article-meta li+li,
.comment-meta li+li {
  position: relative;
  padding-left: 18px;
  margin-left: 10px;
}

/*=====COMMENT=====*/
.comment-form input,
.comment-form textarea,
.comment-form select {
  background-color: #f2f2f2;
  border: 0 none;
  box-sizing: border-box;
  font-family: "Josefin Sans Bold", sans-serif;
  margin: 0;
  max-width: 100%;
  width: 100%;
}

.comment-form input,
.comment-form textarea {
  padding: 10px 12px;
}

.label--hidden {
  position: absolute;
  height: 0;
  width: 0;
  margin-bottom: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
  
.form-vertical input, .form-vertical select, .form-vertical textarea {
  display: block;
  margin-bottom: 12px;
}

.form-vertical .btn {
  color: #fff;
  text-transform: uppercase;
  padding: 1.66667em 1em;
  display: inline-block;
  background: #87004c;
  width: auto;
}

.errors {
  font-style: italic;
}

.pagination {
  padding: 0 15px 15px;
}

.comments {
  border: 1px solid rgba(0,0,0,.2);
  padding: 0;
}

.comments .note.form--success {
  background-color: #24464d;
  color: white;
  padding: 15px;
  margin: 0;
}

.comment-list {
  list-style: none;
  padding: 0 15px 15px 15px;
  margin: 0;
}

.comment { 
  padding: 10px 0;
}

.comment p {
  margin: .5em 0;
}

.comment:not(:last-of-type) {
  border-bottom: 1px solid rgba(0,0,0,.3);
}

.comment-meta {
  font-size: 80%;
  letter-spacing: 0.025em;
  color: #757575;
  font-family: 'Playfair Display', serif;
}


/*=====GENERAL=====*/
.blog {
  box-sizing: border-box;
}
.blog p {
  font-size: 1em;
  line-height: 1.75em;
  letter-spacing: 0.025em;
  color: #757575;
  font-family: 'Playfair Display', serif;
}
.link--action a {
  font-family: "Josefin Sans Regular", sans-serif;
}
.blog .title,
.social__title,
.blog__heading a,
.article-meta {
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .blog p {
    font-size: 0.875em;
    line-height: 1.71429em;
    padding: 0 0.625em;
  }
}
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.txt--minor {
  font-size: 80%;
}
.text-center {
  text-align: center;
}
.list--inline {
  padding: 0;
  margin: 0;
}
.list--inline li {
  display: inline-block;
  margin-bottom: 0;
}
.link--action {
  font-weight: 700;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.93333em;
}
.link--action a {
  text-decoration: underline;
  color: #222;
}
.section-header .title {
  margin-bottom: .25em;
}
hr.hr--clear {
  border: 0 none;
  clear: both;
  height: 1px;
  margin-bottom: 60px;
  margin-top: -1px;
}

/*================ Social Share ================*/
.social-sharing {
  margin-left: -10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.social-sharing a {
  display: inline-block;
  border: 1px solid #ccc;
  color: #666;
  padding: 10px 15px;
  margin-left: 10px;
  margin-bottom: 10px;
  text-decoration: none;
}
.social-sharing a .icon {
  margin-right: 5px;
}

/*================ Icon mapping ================*/
.share-facebook .icon {
  color: #3b5998;
}

.share-facebook .icon {
  color: #3b5998;
}

.share-twitter .icon {
  color: #00aced;
}

.share-pinterest .icon {
  color: #cb2027;
}

.share-fancy .icon {
  color: #4999dc;
}

.share-google .icon {
  color: #dd4b39;
}
.icon:before {
  display: inline;
  font-family: "icons";
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-american_express:before { content: "\41"; }
.icon-arrow-down:before { content: "\e607"; }
.icon-arrow-left:before { content: "\e608"; }
.icon-arrow-right:before { content: "\e609"; }
.icon-bitcoin:before { content: "\42"; }
.icon-cart:before { content: "\e600"; }
.icon-cirrus:before { content: "\43"; }
.icon-dankort:before { content: "\64"; }
.icon-diners_club:before { content: "\63"; }
.icon-discover:before { content: "\44"; }
.icon-facebook:before { content: "\66"; }
.icon-fancy:before { content: "\46"; }
.icon-google:before { content: "\67"; }
.icon-google_wallet:before { content: "\47"; }
.icon-grid-view:before { content: "\e603"; }
.icon-hamburger:before { content: "\e601"; }
.icon-instagram:before { content: "\69"; }
.icon-interac:before { content: "\49"; }
.icon-jcb:before { content: "\4a"; }
.icon-list-view:before { content: "\e604"; }
.icon-maestro:before { content: "\6d"; }
.icon-master:before { content: "\4d"; }
.icon-minus:before { content: "\e602"; }
.icon-paypal:before { content: "\50"; }
.icon-pinterest:before { content: "\70"; }
.icon-plus:before { content: "\e605"; }
.icon-rss:before { content: "\72"; }
.icon-search:before { content: "\73"; }
.icon-stripe:before { content: "\53"; }
.icon-tumblr:before { content: "\74"; }
.icon-twitter:before { content: "\54"; }
.icon-vimeo:before { content: "\76"; }
.icon-visa:before { content: "\56"; }
.icon-x:before { content: "\e606"; }
.icon-youtube:before { content: "\79"; }

/* global media specific */
/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
}

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

.video-js {
  width: 70vh;
  height: 100%;
  overflow: hidden;
}