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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

a:focus {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

@media only screen and (max-width: 749px) {
  input,
  textarea,
  select {
    font-size: 16px;
  }
}

button,
input[type="submit"],
label[for] {
  cursor: pointer;
}

optgroup {
  font-weight: 700;
}

option {
  color: #252525;
  background-color: #fff;
}

option[disabled] {
  color: #999;
}

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

/*================ Tables ================*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

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

/*================ Helper Classes ================*/
.clearfix, .main-footer {
  *zoom: 1;
}

.clearfix::after, .main-footer::after {
  content: "";
  display: table;
  clear: both;
}

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

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

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

.no-placeholder .label-hidden {
  position: inherit !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

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

.no-br {
  white-space: nowrap;
}

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

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

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

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

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

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

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

/*============================================================================
  Grid
    - Based on CSS Wizardry grid
==============================================================================*/
.grid {
  *zoom: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -30px;
}

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

.grid__item {
  float: left;
  padding-left: 30px;
  width: 100%;
}

.grid__item[class*="--push"] {
  position: relative;
}

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

.grid--rev > .grid__item {
  direction: ltr;
  text-align: left;
  float: right;
}

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

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

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

.two-thirds {
  width: 66.66667%;
}

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

.two-quarters {
  width: 50%;
}

.three-quarters {
  width: 75%;
}

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

.two-fifths {
  width: 40%;
}

.three-fifths {
  width: 60%;
}

.four-fifths {
  width: 80%;
}

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

.two-sixths {
  width: 33.33333%;
}

.three-sixths {
  width: 50%;
}

.four-sixths {
  width: 66.66667%;
}

.five-sixths {
  width: 83.33333%;
}

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

.two-eighths {
  width: 25%;
}

.three-eighths {
  width: 37.5%;
}

.four-eighths {
  width: 50%;
}

.five-eighths {
  width: 62.5%;
}

.six-eighths {
  width: 75%;
}

.seven-eighths {
  width: 87.5%;
}

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

.two-tenths {
  width: 20%;
}

.three-tenths {
  width: 30%;
}

.four-tenths {
  width: 40%;
}

.five-tenths {
  width: 50%;
}

.six-tenths {
  width: 60%;
}

.seven-tenths {
  width: 70%;
}

.eight-tenths {
  width: 80%;
}

.nine-tenths {
  width: 90%;
}

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

.two-twelfths {
  width: 16.66667%;
}

.three-twelfths {
  width: 25%;
}

.four-twelfths {
  width: 33.33333%;
}

.five-twelfths {
  width: 41.66667%;
}

.six-twelfths {
  width: 50%;
}

.seven-twelfths {
  width: 58.33333%;
}

.eight-twelfths {
  width: 66.66667%;
}

.nine-twelfths {
  width: 75%;
}

.ten-twelfths {
  width: 83.33333%;
}

.eleven-twelfths {
  width: 91.66667%;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

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

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

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

/*================ Build Responsive Grid Classes ================*/
@media only screen and (min-width: 480px) {
  /** Whole */
  .small-up--one-whole {
    width: 100%;
  }
  /* Halves */
  .small-up--one-half {
    width: 50%;
  }
  /* Thirds */
  .small-up--one-third {
    width: 33.33333%;
  }
  .small-up--two-thirds {
    width: 66.66667%;
  }
  /* Quarters */
  .small-up--one-quarter {
    width: 25%;
  }
  .small-up--two-quarters {
    width: 50%;
  }
  .small-up--three-quarters {
    width: 75%;
  }
  /* Fifths */
  .small-up--one-fifth {
    width: 20%;
  }
  .small-up--two-fifths {
    width: 40%;
  }
  .small-up--three-fifths {
    width: 60%;
  }
  .small-up--four-fifths {
    width: 80%;
  }
  /* Sixths */
  .small-up--one-sixth {
    width: 16.66667%;
  }
  .small-up--two-sixths {
    width: 33.33333%;
  }
  .small-up--three-sixths {
    width: 50%;
  }
  .small-up--four-sixths {
    width: 66.66667%;
  }
  .small-up--five-sixths {
    width: 83.33333%;
  }
  /* Eighths */
  .small-up--one-eighth {
    width: 12.5%;
  }
  .small-up--two-eighths {
    width: 25%;
  }
  .small-up--three-eighths {
    width: 37.5%;
  }
  .small-up--four-eighths {
    width: 50%;
  }
  .small-up--five-eighths {
    width: 62.5%;
  }
  .small-up--six-eighths {
    width: 75%;
  }
  .small-up--seven-eighths {
    width: 87.5%;
  }
  /* Tenths */
  .small-up--one-tenth {
    width: 10%;
  }
  .small-up--two-tenths {
    width: 20%;
  }
  .small-up--three-tenths {
    width: 30%;
  }
  .small-up--four-tenths {
    width: 40%;
  }
  .small-up--five-tenths {
    width: 50%;
  }
  .small-up--six-tenths {
    width: 60%;
  }
  .small-up--seven-tenths {
    width: 70%;
  }
  .small-up--eight-tenths {
    width: 80%;
  }
  .small-up--nine-tenths {
    width: 90%;
  }
  /* Twelfths */
  .small-up--one-twelfth {
    width: 8.33333%;
  }
  .small-up--two-twelfths {
    width: 16.66667%;
  }
  .small-up--three-twelfths {
    width: 25%;
  }
  .small-up--four-twelfths {
    width: 33.33333%;
  }
  .small-up--five-twelfths {
    width: 41.66667%;
  }
  .small-up--six-twelfths {
    width: 50%;
  }
  .small-up--seven-twelfths {
    width: 58.33333%;
  }
  .small-up--eight-twelfths {
    width: 66.66667%;
  }
  .small-up--nine-twelfths {
    width: 75%;
  }
  .small-up--ten-twelfths {
    width: 83.33333%;
  }
  .small-up--eleven-twelfths {
    width: 91.66667%;
  }
  .grid--uniform .small-up--one-half:nth-child(2n + 1),
  .grid--uniform .small-up--one-third:nth-child(3n + 1),
  .grid--uniform .small-up--one-quarter:nth-child(4n + 1),
  .grid--uniform .small-up--one-fifth:nth-child(5n + 1),
  .grid--uniform .small-up--one-sixth:nth-child(6n + 1),
  .grid--uniform .small-up--two-sixths:nth-child(3n + 1),
  .grid--uniform .small-up--three-sixths:nth-child(2n + 1),
  .grid--uniform .small-up--one-eighth:nth-child(8n + 1),
  .grid--uniform .small-up--two-eighths:nth-child(4n + 1),
  .grid--uniform .small-up--four-eighths:nth-child(2n + 1),
  .grid--uniform .small-up--five-tenths:nth-child(2n + 1),
  .grid--uniform .small-up--one-twelfth:nth-child(12n + 1),
  .grid--uniform .small-up--two-twelfths:nth-child(6n + 1),
  .grid--uniform .small-up--three-twelfths:nth-child(4n + 1),
  .grid--uniform .small-up--four-twelfths:nth-child(3n + 1),
  .grid--uniform .small-up--six-twelfths:nth-child(2n + 1) {
    clear: both;
  }
  .small-up--text-left {
    text-align: left !important;
  }
  .small-up--text-right {
    text-align: right !important;
  }
  .small-up--text-center {
    text-align: center !important;
  }
}

@media only screen and (min-width: 750px) {
  /** Whole */
  .medium-up--one-whole {
    width: 100%;
  }
  /* Halves */
  .medium-up--one-half {
    width: 50%;
  }
  /* Thirds */
  .medium-up--one-third {
    width: 33.33333%;
  }
  .medium-up--two-thirds {
    width: 66.66667%;
  }
  /* Quarters */
  .medium-up--one-quarter {
    width: 25%;
  }
  .medium-up--two-quarters {
    width: 50%;
  }
  .medium-up--three-quarters {
    width: 75%;
  }
  /* Fifths */
  .medium-up--one-fifth {
    width: 20%;
  }
  .medium-up--two-fifths {
    width: 40%;
  }
  .medium-up--three-fifths {
    width: 60%;
  }
  .medium-up--four-fifths {
    width: 80%;
  }
  /* Sixths */
  .medium-up--one-sixth {
    width: 16.66667%;
  }
  .medium-up--two-sixths {
    width: 33.33333%;
  }
  .medium-up--three-sixths {
    width: 50%;
  }
  .medium-up--four-sixths {
    width: 66.66667%;
  }
  .medium-up--five-sixths {
    width: 83.33333%;
  }
  /* Eighths */
  .medium-up--one-eighth {
    width: 12.5%;
  }
  .medium-up--two-eighths {
    width: 25%;
  }
  .medium-up--three-eighths {
    width: 37.5%;
  }
  .medium-up--four-eighths {
    width: 50%;
  }
  .medium-up--five-eighths {
    width: 62.5%;
  }
  .medium-up--six-eighths {
    width: 75%;
  }
  .medium-up--seven-eighths {
    width: 87.5%;
  }
  /* Tenths */
  .medium-up--one-tenth {
    width: 10%;
  }
  .medium-up--two-tenths {
    width: 20%;
  }
  .medium-up--three-tenths {
    width: 30%;
  }
  .medium-up--four-tenths {
    width: 40%;
  }
  .medium-up--five-tenths {
    width: 50%;
  }
  .medium-up--six-tenths {
    width: 60%;
  }
  .medium-up--seven-tenths {
    width: 70%;
  }
  .medium-up--eight-tenths {
    width: 80%;
  }
  .medium-up--nine-tenths {
    width: 90%;
  }
  /* Twelfths */
  .medium-up--one-twelfth {
    width: 8.33333%;
  }
  .medium-up--two-twelfths {
    width: 16.66667%;
  }
  .medium-up--three-twelfths {
    width: 25%;
  }
  .medium-up--four-twelfths {
    width: 33.33333%;
  }
  .medium-up--five-twelfths {
    width: 41.66667%;
  }
  .medium-up--six-twelfths {
    width: 50%;
  }
  .medium-up--seven-twelfths {
    width: 58.33333%;
  }
  .medium-up--eight-twelfths {
    width: 66.66667%;
  }
  .medium-up--nine-twelfths {
    width: 75%;
  }
  .medium-up--ten-twelfths {
    width: 83.33333%;
  }
  .medium-up--eleven-twelfths {
    width: 91.66667%;
  }
  .grid--uniform .medium-up--one-half:nth-child(2n + 1),
  .grid--uniform .medium-up--one-third:nth-child(3n + 1),
  .grid--uniform .medium-up--one-quarter:nth-child(4n + 1),
  .grid--uniform .medium-up--one-fifth:nth-child(5n + 1),
  .grid--uniform .medium-up--one-sixth:nth-child(6n + 1),
  .grid--uniform .medium-up--two-sixths:nth-child(3n + 1),
  .grid--uniform .medium-up--three-sixths:nth-child(2n + 1),
  .grid--uniform .medium-up--one-eighth:nth-child(8n + 1),
  .grid--uniform .medium-up--two-eighths:nth-child(4n + 1),
  .grid--uniform .medium-up--four-eighths:nth-child(2n + 1),
  .grid--uniform .medium-up--five-tenths:nth-child(2n + 1),
  .grid--uniform .medium-up--one-twelfth:nth-child(12n + 1),
  .grid--uniform .medium-up--two-twelfths:nth-child(6n + 1),
  .grid--uniform .medium-up--three-twelfths:nth-child(4n + 1),
  .grid--uniform .medium-up--four-twelfths:nth-child(3n + 1),
  .grid--uniform .medium-up--six-twelfths:nth-child(2n + 1) {
    clear: both;
  }
  .medium-up--text-left {
    text-align: left !important;
  }
  .medium-up--text-right {
    text-align: right !important;
  }
  .medium-up--text-center {
    text-align: center !important;
  }
}

@media only screen and (min-width: 870px) {
  /** Whole */
  .large-up--one-whole {
    width: 100%;
  }
  /* Halves */
  .large-up--one-half {
    width: 50%;
  }
  /* Thirds */
  .large-up--one-third {
    width: 33.33333%;
  }
  .large-up--two-thirds {
    width: 66.66667%;
  }
  /* Quarters */
  .large-up--one-quarter {
    width: 25%;
  }
  .large-up--two-quarters {
    width: 50%;
  }
  .large-up--three-quarters {
    width: 75%;
  }
  /* Fifths */
  .large-up--one-fifth {
    width: 20%;
  }
  .large-up--two-fifths {
    width: 40%;
  }
  .large-up--three-fifths {
    width: 60%;
  }
  .large-up--four-fifths {
    width: 80%;
  }
  /* Sixths */
  .large-up--one-sixth {
    width: 16.66667%;
  }
  .large-up--two-sixths {
    width: 33.33333%;
  }
  .large-up--three-sixths {
    width: 50%;
  }
  .large-up--four-sixths {
    width: 66.66667%;
  }
  .large-up--five-sixths {
    width: 83.33333%;
  }
  /* Eighths */
  .large-up--one-eighth {
    width: 12.5%;
  }
  .large-up--two-eighths {
    width: 25%;
  }
  .large-up--three-eighths {
    width: 37.5%;
  }
  .large-up--four-eighths {
    width: 50%;
  }
  .large-up--five-eighths {
    width: 62.5%;
  }
  .large-up--six-eighths {
    width: 75%;
  }
  .large-up--seven-eighths {
    width: 87.5%;
  }
  /* Tenths */
  .large-up--one-tenth {
    width: 10%;
  }
  .large-up--two-tenths {
    width: 20%;
  }
  .large-up--three-tenths {
    width: 30%;
  }
  .large-up--four-tenths {
    width: 40%;
  }
  .large-up--five-tenths {
    width: 50%;
  }
  .large-up--six-tenths {
    width: 60%;
  }
  .large-up--seven-tenths {
    width: 70%;
  }
  .large-up--eight-tenths {
    width: 80%;
  }
  .large-up--nine-tenths {
    width: 90%;
  }
  /* Twelfths */
  .large-up--one-twelfth {
    width: 8.33333%;
  }
  .large-up--two-twelfths {
    width: 16.66667%;
  }
  .large-up--three-twelfths {
    width: 25%;
  }
  .large-up--four-twelfths {
    width: 33.33333%;
  }
  .large-up--five-twelfths {
    width: 41.66667%;
  }
  .large-up--six-twelfths {
    width: 50%;
  }
  .large-up--seven-twelfths {
    width: 58.33333%;
  }
  .large-up--eight-twelfths {
    width: 66.66667%;
  }
  .large-up--nine-twelfths {
    width: 75%;
  }
  .large-up--ten-twelfths {
    width: 83.33333%;
  }
  .large-up--eleven-twelfths {
    width: 91.66667%;
  }
  .grid--uniform .large-up--one-half:nth-child(2n + 1),
  .grid--uniform .large-up--one-third:nth-child(3n + 1),
  .grid--uniform .large-up--one-quarter:nth-child(4n + 1),
  .grid--uniform .large-up--one-fifth:nth-child(5n + 1),
  .grid--uniform .large-up--one-sixth:nth-child(6n + 1),
  .grid--uniform .large-up--two-sixths:nth-child(3n + 1),
  .grid--uniform .large-up--three-sixths:nth-child(2n + 1),
  .grid--uniform .large-up--one-eighth:nth-child(8n + 1),
  .grid--uniform .large-up--two-eighths:nth-child(4n + 1),
  .grid--uniform .large-up--four-eighths:nth-child(2n + 1),
  .grid--uniform .large-up--five-tenths:nth-child(2n + 1),
  .grid--uniform .large-up--one-twelfth:nth-child(12n + 1),
  .grid--uniform .large-up--two-twelfths:nth-child(6n + 1),
  .grid--uniform .large-up--three-twelfths:nth-child(4n + 1),
  .grid--uniform .large-up--four-twelfths:nth-child(3n + 1),
  .grid--uniform .large-up--six-twelfths:nth-child(2n + 1) {
    clear: both;
  }
  .large-up--text-left {
    text-align: left !important;
  }
  .large-up--text-right {
    text-align: right !important;
  }
  .large-up--text-center {
    text-align: center !important;
  }
}

@media only screen and (min-width: 990px) {
  /** Whole */
  .xlarge-up--one-whole {
    width: 100%;
  }
  /* Halves */
  .xlarge-up--one-half {
    width: 50%;
  }
  /* Thirds */
  .xlarge-up--one-third {
    width: 33.33333%;
  }
  .xlarge-up--two-thirds {
    width: 66.66667%;
  }
  /* Quarters */
  .xlarge-up--one-quarter {
    width: 25%;
  }
  .xlarge-up--two-quarters {
    width: 50%;
  }
  .xlarge-up--three-quarters {
    width: 75%;
  }
  /* Fifths */
  .xlarge-up--one-fifth {
    width: 20%;
  }
  .xlarge-up--two-fifths {
    width: 40%;
  }
  .xlarge-up--three-fifths {
    width: 60%;
  }
  .xlarge-up--four-fifths {
    width: 80%;
  }
  /* Sixths */
  .xlarge-up--one-sixth {
    width: 16.66667%;
  }
  .xlarge-up--two-sixths {
    width: 33.33333%;
  }
  .xlarge-up--three-sixths {
    width: 50%;
  }
  .xlarge-up--four-sixths {
    width: 66.66667%;
  }
  .xlarge-up--five-sixths {
    width: 83.33333%;
  }
  /* Eighths */
  .xlarge-up--one-eighth {
    width: 12.5%;
  }
  .xlarge-up--two-eighths {
    width: 25%;
  }
  .xlarge-up--three-eighths {
    width: 37.5%;
  }
  .xlarge-up--four-eighths {
    width: 50%;
  }
  .xlarge-up--five-eighths {
    width: 62.5%;
  }
  .xlarge-up--six-eighths {
    width: 75%;
  }
  .xlarge-up--seven-eighths {
    width: 87.5%;
  }
  /* Tenths */
  .xlarge-up--one-tenth {
    width: 10%;
  }
  .xlarge-up--two-tenths {
    width: 20%;
  }
  .xlarge-up--three-tenths {
    width: 30%;
  }
  .xlarge-up--four-tenths {
    width: 40%;
  }
  .xlarge-up--five-tenths {
    width: 50%;
  }
  .xlarge-up--six-tenths {
    width: 60%;
  }
  .xlarge-up--seven-tenths {
    width: 70%;
  }
  .xlarge-up--eight-tenths {
    width: 80%;
  }
  .xlarge-up--nine-tenths {
    width: 90%;
  }
  /* Twelfths */
  .xlarge-up--one-twelfth {
    width: 8.33333%;
  }
  .xlarge-up--two-twelfths {
    width: 16.66667%;
  }
  .xlarge-up--three-twelfths {
    width: 25%;
  }
  .xlarge-up--four-twelfths {
    width: 33.33333%;
  }
  .xlarge-up--five-twelfths {
    width: 41.66667%;
  }
  .xlarge-up--six-twelfths {
    width: 50%;
  }
  .xlarge-up--seven-twelfths {
    width: 58.33333%;
  }
  .xlarge-up--eight-twelfths {
    width: 66.66667%;
  }
  .xlarge-up--nine-twelfths {
    width: 75%;
  }
  .xlarge-up--ten-twelfths {
    width: 83.33333%;
  }
  .xlarge-up--eleven-twelfths {
    width: 91.66667%;
  }
  .grid--uniform .xlarge-up--one-half:nth-child(2n + 1),
  .grid--uniform .xlarge-up--one-third:nth-child(3n + 1),
  .grid--uniform .xlarge-up--one-quarter:nth-child(4n + 1),
  .grid--uniform .xlarge-up--one-fifth:nth-child(5n + 1),
  .grid--uniform .xlarge-up--one-sixth:nth-child(6n + 1),
  .grid--uniform .xlarge-up--two-sixths:nth-child(3n + 1),
  .grid--uniform .xlarge-up--three-sixths:nth-child(2n + 1),
  .grid--uniform .xlarge-up--one-eighth:nth-child(8n + 1),
  .grid--uniform .xlarge-up--two-eighths:nth-child(4n + 1),
  .grid--uniform .xlarge-up--four-eighths:nth-child(2n + 1),
  .grid--uniform .xlarge-up--five-tenths:nth-child(2n + 1),
  .grid--uniform .xlarge-up--one-twelfth:nth-child(12n + 1),
  .grid--uniform .xlarge-up--two-twelfths:nth-child(6n + 1),
  .grid--uniform .xlarge-up--three-twelfths:nth-child(4n + 1),
  .grid--uniform .xlarge-up--four-twelfths:nth-child(3n + 1),
  .grid--uniform .xlarge-up--six-twelfths:nth-child(2n + 1) {
    clear: both;
  }
  .xlarge-up--text-left {
    text-align: left !important;
  }
  .xlarge-up--text-right {
    text-align: right !important;
  }
  .xlarge-up--text-center {
    text-align: center !important;
  }
}

@media only screen and (min-width: 1200px) {
  /** Whole */
  .xxlarge-up--one-whole {
    width: 100%;
  }
  /* Halves */
  .xxlarge-up--one-half {
    width: 50%;
  }
  /* Thirds */
  .xxlarge-up--one-third {
    width: 33.33333%;
  }
  .xxlarge-up--two-thirds {
    width: 66.66667%;
  }
  /* Quarters */
  .xxlarge-up--one-quarter {
    width: 25%;
  }
  .xxlarge-up--two-quarters {
    width: 50%;
  }
  .xxlarge-up--three-quarters {
    width: 75%;
  }
  /* Fifths */
  .xxlarge-up--one-fifth {
    width: 20%;
  }
  .xxlarge-up--two-fifths {
    width: 40%;
  }
  .xxlarge-up--three-fifths {
    width: 60%;
  }
  .xxlarge-up--four-fifths {
    width: 80%;
  }
  /* Sixths */
  .xxlarge-up--one-sixth {
    width: 16.66667%;
  }
  .xxlarge-up--two-sixths {
    width: 33.33333%;
  }
  .xxlarge-up--three-sixths {
    width: 50%;
  }
  .xxlarge-up--four-sixths {
    width: 66.66667%;
  }
  .xxlarge-up--five-sixths {
    width: 83.33333%;
  }
  /* Eighths */
  .xxlarge-up--one-eighth {
    width: 12.5%;
  }
  .xxlarge-up--two-eighths {
    width: 25%;
  }
  .xxlarge-up--three-eighths {
    width: 37.5%;
  }
  .xxlarge-up--four-eighths {
    width: 50%;
  }
  .xxlarge-up--five-eighths {
    width: 62.5%;
  }
  .xxlarge-up--six-eighths {
    width: 75%;
  }
  .xxlarge-up--seven-eighths {
    width: 87.5%;
  }
  /* Tenths */
  .xxlarge-up--one-tenth {
    width: 10%;
  }
  .xxlarge-up--two-tenths {
    width: 20%;
  }
  .xxlarge-up--three-tenths {
    width: 30%;
  }
  .xxlarge-up--four-tenths {
    width: 40%;
  }
  .xxlarge-up--five-tenths {
    width: 50%;
  }
  .xxlarge-up--six-tenths {
    width: 60%;
  }
  .xxlarge-up--seven-tenths {
    width: 70%;
  }
  .xxlarge-up--eight-tenths {
    width: 80%;
  }
  .xxlarge-up--nine-tenths {
    width: 90%;
  }
  /* Twelfths */
  .xxlarge-up--one-twelfth {
    width: 8.33333%;
  }
  .xxlarge-up--two-twelfths {
    width: 16.66667%;
  }
  .xxlarge-up--three-twelfths {
    width: 25%;
  }
  .xxlarge-up--four-twelfths {
    width: 33.33333%;
  }
  .xxlarge-up--five-twelfths {
    width: 41.66667%;
  }
  .xxlarge-up--six-twelfths {
    width: 50%;
  }
  .xxlarge-up--seven-twelfths {
    width: 58.33333%;
  }
  .xxlarge-up--eight-twelfths {
    width: 66.66667%;
  }
  .xxlarge-up--nine-twelfths {
    width: 75%;
  }
  .xxlarge-up--ten-twelfths {
    width: 83.33333%;
  }
  .xxlarge-up--eleven-twelfths {
    width: 91.66667%;
  }
  .grid--uniform .xxlarge-up--one-half:nth-child(2n + 1),
  .grid--uniform .xxlarge-up--one-third:nth-child(3n + 1),
  .grid--uniform .xxlarge-up--one-quarter:nth-child(4n + 1),
  .grid--uniform .xxlarge-up--one-fifth:nth-child(5n + 1),
  .grid--uniform .xxlarge-up--one-sixth:nth-child(6n + 1),
  .grid--uniform .xxlarge-up--two-sixths:nth-child(3n + 1),
  .grid--uniform .xxlarge-up--three-sixths:nth-child(2n + 1),
  .grid--uniform .xxlarge-up--one-eighth:nth-child(8n + 1),
  .grid--uniform .xxlarge-up--two-eighths:nth-child(4n + 1),
  .grid--uniform .xxlarge-up--four-eighths:nth-child(2n + 1),
  .grid--uniform .xxlarge-up--five-tenths:nth-child(2n + 1),
  .grid--uniform .xxlarge-up--one-twelfth:nth-child(12n + 1),
  .grid--uniform .xxlarge-up--two-twelfths:nth-child(6n + 1),
  .grid--uniform .xxlarge-up--three-twelfths:nth-child(4n + 1),
  .grid--uniform .xxlarge-up--four-twelfths:nth-child(3n + 1),
  .grid--uniform .xxlarge-up--six-twelfths:nth-child(2n + 1) {
    clear: both;
  }
  .xxlarge-up--text-left {
    text-align: left !important;
  }
  .xxlarge-up--text-right {
    text-align: right !important;
  }
  .xxlarge-up--text-center {
    text-align: center !important;
  }
}

/*================ Build Responsive Hide Classes ================*/
@media only screen and (max-width: 479px) {
  .small-down--show {
    display: block !important;
  }
  .small-down--hide {
    display: none !important;
  }
}

@media only screen and (min-width: 480px) {
  .small-up--show {
    display: block !important;
  }
  .small-up--hide {
    display: none !important;
  }
}

@media only screen and (max-width: 749px) {
  .medium-down--show {
    display: block !important;
  }
  .medium-down--hide {
    display: none !important;
  }
}

@media only screen and (min-width: 750px) {
  .medium-up--show {
    display: block !important;
  }
  .medium-up--hide {
    display: none !important;
  }
}

@media only screen and (max-width: 869px) {
  .large-down--show {
    display: block !important;
  }
  .large-down--hide {
    display: none !important;
  }
}

@media only screen and (min-width: 870px) {
  .large-up--show {
    display: block !important;
  }
  .large-up--hide {
    display: none !important;
  }
}

@media only screen and (max-width: 989px) {
  .xlarge-down--show {
    display: block !important;
  }
  .xlarge-down--hide {
    display: none !important;
  }
}

@media only screen and (min-width: 990px) {
  .xlarge-up--show {
    display: block !important;
  }
  .xlarge-up--hide {
    display: none !important;
  }
}

@media only screen and (min-width: 1200px) {
  .xxlarge-up--show {
    display: block !important;
  }
  .xxlarge-up--hide {
    display: none !important;
  }
}

@media only screen and (min-width: 1440px) {
  .xxxlarge-up--show {
    display: block !important;
  }
  .xxxlarge-up--hide {
    display: none !important;
  }
}

/*================ Build Grid Push Classes ================*/
/*================ Icons ================*/
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  fill: currentColor;
}

.no-svg .icon {
  display: none;
}

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

.icon--full-color * {
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}

.icon-search {
  width: 20px;
  height: 21px;
}

.icon-email {
  width: 21px;
  height: 16px;
}

.icon-phone {
  width: 21px;
  height: 21px;
}

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

.icon-clock,
.icon-plane {
  width: 15px;
  height: 15px;
}

.icon-secure-full-color {
  width: 28px;
  height: 32px;
}

.icon-shopify_pay-full-color {
  width: 54px;
  height: 18px;
}

.icon-paypal-full-color {
  width: 55px;
  height: 16px;
}

.icon-visa-full-color {
  width: 40px;
  height: 13px;
}

.icon-master-full-color {
  width: 30px;
  height: 19px;
}

a:hover .icon--full-color .bg,
a:focus .icon--full-color .bg {
  fill: #252525;
}

a:hover .icon--full-color .shadow,
a:focus .icon--full-color .shadow {
  fill: #000;
}

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

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

.no-svg .icon-fallback-text {
  position: static !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

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

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

/*================ Rich Text Editor ================*/
.rte {
  margin-bottom: 1.333em;
}

.rte h2,
.rte h3,
.rte h4,
.rte h5,
.rte h6 {
  color: var(--color-primary);
}

.rte h2 {
  margin-bottom: 0.6em;
}

.rte img {
  height: auto;
}

.rte table {
  table-layout: fixed;
  width: 100%;
  border: 1px solid #f3f3f3;
  border-left: 0;
  border-right: 0;
}

.rte table th,
.rte table td {
  padding: 10px;
  border: 1px solid #f3f3f3;
  border-left: 0;
  border-right: 0;
  vertical-align: top;
}

.rte table th:first-child,
.rte table td:first-child {
  padding-left: 0;
}

.rte table th:last-child,
.rte table td:last-child {
  padding-right: 0;
}

.rte table th {
  font-weight: 700;
  text-align: left;
}

.rte ul,
.rte ol {
  margin: 0 0 1.333em;
  padding: 0 0 0 1em;
}

.rte ul li,
.rte ol li {
  margin: 0 0 0.333em;
}

.rte ul ul,
.rte ul ol,
.rte ol ul,
.rte ol ol {
  margin-top: 0.333em;
}

.rte ul {
  list-style: disc outside;
}

.rte ul ul {
  list-style: circle outside;
}

.rte ul ul ul {
  list-style: square outside;
}

.rte a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-bottom: 1px solid transparent;
  color: var(--color-primary);
}

.rte a:hover, .rte a:focus {
  border-bottom-color: var(--color-primary);
}

.rte a.btn, .rte #bc-sf-filter-load-more a.bc-sf-filter-load-more-button, #bc-sf-filter-load-more .rte a.bc-sf-filter-load-more-button {
  margin-top: 1.333em;
  color: #fff;
}

.rte a.btn:hover, .rte #bc-sf-filter-load-more a.bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .rte a.bc-sf-filter-load-more-button:hover, .rte a.btn:focus, .rte #bc-sf-filter-load-more a.bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .rte a.bc-sf-filter-load-more-button:focus {
  color: var(--color-primary);
}

.rte a.btn-secondary, .rte #bc-sf-filter-load-more a.bc-sf-filter-load-more-button, #bc-sf-filter-load-more .rte a.bc-sf-filter-load-more-button {
  color: var(--color-primary);
}

.rte a.btn-secondary:hover, .rte #bc-sf-filter-load-more a.bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .rte a.bc-sf-filter-load-more-button:hover, .rte a.btn-secondary:focus, .rte #bc-sf-filter-load-more a.bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .rte a.bc-sf-filter-load-more-button:focus {
  color: #fff;
}

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

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

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

.rte__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.rte__table-wrapper:first-child {
  margin-top: 0;
}

/*============================================================================
  Form scaffolding
    - Selectors setup for you to style form elements how you want
    - Focus, error, and disabled states are set to be extended
==============================================================================*/
form p {
  margin-bottom: 10px;
}

form .grid,
form .grid__item {
  display: block;
}

form .grid {
  margin-left: -10px;
}

form .grid__item {
  padding-left: 10px;
}

@media only screen and (max-width: 749px) {
  form .grid__item.medium-up--one-half:first-child {
    margin-bottom: 10px;
  }
}

button,
input,
optgroup,
select,
textarea {
  font-family: proxima-nova, sans-serif;
  font-size: 14px;
}

button {
  outline: none;
}

input,
select,
textarea {
  padding: 14px 16px;
}

input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="date"],
textarea,
select {
  display: block;
  width: 100%;
  max-width: 100%;
  background: #f7f7f7;
  border: 0;
  border-radius: 0;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
  background-color: #f3f3f3;
}

input[type="text"][disabled],
input[type="search"][disabled],
input[type="password"][disabled],
input[type="email"][disabled],
input[type="number"][disabled],
input[type="tel"][disabled],
input[type="date"][disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
  background-color: #fcfcfc;
}

input[type="text"]:invalid,
input[type="search"]:invalid,
input[type="password"]:invalid,
input[type="email"]:invalid,
input[type="number"]:invalid,
input[type="tel"]:invalid,
input[type="date"]:invalid,
textarea:invalid,
select:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}

input[type="text"].input-error,
input[type="search"].input-error,
input[type="password"].input-error,
input[type="email"].input-error,
input[type="number"].input-error,
input[type="tel"].input-error,
input[type="date"].input-error,
textarea.input-error,
select.input-error {
  padding: 13px 15px;
  border: 1px solid #d02e2e;
}

input[type="text"].input-error:focus,
input[type="search"].input-error:focus,
input[type="password"].input-error:focus,
input[type="email"].input-error:focus,
input[type="number"].input-error:focus,
input[type="tel"].input-error:focus,
input[type="date"].input-error:focus,
textarea.input-error:focus,
select.input-error:focus {
  border-color: #a62525;
}

@media only screen and (max-width: 989px) {
  input[type="text"],
  input[type="search"],
  input[type="password"],
  input[type="email"],
  input[type="number"],
  input[type="tel"],
  input[type="date"],
  textarea,
  select {
    font-size: 16px;
  }
}

textarea {
  min-height: 100px;
  overflow: auto;
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

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

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

label {
  display: block;
  margin: 0 0 6px;
}

.has-label {
  position: relative;
  display: block;
}

.has-label label {
  position: absolute;
  top: 4px;
  left: 16px;
  margin-bottom: 0;
  font-size: 10px;
  color: #999;
}

.has-label select {
  padding-top: 18px;
  padding-bottom: 10px;
}

/*================ Custom select style ================*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: var(--svg-select-icon);
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  text-indent: 0.01px;
  text-overflow: "";
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 ================*/
}

.ie9 select {
  padding-right: 12px;
  background-image: none;
}

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

/*================ Custom radio and checkbox style ================*/
.radio,
.checkbox {
  position: relative;
  display: block;
}

.radio label,
.checkbox label {
  position: relative;
  margin-bottom: 0;
  padding: 0 0 0 2rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.radio label::before, .radio label::after,
.checkbox label::before,
.checkbox label::after {
  font-size: 15px;
}

.radio label::before,
.checkbox label::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: #fff;
  border: 1px solid #c7c8cf;
  border-radius: 50%;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  content: "";
}

@media only screen and (min-width: 750px) {
  .radio label,
  .checkbox label {
    padding-left: 1.714rem;
  }
  .radio label::before,
  .checkbox label::before {
    top: 0.167em;
  }
}

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.radio input[type="radio"]:checked + label::before,
.radio input[type="radio"][aria-checked] + label::before,
.checkbox input[type="checkbox"]:checked + label::before,
.checkbox input[type="checkbox"][aria-checked] + label::before {
  background-repeat: no-repeat;
  background-position: center center;
  border-color: var(--color-primary);
}

.radio input[type="radio"]:disabled, .radio input[type="radio"][aria-disabled],
.checkbox input[type="checkbox"]:disabled,
.checkbox input[type="checkbox"][aria-disabled] {
  cursor: not-allowed;
}

.radio input[type="radio"]:disabled + label::before,
.radio input[type="radio"][aria-disabled] + label::before,
.checkbox input[type="checkbox"]:disabled + label::before,
.checkbox input[type="checkbox"][aria-disabled] + label::before {
  opacity: 0.3;
}

.radio input[type="radio"]:checked + label::before,
.radio input[type="radio"][aria-checked] + label::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2013%2013%22%3E%3Ccircle%20cx%3D%226.5%22%20cy%3D%226.5%22%20r%3D%224.5%22%20fill%3D%22%2var(--color-primary)%22%2F%3E%3C%2Fsvg%3E");
}

.checkbox label::after {
  display: block;
  position: absolute;
  top: 0.067em;
  left: 0.2em;
  width: 0.933em;
  height: 0.733em;
  content: "";
}

@media only screen and (min-width: 750px) {
  .checkbox label::after {
    top: 0.233em;
  }
}

.checkbox input[type="checkbox"]:checked + label::before,
.checkbox input[type="checkbox"][aria-checked] + label::before {
  background-color: var(--color-primary);
}

.checkbox input[type="checkbox"]:checked + label::after,
.checkbox input[type="checkbox"][aria-checked] + label::after {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2014%2011%22%3E%3Cpolygon%20points%3D%224.159%2010.824%200.126%206.942%201.374%205.645%204.159%208.326%2012.626%200.176%2013.874%201.473%204.159%2010.824%22%20fill%3D%22%23252525%22%2F%3E%3C%2Fsvg%3E");
}

/*================ Links & Buttons ================*/
.btn, #bc-sf-filter-load-more .bc-sf-filter-load-more-button {
  -moz-user-select: "none";
  -ms-user-select: "none";
  -webkit-user-select: "none";
  user-select: "none";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: auto;
  padding: 14px 50px;
  border: 0;
  background: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  outline: none;
  border-radius: 0;
}

@media only screen and (min-width: 750px) {
  .btn, #bc-sf-filter-load-more .bc-sf-filter-load-more-button {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.btn:hover, #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, .btn:focus, #bc-sf-filter-load-more .bc-sf-filter-load-more-button:focus {
  background: #fff;
  color: var(--color-primary);
}

.btn[disabled], #bc-sf-filter-load-more .bc-sf-filter-load-more-button[disabled] {
  cursor: default;
  opacity: 0.3;
  background: var(--color-primary);
  color: #fff;
}

.btn-secondary, #bc-sf-filter-load-more .bc-sf-filter-load-more-button {
  padding: 13px 49px;
  background: #fff;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

@media only screen and (min-width: 750px) {
  .btn-secondary, #bc-sf-filter-load-more .bc-sf-filter-load-more-button {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.btn-secondary:hover, #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, .btn-secondary:focus, #bc-sf-filter-load-more .bc-sf-filter-load-more-button:focus {
  background: var(--color-primary);
  color: #fff;
}

.btn-secondary[disabled], #bc-sf-filter-load-more .bc-sf-filter-load-more-button[disabled] {
  background: #fff;
  color: var(--color-primary);
}

.btn-full {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.inline-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inline-button .input-wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.inline-button .input-wrapper input {
  border: 1px solid var(--color-primary);
  border-right: 0;
}

.inline-button .input-wrapper input:focus {
  background: transparent;
}

.inline-button .send {
  margin: 0;
}

.inline-button .btn, .inline-button #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .inline-button .bc-sf-filter-load-more-button {
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: 100%;
  border: 0;
}

.send {
  margin-top: 20px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 750px) {
  .send {
    margin-top: 30px;
  }
}

.send .btn, .send #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .send .bc-sf-filter-load-more-button {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.send .btn:last-child, .send #bc-sf-filter-load-more .bc-sf-filter-load-more-button:last-child, #bc-sf-filter-load-more .send .bc-sf-filter-load-more-button:last-child {
  margin-bottom: 0;
}

.send a {
  display: inline-block;
  vertical-align: middle;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 15px;
}

.send a:last-child {
  margin-right: 0;
}

@media only screen and (min-width: 750px) {
  .send .btn, .send #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .send .bc-sf-filter-load-more-button {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin-bottom: 0;
    margin-right: 15px;
  }
  .send .btn:last-child, .send #bc-sf-filter-load-more .bc-sf-filter-load-more-button:last-child, #bc-sf-filter-load-more .send .bc-sf-filter-load-more-button:last-child {
    margin-right: 0;
  }
  .send .btn-full {
    width: 100%;
  }
}

/*================ Notes and Form Feedback ================*/
.note {
  padding: 12px 16px 8px;
  margin-bottom: 20px;
  background-color: #f7f7f7;
  text-align: left;
}

.note ul,
.note ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 12px;
}

.note li,
.note p {
  margin-bottom: 4px;
}

.note a {
  text-decoration: underline;
}

.note a:hover, .note a:focus {
  color: #252525;
  text-decoration: none;
}

.form-success {
  background-color: #c4dca6;
}

.form-error {
  background-color: #e56f6f;
  color: #fff;
}

.form-error a {
  color: #fff;
}

.form-error a:hover, .form-error a:focus {
  color: #fff;
}

.qty-error {
  color: #d02e2e;
}

/*================ Typography ================*/
html {
  font-family: proxima-nova, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: #252525;
}

@media only screen and (min-width: 750px) {
  html {
    font-size: 14px;
    line-height: 1.5;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 2.143em 0 0.286em;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1, h2, h3, h4,
.h1, .h2, .h3, .h4 {
  font-family: "Prata", serif;
  font-weight: 400;
}

.h1, .h2, .h3, .h4 {
  letter-spacing: 0;
  text-transform: none;
}

.h5,
.h6 {
  font-family: proxima-nova, sans-serif;
}

h1,
.h1 {
  font-size: 25px;
}

h1.with-border,
.h1.with-border {
  position: relative;
  margin-bottom: 0.96em;
  text-align: center;
}

h1.with-border::before,
.h1.with-border::before {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 70px;
  margin-left: -35px;
  border-top: 1px solid var(--color-primary);
  content: "";
}

.text-left h1.with-border, h1.with-border.text-left, .text-left
.h1.with-border,
.h1.with-border.text-left {
  text-align: left;
}

.text-left h1.with-border::before, h1.with-border.text-left::before, .text-left
.h1.with-border::before,
.h1.with-border.text-left::before {
  left: 0;
  margin-left: 0;
}

@media only screen and (min-width: 750px) {
  h1,
  .h1 {
    font-size: 35px;
  }
  h1.with-border,
  .h1.with-border {
    margin-bottom: 1.25714em;
  }
  h1.with-border::before,
  .h1.with-border::before {
    bottom: -14px;
  }
}

h2,
.h2 {
  font-size: 20px;
}

h2.with-border,
.h2.with-border {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}

@media only screen and (min-width: 750px) {
  h2.with-border,
  .h2.with-border {
    margin-bottom: 40px;
  }
}

h2.with-border::before,
.h2.with-border::before {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 70px;
  margin-left: -35px;
  border-top: 1px solid var(--color-primary);
  content: "";
}

.text-left h2.with-border, h2.with-border.text-left, .text-left
.h2.with-border,
.h2.with-border.text-left {
  text-align: left;
}

.text-left h2.with-border::before, h2.with-border.text-left::before, .text-left
.h2.with-border::before,
.h2.with-border.text-left::before {
  left: 0;
  margin-left: 0;
}

@media only screen and (min-width: 750px) {
  h2,
  .h2 {
    font-size: 30px;
  }
}

h3,
.h3 {
  font-size: 16px;
}

h3.with-border,
.h3.with-border {
  position: relative;
  margin-bottom: 0.96em;
  text-align: center;
}

h3.with-border::before,
.h3.with-border::before {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 70px;
  margin-left: -35px;
  border-top: 1px solid var(--color-primary);
  content: "";
}

.text-left h3.with-border, h3.with-border.text-left, .text-left
.h3.with-border,
.h3.with-border.text-left {
  text-align: left;
}

.text-left h3.with-border::before, h3.with-border.text-left::before, .text-left
.h3.with-border::before,
.h3.with-border.text-left::before {
  left: 0;
  margin-left: 0;
}

@media only screen and (min-width: 750px) {
  h3,
  .h3 {
    font-size: 20px;
  }
}

h4,
.h4,
h5,
.h5 {
  font-size: 14px;
}

@media only screen and (min-width: 750px) {
  h4,
  .h4,
  h5,
  .h5 {
    font-size: 16px;
  }
}

h5,
.h5,
h6,
.h6 {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h6,
.h6 {
  font-size: 12px;
}

p {
  margin: 0 0 1.333em;
}

a {
  color: #252525;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: var(--color-primary);
}

hr {
  border: 0;
  height: 1px;
  margin: 30px 0;
  background: #c5c5c5;
}

hr + h1,
hr + h2,
hr + h3 {
  margin-top: 0;
}

@media only screen and (min-width: 750px) {
  hr {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

/*================ VENDOR ================*/
/*================ Slick ================*/
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block;
}

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

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

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

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

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

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

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  z-index: 20;
  display: block;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
  outline: none;
}

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

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

.slick-prev::after,
.slick-next::after {
  position: absolute;
  top: 50%;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-bottom: 1px solid #252525;
  border-right: 1px solid #252525;
}

.slick-prev {
  left: 0;
}

.slick-prev::after {
  left: 50%;
  margin-left: -2px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.slick-next {
  right: 0;
}

.slick-next::after {
  right: 50%;
  margin-right: -2px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Dots */
.slick-dots {
  position: relative;
  z-index: 20;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.rte .slick-dots {
  margin: 10px 0 0;
  padding: 0;
}

.rte .slick-dots li {
  position: static;
  margin: 0;
}

.rte .slick-dots li::before {
  position: static;
  content: normal;
}

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

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

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

.slick-dots li.slick-active button {
  background: var(--color-primary);
}

/*/////////////////////////////////////////////////////////////////////////////*/
/* !Style Settings */
/*////////////////////////////////////////////////////////////////////////////*/
/* -- Wishlist button collection -- */
/* -- Wishlist button product -- */
/* -- Wishlist button wishlist page -- */
/* -- Clear wishlist button (on wishlist page) -- */
/* -- Wishlist link (in header) -- */
/* -- Wishlist page -- */
/* -- Link Sharing --*/
/* -- Upsell Widget --*/
/*/////////////////////////////////////////////////////////////////////////////*/
/* !Mixins */
/*////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////*/
/* !Buttons */
/*////////////////////////////////////////////////////////////////////////////*/
.wk-disabled {
  pointer-events: none;
  opacity: 0.8;
}

.wk-col-item {
  position: relative;
}

button.wk-button-collection {
  width: auto;
  height: auto;
  background: none;
  border: none;
  line-height: normal;
  cursor: pointer;
  color: #000;
  background: rgba(0, 0, 0, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-radius: 0;
  padding: 0;
  margin: 0;
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: auto;
  bottom: auto;
  line-height: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  min-width: 0;
}

button.wk-button-collection:focus {
  outline: 0;
}

button.wk-button-collection .wk-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 5px;
}

button.wk-button-collection .wk-icon svg {
  width: 100%;
  height: 100%;
}

button.wk-button-collection .wk-icon svg path {
  fill: var(--color-primary);
}

button.wk-button-collection .wk-label {
  display: none;
}

button.wk-button-collection .wk-icon-label {
  margin: 0 auto;
  text-transform: uppercase;
}

button.wk-button-collection .wk-icon {
  display: inline-block;
  padding: 0;
  margin: 0 auto !important;
}

button.wk-button-collection .wk-label {
  display: none;
}

@media only screen and (min-width: 750px) {
  button.wk-button-collection {
    width: 50px;
    height: 50px;
  }
}

button.wk-button-product {
  width: auto;
  height: auto;
  background: none;
  border: none;
  line-height: normal;
  cursor: pointer;
  color: var(--color-primary);
  background: rgba(0, 0, 0, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  /* Icon and Text */
  display: block;
  margin: 22px 0 0 0 !important;
  padding: 0;
  border: none;
  border-radius: 0;
  text-align: left;
  white-space: nowrap;
}

button.wk-button-product:focus {
  outline: 0;
}

button.wk-button-product .wk-icon {
  display: inline-block;
  width: 17px;
  height: 17px;
  padding: 0;
}

button.wk-button-product .wk-icon svg {
  width: 100%;
  height: 100%;
}

button.wk-button-product .wk-icon svg path {
  fill: var(--color-primary);
}

button.wk-button-product .wk-icon {
  display: inline-block;
  margin: 0 6px 0 0;
  padding: 0;
  position: relative;
  top: 5px;
}

button.wk-button-product .wk-label {
  margin: 0;
  display: inline;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 750px) {
  button.wk-button-product .wk-icon {
    width: 20px;
    height: 20px;
  }
}

button.wk-button-wishlist-page {
  width: auto;
  height: auto;
  background: none;
  border: none;
  line-height: normal;
  cursor: pointer;
  color: #000;
  background: rgba(0, 0, 0, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-radius: 0;
  padding: 0;
  margin: 0;
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: auto;
  bottom: auto;
  line-height: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  min-width: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

button.wk-button-wishlist-page:focus {
  outline: 0;
}

button.wk-button-wishlist-page .wk-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 5px;
}

button.wk-button-wishlist-page .wk-icon svg {
  width: 100%;
  height: 100%;
}

button.wk-button-wishlist-page .wk-icon svg path {
  fill: var(--color-primary);
}

button.wk-button-wishlist-page .wk-label {
  display: none;
}

button.wk-button-wishlist-page .wk-icon-label {
  margin: 0 auto;
  text-transform: uppercase;
}

button.wk-button-wishlist-page .wk-icon {
  display: inline-block;
  padding: 0;
  margin: 0 auto !important;
}

button.wk-button-wishlist-page.wk-remove-item {
  width: 32px;
  height: 32px;
}

button.wk-button-wishlist-page.wk-remove-item .wk-icon {
  width: 12px;
  height: 12px;
  color: #252525;
}

button.wk-button-wishlist-page .wk-label {
  display: none;
}

button.wk-button-wishlist-page:hover {
  opacity: 0.8;
}

@media only screen and (min-width: 750px) {
  button.wk-button-wishlist-page {
    width: 50px;
    height: 50px;
  }
}

button.wk-button-wishlist-clear {
  width: auto;
  height: auto;
  background: none;
  border: none;
  line-height: normal;
  cursor: pointer;
  color: #fff;
  background: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 8px 12px;
  text-align: center;
  margin: 5px auto;
  width: auto;
  min-width: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  text-shadow: none;
  text-transform: initial;
  border-radius: 0;
  display: none;
}

button.wk-button-wishlist-clear:focus {
  outline: 0;
}

button.wk-button-wishlist-clear:hover {
  background: #333;
  color: #fff;
}
/* hide wishlist ofr bullion products */
.product-grid-item.bullion button.wk-button-collection.wk-add-product {
  display: none !important;
}

/*/////////////////////////////////////////////////////////////////////////////*/
/* !Wishlist Link in header / top bar */
/*////////////////////////////////////////////////////////////////////////////*/
a.wk-link {
  display: inline-block;
  vertical-align: top;
}

a.wk-link .wk-icon {
  display: inline-block;
  width: 17px;
  height: 17px;
  padding: 0;
}

a.wk-link .wk-icon svg {
  width: 100%;
  height: 100%;
}

a.wk-link .wk-icon svg path {
  fill: var(--color-primary);
}

a.wk-link .wk-icon svg path {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

a.wk-link:hover .wk-icon svg path, a.wk-link:focus .wk-icon svg path {
  fill: var(--color-primary);
}

a.wk-link .wk-icon {
  display: inline-block;
  vertical-align: top;
  width: 17px;
  height: 17px;
  margin-top: -2px;
  margin-right: 7px;
  padding: 0;
}

@media only screen and (min-width: 990px) {
  a.wk-link .wk-icon svg path {
    fill: #252525;
  }
  a.wk-link:hover .wk-icon svg path, a.wk-link:focus .wk-icon svg path {
    fill: #666;
  }
  a.wk-link .wk-icon {
    margin-top: -1px;
  }
}

.wk-variant-image {
  max-width: 100%;
  max-height: 100%;
}

/*
.wk-content {
  position: relative;
  padding-top: 100%;
  margin-bottom: 1em;
}

.wk-variant-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
*/
/*/////////////////////////////////////////////////////////////////////////////*/
/* !Wishlist row (e.g. in cart) */
/*////////////////////////////////////////////////////////////////////////////*/
.wk-wishlist-row {
  position: relative;
  padding: 0 15px;
  margin-top: 2em;
}

.wk-wishlist-row .wk-item {
  margin: 0;
}

.wk-wishlist-row .swiper-button-next.swiper-button-disabled,
.wk-wishlist-row .swiper-button-prev.swiper-button-disabled {
  pointer-events: all;
}

/*/////////////////////////////////////////////////////////////////////////////*/
/* !Grid System */
/*////////////////////////////////////////////////////////////////////////////*/
.wk-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wk-span2 {
  width: 16.6666%;
}

.wk-span3 {
  width: 25%;
}

.wk-span4 {
  width: 33.3333%;
}

.wk-span6 {
  width: 50%;
}

.wk-span12 {
  width: 100%;
}

@media (max-width: 720px) {
  .wk-span2 {
    width: 33.3333%;
  }
  .wk-span3 {
    width: 50%;
  }
  .wk-span4 {
    width: 50%;
  }
  .wk-item-column {
    width: 50% !important;
  }
}

@media (max-width: 480px) {
  .wk-span2 {
    width: 100%;
  }
  .wk-span3 {
    width: 100%;
  }
  .wk-span4 {
    width: 100%;
  }
  .wk-span6 {
    width: 100%;
  }
  .wk-item-column {
    width: 100% !important;
  }
}

/*/////////////////////////////////////////////////////////////////////////////*/
/* !Wishlist Page */
/*////////////////////////////////////////////////////////////////////////////*/
h1#wk-page-title {
  display: block;
  text-align: center;
  margin: 0 0 25px 0;
  padding: 0;
  border: none;
}

.wk-wishlist-empty-note {
  text-align: center;
  margin-bottom: 35px;
}

p.wk-login-note {
  text-align: center;
  margin-bottom: 35px;
  background: rgba(0, 0, 0, 0.02);
  padding: 10px;
  margin-bottom: 30px;
  font-style: italic;
}

p.wk-login-note a {
  text-decoration: underline;
}

.wk-item {
  position: relative;
}

.wk-item .wk-product-options {
  margin-top: 16px;
  border-bottom: none;
}

.wk-item .wk-product-options label {
  display: block;
}

.wk-item .wk-product-options select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100% !important;
  border-radius: 0;
  margin-bottom: 10px;
}

.wk-item .wk-purchase-section {
  margin-top: 16px;
}

/*/////////////////////////////////////////////////////////////////////////////*/
/* !Share Buttons */
/*////////////////////////////////////////////////////////////////////////////*/
h3#wk-share-head {
  font-size: 1.1em;
  text-align: center;
  margin: 5px 0 7px 0;
  padding: 0;
  text-transform: uppercase;
  border: none;
}

ul#wk-share-list {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 750px) {
  ul#wk-share-list {
    width: auto;
  }
}

ul#wk-share-list li {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0 4px;
}

#wk-share-link-text {
  margin-top: 6px;
  margin-bottom: 20px;
  color: #333;
  display: none;
  font-size: .8em;
  font-style: italic;
}

@media only screen and (min-width: 750px) {
  #wk-share-link-text {
    margin-top: 10px;
    text-align: right;
  }
}

#wk-share-link-text .wk-text {
  display: inline-block;
  padding: 0;
  margin: 5px 10px 5px 0;
}

#wk-share-link-text .wk-clipboard {
  background: #252525;
  border: none;
  color: #fff;
  padding: 4px 7px;
  border-radius: 0px;
  min-height: auto;
  height: auto;
}

#wk-share-link-text .wk-clipboard:focus {
  outline: none;
}

#wk-share-link-text.wk-visible {
  display: block;
}

.wk-button-share {
  cursor: pointer;
}

.wk-button-share:hover {
  color: #fff;
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
  display: block;
}

.resp-sharing-button__link {
  font-size: 12px;
  text-decoration: none;
  color: #fff;
  margin: 0;
  min-height: 0;
  line-height: 1;
}

.resp-sharing-button__icon svg {
  width: 25px;
  height: 25px;
}

.resp-sharing-button span {
  display: none;
}

/* Non solid icons get a stroke */
.resp-sharing-button__icon {
  stroke: #fff;
  fill: none;
}

.resp-sharing-button__icon svg {
  display: block;
}

/* Solid icons get a fill */
.resp-sharing-button__icon--solid {
  fill: #fff;
  stroke: none;
}

#wk-share-whatsapp {
  display: none !important;
}

.wk-touch button.wk-button-collection.wk-add-product, .wk-touch button.wk-button-collection.wk-remove-product, .wk-touch button.wk-button-collection.wk-remove-item,
.wk-touch button.wk-button-product.wk-add-product,
.wk-touch button.wk-button-product.wk-remove-product,
.wk-touch button.wk-button-product.wk-remove-item,
.wk-touch button.wk-button-wishlist-page.wk-add-product,
.wk-touch button.wk-button-wishlist-page.wk-remove-product,
.wk-touch button.wk-button-wishlist-page.wk-remove-item {
  opacity: 1;
}

.wk-touch .wk-add-item-form {
  position: static;
  opacity: 1;
}

/*/////////////////////////////////////////////////////////////////////////////*/
/* !Upsell Widget */
/*////////////////////////////////////////////////////////////////////////////*/
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: -24px;
  background: none;
}

.swiper-button-prev svg,
.swiper-container-rtl .swiper-button-next svg {
  width: 48px;
  height: 48px;
  fill: #999;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: -24px;
  background: none;
}

.swiper-button-next svg,
.swiper-container-rtl .swiper-button-prev svg {
  width: 48px;
  height: 48px;
  fill: #999;
}

/*/////////////////////////////////////////////////////////////////////////////*/
/* !Responsive Styles */
/*////////////////////////////////////////////////////////////////////////////*/
@media (max-width: 1024px) {
  .wk-touch #wk-share-whatsapp {
    display: inline-block !important;
  }
}

/*================ LAYOUT ================*/
/*================ General layout styles ================*/
html,
body {
  /*overflow-x: hidden;*/
  background-color: #fff;
}

.popup-shown,
.popup-shown body {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.mobile-nav-shown,
.mobile-nav-shown body,
.mini-cart-shown,
.mini-cart-shown body {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

.popup-shown.no-touchevents,
.popup-shown.no-touchevents body {
  overflow-x: visible;
}

.popup-shown.no-touchevents {
  overflow: visible;
}

body {
  -webkit-transition: padding 0.5s ease-in-out;
  transition: padding 0.5s ease-in-out;
  padding-top: 80px;
}

@media only screen and (min-width: 990px) {
  body {
    padding-top: 90px;
  }
}

.main-content,
.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 10px;
  *zoom: 1;
  
}
.template-index .main-content {
  padding-bottom: 0px !important;
  
}
.template-index .klaviyo_home_page{
  margin-top: -10px;
}


.main-content::after,
.wrapper::after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (min-width: 750px) {
  .main-content,
  .wrapper {
    padding: 30px;
  }
}

.template-page .main-content .rte{
  max-width: 860px;
}
.template-article .main-content {
  max-width: 860px;
}

.template-page .main-content {
  padding-top: 34px;
}

.template-page .main-content h1.with-border {
  margin-bottom: 60px;
}

@media only screen and (min-width: 750px) {
  .template-page .main-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .template-page .main-content h1.with-border {
    margin-bottom: 75px;
  }
}
.template-page .main-content .rte{
  max-width: 860px;
  margin:0 auto;
}

.template-article .main-content,
.template-addresses .main-content {
  max-width: 860px;
}

.template-login .main-content,
.template-register .main-content,
.template-reset_password .main-content,
.template-activate_account .main-content,
.template-password .main-content {
  max-width: 550px;
}

.template-product .main-content,
.template-banner .main-content,
.template-contact .main-content,
.template-blog .main-content,
.template-about .main-content,
.template-storage-bullion .main-content,
.template-landing .main-content,
.template-why-buy-collectible-coins .main-content,
.template-how-to-sell-bullion .main-content,
.template-home-bullion .main-content,
.template-stockists .main-content {
  max-width: none;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.template-page .main-content {
  padding-bottom: 60px;
}

.template-page.template-home-bullion .main-content {
  padding-top: 0;
}

@media only screen and (min-width: 750px) {
  .template-page.template-home-bullion .main-content {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.template-index .main-content,
.template-coming-soon .main-content,
.template-page.template-home-bullion .main-content,
.page-bullion-investing .main-content {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.template-faq .main-content {
  padding: 0;
  max-width: none;
}

.template-faq .main-content > .wrapper {
  max-width: 860px;
  padding-bottom: 60px;
}

@media only screen and (min-width: 870px) {
  .template-faq .main-content > .wrapper {
    padding-bottom: 120px;
  }
}

.template-page.template-what-is-bullion .main-content {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  max-width: none;
}

.template-page.template-what-is-bullion .main-content > .wrapper {
  max-width: 860px;
  padding-bottom: 0;
}

@media only screen and (min-width: 870px) {
  .template-page.template-what-is-bullion .main-content > .wrapper {
    padding-bottom: 0;
  }
}

.template-rewards.template-page .main-content {
  max-width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.template-page.template-about .about-intro {
  padding-top: 58px;
}

.template-page.template-about-investing-bullion .main-content,
.template-page.template-how-to-buy-bullion .main-content {
  padding-left: 0;
  padding-top: 0;
  padding-right: 0;
  max-width: none;
}

.template-page.template-about-investing-bullion .main-content > .wrapper,
.template-page.template-how-to-buy-bullion .main-content > .wrapper {
  max-width: 860px;
  padding: 10px 10px 30px 10px;
}

@media only screen and (min-width: 870px) {
  .template-page.template-about-investing-bullion .main-content > .wrapper,
  .template-page.template-how-to-buy-bullion .main-content > .wrapper {
    padding: 60px 0 30px 0;
  }
}

.template-storage-bullion .main-content > .wrapper {
  max-width: 1440px;
  padding: 10px 10px 0 10px;
}

@media only screen and (min-width: 870px) {
  .template-storage-bullion .main-content > .wrapper {
    padding: 30px 30px 0 30px;
  }
}

.template-how-to-sell-bullion .main-content > .wrapper {
  max-width: 1440px;
  padding: 10px 10px 60px 10px;
}

@media only screen and (min-width: 870px) {
  .template-how-to-sell-bullion .main-content > .wrapper {
    padding: 30px 30px 120px 30px;
  }
}

@media only screen and (min-width: 870px) {
  .template-how-to-sell-bullion .main-content > .wrapper {
    padding-bottom: 0 !important;
  }
}

@media only screen and (min-width: 870px) {
  .bullion-newsletter {
    padding: 30px 30px 60px 30px;
  }
}

.main-content .bullion-newsletter {
  padding-bottom: 60px;
}

@media only screen and (min-width: 870px) {
  .main-content .bullion-newsletter {
    padding-bottom: 60px;
  }
}

.main-content .bullion-newsletter .wrapper {
  padding-top: 0;
  padding-bottom: 0;
  max-width: 860px;
}

.bullion-newsletter .newsletter-link {
  width: 100%;
}

.browser-warning {
  margin: 0;
  padding: 10px;
  background: #d02e2e;
  color: #fff;
  text-align: center;
}

.browser-warning a {
  color: #ecabab;
}

.browser-warning a:hover, .browser-warning a:focus {
  color: #e38181;
}

.accordion-toggle {
  position: relative;
  cursor: pointer;
}

.toggle-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 5px;
  margin-top: -2.5px;
  background: var(--svg-select-icon) no-repeat;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.active .toggle-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
}

.template-password .site-logo {
  margin-bottom: 20px;
}

.template-password .icon-logo-full-color {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

@media only screen and (min-width: 990px) {
  .template-password .icon-logo-full-color {
    width: 90px;
    height: 90px;
  }
}

.formatted-table,
.rte .formatted-table {
  width: 100%;
  border: 0;
  table-layout: auto;
}

.formatted-table th,
.formatted-table td,
.rte .formatted-table th,
.rte .formatted-table td {
  padding: 10px;
  border: 0;
  border-left: 1px solid #c7c8cf;
  text-align: left;
  vertical-align: top;
}

.formatted-table th:first-child,
.formatted-table td:first-child,
.rte .formatted-table th:first-child,
.rte .formatted-table td:first-child {
  padding-left: 10px;
  border: 0;
}

.formatted-table th:last-child,
.formatted-table td:last-child,
.rte .formatted-table th:last-child,
.rte .formatted-table td:last-child {
  padding-right: 10px;
}

.formatted-table th.align-center,
.formatted-table td.align-center,
.rte .formatted-table th.align-center,
.rte .formatted-table td.align-center {
  text-align: center;
}

.formatted-table th.align-right,
.formatted-table td.align-right,
.rte .formatted-table th.align-right,
.rte .formatted-table td.align-right {
  text-align: right;
}

.formatted-table th,
.rte .formatted-table th {
  padding-top: 0;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}

.formatted-table tr:nth-child(2n+1) td,
.rte .formatted-table tr:nth-child(2n+1) td {
  background: #f7f7f7;
}

.pagination {
  position: relative;
  margin-top: 40px;
  padding: 18px 16px 22px;
  border-top: 1px solid #e9e9e9;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

.pagination .prev,
.pagination .page,
.pagination .deco,
.pagination .next {
  display: inline-block;
  vertical-align: top;
}

.pagination a,
.pagination .current,
.pagination .deco {
  padding: 4px 5px;
}

.pagination a {
  display: block;
}

.pagination a:hover, .pagination a:focus {
  color: #666;
}

.pagination .current {
  margin-left: 4px;
  margin-right: 4px;
  padding-left: 1px;
  padding-right: 1px;
  border-bottom: 1px solid;
  color: var(--color-primary);
}

.pagination .prev,
.pagination .next {
  position: absolute;
  top: 50%;
  margin-top: -12px;
}

.pagination .prev a,
.pagination .next a {
  position: relative;
  width: 25px;
  height: 20px;
}

.pagination .prev a::after,
.pagination .next a::after {
  position: absolute;
  top: 50%;
  left: 11px;
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-bottom: 1px solid #252525;
  border-right: 1px solid #252525;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.pagination .prev a:hover::after, .pagination .prev a:focus::after,
.pagination .next a:hover::after,
.pagination .next a:focus::after {
  border-color: #666;
}

.pagination .prev {
  left: -10px;
}

.pagination .next {
  right: -10px;
}

.pagination .next a::after {
  left: 8px;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

@media only screen and (min-width: 480px) {
  .pagination {
    padding-left: 0;
    padding-right: 0;
  }
  .pagination .prev,
  .pagination .next {
    position: static;
    margin-top: 0;
  }
  .pagination .prev {
    margin-right: 10px;
  }
  .pagination .next {
    margin-left: 10px;
  }
}

@media only screen and (min-width: 750px) {
  .pagination {
    margin-top: 60px;
    padding-top: 26px;
    padding-bottom: 60px;
  }
}

.breadcrumbs {
  margin-bottom: 30px;
  font-size: 12px;
}

.breadcrumbs a:hover, .breadcrumbs a:focus {
  color: #666;
}

.breadcrumbs .divider {
  margin-left: 3px;
  margin-right: 3px;
}

.overlay {
  position: fixed;
  visibility: hidden;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #252525;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s, visibility linear 0.3s, z-index linear 0.3s;
  transition: opacity 0.3s ease 0s, visibility linear 0.3s, z-index linear 0.3s;
  cursor: pointer;
}

.overlay.shown {
  z-index: 200;
  visibility: visible;
  opacity: 0.5;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: 0.3s, 0s, 0s;
          transition-duration: 0.3s, 0s, 0s;
}

.popup-shown .overlay.shown,
.mini-cart-shown .overlay.shown {
  z-index: 250;
}

.popup {
  position: fixed;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 80%;
  width: calc(100% - 60px);
  max-width: 600px;
  max-height: 100%;
  background: #fff;
  opacity: 0;
  text-align: left;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: translate(-50%, -55%);
  transform: translate(-50%, -55%);
  -webkit-transition: opacity 0.5s ease 0s, visibility linear 0.5s, z-index linear 0.5s, -webkit-transform 0.5s ease 0s;
  transition: opacity 0.5s ease 0s, visibility linear 0.5s, z-index linear 0.5s, -webkit-transform 0.5s ease 0s;
  transition: opacity 0.5s ease 0s, transform 0.5s ease 0s, visibility linear 0.5s, z-index linear 0.5s;
  transition: opacity 0.5s ease 0s, transform 0.5s ease 0s, visibility linear 0.5s, z-index linear 0.5s, -webkit-transform 0.5s ease 0s;
}

.popup .inner {
  padding: 10px;
}

@media only screen and (min-width: 480px) {
  .popup .inner {
    padding: 30px;
  }
}

@media only screen and (min-width: 750px) {
  .popup .inner {
    padding: 60px;
  }
}

.popup.shown {
  z-index: 500;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: 0.5s, 0.5s, 0s, 0s;
          transition-duration: 0.5s, 0.5s, 0s, 0s;
}

.popup h2 {
  margin-top: 0;
}

.popup .close,
.notification .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  color: #252525;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.popup .close .icon,
.notification .close .icon {
  display: block;
  width: 15px;
  height: 15px;
}

.popup .close:hover, .popup .close:focus,
.notification .close:hover,
.notification .close:focus {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media only screen and (min-width: 750px) {
  .popup .close,
  .notification .close {
    padding: 20px;
  }
}

.mq {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
}

@media only screen and (min-width: 480px) {
  .mq {
    width: 2px;
  }
}

@media only screen and (min-width: 750px) {
  .mq {
    width: 3px;
  }
}

@media only screen and (min-width: 870px) {
  .mq {
    width: 4px;
  }
}

@media only screen and (min-width: 990px) {
  .mq {
    width: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .mq {
    width: 6px;
  }
}

/*================ MODULES ================*/
/*================ Site Header ================*/
.header-top-bar {
  background: #f7f7f7;
  height: 30px;
}

@media only screen and (min-width: 990px) {
  .header-top-bar {
    height: 40px;
  }
}

.announcement-bar,
.site-toggle,
.live-prices,
.top-nav-right,
.opening-hours {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.18182;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.announcement-bar {
  color: var(--color-primary);
  white-space: nowrap;
}

.announcement-bar p,
.announcement-bar a {
  padding: 9px 15px 8px;
}

@media only screen and (min-width: 990px) {
  .announcement-bar {
    text-align: center;
  }
  .announcement-bar p,
  .announcement-bar a {
    padding: 14px 20px 13px;
  }
}

.announcement-bar p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement-bar a {
  display: block;
  color: var(--color-primary);
}

.announcement-bar a p {
  padding: 0;
}

.site-toggle,
.top-nav-right ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-toggle li,
.top-nav-right ul li {
  display: inline-block;
  vertical-align: middle;
}

.site-toggle {
  display: none;
  position: absolute;
  top: 0;
  left: 90px;
  color: var(--color-text-light);
}

.site-toggle a {
  display: block;
  padding: 14px 15px 13px;
  color: var(--color-text-light);
}

.site-toggle a.selected {
  font-weight: 500;
  color: #252525;
}

@media only screen and (min-width: 990px) {
  .site-toggle {
    display: block;
  }
  .site-toggle a:hover, .site-toggle a:focus {
    color: #999;
  }
  .site-toggle a.selected {
    color: #252525;
  }
}

.live-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 400%;
  font-size: 10px;
  line-height: 1.3;
  color: #fff;
  white-space: nowrap;
}

.live-prices.slick-initialized {
  display: block;
  width: auto;
}

.live-prices .live-price {
  margin-left: 2px;
}

.live-prices strong {
  margin-right: 5px;
}

.live-prices .sell,
.live-prices .buy {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  padding: 9px 10px 8px;
}

@media only screen and (min-width: 480px) {
  .live-prices {
    width: 200%;
    font-size: 11px;
    line-height: 1.18182;
  }
  .live-prices .sell,
  .live-prices .buy {
    width: auto;
    padding: 0;
  }
  .live-prices .sell {
    margin-right: 10px;
  }
  .live-prices .buy {
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
  .live-prices .buy strong {
    display: none;
  }
}

@media only screen and (min-width: 750px) {
  .live-prices {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media only screen and (min-width: 750px) and (max-width: 869px) {
  .live-prices {
    font-size: 10px;
    line-height: 1.3;
  }
}

@media only screen and (min-width: 990px) and (max-width: 1199px) {
  .live-prices {
    font-size: 10px;
    line-height: 1.3;
  }
}

@media only screen and (min-width: 1200px) {
  .live-prices strong {
    margin-right: 10px;
  }
}

@media only screen and (min-width: 1440px) {
  .live-prices {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.gold-price,
.silver-price {
  overflow: hidden;
  width: 50%;
}

.slick-initialized .gold-price, .slick-initialized
.silver-price {
  width: auto;
}

@media only screen and (min-width: 480px) {
  .gold-price,
  .silver-price {
    padding: 9px 10px 8px;
    text-align: center;
  }
}

@media only screen and (min-width: 750px) {
  .gold-price,
  .silver-price {
    position: static !important;
    z-index: auto !important;
    opacity: 1 !important;
    width: 50%;
  }
}

@media only screen and (min-width: 990px) {
  .gold-price,
  .silver-price {
    width: auto;
    padding-top: 14px;
    padding-bottom: 13px;
  }
}

@media only screen and (min-width: 1200px) {
  .gold-price,
  .silver-price {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.gold-price {
  background-color: var(--color-primary);
}

.silver-price {
  background-color: #c7c8cf;
}

.currency-converter {
  position: relative;
  margin-right: 16px;
}

.currency-converter select {
  display: none;
}

.currency-converter .current-currency {
  position: relative;
  cursor: pointer;
  line-height: 1;
}

.currency-converter .current-currency .text {
  margin-right: 9px;
}

.currency-converter .text,
.currency-converter .caret,
.currency-converter .flag {
  display: inline-block;
  vertical-align: middle;
}

.currency-converter .flag {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  border-radius: 50%;
  color: #fff;
}

.currency-converter .icon {
  display: block;
}

.currency-converter .caret {
  width: 7px;
  height: 5px;
  background: var(--svg-select-icon-primary) center center no-repeat;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.currency-converter .currency-list {
  position: absolute;
  display: none;
  left: 0;
  top: 120%;
  z-index: 240;
  margin: 0;
  padding: 16px 0;
  list-style: none;
  background: #f7f7f7;
}

@media only screen and (min-width: 1440px) {
  .currency-converter .currency-list {
    left: auto;
    right: 0;
    top: 100%;
  }
}

.currency-converter .currency-list li {
  margin: 0;
  padding: 4px 46px 4px 20px;
  white-space: nowrap;
  cursor: pointer;
}

.currency-converter.active .currency-list {
  display: block;
}

.currency-converter.active .caret {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media only screen and (min-width: 990px) {
  .currency-converter {
    position: absolute;
    top: -40px;
    right: 0;
    margin: 0;
  }
  .currency-converter .current-currency {
    padding: 10px 30px;
  }
  .currency-converter .flag {
    color: #252525;
  }
  .currency-converter .caret {
    background-image: var(--svg-select-icon);
  }
}

.top-nav-right {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  color: var(--color-primary);
}

.top-nav-right .icon {
  margin-right: 3px;
  vertical-align: top;
}

.top-nav-right a {
  display: block;
  padding: 14px 15px 13px;
  color: var(--color-primary);
}

.top-nav-right a.phone-link {
  padding-top: 14px;
  padding-bottom: 10px;
}

.top-nav-right a.phone-link .icon {
  width: 17px;
  height: 17px;
  margin-top: -1px;
}

.top-nav-right a.newsletter-link {
  padding-right: 30px;
}

.top-nav-right a.newsletter-link .icon {
  width: 17px;
  height: 13px;
}

@media only screen and (min-width: 1440px) {
  .top-nav-right {
    display: block;
  }
}

.full-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 230;
  width: 100%;
  max-width: 100vw;
}

@media only screen and (max-width: 989px) {
  .full-header {
    -webkit-transition: z-index 0s linear 0.3s;
    transition: z-index 0s linear 0.3s;
  }
  .mobile-nav-shown .full-header {
    position: absolute;
    z-index: auto;
    -webkit-transition: none;
    transition: none;
  }
}

.main-header {
  background: #fff;
}

.main-header .slide-out-search {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
  -webkit-transition: opacity 0.5s ease 0s, visibility linear 0.5s, z-index linear 0.5s, -webkit-transform 0.5s ease 0s;
  transition: opacity 0.5s ease 0s, visibility linear 0.5s, z-index linear 0.5s, -webkit-transform 0.5s ease 0s;
  transition: opacity 0.5s ease 0s, transform 0.5s ease 0s, visibility linear 0.5s, z-index linear 0.5s;
  transition: opacity 0.5s ease 0s, transform 0.5s ease 0s, visibility linear 0.5s, z-index linear 0.5s, -webkit-transform 0.5s ease 0s;
}

@media only screen and (max-width: 750px) {
  .main-header .slide-out-search {
    opacity: 0 !important;
  }
}
.main-header .slide-out-search input {
  height: 100%;
}

.main-header .slide-out-search .btn, .main-header .slide-out-search #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .main-header .slide-out-search .bc-sf-filter-load-more-button {
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.main-header .slide-out-search.shown {
  visibility: visible;
  z-index: 240;
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: 0.5s, 0.5s, 0s, 0s;
          transition-duration: 0.5s, 0.5s, 0s, 0s;
}

.main-header .slide-out-search .search-form {
  height: 100%;
}

@media only screen and (min-width: 990px) {
  .main-header {
    position: relative;
  }
  .main-header .slide-out-search input {
    padding-left: 30px;
    padding-right: 90px;
    font-size: 18px;
  }
  .main-header .slide-out-search .btn, .main-header .slide-out-search #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .main-header .slide-out-search .bc-sf-filter-load-more-button {
    width: 90px;
  }
  .main-header .slide-out-search .icon-search {
    width: 29px;
    height: 30px;
  }
}

.main-header .site-logo {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  margin: 0;
}

.main-header .site-logo a {
  display: block;
  color: #000;
}

.main-header .site-logo .icon-logo-full-color {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0;
}

@media only screen and (min-width: 990px) {
  .main-header .site-logo .icon-logo-full-color {
    width: 90px;
    height: 90px;
  }
}

.main-header-bar {
  position: relative;
  z-index: 220;
  padding-left: 80px;
}

@media only screen and (max-width: 989px) {
  .mobile-nav-shown .main-header-bar {
    z-index: auto;
  }
}

@media only screen and (min-width: 990px) {
  .main-header-bar {
    padding-left: 0;
  }
}

a.open-nav,
a.open-search,
a.close-nav,
a.close-mini-cart {
  display: block;
}

a.open-nav:hover, a.open-nav:focus,
a.open-search:hover,
a.open-search:focus,
a.close-nav:hover,
a.close-nav:focus,
a.close-mini-cart:hover,
a.close-mini-cart:focus {
  color: #252525;
}

a.open-nav .icon,
a.open-search .icon,
a.close-nav .icon,
a.close-mini-cart .icon {
  display: block;
}

@media only screen and (min-width: 990px) {
  a.open-nav,
  a.open-search,
  a.close-nav {
    display: none;
  }
}

a.open-nav {
  float: left;
  padding: 17px 8px 16px 15px;
}

a.open-nav .icon {
  width: 20px;
  height: 17px;
}

a.open-search {
  float: left;
  padding: 15px 15px 14px 7px;
}

a.close-nav,
a.close-mini-cart {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 240;
  padding: 15px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #fff;
}

.template-bullion a.close-nav, .template-bullion
a.close-mini-cart {
  color: #252525;
}

a.close-nav:hover, a.close-nav:focus,
a.close-mini-cart:hover,
a.close-mini-cart:focus {
  color: #fff;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

a.close-nav .icon,
a.close-mini-cart .icon {
  width: 15px;
  height: 15px;
}

@media only screen and (min-width: 750px) {
  a.close-mini-cart {
    padding: 30px;
  }
}

.site-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.14286;
}

.site-nav ul {
  padding: 0;
}

.site-nav li {
  display: inline-block;
  vertical-align: middle;
}

.site-nav a {
  display: block;
  color: #252525;
}

@media only screen and (min-width: 990px) {
  .site-nav a:hover, .site-nav a:focus {
    color: #666;
  }
}

.main-nav li {
  display: block;
}

@media only screen and (min-width: 990px) {
  .main-nav {
    clear: both;
    text-align: center;
  }
  .main-nav li {
    display: inline-block;
    vertical-align: middle;
  }
}

@media only screen and (max-width: 989px) {
  .main-nav .nav-wrapper {
    margin-top: -28px;
    padding: 3px 5px 28px;
  }
  .main-nav .nav-wrapper > ul {
    margin-top: 28px;
  }
  .main-nav .nav-wrapper.has-2-columns > ul {
    display: inline-block;
    vertical-align: top;
    width: 50%;
  }
}

@media only screen and (min-width: 990px) {
  .main-nav .nav-wrapper {
    max-width: 1060px;
    margin: 0 auto;
    padding: 54px 10px 60px;
    text-align: center;
  }
  .main-nav .nav-wrapper > ul {
    display: inline-block;
    vertical-align: top;
    width: 23.077%;
    text-align: left;
  }
}

.main-nav .site-nav a {
  padding: 12px 15px;
}




@media only screen and (max-width: 1200px) {
  .main-nav {
    padding-left: 90px;
  }

  .site-nav {
    display: flex;
  }

}

@media only screen and (min-width: 990px) {
  .main-nav .site-nav a {
    padding: 17px;
  }
    .template-bullion .main-nav {
    padding-left: 290px;
    padding-right: 290px;
  }
}

@media only screen and (max-width: 989px) {
  .main-nav .site-nav {
    font-family: "Prata", serif;
    font-size: 16px;
    line-height: 1;
  }
  .mobile-nav .site-nav {
    display: block;
  }
  .mobile-nav .main-nav {
    padding-left: 0;
  }
}

.main-nav .site-nav__submenu {
  font-family: proxima-nova, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.main-nav .site-nav__submenu a {
  padding: 4px 10px;
  color: var(--color-primary);
}

.template-bullion .main-nav .site-nav__submenu a {
  color: var(--color-primary);
}

@media only screen and (min-width: 990px) {
  .main-nav .site-nav__submenu a {
    padding: 7px 20px;
  }
}

.main-nav .site-nav--has-submenu > a {
  position: relative;
}

.main-nav .site-nav--has-subsubmenu + li {
  margin-top: 28px;
}

@media only screen and (min-width: 990px) {
  .main-nav .site-nav--has-subsubmenu + li {
    margin-top: 33px;
  }
}

.main-nav .site-nav--has-subsubmenu > a {
  padding-bottom: 7px;
}

.main-nav .site-nav__subsubmenu {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
}

@media only screen and (min-width: 990px) {
  .main-nav .site-nav__subsubmenu {
    margin-top: 5px;
  }
}

.main-nav .site-nav__subsubmenu a {
  color: #fff;
}

@media only screen and (min-width: 990px) {
  .main-nav .site-nav__subsubmenu a {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .main-nav .site-nav__subsubmenu a:hover, .main-nav .site-nav__subsubmenu a:focus {
    color: #c5c5c5;
  }
}

.template-bullion .main-nav .site-nav__subsubmenu {
  color: #252525;
}

.template-bullion .main-nav .site-nav__subsubmenu a {
  color: #252525;
}

.template-bullion .main-nav .site-nav__subsubmenu a:hover, .template-bullion .main-nav .site-nav__subsubmenu a:focus {
  color: #666;
}

.main-nav .newsletter-cta {
  margin: 30px 0 -6px 0;
  padding: 0 10px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
}

.main-nav .newsletter-cta .newsletter-link.btn {
  max-width: 300px;
  color: white !important;
  padding: 15px 40px !important;
}

.template-bullion .main-nav .newsletter-cta {
  border: 0;
  padding: 0 10px;
  color: #252525;
  text-align: left;
}

.main-nav .newsletter-cta .border {
  padding: 20px 30px 6px;
  border: 1px solid var(--color-primary);
}

.main-nav .newsletter-cta h3 {
  margin-bottom: 0.375em;
  padding: 0 30px;
  font-size: 16px;
  color: var(--color-primary);
}

.template-bullion .main-nav .newsletter-cta h6 {
  margin-bottom: 1em;
  color: var(--color-primary);
}

.main-nav .newsletter-cta .form-success {
  margin-bottom: 0;
}

.main-nav .newsletter-cta .description {
  margin-bottom: 1.16667em;
}

.main-nav .newsletter-cta input::-webkit-input-placeholder {
  font-size: 12px;
  line-height: 1.53333;
  opacity: 0.6;
  color: var(--color-primary);
}

.main-nav .newsletter-cta input::-moz-placeholder {
  font-size: 12px;
  line-height: 1.53333;
  opacity: 0.6;
  color: var(--color-primary);
}

.main-nav .newsletter-cta input:-ms-input-placeholder {
  font-size: 12px;
  line-height: 1.53333;
  opacity: 0.6;
  color: var(--color-primary);
}

.main-nav .newsletter-cta input:-moz-placeholder {
  font-size: 12px;
  line-height: 1.53333;
  opacity: 0.6;
  color: var(--color-primary);
}

.template-bullion .main-nav .newsletter-cta input {
  padding-top: 7px;
  padding-bottom: 7px;
}

.main-nav .newsletter-cta .btn, .main-nav .newsletter-cta #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .main-nav .newsletter-cta .bc-sf-filter-load-more-button {
  display: inline-block;
  padding: 13px 39px;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.main-nav .newsletter-cta .btn:hover, .main-nav .newsletter-cta #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .main-nav .newsletter-cta .bc-sf-filter-load-more-button:hover, .main-nav .newsletter-cta .btn:focus, .main-nav .newsletter-cta #bc-sf-filter-load-more .bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .main-nav .newsletter-cta .bc-sf-filter-load-more-button:focus {
  background: var(--color-primary);
  color: #fff;
}

.template-bullion .main-nav .newsletter-cta .btn, .template-bullion .main-nav .newsletter-cta #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-bullion .main-nav .newsletter-cta .bc-sf-filter-load-more-button {
  padding: 7px 31px;
  background: var(--color-primary);
}

.template-bullion .main-nav .newsletter-cta .btn:hover, .template-bullion .main-nav .newsletter-cta #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .template-bullion .main-nav .newsletter-cta .bc-sf-filter-load-more-button:hover, .template-bullion .main-nav .newsletter-cta .btn:focus, .template-bullion .main-nav .newsletter-cta #bc-sf-filter-load-more .bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .template-bullion .main-nav .newsletter-cta .bc-sf-filter-load-more-button:focus {
  background: #252525;
}

@media only screen and (min-width: 990px) {
  .main-nav .newsletter-cta {
    display: inline-block;
    vertical-align: top;
    width: 30.769%;
    margin: 6px 0 0;
    padding: 0 20px;
  }
  .main-nav .newsletter-cta .border {
    padding: 38px 30px 16px;
  }
  .main-nav .newsletter-cta h3 {
    padding: 0;
    font-size: 20px;
  }
  .main-nav .newsletter-cta .description {
    margin-bottom: 1.66667em;
  }
  .main-nav .newsletter-cta .btn, .main-nav .newsletter-cta #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .main-nav .newsletter-cta .bc-sf-filter-load-more-button {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .template-bullion .main-nav .newsletter-cta {
    margin-top: 58px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 1.5;
  }
  .template-bullion .main-nav .newsletter-cta .description {
    margin-bottom: 1.42857em;
  }
  .template-bullion .main-nav .newsletter-cta input, .template-bullion .main-nav .newsletter-cta .btn, .template-bullion .main-nav .newsletter-cta #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-bullion .main-nav .newsletter-cta .bc-sf-filter-load-more-button {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .template-bullion .main-nav .newsletter-cta input::-webkit-input-placeholder {
    font-size: 14px;
    line-height: 1.15;
  }
  .template-bullion .main-nav .newsletter-cta input::-moz-placeholder {
    font-size: 14px;
    line-height: 1.15;
  }
  .template-bullion .main-nav .newsletter-cta input:-ms-input-placeholder {
    font-size: 14px;
    line-height: 1.15;
  }
  .template-bullion .main-nav .newsletter-cta input:-moz-placeholder {
    font-size: 14px;
    line-height: 1.15;
  }
  .template-bullion .main-nav .newsletter-cta .btn, .template-bullion .main-nav .newsletter-cta #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-bullion .main-nav .newsletter-cta .bc-sf-filter-load-more-button {
    color: #fff;
  }
}

@media only screen and (min-width: 1200px) {
  .main-nav .newsletter-cta .border {
    padding-left: 45px;
    padding-right: 45px;
  }
}

@media only screen and (min-width: 990px) {
  .main-nav .help-block {
    display: inline-block;
    vertical-align: top;
    width: 46.154%;
    margin-left: 6.731%;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
  }
  .main-nav .help-block .action-links,
  .main-nav .help-block .contact-details,
  .main-nav .help-block .current-time,
  .main-nav .help-block .public-holidays {
    margin-left: 0;
    margin-right: 0;
  }
  .main-nav .help-block .action-links ul {
    margin-left: -15px;
    margin-right: -15px;
  }
  .main-nav .help-block .action-links a {
    padding: 10px 15px 24px;
  }
  .main-nav .help-block .contact-details {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .main-nav .help-block .current-time {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .main-nav .help-block .current-time .icon {
    top: 20px;
  }
  .main-nav .help-block a {
    color: #fff;
  }
  .main-nav .help-block a:hover, .main-nav .help-block a:focus {
    color: #c5c5c5;
  }
  .template-bullion .main-nav .help-block {
    margin-left: 0;
    color: #252525;
  }
  .template-bullion .main-nav .help-block a {
    color: #252525;
  }
  .template-bullion .main-nav .help-block a:hover, .template-bullion .main-nav .help-block a:focus {
    color: #666;
  }
}

@media only screen and (min-width: 1200px) {
  .main-nav .help-block .action-links ul {
    margin-left: -22px;
    margin-right: -22px;
  }
  .main-nav .help-block .action-links a {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media only screen and (min-width: 990px) {
  .template-bullion .main-nav .main-menu-services .nav-wrapper {
    max-width: 980px;
    *zoom: 1;
  }
  .template-bullion .main-nav .main-menu-services .nav-wrapper::after {
    content: "";
    display: table;
    clear: both;
  }
  .template-bullion .main-nav .main-menu-services .nav-wrapper > ul {
    float: left;
    width: 25%;
  }
  .template-bullion .main-nav .main-menu-services .nav-wrapper .help-block {
    float: right;
    width: 50%;
  }
  .template-bullion .main-nav .main-menu-services .nav-wrapper .newsletter-cta {
    float: left;
    width: 50%;
  }
}

.help-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.help-block a {
  display: block;
}

.help-block .action-links,
.help-block .contact-details,
.help-block .current-time,
.help-block .public-holidays {
  margin: 0 10px;
  border-bottom: 1px solid #3b3b3b;
}

.template-bullion .help-block .action-links, .template-bullion
.help-block .contact-details, .template-bullion
.help-block .current-time, .template-bullion
.help-block .public-holidays {
  border-bottom-color: #e9e9e9;
}

.help-block .contact-details .contact-us-image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.help-block .action-links {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.help-block .action-links ul {
  margin-left: -10px;
  margin-right: -10px;
}

.help-block .action-links li {
  display: inline-block;
}

.help-block .action-links a {
  padding: 30px 10px 20px;
}

.help-block .action-links .icon {
  margin-right: 6px;
  color: var(--color-primary);
}

.help-block .action-links .icon-phone {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.help-block .action-links .icon-email {
  width: 16px;
  height: 13px;
}

.help-block .action-links-details {
  padding-top: 20px;
  padding-bottom: 5px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  word-break: break-all;
}

.template-contact-bullion .help-block .action-links-details {
  padding-top: 0;
}

.help-block .action-links-details .grid {
  margin-left: -15px;
}

.help-block .action-links-details .grid__item {
  padding-left: 15px;
}

.help-block .action-links-details li {
  width: 100%;
}

.help-block .action-links-details a {
  padding-top: 0;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.help-block .action-links-details .icon,
.help-block .action-links-details .icon-phone,
.help-block .action-links-details .icon-fax {
  min-width: 17px;
  width: 17px;
  height: 17px;
}

.help-block .contact-details {
  padding: 20px 0;
}

.help-block .contact-details .office-hours {
  max-width: 180px;
}

.help-block .contact-details p {
  margin: 0;
}

.help-block .contact-details .grid {
  margin-left: -15px;
}

.help-block .contact-details .grid__item {
  padding-left: 15px;
}

.help-block .current-time {
  position: relative;
  padding: 19px 0 19px 24px;
  font-size: 12px;
}

.help-block .current-time .icon {
  position: absolute;
  top: 19px;
  left: 0;
  color: var(--color-primary);
}

.help-block .public-holidays {
  padding: 20px 0;
  border-bottom: 0;
  font-size: 12px;
}

@media only screen and (min-width: 375px) {
  .help-block .action-links ul {
    margin-left: -15px;
    margin-right: -15px;
  }
  .help-block .action-links a {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 750px) {
  .help-block .action-links,
  .help-block .contact-details,
  .help-block .current-time,
  .help-block .public-holidays {
    margin-left: 30px;
    margin-right: 30px;
  }
  .help-block .action-links {
    font-size: 12px;
  }
  .help-block .action-links ul {
    margin-left: -22px;
    margin-right: -22px;
  }
  .help-block .action-links a {
    padding: 30px 22px;
  }
  .help-block .action-links .icon {
    margin-right: 10px;
  }
  .help-block .action-links .icon-help,
  .help-block .action-links .icon-phone {
    width: 30px;
    height: 30px;
  }
  .help-block .action-links .icon-email {
    width: 30px;
    height: 23px;
  }
  .help-block .action-links-details {
    padding-bottom: 22px;
    font-size: 14px;
  }
  .help-block .action-links-details .grid {
    margin-left: 0;
  }
  .help-block .action-links-details .grid__item {
    padding-left: 0;
  }
  .help-block .action-links-details .icon,
  .help-block .action-links-details .icon-phone,
  .help-block .action-links-details .icon-fax {
    width: 17px;
    height: 17px;
  }
  .help-block .action-links-details .icon-email {
    width: 17px;
    height: 13px;
    margin-top: 2px;
  }
  .help-block .action-links-details a {
    padding-top: 0;
    padding-bottom: 10px;
  }
  .help-block .contact-details {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .help-block .contact-details .office-hours {
    max-width: 200px;
  }
  .help-block .contact-details .grid {
    margin-left: 0;
  }
  .help-block .contact-details .grid__item {
    padding-left: 0;
  }
  .help-block .current-time {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .help-block .current-time .icon {
    top: 24px;
  }
  .help-block .public-holidays {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

@media only screen and (min-width: 990px) {
  .help-block .current-time {
    border-bottom: 0;
  }
  .help-block .public-holidays {
    border-top: 1px solid #3b3b3b;
  }
  .help-block .action-links a:hover .icon, .help-block .action-links a:focus .icon {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.3, -0.9, 0.6, 1.9);
    transition: -webkit-transform 0.3s cubic-bezier(0.3, -0.9, 0.6, 1.9);
    transition: transform 0.3s cubic-bezier(0.3, -0.9, 0.6, 1.9);
    transition: transform 0.3s cubic-bezier(0.3, -0.9, 0.6, 1.9), -webkit-transform 0.3s cubic-bezier(0.3, -0.9, 0.6, 1.9);
  }
}

.icon-select {
  width: 7px;
  height: 5px;
  margin-top: -2px;
  margin-left: 11px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media only screen and (min-width: 990px) {
  .icon-select {
    margin-left: 6px;
  }
}

.toggle-nav-mobile.active .icon-select {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media only screen and (max-width: 989px) {
  .toggle-nav-mobile .site-nav__submenu {
    display: none;
  }
}

@media only screen and (min-width: 990px) {
  .site-nav__submenu {
    position: absolute;
    visibility: hidden;
    display: block !important;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    z-index: -1;
    top: 100%;
    left: 0;
    width: 100%;
    background: #252525;
    color: #fff;
    text-align: left;
    -webkit-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0s, z-index 0s linear 0.3s;
    transition: all 0.3s ease-in-out 0s, visibility 0s linear 0s, z-index 0s linear 0.3s;
  }
  .template-bullion .site-nav__submenu {
    background: #f7f7f7;
    color: #252525;
  }
  .site-nav__submenu li {
    display: block;
  }
  .site-nav--has-submenu.active > a {
    position: relative;
    color: #252525;
  }
  .site-nav--has-submenu.active > a:hover, .site-nav--has-submenu.active > a:focus {
    color: #252525;
  }
  .site-nav--has-submenu.active .site-nav__submenu {
    visibility: visible;
    opacity: 1;
    z-index: 210;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.opening-hours {
  margin: 32px 15px 34px;
}

.opening-hours .status {
  margin-left: 7px;
}

.opening-hours .status-open,
.opening-hours .status-closed {
  display: none;
}

.opening-hours.open .status {
  color: #84d653;
}

.opening-hours.open .status-open {
  display: inline;
}

.opening-hours.closed .status {
  color: #d02e2e;
}

.opening-hours.closed .status-closed {
  display: inline;
}

@media only screen and (min-width: 990px) {
  .opening-hours {
    position: absolute;
    z-index: 220;
    top: 40px;
    left: 90px;
    margin: 0;
    padding: 19px 15px 18px;
  }
}

@media only screen and (max-width: 989px) {
  .mobile-nav {
    position: absolute;
    top: 0;
    left: -93.333%;
    z-index: 255;
    width: 93.333%;
    height: 100vh;
    background: #252525;
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition: -webkit-transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .mobile-nav-shown .mobile-nav {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  .no-csstransforms3d .mobile-nav {
    -webkit-transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .no-csstransforms3d.mobile-nav-shown .mobile-nav {
    left: 0%;
    -webkit-transform: none;
    transform: none;
  }
  .mobile-nav .inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 100vh;
  }
  .mobile-nav a {
    color: #fff;
  }
  .mobile-nav .site-toggle-header {
    margin-top: 30px;
    font-family: proxima-nova, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
  }
  .mobile-nav .site-toggle-header a {
    color: var(--color-primary);
  }
  .mobile-nav .help-block {
    margin-top: auto;
    padding-top: 150px;
  }
  .mobile-nav .help-block .action-links,
  .mobile-nav .help-block .contact-details,
  .mobile-nav .help-block .current-time {
    margin-left: 15px;
    margin-right: 15px;
  }
  .mobile-nav .help-block .action-links {
    border-top: 1px solid #3b3b3b;
    font-size: 10px;
  }
  .template-bullion .mobile-nav .help-block .action-links {
    border-top-color: #e9e9e9;
  }
  .mobile-nav .help-block .action-links ul {
    margin-left: -7px;
    margin-right: -7px;
  }
  .mobile-nav .help-block .action-links a {
    padding-top: 20px;
    padding-left: 7px;
    padding-right: 7px;
  }
  .mobile-nav .help-block .current-time {
    padding-bottom: 95px;
    border-bottom: 0;
  }
  .template-bullion .mobile-nav {
    background: #f7f7f7;
    color: #252525;
  }
  .template-bullion .mobile-nav a {
    color: #252525;
  }
  .template-bullion .mobile-nav .site-toggle-header a {
    color: var(--color-primary);
  }
}

@media only screen and (min-width: 375px) and (max-width: 989px) {
  .mobile-nav {
    left: -350px;
    width: 350px;
  }
  .mobile-nav .help-block .action-links {
    font-size: 11px;
  }
  .mobile-nav .help-block .action-links ul {
    margin-left: -15px;
    margin-right: -15px;
  }
  .mobile-nav .help-block .action-links a {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 750px) and (max-width: 989px) {
  .mobile-nav {
    font-size: 12px;
    line-height: 1.3;
  }
  .mobile-nav .help-block .action-links a {
    padding: 20px 15px;
  }
  .mobile-nav .help-block .action-links .icon {
    margin-right: 6px;
  }
  .mobile-nav .help-block .action-links .icon-help,
  .mobile-nav .help-block .action-links .icon-phone {
    width: 16px;
    height: 16px;
  }
  .mobile-nav .help-block .action-links .icon-phone {
    margin-right: 1px;
  }
  .mobile-nav .help-block .action-links .icon-email {
    width: 16px;
    height: 13px;
  }
  .mobile-nav .help-block .contact-details {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .mobile-nav .help-block .contact-details .grid {
    margin-left: -15px;
  }
  .mobile-nav .help-block .contact-details .grid__item {
    padding-left: 15px;
  }
  .mobile-nav .help-block .current-time {
    padding-top: 19px;
  }
  .mobile-nav .help-block .current-time .icon {
    top: 19px;
  }
}

.right-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin: 20px 15px 24px;
  color: var(--color-primary);
}

.template-bullion .right-nav {
  display: none;
}

.right-nav .site-nav {
  font-size: 12px;
  line-height: 1.2;
}

.template-bullion .right-nav .site-nav .icon {
  display: block;
}

.right-nav a {
  padding: 10px;
  color: var(--color-primary);
}

.right-nav a.search-link .icon {
  vertical-align: top;
  width: 17px;
  height: 17px;
  margin-right: 6px;
}

.template-bullion .right-nav a.search-link .icon {
  margin-right: 0;
}

.right-nav a.wk-link {
  padding-bottom: 9px;
}

@media only screen and (min-width: 990px) {
  .right-nav {
    display: block;
    position: absolute;
    z-index: 220;
    top: 40px;
    right: 0;
    margin: 0;
    padding: 0 15px 0 0;
    color: #252525;
  }
  .template-bullion .right-nav {
    display: block;
    padding-right: 8px;
  }
  .right-nav .site-nav {
    font-size: 14px;
    line-height: 1.14286;
  }
  .right-nav a {
    padding: 17px 15px;
    color: #252525;
  }
  .template-bullion .right-nav a {
    padding-left: 8px;
    padding-right: 7px;
  }
  .right-nav a.newsletter-link {
    padding-top: 18px;
    padding-bottom: 16px;
  }
  .right-nav a.phone-link {
    padding-top: 15px;
    padding-bottom: 14px;
  }
  .right-nav a.search-link {
    padding-bottom: 16px;
  }
  .right-nav a.wk-link {
    padding-bottom: 17px;
  }
}

@media only screen and (min-width: 1440px) {
  .template-bullion .right-nav {
    padding-right: 15px;
  }
  .template-bullion .right-nav a {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.mobile-nav-right {
  float: right;
}

@media only screen and (min-width: 990px) {
  .mobile-nav-right {
    display: none;
  }
}

.mobile-nav-right .site-nav .icon {
  display: block;
  color: var(--color-primary);
}

.mobile-nav-right .site-nav a {
  padding: 16px 7px 18px 8px;
}

.mobile-nav-right .site-nav a.newsletter-link {
  padding-top: 18px;
  padding-bottom: 16px;
}

.mobile-nav-right .site-nav a.phone-link {
  padding-top: 15px;
  padding-bottom: 14px;
}

.template-bullion .mobile-nav-right .site-nav a.phone-link {
  padding-right: 15px;
}

.mobile-nav-right .site-nav a.cart-link {
  padding-right: 10px;
}

.search-form {
  position: relative;
  display: block;
}

.search-form input {
  padding-right: 50px;
}

.search-form .btn, .search-form #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .search-form .bc-sf-filter-load-more-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  padding: 0;
  background: transparent;
  color: #252525;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*================ Site Footer ================*/
.main-footer {
  background: #f7f7f7;
}

.main-footer .wrapper {
  padding: 0;
}

.main-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-footer .payment-icons li {
  display: inline-block;
  padding: 30px 10px;
}

@media only screen and (max-width: 749px) {
  .template-index .main-footer .template-home-bullion .main-footer {
    background: #fff;
  }
  .main-footer .help-block .action-links {
    overflow-x: hidden;
  }
}

@media only screen and (min-width: 750px) {
  .main-footer .payment-icons li {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

@media only screen and (min-width: 990px) {
  .main-footer .help-block {
    width: 50%;
    padding-bottom: 36px;
  }
}

@media only screen and (min-width: 1200px) {
  .main-footer .help-block {
    width: 34.7%;
    min-width: 500px;
  }
}

@media only screen and (min-width: 1200px) {
  .footer-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .template-bullion .footer-bar {
    display: block;
  }
}

.footer-testimonials {
  overflow: hidden;
  white-space: nowrap;
  padding: 24px 0 28px;
  background: #252525;
  color: #fff;
  text-align: center;
}

.footer-testimonials.slick-initialized .slick-slide {
  float: none;
  display: inline-block;
  vertical-align: middle;
}

.footer-testimonials .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-testimonials .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-testimonials .wrapper {
  max-width: 720px;
}

.footer-testimonials .testimonial {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  padding: 0 30px;
  white-space: normal;
}

.footer-testimonials .stars {
  margin-bottom: 8px;
  color: var(--color-primary);
}

.footer-testimonials .stars .icon {
  width: 18px;
  height: 17px;
  margin: 0 2.5px;
}

@media only screen and (min-width: 750px) {
  .footer-testimonials .stars {
    margin-bottom: 10px;
  }
  .footer-testimonials .stars .icon {
    width: 19px;
    height: 18px;
    margin: 0 3px;
  }
}

.footer-testimonials .quote {
  margin-bottom: 1em;
  font-family: "Prata", serif;
  font-size: 16px;
}

@media only screen and (min-width: 750px) {
  .footer-testimonials .quote {
    font-size: 20px;
  }
}

.footer-testimonials .quote p {
  margin-bottom: 1em;
}

.footer-testimonials .customer {
  font-size: 12px;
  font-weight: 500;
  color: #c7c8cf;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 750px) {
  .footer-testimonials {
    padding: 40px 0 42px;
  }
}

.footer-social {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.footer-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}

.footer-social li {
  width: 25%;
}

.footer-social a {
  display: block;
  color: #252525;
}

.footer-social .icon {
  display: block;
  width: 35px;
  height: 35px;
  margin: 0 auto 12px;
}

@media only screen and (max-width: 989px) {
  .footer-social ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-social li {
    width: calc(33.333% - 40px);
    margin: 20px;
  }
}

@media only screen and (min-width: 750px) {
  .footer-social {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  .footer-social ul {
    padding: 26px 0;
  }
  .footer-social a {
    padding: 0 15px;
  }
  .footer-social .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 990px) {
  .footer-social li {
    width: 20%;
  }
}

.footer-links {
  background: #252525;
  color: #fff;
}

.footer-links a {
  display: block;
  color: #fff;
}

.footer-links a:hover, .footer-links a:focus {
  color: #c5c5c5;
}

.template-bullion .footer-links {
  background: #fff;
  color: #252525;
}

.template-bullion .footer-links a {
  color: #252525;
}

.template-bullion .footer-links a:hover, .template-bullion .footer-links a:focus {
  color: #666;
}

@media only screen and (min-width: 750px) {
  .footer-links .wrapper {
    padding-top: 30px;
  }
}

@media only screen and (min-width: 990px) {
  .footer-links .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-links .wrapper::after {
    content: normal;
  }
}

.footer-nav {
  margin-top: -2px;
  padding: 0 2.5px 30px;
}

.footer-nav .grid {
  margin-left: 0;
}

.footer-nav .grid__item {
  padding-left: 0;
}

.footer-nav .last-nav {
  clear: both;
}

.footer-nav h4 {
  margin-top: 32px;
  margin-bottom: 0;
  color: var(--color-primary);
}

.footer-nav h4 a {
  color: var(--color-primary);
  padding-bottom: 7px;
}

.footer-nav h4 a:hover, .footer-nav h4 a:focus {
  color: var(--color-primary);
}

.template-bullion .footer-nav h4 a {
  color: var(--color-primary);
}

.template-bullion .footer-nav h4 a:hover, .template-bullion .footer-nav h4 a:focus {
  color: var(--color-primary);
}

.footer-nav .site-toggle-footer {
  margin-top: 30px;
  font-family: proxima-nova, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav ul {
  line-height: 1;
}

.footer-nav a {
  padding: 2px 7.5px;
}

@media only screen and (min-width: 750px) {
  .footer-nav {
    padding: 0 60px 55px 0;
  }
  .footer-nav h4 a {
    padding-bottom: 8px;
  }
  .footer-nav a {
    padding: 4px 30px 3px;
  }
}

@media only screen and (min-width: 990px) {
  .footer-nav {
    width: 50%;
    margin-top: -6px;
    padding-right: 0;
    padding-bottom: 60px;
  }
  .footer-nav .last-nav {
    clear: none;
  }
}

@media only screen and (min-width: 1200px) {
  .footer-nav {
    width: 65.3%;
    padding-right: 160px;
  }
}

.footer-bottom {
  font-size: 12px;
  text-align: center;
}

.template-bullion .footer-bottom {
  padding-bottom: 30px;
}

.footer-bottom a:hover, .footer-bottom a:focus {
  color: #666;
}

@media only screen and (min-width: 990px) {
  .footer-bottom .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer-bottom .footer-bottom-grid {
    width: 33.333%;
  }
  .template-bullion .footer-bottom .footer-bottom-grid {
    width: 50%;
  }
  .template-bullion .footer-bottom {
    padding-bottom: 0;
  }
}

.footer-legal li {
  display: inline-block;
}

.footer-legal a {
  display: block;
  padding: 30px 20px 28px;
}

@media only screen and (min-width: 990px) {
  .template-bullion .footer-legal {
    text-align: right;
  }
  .footer-legal ul {
    margin-left: -10px;
    margin-right: -10px;
  }
  .template-bullion .footer-legal ul {
    margin-left: 0;
    margin-right: 0;
  }
  .footer-legal a {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .template-bullion .footer-legal li:last-child a {
    padding-right: 30px;
  }
}

.footer-copyright {
  font-size: 10px;
  line-height: 1.2;
}

.footer-copyright p {
  margin: 0;
}

@media only screen and (min-width: 990px) {
  .footer-copyright {
    padding: 19px 0 19px 30px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    font-size: 12px;
    text-align: left;
  }
}

@media only screen and (min-width: 990px) {
  .footer-payment {
    padding-right: 20px;
    text-align: right;
  }
}

/*================ Notification ================*/
.notification {
  position: fixed;
  visibility: hidden;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  padding: 40px 20px;
  background: #fff;
  opacity: 0;
  text-align: center;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition: opacity 0.5s ease 0s, visibility linear 0.5s, z-index linear 0.5s, -webkit-transform 0.5s ease 0s;
  transition: opacity 0.5s ease 0s, visibility linear 0.5s, z-index linear 0.5s, -webkit-transform 0.5s ease 0s;
  transition: opacity 0.5s ease 0s, transform 0.5s ease 0s, visibility linear 0.5s, z-index linear 0.5s;
  transition: opacity 0.5s ease 0s, transform 0.5s ease 0s, visibility linear 0.5s, z-index linear 0.5s, -webkit-transform 0.5s ease 0s;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.notification.shown {
  visibility: visible;
  z-index: 500;
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: 0.5s, 0.5s, 0s, 0s;
          transition-duration: 0.5s, 0.5s, 0s, 0s;
}

.notification h2 {
  margin: 0 0 0.6em;
}

.notification .note p {
  margin-bottom: 4px;
}

@media only screen and (min-width: 750px) {
  .notification {
    max-width: 540px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
    padding: 60px;
  }
  .notification.shown {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .notification h2 {
    margin-bottom: 0.33333em;
  }
}

/*================ Newsletter Popup ================*/
.newsletter-popup h6 {
  margin: 0 0 0.66667em;
  color: var(--color-primary);
}

.newsletter-popup form {
  text-align: left;
}

.newsletter-popup .form-success {
  margin-bottom: 0;
  text-align: center;
}

.newsletter-popup .description {
  margin-bottom: 30px;
}

.newsletter-popup .email-field {
  margin-bottom: 15px;
}

.newsletter-popup .contact-form .send {
  margin-top: 15px;
}

.newsletter-popup .send {
  margin-bottom: 0;
}

@media only screen and (min-width: 750px) {
  .newsletter-popup .email-field {
    margin-bottom: 20px;
  }
  .newsletter-popup .contact-form .send {
    margin-top: 20px;
  }
}

/*================ Cookies Bar ================*/
.cookies-bar {
  position: fixed;
  visibility: hidden;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  padding: 10px;
  background: #fff;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition: visibility linear 0.5s, z-index linear 0.5s, -webkit-transform 0.5s ease-in-out 0s;
  transition: visibility linear 0.5s, z-index linear 0.5s, -webkit-transform 0.5s ease-in-out 0s;
  transition: transform 0.5s ease-in-out 0s, visibility linear 0.5s, z-index linear 0.5s;
  transition: transform 0.5s ease-in-out 0s, visibility linear 0.5s, z-index linear 0.5s, -webkit-transform 0.5s ease-in-out 0s;
}

.cookies-bar.shown {
  visibility: visible;
  z-index: 100;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

@media only screen and (max-width: 479px) {
  .cookies-bar .btn, .cookies-bar #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .cookies-bar .bc-sf-filter-load-more-button {
    display: block;
    width: 100%;
    margin-top: 10px;
  }
}

@media only screen and (min-width: 480px) {
  .cookies-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 10px 10px 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cookies-bar .btn, .cookies-bar #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .cookies-bar .bc-sf-filter-load-more-button {
    margin-left: 10px;
  }
}

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

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

/*================ Print Giftcard Styles ================*/
@media print {
  @page {
    margin: 0.5cm;
  }
  p {
    orphans: 3;
    widows: 3;
  }
  html,
  body {
    background-color: #fff;
    color: #000;
  }
  .print-giftcard,
  .apple-wallet {
    display: none;
  }
}

/*================ Home ================*/
.text-block {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
  text-align: center;
  line-height: 1.5;
}

.text-block h2 {
  margin: 0;
}

@media only screen and (min-width: 750px) {
  .text-block {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 0 30px;
  }
}

.main-feature .call-to-action,
.feature-grid .call-to-action {
  color: #fff;
}

.main-feature .color-theme-light .call-to-action,
.feature-grid .color-theme-light .call-to-action {
  color: #252525;
}

.main-feature .color-theme-gold .call-to-action h2,
.feature-grid .color-theme-gold .call-to-action h2 {
  color: #fff;
}

.main-feature .color-theme-gold .call-to-action h1::before,
.feature-grid .color-theme-gold .call-to-action h1::before {
  border-color: #fff;
}

.main-feature .color-theme-gold .call-to-action .btn, .main-feature .color-theme-gold .call-to-action #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .main-feature .color-theme-gold .call-to-action .bc-sf-filter-load-more-button,
.feature-grid .color-theme-gold .call-to-action .btn,
.feature-grid .color-theme-gold .call-to-action #bc-sf-filter-load-more .bc-sf-filter-load-more-button,
#bc-sf-filter-load-more .feature-grid .color-theme-gold .call-to-action .bc-sf-filter-load-more-button {
  border-color: #fff;
  color: #fff;
}

.main-feature .color-theme-gold .call-to-action .btn:hover, .main-feature .color-theme-gold .call-to-action #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .main-feature .color-theme-gold .call-to-action .bc-sf-filter-load-more-button:hover, .main-feature .color-theme-gold .call-to-action .btn:focus, .main-feature .color-theme-gold .call-to-action #bc-sf-filter-load-more .bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .main-feature .color-theme-gold .call-to-action .bc-sf-filter-load-more-button:focus,
.feature-grid .color-theme-gold .call-to-action .btn:hover,
.feature-grid .color-theme-gold .call-to-action #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover,
#bc-sf-filter-load-more .feature-grid .color-theme-gold .call-to-action .bc-sf-filter-load-more-button:hover,
.feature-grid .color-theme-gold .call-to-action .btn:focus,
.feature-grid .color-theme-gold .call-to-action #bc-sf-filter-load-more .bc-sf-filter-load-more-button:focus,
#bc-sf-filter-load-more .feature-grid .color-theme-gold .call-to-action .bc-sf-filter-load-more-button:focus {
  background: #fff;
  color: var(--color-primary);
}

.main-feature .color-theme-gold .call-to-action .btn.btn-solid, .main-feature .color-theme-gold .call-to-action #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button, #bc-sf-filter-load-more .main-feature .color-theme-gold .call-to-action .btn-solid.bc-sf-filter-load-more-button,
.feature-grid .color-theme-gold .call-to-action .btn.btn-solid,
.feature-grid .color-theme-gold .call-to-action #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button,
#bc-sf-filter-load-more .feature-grid .color-theme-gold .call-to-action .btn-solid.bc-sf-filter-load-more-button {
  background: #fff;
  color: var(--color-primary);
}

.main-feature .color-theme-gold .call-to-action .btn.btn-solid:hover, .main-feature .color-theme-gold .call-to-action #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .main-feature .color-theme-gold .call-to-action .btn-solid.bc-sf-filter-load-more-button:hover, .main-feature .color-theme-gold .call-to-action .btn.btn-solid:focus, .main-feature .color-theme-gold .call-to-action #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .main-feature .color-theme-gold .call-to-action .btn-solid.bc-sf-filter-load-more-button:focus,
.feature-grid .color-theme-gold .call-to-action .btn.btn-solid:hover,
.feature-grid .color-theme-gold .call-to-action #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:hover,
#bc-sf-filter-load-more .feature-grid .color-theme-gold .call-to-action .btn-solid.bc-sf-filter-load-more-button:hover,
.feature-grid .color-theme-gold .call-to-action .btn.btn-solid:focus,
.feature-grid .color-theme-gold .call-to-action #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:focus,
#bc-sf-filter-load-more .feature-grid .color-theme-gold .call-to-action .btn-solid.bc-sf-filter-load-more-button:focus {
  background: transparent;
  color: #fff;
}

.main-feature .logo,
.feature-grid .logo {
  margin: 0 auto;
}

.main-feature .logo:last-child,
.feature-grid .logo:last-child {
  margin-bottom: 0;
}

.main-feature h2,
.feature-grid h2 {
  margin: 0.5em 0 0;
  color: var(--color-primary);
}

.main-feature h2:first-child,
.feature-grid h2:first-child {
  margin-top: 0;
}

.main-feature h1,
.feature-grid h1 {
  position: relative;
  margin: 0.2em 0 0;
}

.main-feature h1:first-child,
.feature-grid h1:first-child {
  margin-top: 0;
}

.main-feature h1:last-child::before,
.feature-grid h1:last-child::before {
  content: normal;
}

.main-feature h1::before,
.feature-grid h1::before {
  position: absolute;
  bottom: -11px;
  left: 50%;
  width: 70px;
  margin-left: -35px;
  border-top: 1px solid var(--color-primary);
  content: "";
}

.main-feature .logo + h1,
.feature-grid .logo + h1 {
  margin-top: 0.5em;
}

.main-feature .description,
.feature-grid .description {
  margin: 22px 0 0;
}

.main-feature .description:first-child,
.feature-grid .description:first-child {
  margin-top: 0;
}

.main-feature .description p,
.feature-grid .description p {
  margin: 0.5em 0 0;
}

.main-feature .description p:first-child,
.feature-grid .description p:first-child {
  margin-top: 0;
}

.main-feature .btn, .main-feature #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .main-feature .bc-sf-filter-load-more-button,
.feature-grid .btn,
.feature-grid #bc-sf-filter-load-more .bc-sf-filter-load-more-button,
#bc-sf-filter-load-more .feature-grid .bc-sf-filter-load-more-button {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 24px 0 0 0;
}

.main-feature .btn:first-child, .main-feature #bc-sf-filter-load-more .bc-sf-filter-load-more-button:first-child, #bc-sf-filter-load-more .main-feature .bc-sf-filter-load-more-button:first-child,
.feature-grid .btn:first-child,
.feature-grid #bc-sf-filter-load-more .bc-sf-filter-load-more-button:first-child,
#bc-sf-filter-load-more .feature-grid .bc-sf-filter-load-more-button:first-child {
  margin-top: 0;
}

.main-feature .btn:hover, .main-feature #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .main-feature .bc-sf-filter-load-more-button:hover, .main-feature .btn:focus, .main-feature #bc-sf-filter-load-more .bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .main-feature .bc-sf-filter-load-more-button:focus,
.feature-grid .btn:hover,
.feature-grid #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover,
#bc-sf-filter-load-more .feature-grid .bc-sf-filter-load-more-button:hover,
.feature-grid .btn:focus,
.feature-grid #bc-sf-filter-load-more .bc-sf-filter-load-more-button:focus,
#bc-sf-filter-load-more .feature-grid .bc-sf-filter-load-more-button:focus {
  background: var(--color-primary);
}

.main-feature .btn.btn-solid, .main-feature #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button, #bc-sf-filter-load-more .main-feature .btn-solid.bc-sf-filter-load-more-button,
.feature-grid .btn.btn-solid,
.feature-grid #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button,
#bc-sf-filter-load-more .feature-grid .btn-solid.bc-sf-filter-load-more-button {
  background: var(--color-primary);
  color: #fff;
}

.main-feature .btn.btn-solid:hover, .main-feature #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .main-feature .btn-solid.bc-sf-filter-load-more-button:hover, .main-feature .btn.btn-solid:focus, .main-feature #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .main-feature .btn-solid.bc-sf-filter-load-more-button:focus,
.feature-grid .btn.btn-solid:hover,
.feature-grid #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:hover,
#bc-sf-filter-load-more .feature-grid .btn-solid.bc-sf-filter-load-more-button:hover,
.feature-grid .btn.btn-solid:focus,
.feature-grid #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:focus,
#bc-sf-filter-load-more .feature-grid .btn-solid.bc-sf-filter-load-more-button:focus {
  background: transparent;
  color: var(--color-primary);
}

.main-feature .logo + .btn, .main-feature #bc-sf-filter-load-more .logo + .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .main-feature .logo + .bc-sf-filter-load-more-button,
.feature-grid .logo + .btn,
.feature-grid #bc-sf-filter-load-more .logo + .bc-sf-filter-load-more-button,
#bc-sf-filter-load-more .feature-grid .logo + .bc-sf-filter-load-more-button {
  margin-top: 20px;
}

.main-feature h1 + .btn, .main-feature #bc-sf-filter-load-more h1 + .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .main-feature h1 + .bc-sf-filter-load-more-button,
.feature-grid h1 + .btn,
.feature-grid #bc-sf-filter-load-more h1 + .bc-sf-filter-load-more-button,
#bc-sf-filter-load-more .feature-grid h1 + .bc-sf-filter-load-more-button {
  margin-top: 28px;
}

@media only screen and (min-width: 750px) {
  .main-feature h2,
  .feature-grid h2 {
    font-size: 16px;
  }
  .main-feature h1,
  .feature-grid h1 {
    margin-top: 0.1em;
  }
  .main-feature h1::before,
  .feature-grid h1::before {
    bottom: -8px;
  }
  .main-feature .description,
  .feature-grid .description {
    margin-top: 28px;
  }
  .main-feature .btn, .main-feature #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .main-feature .bc-sf-filter-load-more-button,
  .feature-grid .btn,
  .feature-grid #bc-sf-filter-load-more .bc-sf-filter-load-more-button,
  #bc-sf-filter-load-more .feature-grid .bc-sf-filter-load-more-button {
    margin-top: 20px;
  }
  .main-feature .logo + .btn, .main-feature #bc-sf-filter-load-more .logo + .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .main-feature .logo + .bc-sf-filter-load-more-button, .main-feature h1 + .btn, .main-feature #bc-sf-filter-load-more h1 + .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .main-feature h1 + .bc-sf-filter-load-more-button,
  .feature-grid .logo + .btn,
  .feature-grid #bc-sf-filter-load-more .logo + .bc-sf-filter-load-more-button,
  #bc-sf-filter-load-more .feature-grid .logo + .bc-sf-filter-load-more-button,
  .feature-grid h1 + .btn,
  .feature-grid #bc-sf-filter-load-more h1 + .bc-sf-filter-load-more-button,
  #bc-sf-filter-load-more .feature-grid h1 + .bc-sf-filter-load-more-button {
    margin-top: 38px;
  }
}

.feature-grid {
  display: -ms-grid;
  display: grid;
  max-width: 1440px;
  margin: 30px auto;
  padding: 0 10px;
      grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  grid-gap: 5px;
}

.template-bullion .shopify-section:last-child .feature-grid {
  margin-bottom: 0;
}

.feature-grid a {
  display: block;
  color: #252525;
}

.feature-grid a,
.feature-grid .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 15px;
}

.feature-grid .call-to-action {
  position: relative;
  z-index: 20;
  max-width: 360px;
}

.feature-grid .tile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #252525;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  text-align: center;
  position: relative;
  background-image: var(--image-mobile) !important;
}

@media only screen and (min-width: 750px) {
  .feature-grid .tile {
    background-image: var(--image) !important;
  }
}

.feature-grid .tile.lazyload::after, .feature-grid .tile.lazyloading::after, .feature-grid .tile.lazyloaded::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--color-text);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.feature-grid .tile.lazyloaded::after {
  opacity: 0;
}

.feature-grid .tile:first-child::before {
  content: "";
  float: left;
  width: 1px;
  height: 0;
  margin-left: -1px;
  padding-top: 125.714%;
}

.feature-grid .tile:first-child::after {
  content: "";
  display: table;
  clear: both;
}

.feature-grid .tile.span-2 {
  grid-column: span 2;
}

.feature-grid .tile.span-2:first-child::before {
  padding-top: 61.972%;
}

.feature-grid .tile.horizontal-position-left {
  text-align: left;
}

.feature-grid .tile.horizontal-position-left a,
.feature-grid .tile.horizontal-position-left .inner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.feature-grid .tile.horizontal-position-left .logo {
  margin-left: 0;
}

.feature-grid .tile.horizontal-position-left h1::before {
  left: 0;
  margin-left: 0;
}

.feature-grid .tile.horizontal-position-right {
  text-align: right;
}

.feature-grid .tile.horizontal-position-right a,
.feature-grid .tile.horizontal-position-right .inner {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.feature-grid .tile.horizontal-position-right .logo {
  margin-right: 0;
}

.feature-grid .tile.horizontal-position-right h1::before {
  left: auto;
  right: 0;
  margin-left: 0;
}

.feature-grid .tile.vertical-position-top a,
.feature-grid .tile.vertical-position-top .inner {
  padding-top: 30px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.feature-grid .tile.vertical-position-bottom a,
.feature-grid .tile.vertical-position-bottom .inner {
  padding-bottom: 30px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.feature-grid .tile.color-theme-light {
  background-color: #f7f7f7;
}

.feature-grid .tile.color-theme-gold {
  background-color: var(--color-primary);
}

.feature-grid .tile.color-theme-gold.has-image {
  background-color: #252525;
}

@media only screen and (max-width: 749px) {
  .template-index .feature-grid .tile.span-1 .btn, .template-index .feature-grid .tile.span-1 #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-index .feature-grid .tile.span-1 .bc-sf-filter-load-more-button,
  .template-home-bullion .feature-grid .tile.span-1 .btn,
  .template-home-bullion .feature-grid .tile.span-1 #bc-sf-filter-load-more .bc-sf-filter-load-more-button,
  #bc-sf-filter-load-more .template-home-bullion .feature-grid .tile.span-1 .bc-sf-filter-load-more-button {
    min-width: 130px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 374px) {
  .template-index .feature-grid .tile.span-1 .btn, .template-index .feature-grid .tile.span-1 #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-index .feature-grid .tile.span-1 .bc-sf-filter-load-more-button,
  .template-home-bullion .feature-grid .tile.span-1 .btn,
  .template-home-bullion .feature-grid .tile.span-1 #bc-sf-filter-load-more .bc-sf-filter-load-more-button,
  #bc-sf-filter-load-more .template-home-bullion .feature-grid .tile.span-1 .bc-sf-filter-load-more-button {
    min-width: 100%;
  }
}

@media only screen and (min-width: 750px) {
  .feature-grid {
    margin-top: 60px;
    margin-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
    grid-gap: 10px;
  }
  .feature-grid a,
  .feature-grid .inner {
    padding: 30px;
  }
}

@media only screen and (min-width: 990px) {
  .feature-grid {
        grid-template-columns: repeat(4, 1fr);
  }
  .template-bullion .shopify-section:last-child .feature-grid {
    margin-bottom: 30px;
  }
  .feature-grid .tile:first-child::before {
    padding-top: 108.148%;
  }
  .template-bullion .feature-grid .tile:first-child::before {
    padding-top: 100%;
  }
  .feature-grid .tile.span-2:first-child::before {
    padding-top: 53.285%;
  }
  .feature-grid .tile.has-overlay a {
    position: relative;
  }
  .feature-grid .tile.has-overlay a::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 37, 37, 0.5);
    content: "";
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .feature-grid .tile.has-overlay a:hover::after, .feature-grid .tile.has-overlay a:focus::after {
    opacity: 1;
  }
  .feature-grid .tile.has-overlay.color-theme-light a::after {
    background: rgba(255, 255, 255, 0.5);
  }
}

@media only screen and (min-width: 990px) and (max-width: 1199px) {
  .feature-grid .logo {
    max-width: 61%;
  }
  .feature-grid h2 {
    font-size: 12px;
  }
  .feature-grid h1 {
    font-size: 20px;
  }
  .feature-grid h1::before {
    bottom: -11px;
  }
  
  .feature-grid .btn,
  .feature-grid #bc-sf-filter-load-more .bc-sf-filter-load-more-button,
  #bc-sf-filter-load-more .feature-grid .bc-sf-filter-load-more-button {
    margin-top: 24px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .feature-grid .logo + .btn,
  .feature-grid #bc-sf-filter-load-more .logo + .bc-sf-filter-load-more-button,
  #bc-sf-filter-load-more .feature-grid .logo + .bc-sf-filter-load-more-button {
    margin-top: 20px;
  }
  
  .feature-grid h1 + .btn,
  .feature-grid #bc-sf-filter-load-more h1 + .bc-sf-filter-load-more-button,
  #bc-sf-filter-load-more .feature-grid h1 + .bc-sf-filter-load-more-button {
    margin-top: 28px;
  }
}

@media only screen and (max-width: 989px) {
  .template-bullion .feature-grid {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
  .template-bullion .feature-grid a,
  .template-bullion .feature-grid .inner {
    padding: 30px;
  }
  .template-bullion .feature-grid .call-to-action {
    max-width: none;
  }
  .template-bullion .feature-grid .tile:first-child::before {
    content: normal;
  }
}

.intro-block {
  background: #f7f7f7;
}

.intro-block h2 {
  margin-bottom: 22px;
}

.intro-block .value-props {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -7px 20px;
}

.intro-block .value-prop {
  max-width: 110px;
  margin: 0 7px;
}

.intro-block .value-prop svg {
  display: block;
  width: 100%;
}

.intro-block .main-text {
  margin-bottom: 0;
  font-size: 14px;
}

.intro-block .main-text p {
  margin: 0.5em 0 0;
}

.intro-block .main-text p:first-child {
  margin-top: 0;
}

.intro-block .btn, .intro-block #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .intro-block .bc-sf-filter-load-more-button {
  margin-top: 22px;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.intro-block .btn:hover, .intro-block #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .intro-block .bc-sf-filter-load-more-button:hover, .intro-block .btn:focus, .intro-block #bc-sf-filter-load-more .bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .intro-block .bc-sf-filter-load-more-button:focus {
  background: var(--color-primary);
}

@media only screen and (max-width: 869px) {
  .intro-block .btn, .intro-block #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .intro-block .bc-sf-filter-load-more-button {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 750px) {
  .intro-block {
    margin-bottom: 10px;
  }
  .intro-block .wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .intro-block .grid {
    margin-left: -60px;
  }
  .intro-block .grid__item {
    padding-left: 60px;
  }
  .intro-block h2 {
    margin-bottom: 26px;
  }
  .intro-block .value-props {
    margin: 0 -10px 40px;
  }
  .intro-block .value-prop {
    margin-left: 10px;
    margin-right: 10px;
  }
  .intro-block .main-text {
    font-size: 18px;
  }
}

@media only screen and (min-width: 870px) {
  .intro-block .btn, .intro-block #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .intro-block .bc-sf-filter-load-more-button {
    margin-top: 0;
  }
}

@media only screen and (min-width: 1200px) {
  .intro-block .wrapper {
    padding: 80px 110px;
  }
  .intro-block .grid {
    margin-left: -80px;
  }
  .intro-block .grid__item {
    padding-left: 80px;
  }
}

.featured-collections,
.featured-collections-landing,
.related-products {
  max-width: 1440px;
  margin: 30px auto;
}

.featured-collections .wrapper,
.featured-collections-landing .wrapper,
.related-products .wrapper {
  padding: 0;
}

@media only screen and (min-width: 750px) {
  .featured-collections,
  .featured-collections-landing,
  .related-products {
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .featured-collections .wrapper,
  .featured-collections-landing .wrapper,
  .related-products .wrapper {
    margin-left: 30px;
    margin-right: 30px;
    overflow: hidden;
  }
}

@media only screen and (max-width: 749px) {
  .featured-collections .intro,
  .featured-collections-landing .intro,
  .related-products .intro {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.featured-collections .slick-arrow,
.featured-collections-landing .slick-arrow,
.related-products .slick-arrow {
  position: absolute;
  top: -60px;
  left: auto;
  right: 10px;
  margin-top: 0;
  background: var(--color-primary);
}

.featured-collections .slick-arrow::after,
.featured-collections-landing .slick-arrow::after,
.related-products .slick-arrow::after {
  border-color: #fff;
}

.featured-collections .slick-prev,
.featured-collections-landing .slick-prev,
.related-products .slick-prev {
  right: 50px;
}

@media only screen and (min-width: 750px) {
  .featured-collections .slick-arrow,
  .featured-collections-landing .slick-arrow,
  .related-products .slick-arrow {
    right: 0;
  }
  .featured-collections .slick-prev,
  .featured-collections-landing .slick-prev,
  .related-products .slick-prev {
    right: 40px;
  }
}

.featured-collections .description,
.related-products .description {
  max-width: 440px;
  margin-bottom: 1.66667em;
}

@media only screen and (min-width: 870px) {
  .featured-collections .description,
  .related-products .description {
    margin-bottom: 2.57143em;
  }
}

.featured-collections .nav,
.related-products .nav {
  position: relative;
  margin: 0 95px 30px 0;
  font-size: 12px;
}

@media only screen and (min-width: 750px) {
  .featured-collections .nav,
  .related-products .nav {
    margin-right: 85px;
  }
}

@media only screen and (min-width: 870px) {
  .featured-collections .nav,
  .related-products .nav {
    font-size: 14px;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
}

@media only screen and (min-width: 1200px) {
  .featured-collections .nav,
  .related-products .nav {
    font-size: 16px;
  }
}

.featured-collections .nav label,
.related-products .nav label {
  position: relative;
  margin: 0;
  padding: 9px 23px 9px 10px;
  background: #f7f7f7;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}

.featured-collections .nav label::after,
.related-products .nav label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 7px;
  height: 5px;
  margin-top: -2.5px;
  background: var(--svg-select-icon) no-repeat;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

@media only screen and (min-width: 870px) {
  .featured-collections .nav label,
  .related-products .nav label {
    display: none;
  }
}

.featured-collections .nav.active label::after,
.related-products .nav.active label::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.featured-collections .nav ul,
.related-products .nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 869px) {
  .featured-collections .nav ul,
  .related-products .nav ul {
    position: absolute;
    z-index: 30;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    background: #f7f7f7;
  }
}

@media only screen and (min-width: 870px) {
  .featured-collections .nav ul,
  .related-products .nav ul {
    display: block !important;
    margin-left: -15px;
    margin-right: 100px;
  }
}

@media only screen and (min-width: 990px) {
  .featured-collections .nav ul,
  .related-products .nav ul {
    margin-left: -22px;
  }
}

.featured-collections .nav li:first-child a,
.related-products .nav li:first-child a {
  padding-top: 4px;
}

.featured-collections .nav li:last-child a,
.related-products .nav li:last-child a {
  padding-bottom: 10px;
}

@media only screen and (min-width: 870px) {
  .featured-collections .nav li,
  .related-products .nav li {
    display: inline-block;
    vertical-align: top;
  }
  .featured-collections .nav li:first-child a, .featured-collections .nav li:last-child a,
  .related-products .nav li:first-child a,
  .related-products .nav li:last-child a {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.featured-collections .nav a,
.related-products .nav a {
  display: block;
  padding: 2px 10px;
  color: #252525;
}

.featured-collections .nav a.active,
.related-products .nav a.active {
  font-weight: 700;
}

@media only screen and (min-width: 870px) {
  .featured-collections .nav a,
  .related-products .nav a {
    padding: 0 15px;
    color: #d3d3d3;
  }
  .featured-collections .nav a.active,
  .related-products .nav a.active {
    font-weight: 400;
    color: #252525;
  }
}

@media only screen and (min-width: 990px) {
  .featured-collections .nav a,
  .related-products .nav a {
    padding: 0 22px;
  }
}

.featured-collections .product-upsell-slideshow,
.related-products .product-upsell-slideshow {
  position: relative;
  visibility: hidden;
  z-index: -1;
  height: 0;
  overflow: hidden;
}

.featured-collections .product-upsell-slideshow.active,
.related-products .product-upsell-slideshow.active {
  visibility: visible;
  z-index: auto;
  height: auto;
  overflow: visible;
}

.featured-collections .view-all,
.related-products .view-all {
  display: none;
  position: absolute;
  top: -60px;
  right: 80px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 870px) {
  .featured-collections .view-all,
  .related-products .view-all {
    display: block;
  }
}

@media only screen and (min-width: 990px) {
  .featured-collections .view-all:hover, .featured-collections .view-all:focus,
  .related-products .view-all:hover,
  .related-products .view-all:focus {
    color: #666;
  }
}

@media only screen and (min-width: 1200px) {
  .featured-collections .view-all,
  .related-products .view-all {
    font-size: 16px;
  }
}

@media only screen and (min-width: 870px) {
  .template-bullion .featured-collections .description {
    margin-bottom: 2.28571em;
  }
  .template-bullion .featured-collections .nav {
    margin-bottom: 20px;
    line-height: 38px;
  }
  .template-bullion .featured-collections .nav ul {
    margin-left: 0;
  }
  .template-bullion .featured-collections .nav a {
    padding: 0 20px;
    border: 1px solid;
  }
  .template-bullion .featured-collections .slick-arrow, .template-bullion
  .featured-collections .view-all {
    top: -55px;
  }
}

@media only screen and (min-width: 990px) {
  .template-bullion .featured-collections .nav a {
    padding: 0 30px;
  }
}

.product-upsell-slideshow .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 5px;
  padding-right: 10px;
}

.product-upsell-slideshow .slick-list {
  padding-left: 5px;
  padding-right: 10px;
}

.product-upsell-slideshow .slick-track {
  margin-left: 0;
  margin-right: 0;
}

.product-upsell-slideshow .product-grid-item {
  min-width: 68.06%;
  padding-left: 5px;
}

@media only screen and (min-width: 480px) {
  .product-upsell-slideshow .product-grid-item {
    min-width: 40.50%;
  }
}

@media only screen and (min-width: 750px) {
  .product-upsell-slideshow .inner {
    margin-left: -10px;
    padding-left: 0;
    padding-right: 0;
  }
  .product-upsell-slideshow .slick-list {
    padding-left: 0;
    padding-right: 0;
  }
  .product-upsell-slideshow .product-grid-item {
    min-width: 33.33%;
    padding-left: 10px;
  }
}

@media only screen and (min-width: 990px) {
  .product-upsell-slideshow .product-grid-item {
    min-width: 25%;
  }
}

.product-upsell-slideshow .slick-initialized.inner {
  display: block;
  padding-left: 0;
  padding-right: 0;
}

.product-upsell-slideshow .slick-initialized .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.product-upsell-slideshow .slick-initialized .product-grid-item {
  min-width: 0;
}

/*================ Slideshow ================*/
.main-feature {
  overflow-x: hidden;
  background: #252525;
}

.main-feature .content-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.main-feature .content-slide::before {
  content: '';
  float: left;
  width: 1px;
  height: 0;
  margin-left: -1px;
  padding-top: 80%;
}

.main-feature .content-slide::after {
  content: '';
  display: table;
  clear: both;
}

.main-feature a,
.main-feature .no-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  color: #252525;
}

.main-feature .call-to-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: #252525;
}

.main-feature .overlay-transparent .call-to-action {
  background: rgba(37, 37, 37, 0.6);
}

.main-feature .color-theme-light .call-to-action {
  background: #fff;
}

.main-feature .color-theme-light.overlay-transparent .call-to-action {
  background: rgba(255, 255, 255, 0.6);
}

.main-feature .color-theme-gold .call-to-action {
  background: var(--color-primary);
}

.main-feature .color-theme-gold.overlay-transparent .call-to-action {
  background: rgba(37, 37, 37, 0.6);
}

.main-feature .inner {
  max-width: 400px;
  margin: auto;
  padding: 43px 20px;
}

.main-feature .slick-dots,
.main-feature .slick-prev,
.main-feature .slick-next {
  display: none !important;
}

.main-feature .slick-dots {
  position: absolute;
  right: 25px;
  bottom: 15px;
  width: auto;
}

.main-feature .slick-prev,
.main-feature .slick-next {
  top: 0;
  width: 60px;
  height: 100%;
  margin-top: 0;
}

.main-feature .slick-prev::before, .main-feature .slick-prev::after,
.main-feature .slick-next::before,
.main-feature .slick-next::after {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.main-feature .slick-prev::before,
.main-feature .slick-next::before {
  position: absolute;
  top: 50%;
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  background: #f7f7f7;
}

.main-feature .slick-prev:hover::before, .main-feature .slick-prev:focus::before,
.main-feature .slick-next:hover::before,
.main-feature .slick-next:focus::before {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.main-feature .slick-prev::before {
  left: 0;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

.main-feature .slick-prev::after {
  left: 25%;
  -webkit-transform: rotate(135deg) translate(250%, 250%);
  transform: rotate(135deg) translate(250%, 250%);
}

.main-feature .slick-prev:hover::after, .main-feature .slick-prev:focus::after {
  -webkit-transform: rotate(135deg) translate(0, 0);
  transform: rotate(135deg) translate(0, 0);
}

.main-feature .slick-next::before {
  right: 0;
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

.main-feature .slick-next::after {
  right: 25%;
  -webkit-transform: rotate(-45deg) translate(250%, 250%);
  transform: rotate(-45deg) translate(250%, 250%);
}

.main-feature .slick-next:hover::after, .main-feature .slick-next:focus::after {
  -webkit-transform: rotate(-45deg) translate(0, 0);
  transform: rotate(-45deg) translate(0, 0);
}

@media only screen and (min-width: 750px) {
  .main-feature .content-slide::before {
    padding-top: 33.333%;
  }
  .main-feature .inner {
    max-width: 500px;
    padding: 44px 30px;
  }
}

@media only screen and (min-width: 990px) {
  .main-feature .call-to-action {
    background: none;
    padding: 40px 0;
  }
  .main-feature .horizontal-position-left .call-to-action .inner {
    margin-left: 90px;
  }
  .main-feature .horizontal-position-left.no-overlay .call-to-action {
    text-align: left;
  }
  .main-feature .horizontal-position-left.no-overlay .call-to-action .logo {
    margin-left: 0;
  }
  .main-feature .horizontal-position-left.no-overlay .call-to-action h1::before {
    left: 0;
    margin-left: 0;
  }
  .main-feature .horizontal-position-right .call-to-action .inner {
    margin-right: 90px;
  }
  .main-feature .horizontal-position-right.no-overlay .call-to-action {
    text-align: right;
  }
  .main-feature .horizontal-position-right.no-overlay .call-to-action .logo {
    margin-right: 0;
  }
  .main-feature .horizontal-position-right.no-overlay .call-to-action h1::before {
    left: auto;
    right: 0;
    margin-left: 0;
  }
  .main-feature .overlay-transparent .call-to-action {
    background: none;
  }
  .main-feature .overlay-transparent .call-to-action .inner {
    background: rgba(0, 0, 0, 0.9);
  }
  .main-feature .no-overlay .call-to-action .inner {
    max-width: 440px;
    padding: 0;
    background: none;
  }
  .main-feature .color-theme-light .call-to-action .inner {
    background: #fff;
  }
  .main-feature .color-theme-light.overlay-transparent .call-to-action .inner {
    background: rgba(255, 255, 255, 0.9);
  }
  .main-feature .color-theme-gold .call-to-action .inner {
    background: var(--color-primary);
  }
  .main-feature .color-theme-gold.overlay-transparent .call-to-action .inner {
    background: rgba(37, 37, 37, 0.9);
  }
  .main-feature .color-theme-light .call-to-action,
  .main-feature .color-theme-gold .call-to-action {
    background: none;
  }
  .main-feature .color-theme-light.overlay-transparent .call-to-action,
  .main-feature .color-theme-gold.overlay-transparent .call-to-action {
    background: none;
  }
  .main-feature .color-theme-light.no-overlay .call-to-action .inner,
  .main-feature .color-theme-gold.no-overlay .call-to-action .inner {
    background: none;
  }
  .main-feature.main-slideshow .horizontal-position-right.has-overlay .call-to-action {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .main-feature .inner {
    background: #000;
  }
  .main-feature .slick-dots,
  .main-feature .slick-prev,
  .main-feature .slick-next {
    display: block !important;
  }
}

.main-slideshow .content-slide {
  display: none;
}
.main-slideshow .content-slide:nth-of-type(1) {
  display: flex;
}
.slick-initialized .content-slide {
  display: flex;
}

/*================ Filter App Overrides ================*/
.bc-sf-search-box:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#bc-sf-filter-top-sorting {
  display: none;
}

#bc-sf-filter-top-sorting label {
  display: block;
  margin: 0;
}

@media only screen and (min-width: 870px) {
  #bc-sf-filter-top-sorting {
    display: block;
  }
}

.bc-sf-filter-tree,
.bc-sf-filter-custom-sorting {
  position: relative;
  font-size: 14px;
  line-height: 1;
}

.bc-sf-filter-tree button::after,
.bc-sf-filter-custom-sorting label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 7px;
  height: 5px;
  margin-top: -2.5px;
  background: var(--svg-select-icon) no-repeat;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.bc-sf-filter-tree .bc-sf-filter-tree-mobile-button-open::after,
.bc-sf-filter-custom-sorting.bc-sf-filter-sort-active label::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.bc-sf-filter-custom-sorting::before {
  position: absolute;
  top: 27.5%;
  left: 0;
  width: 1px;
  height: 45%;
  background: #e9e9e9;
  content: '';
}

.bc-sf-filter-custom-sorting label {
  position: relative;
  margin: 0;
  padding: 13px 28px 13px 15px;
  cursor: pointer;
}

.bc-sf-filter-custom-sorting .bc-sf-filter-filter-dropdown {
  display: none;
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 5px 15px 12px;
  background: #f7f7f7;
  list-style: none;
}

.bc-sf-filter-custom-sorting .bc-sf-filter-filter-dropdown li {
  display: block;
}

.bc-sf-filter-custom-sorting .bc-sf-filter-filter-dropdown a {
  display: block;
  padding: 5px 0;
  color: #252525;
}

.bc-sf-filter-custom-sorting .bc-sf-filter-filter-dropdown a.active {
  font-weight: 700;
}

@media only screen and (min-width: 870px) {
  .bc-sf-filter-custom-sorting {
    line-height: 1.2;
  }
  .bc-sf-filter-custom-sorting::before {
    content: normal;
  }
  .bc-sf-filter-custom-sorting label {
    z-index: 70;
    padding: 15px 45px 15px 130px;
    background: #f7f7f7;
  }
  .bc-sf-filter-custom-sorting label::after {
    right: 30px;
  }
  .bc-sf-filter-custom-sorting .bc-sf-filter-filter-dropdown {
    width: 175px;
    left: auto;
    right: 10px;
    padding: 10px 20px 15px;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  }
  .bc-sf-filter-custom-sorting .bc-sf-filter-filter-dropdown a {
    padding: 4px 0;
  }
}

@media only screen and (min-width: 990px) {
  .bc-sf-filter-custom-sorting .bc-sf-filter-filter-dropdown a:hover, .bc-sf-filter-custom-sorting .bc-sf-filter-filter-dropdown a:focus {
    color: #666;
  }
  .bc-sf-filter-custom-sorting .bc-sf-filter-filter-dropdown a.active:hover, .bc-sf-filter-custom-sorting .bc-sf-filter-filter-dropdown a.active:focus {
    color: #252525;
  }
}

#bc-sf-filter-load-more {
  padding: 40px 0 20px;
  text-align: center;
}

@media only screen and (min-width: 750px) {
  #bc-sf-filter-load-more {
    padding: 60px 0;
  }
}

#bc-sf-filter-load-more #bc-sf-filter-load-more-loading #bc-sf-filter-load-more-icon {
  background-image: url("bc-sf-filter-loading-2x.gif");
  background-size: 28px 28px;
}

#bc-sf-filter-tree {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  padding: 0 15px;
  background: #f7f7f7;
}

#bc-sf-filter-tree .bc-sf-filter-option-block {
  padding: 0;
  border-top: 0;
}

#bc-sf-filter-tree .bc-sf-filter-option-block .bc-sf-filter-block-title {
  position: relative;
  line-height: 1.2;
}

#bc-sf-filter-tree .bc-sf-filter-option-block .bc-sf-filter-block-title h3 {
  display: block;
  border-top: 1px solid #e9e9e9;
  font-family: proxima-nova, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

#bc-sf-filter-tree .bc-sf-filter-option-block .bc-sf-filter-block-title h3 span {
  display: block;
  padding: 10px 0;
}

#bc-sf-filter-tree .bc-sf-filter-option-block .bc-sf-filter-block-title h3 span::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 5px;
  margin: -2px 0 0;
  border: 0;
  background: var(--svg-select-icon) no-repeat;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

#bc-sf-filter-tree .bc-sf-filter-option-block .bc-sf-filter-block-title h3 span.up::before {
  margin: -2px 0 0;
  border: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

#bc-sf-filter-tree .bc-sf-filter-option-block .bc-sf-filter-block-content {
  margin-top: 0;
  margin-bottom: 12px;
}

#bc-sf-filter-tree .bc-sf-filter-option-block .bc-sf-filter-block-content ul li a {
  display: block;
}

#bc-sf-filter-tree .bc-sf-filter-selection-wrapper {
  margin: 15px 0;
  padding: 0;
  border-bottom: 0;
}

#bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-block-title h3 {
  display: none;
}

#bc-sf-filter-tree .bc-sf-filter-selection-wrapper .bc-sf-filter-selected-items {
  display: none;
}

#bc-sf-filter-tree .bc-sf-filter-clear-all {
  float: none;
  display: block;
  padding: 13px 14px;
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#bc-sf-filter-tree .bc-sf-filter-clear-all:hover, #bc-sf-filter-tree .bc-sf-filter-clear-all:focus {
  background: var(--color-primary);
  color: #fff;
}

#bc-sf-filter-tree .bc-sf-filter-clear {
  display: none;
}

#bc-sf-filter-tree-h {
  position: relative;
  margin: 0;
}

#bc-sf-filter-tree-h::after {
  position: absolute;
  z-index: 70;
  top: 0;
  left: 100%;
  width: 235px;
  height: 100%;
  background: #f7f7f7;
  content: '';
}

#bc-sf-filter-tree-h .bc-sf-filter-option-block {
  margin: 0;
}

#bc-sf-filter-tree-h .bc-sf-filter-option-block:first-child .bc-sf-filter-block-title,
#bc-sf-filter-tree-h .bc-sf-filter-option-block.bc-sf-filter-option-hidden:first-child + .bc-sf-filter-option-block .bc-sf-filter-block-title {
  padding-left: 15px;
}

#bc-sf-filter-tree-h .bc-sf-filter-option-block:first-child .bc-sf-filter-block-content,
#bc-sf-filter-tree-h .bc-sf-filter-option-block.bc-sf-filter-option-hidden:first-child + .bc-sf-filter-option-block .bc-sf-filter-block-content {
  margin-left: 10px;
}

#bc-sf-filter-tree-h .bc-sf-filter-option-block .bc-sf-filter-block-title {
  position: relative;
  z-index: 70;
  background: #f7f7f7;
}

#bc-sf-filter-tree-h .bc-sf-filter-option-block .bc-sf-filter-block-title a {
  margin: 0;
  padding: 15px 30px 15px 15px;
  background: none;
  border: 0;
  color: #252525;
  line-height: 1.2;
  outline: none;
}

#bc-sf-filter-tree-h .bc-sf-filter-option-block .bc-sf-filter-block-title a::before {
  right: 14px;
  width: 7px;
  height: 5px;
  margin-top: -2.5px;
  background: var(--svg-select-icon) no-repeat;
  border: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

#bc-sf-filter-tree-h .bc-sf-filter-option-block .bc-sf-filter-block-title a div {
  display: none;
}

#bc-sf-filter-tree-h .bc-sf-filter-option-block .bc-sf-filter-block-title a.selected::before {
  margin-top: -2.5px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#bc-sf-filter-tree-h .bc-sf-filter-option-block .bc-sf-filter-block-content {
  z-index: 60;
  top: 100% !important;
  left: auto;
  width: auto;
  min-width: 265px;
  margin-left: -5px;
  padding: 8px 20px 20px;
  background: #f7f7f7;
  border: 0;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}

#bc-sf-filter-tree-h .bc-sf-filter-option-block .bc-sf-filter-block-content ul li {
  margin: 0;
}

#bc-sf-filter-tree-h .bc-sf-filter-option-block .bc-sf-filter-block-content ul.bc-sf-filter-option-multiple-list li, #bc-sf-filter-tree-h .bc-sf-filter-option-block .bc-sf-filter-block-content ul.bc-sf-filter-option-single-list li {
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
}

#bc-sf-filter-tree-h .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-select-button {
  display: inline-block;
  vertical-align: middle;
  margin: 14px 0 0 0;
  padding: 13px 45px;
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#bc-sf-filter-tree-h .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-select-button:hover, #bc-sf-filter-tree-h .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-select-button:focus {
  background: var(--color-primary);
  color: #fff;
}

#bc-sf-filter-tree-h .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-clear {
  margin: 14px 0 0 15px;
  padding: 0 0 0 18px;
  vertical-align: middle;
  text-decoration: none;
  color: #252525;
  background: var(--svg-close-icon) no-repeat left center;
}

.bc-sf-filter-option-block .bc-sf-filter-block-content ul li input[type="checkbox"] + a {
  padding: 3px 0 3px 24px;
  color: #252525;
  line-height: 1.2;
}

.bc-sf-filter-option-block .bc-sf-filter-block-content ul li input[type="checkbox"] + a > span:first-child {
  top: 4px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 1px solid #c7c8cf;
  border-radius: 50%;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 13px;
}

.bc-sf-filter-option-block .bc-sf-filter-block-content ul li input[type="checkbox"] + a.selected > span:first-child {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.bc-sf-filter-option-block .bc-sf-filter-block-content ul li input[type="checkbox"] + a.selected > span:first-child::after {
  content: normal;
}

@media only screen and (min-width: 870px) {
  .bc-sf-filter-option-block .bc-sf-filter-block-content ul li input[type="checkbox"] + a {
    padding-top: 6px;
    padding-bottom: 5px;
  }
  .bc-sf-filter-option-block .bc-sf-filter-block-content ul li input[type="checkbox"] + a > span:first-child {
    top: 7px;
  }
}

.bc-sf-filter-option-block .bc-sf-filter-block-content ul li a {
  margin: 0;
}

.bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-multiple-list li a.selected > span:first-child::before {
  display: block;
  position: absolute;
  top: 0.067em;
  left: 0.2em;
  width: 0.933em;
  height: 0.733em;
  margin: -1px 0 0 -1px;
  border: 0;
  content: '';
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2014%2011%22%3E%3Cpolygon%20points%3D%224.159%2010.824%200.126%206.942%201.374%205.645%204.159%208.326%2012.626%200.176%2013.874%201.473%204.159%2010.824%22%20fill%3D%22%23252525%22%2F%3E%3C%2Fsvg%3E");
  -webkit-transform: none;
  transform: none;
}

.bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-amount {
  margin: 0;
}

.bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-range-amount {
  display: none;
}

#bc-sf-filter-tree .bc-sf-filter-block-content .bc-sf-filter-option-range-slider {
  width: calc(100% - 30px);
  margin-top: 5px;
}

#bc-sf-filter-tree-h .bc-sf-filter-block-content .noUi-target {
  width: calc(100% - 15px);
}

.bc-sf-filter-block-content .bc-sf-filter-option-range-slider.has-pips {
  margin-top: 5px;
  margin-bottom: 30px !important;
}

.bc-sf-filter-block-content .noUi-target {
  height: 3px;
  background: #999;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#bc-sf-filter-tree .bc-sf-filter-block-content .noUi-horizontal .noUi-origin .noUi-handle,
.bc-sf-filter-block-content .noUi-horizontal .noUi-origin .noUi-handle {
  width: 6px;
  height: 13px;
  border: 0;
  border-radius: 0;
  background: #252525;
}

.noUi-origin {
  top: -5px;
  margin-left: 0;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 9px;
  margin-top: -6px;
}

.noUi-marker-large,
.noUi-marker-sub {
  background: #999;
}

.noUi-value-horizontal {
  font-size: 10px;
  color: #252525;
}

.noUi-pips-horizontal {
  height: 22px;
}

.jspDrag {
  background: #999;
}

.jspTrack {
  background: #e9e9e9;
}

#bc-sf-filter-tree-mobile button {
  margin: 0;
  padding: 13px 28px 13px 15px;
  background-color: transparent;
  color: #252525;
  line-height: 1;
  text-transform: none;
  text-align: left;
}

@media only screen and (max-width: 869px) {
  #bc-sf-filter-tree-mobile,
  #bc-sf-filter-top-sorting-mobile {
    display: inline-block;
    width: 50%;
    vertical-align: middle;
  }
}

@media only screen and (min-width: 870px) {
  .noUi-origin {
    margin-left: -3px;
  }
  .bc-sf-filter-selection-wrapper {
    display: none;
  }
}

/*================ Collection ================*/
.template-collection .main-content,
.template-search .main-content {
  max-width: none;
  padding: 0;
}

.template-collection .main-content .wrapper,
.template-search .main-content .wrapper {
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 40px;
}

@media only screen and (min-width: 750px) {
  .template-collection .main-content .wrapper,
  .template-search .main-content .wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.template-collection .collection-banner,
.template-search .collection-banner {
  text-align: center;
}

.template-collection .collection-banner .wrapper,
.template-search .collection-banner .wrapper {
  padding: 30px 10px 14px 10px;
}

.template-collection .collection-banner .search-form,
.template-search .collection-banner .search-form {
  max-width: 600px;
  margin: 0 auto 16px;
}

@media only screen and (min-width: 750px) {
  .template-collection .collection-banner .wrapper,
  .template-search .collection-banner .wrapper {
    padding-top: 60px;
    padding-bottom: 44px;
  }
  .template-collection .collection-banner .search-form,
  .template-search .collection-banner .search-form {
    margin-bottom: 20px;
  }
}

.template-collection .collection-description,
.template-search .collection-description {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.template-collection .filter-toolbar,
.template-search .filter-toolbar {
  position: relative;
  background: #f7f7f7;
  font-size: 14px;
}

.template-collection .filter-toolbar .wrapper,
.template-search .filter-toolbar .wrapper {
  padding: 0;
}

.template-collection .filter-toolbar .wrapper::after,
.template-search .filter-toolbar .wrapper::after {
  content: normal;
}

@media only screen and (min-width: 870px) {
  .template-collection .filter-toolbar .wrapper,
  .template-search .filter-toolbar .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
}

@media only screen and (min-width: 870px) {
  .template-collection .toolbar-sort,
  .template-search .toolbar-sort {
    display: none;
  }
}

.template-collection .collection-banner img {
  width: 100%;
}

.template-collection .collection-banner.has-image .wrapper {
  padding: 0;
}

.template-collection .collection-banner.has-image .image {
  padding-top: 42.667%;
  background-position: center center;
  background-size: cover;
}

.template-collection .collection-banner.has-image .text {
  max-width: 520px;
  margin: auto;
  padding: 30px 20px 14px 20px;
}

.template-collection .collection-banner.has-image .logo {
  margin: 0 auto 1.333em;
}

@media only screen and (min-width: 990px) {
  .template-collection .collection-banner.has-image {
    overflow: hidden;
  }
  .template-collection .collection-banner.has-image .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .template-collection .collection-banner.has-image .image-outer {
    width: 56.25%;
  }
  .template-collection .collection-banner.has-image .image {
    position: relative;
    height: 100%;
    padding-top: 46.914%;
  }
  .template-collection .collection-banner.has-image .image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 500%;
    height: 100%;
  }
  .template-collection .collection-banner.has-image .text {
    width: 43.75%;
    max-width: 540px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.product-grid {
  margin-left: -5px;
}

.product-grid .product-grid-item {
  margin-bottom: 20px;
  padding-left: 5px;
}

@media only screen and (min-width: 750px) {
  .product-grid {
    margin-left: -10px;
  }
  .product-grid .product-grid-item {
    margin-bottom: 60px;
    padding-left: 10px;
  }
}

@media only screen and (max-width: 989px) {
  .product-grid .product-grid-item:nth-child(2n+1) {
    clear: both;
  }
}

@media only screen and (min-width: 990px) {
  .product-grid .product-grid-item:nth-child(4n+1) {
    clear: both;
  }
}

.template-product .label,
.product-grid-item .label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  font-size: 11px;
  padding: 5px 12px;
  background: var(--color-primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}

.template-product .label.sold-out,
.product-grid-item .label.sold-out {
  background: transparent;
}

@media only screen and (min-width: 750px) {
  .template-product .label,
  .product-grid-item .label {
    padding: 6px 15px;
    font-size: 12px;
  }
}

.product-grid-item {
  position: relative;
}

.product-grid-item a {
  display: block;
  color: #252525;
}

.product-grid-item .product-image,
.product-grid-item .hover-image {
  padding: 5.555%;
  background: #f7f7f7;
}

.product-grid-item .product-image {
  position: relative;
}

.product-grid-item .hover-image {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.product-grid-item .product-text {
  padding: 18px 0 0;
}

.product-grid-item .vendor {
  margin: 0 0 3px;
  font-size: 11px;
  color: var(--color-primary);
}

.product-grid-item .title {
  margin-bottom: 8px;
}

.product-grid-item.price-hidden .title {
  margin-bottom: 0;
}

.product-grid-item .price {
  margin: 0;
}

.product-grid-item .price s {
  color: #d71b1b;
}

.product-grid-item .price.is-indicative {
  font-style: italic;
}

.product-grid-item img {
  width: 100%;
}

@media only screen and (min-width: 750px) {
  .product-grid-item .product-image,
  .product-grid-item .hover-image {
    padding: 4.451%;
  }
  .product-grid-item .title {
    margin-bottom: 26px;
  }
}

@media only screen and (min-width: 990px) {
  .product-grid-item a:hover .hover-image {
    opacity: 1;
  }
  .product-grid-item .hover-image {
    display: block;
  }
}

/*================ Collection Landing Page ================*/
.template-landing .main-feature h1::before {
  bottom: -10px;
}

@media only screen and (min-width: 750px) {
  .template-landing .main-feature h1::before {
    bottom: -12px;
  }
}

.template-landing .featured-collections {
  margin-top: 0;
  margin-bottom: 0;
}

.template-landing .featured-collections .intro {
  padding-top: 22px;
  border-top: 1px solid #c5c5c5;
}

@media only screen and (min-width: 750px) {
  .template-landing .featured-collections .intro {
    padding-top: 40px;
  }
}

.template-landing .shop-all {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}

.template-landing .shop-all hr {
  margin-top: 0;
  margin-bottom: 40px;
}

@media only screen and (min-width: 750px) {
  .template-landing .shop-all {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .template-landing .shop-all hr {
    margin-bottom: 54px;
  }
}

.landing-categories .wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
}

.landing-categories .grid {
  margin-left: -10px;
}

.landing-categories .grid__item {
  padding-left: 10px;
}

.landing-categories .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
  background: #f7f7f7;
}

.landing-categories a {
  color: #252525;
}

.landing-categories .image {
  width: 27%;
}

.landing-categories img {
  width: 100%;
}

.landing-categories .content {
  width: 73%;
  padding: 10px;
  padding-left: 3.4%;
}

.landing-categories .description {
  display: none;
  margin-bottom: -1.333em;
}

@media only screen and (max-width: 749px) {
  .landing-categories h3 {
    margin: 0;
  }
}

@media only screen and (min-width: 750px) {
  .landing-categories .wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .landing-categories .category {
    margin-bottom: 10px;
  }
  .landing-categories .content {
    width: auto;
    padding: 30px;
  }
  .landing-categories .description {
    display: block;
  }
}

@media only screen and (min-width: 990px) {
  .landing-categories .category {
    display: block;
    margin-bottom: 0;
    background: none;
  }
  .landing-categories .image {
    width: 100%;
    background: #f7f7f7;
  }
  .landing-categories .content {
    padding: 20px 0 0 0;
  }
}

.featured-collections-landing {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.featured-collections-landing .intro {
  padding-top: 22px;
  border-top: 1px solid #c5c5c5;
}

.featured-collections-landing h1 {
  margin-bottom: 22px;
}

.featured-collections-landing .collection-slide {
  display: block;
  text-align: center;
}

.featured-collections-landing .collection-slide .inner {
  position: relative;
}

.featured-collections-landing .collection-slide .call-to-action {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 15px;
}

.featured-collections-landing .collection-slide img {
  width: 100%;
}

@media only screen and (min-width: 750px) and (max-width: 1199px) {
  .featured-collections-landing .collection-slide img {
    height: 275px !important;
  }
}

@media only screen and (min-width: 1200px) {
  .featured-collections-landing .collection-slide img {
    height: 297px !important;
  }
}

@media only screen and (min-width: 1440px) {
  .featured-collections-landing .collection-slide img {
    height: 360px !important;
  }
}

.featured-collections-landing .collection-slide .logo {
  width: auto;
  margin: 0 auto;
}

.featured-collections-landing .collection-slide .btn, .featured-collections-landing .collection-slide #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .featured-collections-landing .collection-slide .bc-sf-filter-load-more-button {
  margin-top: 12px;
  background: #fff;
  color: #252525;
}

.featured-collections-landing .collection-slide .btn:hover, .featured-collections-landing .collection-slide #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .featured-collections-landing .collection-slide .bc-sf-filter-load-more-button:hover, .featured-collections-landing .collection-slide .btn:focus, .featured-collections-landing .collection-slide #bc-sf-filter-load-more .bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .featured-collections-landing .collection-slide .bc-sf-filter-load-more-button:focus {
  background: var(--color-primary);
  color: #fff;
}

.featured-collections-landing .slick-arrow {
  top: -50px;
}

@media only screen and (min-width: 480px) {
  .featured-collections-landing .collection-slide .btn, .featured-collections-landing .collection-slide #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .featured-collections-landing .collection-slide .bc-sf-filter-load-more-button {
    margin-top: 24px;
  }
}

@media only screen and (min-width: 750px) {
  .featured-collections-landing {
    padding-bottom: 40px;
  }
  .featured-collections-landing .intro {
    padding-top: 40px;
  }
  .featured-collections-landing h1 {
    margin-bottom: 20px;
  }
  .featured-collections-landing .collection-slide .call-to-action {
    padding: 30px;
  }
  .featured-collections-landing .collection-slide .btn, .featured-collections-landing .collection-slide #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .featured-collections-landing .collection-slide .bc-sf-filter-load-more-button {
    margin-top: 12px;
  }
  .featured-collections-landing .slick-arrow {
    top: -58px;
  }
}

@media only screen and (min-width: 1200px) {
  .featured-collections-landing .collection-slide .btn, .featured-collections-landing .collection-slide #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .featured-collections-landing .collection-slide .bc-sf-filter-load-more-button {
    margin-top: 24px;
  }
}

.collection-slideshow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 10px;
  padding-right: 10px;
}

.collection-slideshow .slick-list {
  padding-left: 10px;
  padding-right: 10px;
}

.collection-slideshow .slick-track {
  margin-left: 0;
  margin-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.collection-slideshow .collection-slide {
  min-width: 94.34%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
}

.collection-slideshow .collection-slide .inner {
  height: 100%;
}

.collection-slideshow .collection-slide .inner img {
  height: 100%;
}

@media only screen and (min-width: 750px) {
  .collection-slideshow .collection-slide .inner img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media only screen and (min-width: 750px) {
  .collection-slideshow {
    padding-left: 0;
    padding-right: 0;
  }
  .collection-slideshow .slick-list {
    padding-left: 0;
    padding-right: 0;
  }
  .collection-slideshow .collection-slide {
    min-width: 48.544%;
  }
}

@media only screen and (min-width: 990px) {
  .collection-slideshow {
    margin-left: -10px;
  }
  .collection-slideshow .collection-slide {
    min-width: 33.33%;
    padding-left: 10px;
  }
}

.collection-slideshow.slick-initialized {
  display: block;
  padding-left: 0;
  padding-right: 0;
}

.collection-slideshow.slick-initialized .collection-slide {
  min-width: 0;
}

.brand-newsletter {
  margin: 0 10px 10px;
  background: #f7f7f7;
}

.brand-newsletter .wrapper {
  max-width: 880px;
  padding: 32px 15px 30px;
}

.brand-newsletter h2 {
  color: var(--color-primary);
}

.brand-newsletter .description {
  margin-bottom: 2em;
}

.brand-newsletter .form-success {
  margin-bottom: 0;
}

.brand-newsletter .email-field {
  margin-bottom: 15px;
}

.brand-newsletter input[type=email] {
  background: #fff;
}

.brand-newsletter .contact-form .send {
  margin-top: 15px;
  margin-bottom: 0;
}

@media only screen and (min-width: 750px) {
  .brand-newsletter .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 60px 30px;
  }
  .brand-newsletter .grid-left,
  .brand-newsletter .grid-right {
    width: 50%;
  }
  .brand-newsletter .grid-left {
    padding-right: 15px;
  }
  .brand-newsletter .grid-right {
    padding-left: 15px;
  }
  .brand-newsletter h2 {
    margin-bottom: 0.5em;
  }
  .brand-newsletter .description {
    margin-bottom: 0;
  }
  .brand-newsletter .email-field {
    margin-bottom: 20px;
  }
  .brand-newsletter .checkbox-row {
    margin-bottom: 5px;
  }
  .brand-newsletter .contact-form .send {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 990px) {
  .brand-newsletter .grid-left {
    padding-right: 30px;
  }
  .brand-newsletter .grid-right {
    padding-left: 30px;
  }
}

/*================ Product ================*/
.template-product .main-content .main-wrapper {
  padding-top: 15px;
}

.template-product .title-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12px;
}

.template-product .title-price .vendor {
  margin-bottom: 0.83333em;
  color: var(--color-primary);
}

.template-product .title-price .vendor a {
  display: block;
  color: var(--color-primary);
}

.template-product .title-price .title {
  padding-right: 10px;
  max-width: 70vw;
}

.template-product .title-price.price-hidden .title {
  padding-right: 0;
}

.template-product .title-price h1 {
  margin: 0;
}

.template-product .title-price .price {
  margin-bottom: 0.14286em;
  padding-left: 10px;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  max-width: 30vw;
}

.template-product .title-price .price .disclaimer {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0;
  color: #999;
}

.template-product.template-bullion .title-price .price .disclaimer {
  white-space: nowrap;
}

.template-product .price s {
  color: #c5c5c5;
}

.template-product .spr-container {
  padding: 15px 0 7px;
  border: 0;
  border-top: 1px solid #f3f3f3;
}

@media only screen and (min-width: 750px) {
  .template-product .spr-container {
    padding-bottom: 0;
  }
}

.template-product .spr-container .spr-header-title {
  display: none;
}

.template-product .spr-summary {
  text-align: left;
}

.template-product .spr-summary a {
  color: var(--color-primary);
}

.template-product .spr-summary-actions-togglereviews {
  position: relative;
  padding-right: 18px;
}

.template-product .spr-summary-actions-togglereviews::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 7px;
  height: 5px;
  margin-top: -2.5px;
  background: var(--svg-select-icon-primary) no-repeat;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.template-product .spr-summary-actions-togglereviews.active::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.template-product .spr-summary-caption {
  display: none;
}

.template-product .spr-starrating + .spr-summary-caption {
  display: inline;
}

.template-product .spr-starrating + .spr-summary-caption + .spr-summary-actions {
  display: none;
}

.template-product .spr-starrating + .spr-summary-caption + .spr-summary-actions.shown {
  display: block;
}

.template-product .spr-starrating + .spr-summary-caption + .spr-summary-actions .spr-summary-actions-newreview {
  display: block;
  margin-top: 30px;
  padding: 6px;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.template-product .spr-starrating + .spr-summary-caption + .spr-summary-actions .spr-summary-actions-newreview::after {
  content: normal;
}

.template-product .spr-starrating + .spr-summary-caption + .spr-summary-actions .spr-summary-actions-newreview:hover, .template-product .spr-starrating + .spr-summary-caption + .spr-summary-actions .spr-summary-actions-newreview:focus {
  background: var(--color-primary);
  color: #fff;
}

@media only screen and (min-width: 750px) {
  .template-product .spr-starrating + .spr-summary-caption + .spr-summary-actions .spr-summary-actions-newreview {
    display: inline-block;
    margin-top: 16px;
    padding: 5px 29px;
  }
}

.template-product .spr-starrating,
.template-product .spr-starratings {
  font-size: 12px;
}

.template-product .spr-icon {
  display: inline-block;
  margin-left: 0.15em;
}

.template-product .spr-icon:first-child {
  margin-left: 0;
}

.template-product .spr-review-header-title {
  font-family: proxima-nova, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}

.template-product .spr-review-header-byline {
  font-family: proxima-nova, sans-serif;
  font-size: 12px;
}

.template-product .spr-review-content-body {
  font-family: proxima-nova, sans-serif;
  line-height: 1.3;
}

@media only screen and (min-width: 750px) {
  .template-product .spr-review-content-body {
    line-height: 1.5;
  }
}

.template-product .spr-summary-actions-newreview {
  position: relative;
  float: none;
  display: inline-block;
  padding-right: 18px;
}

.template-product .spr-summary-actions-newreview::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 7px;
  height: 5px;
  margin-top: -2.5px;
  background: var(--svg-select-icon-primary) no-repeat;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.template-product .spr-form {
  margin-bottom: 24px;
  padding: 15px;
  border-top: 0;
  background: #f7f7f7;
}

@media only screen and (min-width: 750px) {
  .template-product .spr-form {
    padding: 30px;
  }
}

.template-product .spr-form-title {
  margin-bottom: 12px;
}

@media only screen and (min-width: 750px) {
  .template-product .spr-form-title {
    margin-bottom: 20px;
  }
}

.template-product .spr-form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
}

.template-product .spr-form-input {
  background: #fff;
}

.template-product .spr-button {
  float: none;
  display: block;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.template-product .spr-review-reportreview {
  font-size: 10px;
  line-height: 1.3;
  color: #999;
}

.template-product .spr-pagination {
  border-top: 1px solid #f3f3f3;
}

.template-product .spr-pagination-page.is-active {
  font-weight: 400;
  border-bottom: 1px solid;
}

.template-product .product-images .product-image {
  position: relative;
  margin-left: -10px;
  margin-right: -10px;
  background: #f7f7f7;
}

.template-product .product-images .label {
  padding: 7px 25px;
  font-size: 12px;
  line-height: 1.3;
}

.template-product .product-images .image-outer {
  padding: 7.467%;
}

.template-product .product-images img {
  width: 100%;
  max-width: 465px;
  margin: 0 auto;
}

.template-product .product-images .drift-zoom-pane.drift-open {
  position: absolute;
  z-index: 11;
  left: 100%;
  top: 0;
  width: 509px;
  height: 500px;
  background: #fff;
}

@media (max-width: 1380px) {
  .template-product .product-images .drift-zoom-pane.drift-open {
    width: 35vw;
  }
}

@media (max-width: 1199px) {
  .template-product .product-images .drift-zoom-pane.drift-open {
    width: 38.4vw;
  }
}

@media (max-width: 989px) {
  .template-product .product-images .drift-zoom-pane.drift-open {
    width: 43.67vw;
  }
}

.template-product .product-images .js-zoom-output img {
  max-width: none;
}

.template-product .product-images img[data-zoom] {
  position: relative;
}

.template-product .product-images img[data-zoom]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
}

@media only screen and (min-width: 870px) {
  .template-product .product-images img[data-zoom]:before {
    display: none;
  }
}

.template-product .product-images .slick-arrow {
  width: 40px;
  height: 40px;
  margin-top: -20px;
}



/*
.template-product .product-video {
  display: none;
}

.template-product .video-shown .product-video {
  display: block;
}
.template-product .video-shown .product-image-slideshow,
.template-product .video-shown .product-image-single {
  display: none;
}*/

.template-product .product-slider-nav {
  margin: 22px -7.5px 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.template-product .product-slider-nav li {
  display: block;
  max-width: 60px;
  padding: 0 7.5px;
  opacity: 0.2;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
}

.template-product .product-slider-nav li.active {
  opacity: 1;
}

.template-product .play-video,
.template-product .stop-video,
.template-product .zoom-image {
  position: absolute;
  bottom: 10px;
  z-index: 110;
  display: block;
  width: 40px;
  height: 40px;
  background: #dfd0b2;
  border-radius: 50%;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.template-product .play-video .icon,
.template-product .stop-video .icon,
.template-product .zoom-image .icon {
  display: block;
  width: 100%;
  height: 100%;
}

.template-product .play-video,
.template-product .stop-video {
  right: 10px;
  display: none;
}

.template-product .play-video.shown,
.template-product .stop-video.shown {
  display: block;
}

.template-product .zoom-image {
  left: 10px;
}

.template-product .product-details {
  margin-top: 22px;
}

.template-product .product-details .rte__table-wrapper {
  margin-bottom: 0;
}

.template-product .product-details .help-block .action-links,
.template-product .product-details .help-block .current-time {
  margin-left: 0;
  margin-right: 0;
}

.template-product .product-details .help-block .action-links {
  border-bottom-color: #f3f3f3;
}

.template-product .product-details .help-block .action-links a {
  padding-top: 10px;
  padding-bottom: 20px;
}

.template-product .product-details .help-block .action-links .icon-phone {
  width: 25px;
  height: 25px;
}

.template-product .product-details .help-block .action-links .icon-email {
  width: 25px;
  height: 19px;
}

.template-product .product-details .help-block .current-time {
  padding-bottom: 0;
  border-bottom: 0;
}

.template-product .product-details .help-block a {
  color: #252525;
  border-bottom: 0;
}

.template-product .enquire-button {
  padding: 34px 0;
  border-top: 1px solid #f3f3f3;
}

.template-product .add-to-cart-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0 34px;
  border-top: 1px solid #f3f3f3;
}

.template-product .add-to-cart-form label {
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 500;
}

.template-product .product-form-left {
  padding-right: 22px;
}

.template-product .product-form-right {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.template-product .product-form-right.no-selects {
  padding-top: 20px;
}

.template-product .js-qty {
  width: 116px;
}

.template-product .js-qty input[type="text"] {
  padding: 9px 43px 8px;
  font-size: 18px;
  color: var(--color-primary);
}

.template-product .js-qty__adjust {
  width: 35px;
  height: 35px;
  border-color: var(--color-primary);
}

.template-product .js-qty__adjust:hover, .template-product .js-qty__adjust:focus, .template-product .js-qty__adjust:active {
  border-color: var(--color-primary);
}

.template-product .js-qty__adjust:hover::before, .template-product .js-qty__adjust:hover::after, .template-product .js-qty__adjust:focus::before, .template-product .js-qty__adjust:focus::after, .template-product .js-qty__adjust:active::before, .template-product .js-qty__adjust:active::after {
  background: var(--color-primary);
}

.template-product .js-qty__adjust::before, .template-product .js-qty__adjust::after {
  background: var(--color-primary);
}

.template-product .js-qty__adjust::before {
  width: 10px;
  margin-left: -5px;
}

.template-product .js-qty__adjust--plus::after {
  height: 10px;
  margin-top: -5px;
}

.template-product .selector-wrapper {
  margin-bottom: 10px;
}

.template-product .btn-buy-now {
  margin-top: 10px;
}

.template-product .tabs {
  border-top: 1px solid #f3f3f3;
}

.template-product .specs {
  border: 0;
}

.template-product .specs tr:first-child th,
.template-product .specs tr:first-child td {
  padding-top: 0;
  border-top: 0;
}

.template-product .specs tr:last-child th,
.template-product .specs tr:last-child td {
  padding-bottom: 0;
  border-bottom: 0;
}

.template-product .specs th {
  width: 45%;
  font-weight: 400;
}

.template-product .specs td {
  width: 55%;
}

.template-product .specs a {
  border: 0;
  color: #252525;
}

.template-product .specs a:hover, .template-product .specs a:focus {
  color: var(--color-primary);
}

.template-product .value-props {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px -5px 0;
  padding-top: 21px;
}

.template-product .value-props::after {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  right: 5px;
  display: block;
  height: 1px;
  background: #f3f3f3;
}

.template-product .value-prop {
  max-width: 90px;
  margin: 0 5px;
}

.template-product .value-prop svg {
  display: block;
  width: 100%;
}

.template-product .related-products {
  margin-top: 10px;
}

@media only screen and (min-width: 480px) {
  .template-product .product-slider-nav {
    margin: 35px -10px 0;
  }
  .template-product .product-slider-nav li {
    max-width: 100px;
    padding: 0 10px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 869px) {
  .template-product .value-props {
    margin-left: -10px;
    margin-right: -10px;
  }
  .template-product .value-props::after {
    left: 10px;
    right: 10px;
  }
  .template-product .value-prop {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media only screen and (min-width: 1200px) {
  .template-product .value-props {
    margin-left: -10px;
    margin-right: -10px;
  }
  .template-product .value-props::after {
    left: 10px;
    right: 10px;
  }
  .template-product .value-prop {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media only screen and (min-width: 480px) {
  .template-product .product-form-left {
    width: 40%;
  }
  .template-product .product-form-right {
    width: 60%;
  }
}

@media only screen and (min-width: 750px) {
  .template-product .main-content .main-wrapper {
    padding-top: 30px;
  }
  .template-product .title-price {
    margin-bottom: 22px;
  }
  .template-product .title-price .price {
    margin-bottom: 0.375em;
    font-size: 16px;
  }
  .template-product .title-price .price .disclaimer {
    margin-bottom: 4px;
  }
  .template-product .product-images .product-image {
    margin-left: -30px;
    margin-right: -30px;
  }
  .template-product .product-images .slick-arrow {
    width: 60px;
    height: 60px;
    margin-top: -30px;
  }
  .template-product .play-video,
  .template-product .stop-video,
  .template-product .zoom-image {
    bottom: 20px;
  }
  .template-product .play-video,
  .template-product .stop-video {
    right: 20px;
  }
  .template-product .zoom-image {
    left: 20px;
  }
  .template-product .product-details .help-block .current-time {
    margin-bottom: -8px;
  }
  .template-product .tabs {
    padding-top: 10px;
  }
  .template-product .product-form-left {
    width: 50%;
    padding-right: 30px;
  }
  .template-product .product-form-right {
    width: 50%;
  }
  .template-product .specs th {
    width: 31%;
  }
  .template-product .specs td {
    width: 69%;
  }
  .template-product .value-props {
    margin-top: 30px;
    padding-top: 31px;
  }
}

@media only screen and (min-width: 870px) {
  .template-product .breadcrumbs {
    margin-top: 20px;
    margin-bottom: 24px;
  }
  .template-product .title-price {
    margin-bottom: 14px;
  }
  .template-product .title-price .vendor {
    margin-bottom: 0.5em;
  }
  .template-product .product-images {
    width: 55%;
  }
  .template-product .product-images .label {
    top: 15px;
    right: 0;
    left: auto;
  }
  .template-product .product-images .product-image {
    margin-left: 0;
    margin-right: 0;
  }
  .template-product .product-images .product-image .image-outer {
    padding: 7.931%;
  }
  .template-product .product-slider-nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .template-product .product-details {
    width: 45%;
    margin-top: 0;
  }
  .template-product .related-products {
    margin-top: 120px;
  }
}

@media only screen and (min-width: 990px) {
  .template-product .product-images {
    width: 60%;
  }
  .template-product .product-details {
    width: 40%;
  }
  .template-product .product-form-left,
  .template-product .product-form-right {
    width: auto;
  }
}

@media only screen and (min-width: 1200px) {
  .template-product .product-images {
    width: 63.83%;
  }
  .template-product .product-details {
    width: 36.17%;
  }
  .template-product .js-qty {
    width: 140px;
  }
}

.product-single__media {
  margin: 0 auto;
  min-height: 1px;
  width: 100%;
  height: 100%;
  position: relative;
}

.product-single__media iframe,
.product-single__media model-viewer,
.product-single__media .shopify-model-viewer-ui,
.product-single__media img,
.product-single__media > video,
.product-single__media .plyr,
.product-single__media .media-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
}

.product-single__media iframe,
.product-single__media .media-video,
.product-single__media model-viewer,
.product-single__media .shopify-model-viewer-ui,
.product-single__media .media-item,
.product-single__media .plyr,
.product-single__media .plyr__video-wrapper {
  height: 100%;
}

.related-products .intro {
  padding-top: 20px;
  border-top: 1px solid #f3f3f3;
}

@media only screen and (min-width: 870px) {
  .related-products .intro {
    padding-top: 30px;
  }
}

.related-products h1 {
  margin-bottom: 20px;
}

@media only screen and (min-width: 750px) {
  .related-products h1 {
    font-size: 14px;
  }
}

@media only screen and (min-width: 870px) {
  .related-products h1 {
    margin-bottom: 30px;
    line-height: 30px;
  }
}

@media only screen and (min-width: 1200px) {
  .related-products h1 {
    font-size: 16px;
  }
}

.related-products .nav {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 870px) {
  .related-products .nav a.active {
    font-weight: 500;
  }
}

.related-products .slick-prev {
  right: 45px;
}

@media only screen and (min-width: 750px) {
  .related-products .slick-prev {
    right: 35px;
  }
}

@media only screen and (min-width: 870px) {
  .related-products .slick-prev {
    right: 40px;
  }
}

@media only screen and (max-width: 869px) {
  .related-products .nav {
    margin-right: 80px;
    margin-bottom: 15px;
  }
  .related-products .slick-arrow {
    top: -45px;
  }
}

/*================ Cart ================*/
.template-cart .cart-title h6,
.template-cart .mini-cart-title h6,
.mini-cart .cart-title h6,
.mini-cart .mini-cart-title h6 {
  margin: 0.5em 0 0;
  color: var(--color-primary);
}

.template-cart .cart-title .icon,
.template-cart .cart-title .text,
.template-cart .mini-cart-title .icon,
.template-cart .mini-cart-title .text,
.mini-cart .cart-title .icon,
.mini-cart .cart-title .text,
.mini-cart .mini-cart-title .icon,
.mini-cart .mini-cart-title .text {
  display: inline-block;
  vertical-align: middle;
}

.template-cart .cart-title .icon,
.template-cart .mini-cart-title .icon,
.mini-cart .cart-title .icon,
.mini-cart .mini-cart-title .icon {
  margin-right: 10px;
}

.template-cart .subtotal,
.mini-cart .subtotal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.template-cart .cart-loyalty,
.mini-cart .cart-loyalty {
  margin-bottom: 20px;
  padding: 16px 0;
  background: rgba(236, 221, 195, 0.6);
  font-size: 14px;
  color: #252525;
  text-align: center;
}

@media only screen and (max-width: 749px) {
  .template-cart .cart-loyalty,
  .mini-cart .cart-loyalty {
    font-size: 12px;
  }
}

.template-cart .cart-loyalty a,
.mini-cart .cart-loyalty a {
  font-weight: 600;
  text-decoration: underline;
}

.template-cart .cart-loyalty a:hover,
.mini-cart .cart-loyalty a:hover {
  color: #b69f75;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.template-cart .account__view {
  width: 100%;
}

.template-cart .account {
  padding: 0;
}

.mini-cart .cart-loyalty {
  margin-top: 20px;
  background: none;
  color: #fff;
}

.mini-cart .cart-loyalty a {
  text-decoration: underline;
  font-weight: bold;
}

.mini-cart .cart-loyalty a:hover {
  color: #b69f75;
}

.template-cart .account__view {
  flex-direction: column;
}

.template-cart .main-content {
  padding: 0;
}

.template-cart .account {
  padding-left: 0;
}

.template-cart .main-content .payment-icons {
  margin-top: 20px;
}

.template-cart .main-content .payment-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.template-cart .main-content .payment-icons li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 16px;
}

.template-cart .main-content .payment-icons li:first-child {
  margin-left: 0;
}

.template-cart .main-content .icon-secure-full-color {
  width: 22px;
  height: 25px;
}

.template-cart .main-content .icon-shopify_pay-full-color {
  width: 42px;
  height: 14px;
}

.template-cart .main-content .icon-paypal-full-color {
  width: 43px;
  height: 13px;
}

.template-cart .main-content .icon-visa-full-color {
  width: 32px;
  height: 11px;
}

.template-cart .main-content .icon-master-full-color {
  width: 24px;
  height: 16px;
}

.template-cart .cart-title {
  margin-bottom: 1.83333em;
}

.template-cart .cart-title h1 {
  margin: 0;
}

.template-cart .actions {
  padding-top: 20px;
}

.template-cart .subtotal {
  margin-bottom: 22px;
}

.template-cart .gift-wrapping {
  border-bottom: 1px solid #d3d3d3;
  font-size: 12px;
  line-height: 1.2;
}

.template-cart .gift-wrapping a {
  display: block;
  padding: 20px 0;
}

.template-cart .gift-wrapping a.is-added, .template-cart .gift-wrapping a:hover, .template-cart .gift-wrapping a:focus {
  color: var(--color-primary);
}

.template-cart .gift-wrapping a.is-added .icon .bg, .template-cart .gift-wrapping a:hover .icon .bg, .template-cart .gift-wrapping a:focus .icon .bg {
  fill: var(--color-primary);
}

.template-cart .gift-wrapping a.is-added .icon .shadow, .template-cart .gift-wrapping a:hover .icon .shadow, .template-cart .gift-wrapping a:focus .icon .shadow {
  fill: #ae9a73;
}

.template-cart .gift-wrapping a.is-added .icon .ribbon, .template-cart .gift-wrapping a:hover .icon .ribbon, .template-cart .gift-wrapping a:focus .icon .ribbon {
  fill: #dfd0b2;
}

.template-cart .gift-wrapping a.is-added .icon .ribbon-shadow, .template-cart .gift-wrapping a:hover .icon .ribbon-shadow, .template-cart .gift-wrapping a:focus .icon .ribbon-shadow {
  fill: var(--color-primary);
}

.template-cart .gift-wrapping a.is-added p, .template-cart .gift-wrapping a:hover p, .template-cart .gift-wrapping a:focus p {
  color: #dfd0b2;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.template-cart .gift-wrapping a.disabled {
  opacity: 0.5;
}

.template-cart .gift-wrapping p {
  margin: 0;
  color: #999;
}

.template-cart .gift-wrapping .icon,
.template-cart .gift-wrapping .text {
  display: inline-block;
  vertical-align: middle;
}

.template-cart .gift-wrapping .icon {
  width: 60px;
  height: 60px;
}

.template-cart .gift-wrapping .text {
  width: calc(100% - 75px);
  margin-left: 15px;
}

.template-cart .cart-note {
  margin-bottom: 20px;
}

.template-cart .cart-sidebar {
  margin-top: 20px;
  padding: 20px 15px;
  background: #f7f7f7;
}

.template-cart .cart-sidebar .accordion {
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}

.template-cart .cart-sidebar .accordion + .accordion {
  border-top: 0;
}

.template-cart .cart-sidebar .accordion-toggle {
  margin: 0;
  padding: 12px 0;
  font-size: 11px;
}

.template-cart .cart-sidebar .toggle-icon {
  right: 0;
}

.template-cart .related-products {
  margin-top: 0;
}

@media only screen and (min-width: 750px) {
  .template-cart .main-content .wrapper {
    padding-top: 58px;
    padding-bottom: 114px;
  }
  .template-cart .cart-title {
    margin-bottom: 2.28571em;
  }
  .template-cart .actions {
    padding-top: 30px;
  }
  .template-cart .subtotal {
    margin-bottom: 30px;
  }
  .template-cart .related-products .wrapper {
    padding: 0;
  }
}

@media only screen and (min-width: 870px) {
  .template-cart .cart-main {
    float: left;
    width: calc(100% - 320px);
  }
  .template-cart .actions {
    float: right;
    width: 50%;
    max-width: 380px;
    padding-left: 30px;
  }
  .template-cart .gift-wrapping {
    float: left;
    width: 50%;
    max-width: 385px;
    padding-right: 30px;
    border-bottom: 0;
  }
  .template-cart .gift-wrapping a {
    padding: 30px 0;
  }
  .template-cart .cart-sidebar {
    float: right;
    width: 290px;
    margin: 0;
  }
}

.cart-table {
  width: 100%;
  border-bottom: 1px solid #d3d3d3;
}

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

.cart-table td {
  border-top: 1px solid #d3d3d3;
  padding: 20px 10px;
}

.cart-table td:first-child {
  padding-left: 0;
  text-align: left;
}

.cart-table td:last-child {
  padding-right: 0;
  text-align: right;
}

.cart-table .col-image {
  width: 100px;
}

.cart-table .col-image a {
  display: block;
}

.cart-table .col-image img {
  width: 100%;
}

.cart-table .col-description a {
  display: block;
  color: #252525;
}

.cart-table .vendor {
  margin: 0;
  font-size: 11px;
  color: var(--color-primary);
}

.cart-table .title,
.cart-table .product-info {
  margin: 0.33333em 0 0;
}

.cart-table .product-info {
  color: #999;
}

.cart-table .col-total {
  color: var(--color-primary);
}

@media only screen and (max-width: 479px) {
  .cart-table tr {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    border-top: 1px solid #d3d3d3;
  }
  .cart-table tr .col-image,
  .cart-table tr .col-description,
  .cart-table tr .col-qty,
  .cart-table tr .col-total,
  .cart-table tr .col-remove {
    border-top: 0;
  }
  .cart-table tr .col-image {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .cart-table tr .col-description {
    width: calc(100% - 100px);
    padding-bottom: 52px;
  }
  .cart-table tr .col-qty,
  .cart-table tr .col-total {
    position: absolute;
    bottom: 10px;
    display: block;
    padding-bottom: 0;
  }
  .cart-table tr .col-qty {
    left: 100px;
  }
  .cart-table tr .col-total {
    right: 0;
  }
}

@media only screen and (min-width: 480px) {
  .cart-table .col-qty .ajaxcart__qty {
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (min-width: 750px) {
  .cart-table td {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .cart-table .col-image {
    width: 130px;
  }
  .cart-table .title,
  .cart-table .product-info {
    margin-top: 0.14286em;
  }
}

.ajaxcart__row {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.ajaxcart__row.is-removed {
  opacity: 0;
}

.js-qty,
.ajaxcart__qty {
  position: relative;
  width: 68px;
}

.js-qty input[type=text],
.ajaxcart__qty input[type=text] {
  display: block;
  background: none;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 4px 25px 5px;
  border-radius: 0;
  font-size: 14px;
  line-height: 1;
}

.js-qty__adjust,
.ajaxcart__qty-adjust,
.ajaxcart__remove {
  position: relative;
  overflow: hidden;
  display: block;
  width: 23px;
  height: 23px;
  margin: 0;
  padding: 0;
  border: 1px solid #252525;
  border-radius: 50%;
  background: none;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  outline: none;
}

.js-qty__adjust:hover, .js-qty__adjust:focus, .js-qty__adjust:active,
.ajaxcart__qty-adjust:hover,
.ajaxcart__qty-adjust:focus,
.ajaxcart__qty-adjust:active,
.ajaxcart__remove:hover,
.ajaxcart__remove:focus,
.ajaxcart__remove:active {
  border-color: #666;
}

.js-qty__adjust:hover::before, .js-qty__adjust:hover::after, .js-qty__adjust:focus::before, .js-qty__adjust:focus::after, .js-qty__adjust:active::before, .js-qty__adjust:active::after,
.ajaxcart__qty-adjust:hover::before,
.ajaxcart__qty-adjust:hover::after,
.ajaxcart__qty-adjust:focus::before,
.ajaxcart__qty-adjust:focus::after,
.ajaxcart__qty-adjust:active::before,
.ajaxcart__qty-adjust:active::after,
.ajaxcart__remove:hover::before,
.ajaxcart__remove:hover::after,
.ajaxcart__remove:focus::before,
.ajaxcart__remove:focus::after,
.ajaxcart__remove:active::before,
.ajaxcart__remove:active::after {
  background: #666;
}

.js-qty__adjust::before,
.ajaxcart__qty-adjust::before,
.ajaxcart__remove::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 5px;
  height: 1px;
  margin: -0.5px 0 0 -2.5px;
  background: #252525;
  content: '';
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.ajaxcart__remove {
  border: 0;
}

.ajaxcart__remove::before, .ajaxcart__remove::after {
  width: 10px !important;
  height: 1px !important;
  margin: 0 !important;
}

.ajaxcart__remove::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg) !important;
          transform: translate(-50%, -50%) rotate(45deg) !important;
}

.ajaxcart__remove::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg) !important;
          transform: translate(-50%, -50%) rotate(-45deg) !important;
}

.js-qty__adjust--plus,
.ajaxcart__qty--plus {
  right: 0;
}

.js-qty__adjust--plus::after,
.ajaxcart__qty--plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1px;
  height: 5px;
  margin: -2.5px 0 0 -0.5px;
  background: #252525;
  content: '';
}

.ajaxcart__remove::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1px;
  height: 5px;
  margin: -2.5px 0 0 -0.5px;
  background: #252525;
  content: '';
}

.ajaxcart__remove::before, .ajaxcart__remove::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.js-qty__adjust--minus,
.ajaxcart__qty--minus {
  left: 0;
}

.is-loading .ajaxcart__qty {
  opacity: 0.5;
}

.mini-cart {
  position: fixed;
  top: 0;
  right: -93.333%;
  z-index: 260;
  width: 93.333%;
  height: 100%;
  padding: 20px 15px;
  background: #252525;
  color: #fff;
  overflow: auto;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.mini-cart-shown .mini-cart {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.no-csstransforms3d .mini-cart {
  -webkit-transition: right 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transition: right 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.no-csstransforms3d.mini-cart-shown .mini-cart {
  right: 0%;
  -webkit-transform: none;
  transform: none;
}

.mini-cart a {
  color: #fff;
}

.mini-cart .mini-cart-title {
  height: 65px;
  border-bottom: 1px solid #666;
}

.mini-cart .empty-cart .mini-cart-title {
  margin-bottom: 1.333em;
}

.mini-cart .inner {
  height: 100%;
  margin-bottom: -1px;
  -webkit-overflow-scrolling: touch;
}

.mini-cart .cart-table {
  border-bottom-color: #666;
}

.mini-cart .cart-table tr {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-top: 1px solid #666;
}

.mini-cart .cart-table tr:first-child {
  border-top: 0;
}

.mini-cart .cart-table .col-image,
.mini-cart .cart-table .col-description,
.mini-cart .cart-table .col-qty,
.mini-cart .cart-table .col-total {
  border-top: 0;
}

.mini-cart .cart-table .col-remove {
  padding: 0;
  border: 0;
}

.mini-cart .cart-table .col-image {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.mini-cart .cart-table .col-image {
  width: 100px;
}

.mini-cart .cart-table .col-description {
  width: calc(100% - 100px);
  padding-bottom: 60px;
}

.mini-cart .cart-table .col-description a {
  color: #fff;
}

.mini-cart .cart-table .col-qty,
.mini-cart .cart-table .col-total {
  position: absolute;
  bottom: 10px;
  display: block;
  padding-bottom: 0;
}

.mini-cart .cart-table .col-qty {
  left: 100px;
}

.mini-cart .cart-table .col-total {
  right: 0;
}

.mini-cart .ajaxcart__remove {
  position: absolute;
  top: 10px;
  right: 0;
}

.mini-cart .ajaxcart__qty-adjust,
.mini-cart .ajaxcart__remove {
  border-color: #fff;
}

.mini-cart .ajaxcart__qty-adjust::before,
.mini-cart .ajaxcart__qty--plus::after,
.mini-cart .ajaxcart__remove::before,
.mini-cart .ajaxcart__remove::after {
  background: #fff;
}

.mini-cart .ajaxcart__qty input[type="text"] {
  color: #fff;
}

.mini-cart .actions {
  border-top: 1px solid #666;
}

.mini-cart .subtotal {
  padding: 1em 0;
}

.mini-cart .view-cart {
  display: block;
  padding: 1.33333em 0;
  text-align: right;
}

@media only screen and (min-width: 375px) {
  .mini-cart {
    right: -350px;
    width: 350px;
  }
}

@media only screen and (min-width: 750px) {
  .mini-cart {
    right: -410px;
    width: 410px;
    padding: 30px;
  }
  .mini-cart .mini-cart-title {
    height: 75px;
  }
  .mini-cart .cart-table .col-image {
    width: 130px;
  }
  .mini-cart .cart-table .col-description {
    width: calc(100% - 130px);
    padding-bottom: 62px;
  }
  .mini-cart .cart-table .col-qty {
    left: 130px;
  }
}

/*================ Misc CMS Pages ================*/
.page-bullion-investing .main-content,
.page-why-buy-collectible-coins .main-content {
  padding: 0;
}

.template-404 .main-content {
  text-align: center;
}

.template-banner .main-content,
.template-contact .main-content {
  padding-left: 0;
  padding-top: 0;
  padding-right: 0;
}

.template-banner .main-content .wrapper,
.template-contact .main-content .wrapper {
  max-width: 860px;
}

.banner {
  background: #f7f7f7;
  font-size: 14px;
  text-align: center;
}

.template-bullion .banner {
  background: #252525;
  color: #fff;
}

.template-bullion .banner h1 {
  color: var(--color-primary);
}

.banner .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 34px 10px 12px;
}

.banner .inner h1.with-border {
  margin-bottom: 1em;
}

@media only screen and (min-width: 750px) {
  .banner {
    font-size: 18px;
  }
  .banner .inner {
    padding: 60px 30px 36px;
  }
  .banner .inner h1.with-border {
    margin-bottom: 1.25714em;
  }
}

ul.tab-nav {
  margin: 0 -10px;
  padding: 12px 0 10px;
  list-style: none;
}

ul.tab-nav li {
  display: inline-block;
  vertical-align: top;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d3d3d3;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

ul.tab-nav li.active {
  color: #252525;
}

@media only screen and (min-width: 1200px) {
  ul.tab-nav {
    margin-left: -14px;
    margin-right: -14px;
  }
  ul.tab-nav li {
    padding-left: 14px;
    padding-right: 14px;
  }
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.delivery-table th:last-child,
.delivery-table td:last-child {
  width: 46%;
}

.delivery-table th small {
  display: block;
  padding-bottom: 0.25em;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0;
}

@media only screen and (min-width: 750px) {
  .delivery-table th small {
    font-size: 12px;
  }
}

.delivery-table td small {
  display: block;
  font-size: 8px;
  line-height: 1.2;
  padding-bottom: 0.25em;
}

@media only screen and (min-width: 750px) {
  .delivery-table td small {
    font-size: 12px;
  }
}

.contact-cta {
  max-width: 820px;
  margin: 0 auto;
}

.contact-cta p {
  font-size: 14px;
}

@media only screen and (min-width: 870px) {
  .contact-cta p {
    font-size: 18px;
  }
}

.contact-cta {
  padding-top: 30px;
}

@media only screen and (min-width: 870px) {
  .contact-cta {
    padding-top: 60px;
  }
}

.contact-cta {
  padding: 0 10px 60px 10px;
}

@media only screen and (min-width: 870px) {
  .contact-cta {
    padding: 0 0 60px 0;
  }
}

.template-why-buy-collectible-coins .main-content {
  padding-bottom: 60px;
}

@media only screen and (min-width: 750px) {
  .template-why-buy-collectible-coins .main-content {
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 749px) {
  .template-about .main-content .wrapper,
  .template-why-buy-collectible-coins .main-content .wrapper {
    padding: 0 0 30px 0;
  }
}

.template-about .main-content h1.with-border,
.template-why-buy-collectible-coins .main-content h1.with-border {
  margin-bottom: 30px;
}

@media only screen and (min-width: 750px) {
  .template-about .main-content h1.with-border,
  .template-why-buy-collectible-coins .main-content h1.with-border {
    margin-bottom: 60px;
  }
}

.template-about .main-content hr,
.template-why-buy-collectible-coins .main-content hr {
  margin: 39px 10px 39px 10px;
}

@media only screen and (min-width: 750px) {
  .template-about .main-content hr,
  .template-why-buy-collectible-coins .main-content hr {
    margin: 59px 0;
  }
}

/*================ About Pages ================*/
.template-about .main-content .wrapper {
  padding-top: 0;
}

.about-intro {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

@media only screen and (min-width: 750px) {
  .about-intro {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (min-width: 870px) {
  .about-intro {
    padding-left: 0;
    padding-right: 0;
  }
}

.about-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
}

@media only screen and (max-width: 749px) {
  .about-grid {
    margin: 0;
  }
}

@media only screen and (min-width: 750px) {
  .about-grid .one-whole {
    margin-bottom: 10px;
  }
}

.about-grid img {
  margin: 0 auto;
}

.about-grid .about-grid-icon {
  margin-bottom: 15px;
  margin-top: 0;
}

.about-grid-inner {
  margin: 0;
  padding: 30px 10px;
  height: 100%;
}

@media only screen and (min-width: 750px) {
  .about-grid-inner {
    padding: 60px 30px;
    margin: 0 5px 10px 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .about-grid-inner {
    padding: 60px;
  }
}

.about-grid-inner img {
  margin-top: 30px;
}

@media only screen and (min-width: 750px) {
  .about-grid-inner img {
    margin-top: 45px;
  }
}

.about-grid-inner .btn, .about-grid-inner #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .about-grid-inner .bc-sf-filter-load-more-button {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media only screen and (max-width: 374px) {
  .about-grid-inner .btn, .about-grid-inner #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .about-grid-inner .bc-sf-filter-load-more-button {
    width: 100%;
    max-width: 320px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 750px) and (max-width: 869px) {
  .about-grid-inner .btn, .about-grid-inner #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .about-grid-inner .bc-sf-filter-load-more-button {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.about-grid-inner.color-theme-dark {
  background-color: #3b3b3b;
}

.about-grid-inner.color-theme-dark h2 {
  color: var(--color-primary);
  margin-top: 0;
}

.about-grid-inner.color-theme-dark h2::before {
  border-color: var(--color-primary);
}

.about-grid-inner.color-theme-dark p {
  color: #fff;
}

.about-grid-inner.color-theme-dark .btn, .about-grid-inner.color-theme-dark #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .about-grid-inner.color-theme-dark .bc-sf-filter-load-more-button {
  background: transparent;
}

.about-grid-inner.color-theme-dark .btn:hover, .about-grid-inner.color-theme-dark #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .about-grid-inner.color-theme-dark .bc-sf-filter-load-more-button:hover, .about-grid-inner.color-theme-dark .btn:focus, .about-grid-inner.color-theme-dark #bc-sf-filter-load-more .bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .about-grid-inner.color-theme-dark .bc-sf-filter-load-more-button:focus {
  background: var(--color-primary);
}

.about-grid-inner.color-theme-dark .btn.btn-solid, .about-grid-inner.color-theme-dark #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button, #bc-sf-filter-load-more .about-grid-inner.color-theme-dark .btn-solid.bc-sf-filter-load-more-button {
  background: var(--color-primary);
  color: #fff;
}

.about-grid-inner.color-theme-dark .btn.btn-solid:hover, .about-grid-inner.color-theme-dark #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .about-grid-inner.color-theme-dark .btn-solid.bc-sf-filter-load-more-button:hover, .about-grid-inner.color-theme-dark .btn.btn-solid:focus, .about-grid-inner.color-theme-dark #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .about-grid-inner.color-theme-dark .btn-solid.bc-sf-filter-load-more-button:focus {
  background: transparent;
  color: var(--color-primary);
}

.about-grid-inner.color-theme-light {
  background-color: #f7f7f7;
}

.about-grid-inner.color-theme-light h1, .about-grid-inner.color-theme-light h2 {
  margin-top: 0;
}

.about-grid-inner.color-theme-light h1::before, .about-grid-inner.color-theme-light h2::before {
  border-color: var(--color-primary);
}

.about-grid-inner.color-theme-light .btn, .about-grid-inner.color-theme-light #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .about-grid-inner.color-theme-light .bc-sf-filter-load-more-button {
  background: transparent;
}

.about-grid-inner.color-theme-light .btn:hover, .about-grid-inner.color-theme-light #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .about-grid-inner.color-theme-light .bc-sf-filter-load-more-button:hover, .about-grid-inner.color-theme-light .btn:focus, .about-grid-inner.color-theme-light #bc-sf-filter-load-more .bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .about-grid-inner.color-theme-light .bc-sf-filter-load-more-button:focus {
  background: var(--color-primary);
}

.about-grid-inner.color-theme-light .btn.btn-solid, .about-grid-inner.color-theme-light #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button, #bc-sf-filter-load-more .about-grid-inner.color-theme-light .btn-solid.bc-sf-filter-load-more-button {
  background: var(--color-primary);
  color: #fff;
}

.about-grid-inner.color-theme-light .btn.btn-solid:hover, .about-grid-inner.color-theme-light #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .about-grid-inner.color-theme-light .btn-solid.bc-sf-filter-load-more-button:hover, .about-grid-inner.color-theme-light .btn.btn-solid:focus, .about-grid-inner.color-theme-light #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .about-grid-inner.color-theme-light .btn-solid.bc-sf-filter-load-more-button:focus {
  background: transparent;
  color: var(--color-primary);
}

.about-grid-inner.color-theme-gold {
  background-color: var(--color-primary);
}

.about-grid-inner.color-theme-gold h1, .about-grid-inner.color-theme-gold h2 {
  color: #fff;
  margin-top: 0;
}

.about-grid-inner.color-theme-gold h1::before, .about-grid-inner.color-theme-gold h2::before {
  border-color: #fff;
}

.about-grid-inner.color-theme-gold .btn, .about-grid-inner.color-theme-gold #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .about-grid-inner.color-theme-gold .bc-sf-filter-load-more-button {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
}

.about-grid-inner.color-theme-gold .btn:hover, .about-grid-inner.color-theme-gold #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .about-grid-inner.color-theme-gold .bc-sf-filter-load-more-button:hover, .about-grid-inner.color-theme-gold .btn:focus, .about-grid-inner.color-theme-gold #bc-sf-filter-load-more .bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .about-grid-inner.color-theme-gold .bc-sf-filter-load-more-button:focus {
  background: #fff;
  color: var(--color-primary);
}

.about-grid-inner.color-theme-gold .btn.btn-solid, .about-grid-inner.color-theme-gold #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button, #bc-sf-filter-load-more .about-grid-inner.color-theme-gold .btn-solid.bc-sf-filter-load-more-button {
  background: #fff;
  color: var(--color-primary);
}

.about-grid-inner.color-theme-gold .btn.btn-solid:hover, .about-grid-inner.color-theme-gold #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .about-grid-inner.color-theme-gold .btn-solid.bc-sf-filter-load-more-button:hover, .about-grid-inner.color-theme-gold .btn.btn-solid:focus, .about-grid-inner.color-theme-gold #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .about-grid-inner.color-theme-gold .btn-solid.bc-sf-filter-load-more-button:focus {
  background: transparent;
  color: #fff;
}

.about-icon-block {
  background-color: #fff;
}

.about-icon-block .value-props {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px -5px 30px -5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 750px) {
  .about-icon-block .value-props {
    margin: 30px -15px 60px;
  }
}

.about-icon-block .value-prop {
  max-width: 110px;
  margin: 0 5px;
}

@media only screen and (min-width: 750px) {
  .about-icon-block .value-prop {
    margin: 0 15px;
  }
}

.about-icon-block .value-prop svg {
  display: block;
  width: 100%;
}

.about-contact-block-inner,
.about-google-map {
  margin: 0;
  height: 100%;
}

@media only screen and (min-width: 750px) {
  .about-contact-block-inner,
  .about-google-map {
    margin: 0 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .about-contact-block-inner.xxlarge-up--one-third,
  .about-google-map.xxlarge-up--one-third {
    width: 33.33%;
  }
  .about-contact-block-inner.xxlarge-up--two-thirds,
  .about-google-map.xxlarge-up--two-thirds {
    width: 66.66%;
  }
}

.about-contact-block {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 870px) {
  .about-contact-block {
    margin: 0 -5px 0 -5px;
  }
}

.about-contact-block .google-map {
  height: 220px;
}

@media only screen and (min-width: 750px) {
  .about-contact-block .google-map {
    height: 100%;
  }
}

@media only screen and (min-width: 750px) {
  .about-contact-block-inner {
    background-color: #f7f7f7;
  }
}

.about-contact-block-inner h2.with-border {
  color: var(--color-primary);
  text-align: left;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 30px;
}

@media only screen and (min-width: 750px) {
  .about-contact-block-inner h2.with-border {
    margin-left: 30px;
    margin-right: 30px;
  }
}

.about-contact-block-inner h2.with-border::before {
  left: 0;
  margin-left: 0;
}

.about-contact-block-inner .help-block .action-links,
.about-contact-block-inner .help-block .contact-details,
.about-contact-block-inner .help-block .current-time,
.about-contact-block-inner .help-block .public-holidays {
  border-color: #e9e9e9;
}

.about-contact-block-inner .help-block .public-holidays {
  border-bottom: 0;
  padding-bottom: 30px;
}

.about-video-wrapper {
  position: relative;
  height: 100%;
}

.about-video-wrapper .rte__video-wrapper {
  height: 100%;
}

@media only screen and (min-width: 750px) {
  .about-video-wrapper {
    margin: 0 5px;
  }
}

.about-video .image-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center center;
}

.about-video .image-overlay.hidden {
  opacity: 0;
  z-index: -1;
}

.about-video .image-overlay-play {
  cursor: pointer;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.about-video .image-overlay-play span {
  display: block;
  color: #fff;
  margin-top: 15px;
}

.about-video .image-overlay-play:hover .icon-video-play span {
  color: var(--color-primary);
}

.about-video .image-overlay-play:hover .icon-video-play circle {
  fill: transparent !important;
  stroke: #fff;
}

.about-video .image-overlay-play:hover .icon-video-play g path {
  fill: #fff;
}

.about-video .icon-video-play {
  width: 60px;
  height: 60px;
}

@media only screen and (min-width: 750px) {
  .about-video .icon-video-play {
    width: 80px;
    height: 80px;
  }
}

.about-video .icon-video-play circle {
  -webkit-filter: initial;
          filter: initial;
  fill: #fff !important;
}

.about-video .icon-video-play g path {
  fill: #252525;
}

.about-image-block img {
  width: 100%;
}

@media only screen and (min-width: 750px) {
  .about-image-block {
    margin: 0 5px;
  }
}

.about-image-block.half {
  background-position: center center;
  background-size: cover;
  height: 100%;
}

.about-text-block {
  margin: 0 10px 15px 10px;
}

@media only screen and (min-width: 750px) {
  .about-text-block {
    margin: 0 5px 10px 5px;
  }
}

.about-text-block h2 {
  margin-top: 30px;
  color: var(--color-primary);
}

@media only screen and (min-width: 750px) {
  .about-text-block .about-grid .one-whole .rte {
    margin: 0 5px;
  }
}

.about-cta {
  text-align: center;
  margin-top: 30px;
}

@media only screen and (min-width: 750px) {
  .about-cta {
    margin-top: 60px;
  }
}

.about-cta .btn, .about-cta #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .about-cta .bc-sf-filter-load-more-button {
  display: inline-block;
}

/*================ Storage Options | How To Sell ================*/
.storage-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.storage-item {
  margin: 0 5px 30px 5px;
}

.storage-item img {
  width: 100%;
}

.storage-item h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.storage-item .btn, .storage-item #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .storage-item .bc-sf-filter-load-more-button {
  width: 100%;
}

@media only screen and (min-width: 870px) {
  .storage-item .btn, .storage-item #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .storage-item .bc-sf-filter-load-more-button {
    width: auto;
  }
}

.storage-details {
  margin-bottom: 30px;
}

.storage-details .one-whole {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px 10px -5px;
}

.storage-details .one-half {
  padding: 0 5px;
}

/*================ About Investing (Bullion), How to Buy ================*/
.step-wrapper {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 0 30px 0;
}

@media only screen and (min-width: 870px) {
  .step-wrapper {
    padding: 30px 30px 60px 30px;
  }
}

.step-wrapper h3 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.step-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 870px) {
  .step-blocks {
    margin: 0;
  }
}

@media only screen and (min-width: 990px) {
  .step-blocks {
    -ms-flex-wrap: initial;
        flex-wrap: initial;
  }
}

.step-blocks .slick-track,
.step-blocks .slick-list {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.step-blocks .slick-slide {
  height: auto;
}

.step-blocks .slick-prev, .step-blocks .slick-next {
  background: #fff;
}

.step-blocks .slick-prev {
  left: 5px;
}

.step-blocks .slick-next {
  right: 4px;
}

.step-block-item {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-bottom: 10px;
}

.step-block-item.one-whole {
  margin-top: 10px;
}

.step-block-item.one-whole p {
  font-size: 14px;
  max-width: 820px;
  margin: 0 auto 10px auto;
}

@media only screen and (min-width: 870px) {
  .step-block-item.one-whole p {
    font-size: 18px;
  }
}

.step-block-item.one-whole p:last-child {
  margin-bottom: 0;
}

.step-block-item.one-whole p.disclaimer {
  font-size: 10px;
  opacity: 0.5;
}

@media only screen and (min-width: 870px) {
  .step-block-item.one-whole p.disclaimer {
    font-size: 12px;
  }
}

.step-block-item .number {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 100%;
  line-height: 55px;
  margin: 0 auto;
}

@media only screen and (min-width: 750px) {
  .step-block-item .number {
    width: 60px;
    height: 60px;
    line-height: 65px;
  }
}

.step-block-item h3 {
  margin-top: 20px;
  color: #252525;
  width: 100%;
}

.step-block-item p {
  width: 100%;
}

.step-block-inner {
  background-color: #f7f7f7;
  text-align: center;
  padding: 30px 60px;
  height: 100%;
}

@media only screen and (max-width: 989px) {
  .step-block-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

@media only screen and (min-width: 750px) {
  .step-block-inner {
    margin: 0 5px;
  }
}

@media only screen and (min-width: 870px) {
  .step-block-inner {
    padding: 30px;
  }
}

.one-whole .step-block-inner {
  padding: 30px;
}

/*================ How to Sell ================*/
.template-how-to-sell-bullion .about-grid {
  padding-bottom: 60px;
}

.template-how-to-sell-bullion .about-grid .one-whole {
  margin-bottom: 10px;
}

/*================ Account ================*/
.guest-login {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid #c5c5c5;
}

.guest-login h3 {
  margin-bottom: 26px;
}

@media only screen and (max-width: 749px) {
  .guest-login .btn, .guest-login #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .guest-login .bc-sf-filter-load-more-button {
    display: block;
    width: 100%;
  }
}

@media only screen and (min-width: 750px) {
  .guest-login {
    margin-top: 40px;
    padding-top: 34px;
    padding-bottom: 30px;
  }
  .guest-login h3 {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 749px) {
  .template-reset_password .main-content .send .btn, .template-reset_password .main-content .send #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-reset_password .main-content .send .bc-sf-filter-load-more-button {
    display: block;
    width: 100%;
  }
}

/*================ Customer Related Styles ================*/
.account-mobile-navigation {
  border: 1px solid #e3e5e7;
  position: relative;
  padding: 15px 15px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f7f7f7;
}

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

.account-mobile-navigation.active span:after {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
}

.account-mobile-navigation span {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.29;
  letter-spacing: 0.37px;
  text-align: left;
  color: #252525;
}

.account-mobile-navigation span:after {
  content: '';
  position: absolute;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
  width: 0.6rem;
  height: 0.6rem;
  top: 42%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  -webkit-transition: all .3s;
  transition: all .3s;
  right: 6%;
}

@media only screen and (min-width: 750px) {
  .account-mobile-navigation span:after {
    top: 50%;
  }
}

.account-nav {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

@media only screen and (min-width: 750px) {
  .account-nav {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}

.account-nav.swipeable {
  display: none;
  border: 1px solid #e3e5e7;
  border-top: none;
  padding: 0;
  margin: 0;
}

@media only screen and (min-width: 750px) {
  .account-nav.swipeable {
    padding: 11px 0;
    display: block !important;
    margin: 0;
    border: solid 1px #eff3f5;
  }
}

.account-nav::-webkit-scrollbar {
  display: none;
}

.account-nav .orders__counter {
  display: none;
  position: absolute;
  right: 0;
  top: 48px;
  background: #b69f75;
  border-radius: 13px;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
  color: #ffffff;
  margin-top: 12px;
  margin-right: 12px;
}

.account-nav .orders__counter span {
  color: #ffffff;
  font-size: 12px;
}

@media only screen and (min-width: 750px) {
  .account-nav .orders__counter {
    display: block;
  }
}

.account-nav .wishlist__counter {
  display: none;
  position: absolute;
  right: 0;
  top: 48px;
  background: #000000;
  border-radius: 13px;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  line-height: 22px;
  color: #ffffff;
  margin-top: 12px;
  margin-right: 21px;
}

.account-nav .wishlist__counter span {
  color: #ffffff;
  font-size: 12px;
}

.account-nav a.wk-link .wk-icon {
  display: none;
}

.account-nav .wk-label {
  display: none;
}

.account-nav .account-nav__item + .account-nav__item {
  border-top: 1px solid #e3e5e7;
}

@media only screen and (min-width: 750px) {
  .account-nav .account-nav__item + .account-nav__item {
    border: none;
  }
}

.account-nav .account-nav__item {
  display: block;
}

@media only screen and (min-width: 750px) {
  .account-nav .account-nav__item {
    padding: 0;
  }
}

.account-nav .account-nav__item a {
  width: 100%;
  padding: 10px 15px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  line-height: 1.14;
  background: #f7f7f7;
  color: #252525;
}

@media only screen and (min-width: 750px) {
  .account-nav .account-nav__item a {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom-width: 0px;
    border-left: 2px solid transparent;
    background: #ffffff;
  }
}

@media only screen and (min-width: 750px) {
  .account-nav .account-nav__item a.active {
    border-color: #b69f75;
    color: #b69f75;
  }
}

@media only screen and (min-width: 750px) {
  .account-nav .account-nav__item {
    display: block;
  }
  .account-nav .account-nav__item:last-child {
    margin-top: 7.5px;
    padding-top: 7.5px;
    position: relative;
  }
  .account-nav .account-nav__item:last-child::before {
    content: '';
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% - 2em - 2px);
    height: 1px;
    background-color: #eff3f5;
    position: absolute;
  }
}

@media only screen and (min-width: 750px) {
  .account-nav {
    white-space: normal;
    overflow: visible;
    padding: 0;
    margin-right: 0;
  }
}

.customer__order-history a {
  text-decoration: underline;
}

.customer__addresses {
  padding: 1em 2em;
  border: 1px solid #e8e9eb;
  margin: 0 0 2em;
}

.customer-address__new {
  padding: 0 2em 2em 0;
}

@media only screen and (min-width: 750px) {
  .customer-address__new {
    padding: 0 2em 2em 0;
  }
}

.customer-address__edit {
  border-top: 1px solid #e8e9eb;
  padding: 1em 0;
}

@media only screen and (min-width: 750px) {
  .account__addresses {
    padding-left: 3em;
  }
}

.account__back-link {
  margin-top: 1rem;
  text-align: center;
}

@media only screen and (min-width: 750px) {
  .account__back-link {
    margin-top: 0;
    text-align: left;
  }
}

.account__back-link a {
  padding-left: 1rem;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  color: #000000;
}

.account__back-link a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 2px;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%), rotate(135deg);
          transform: translateY(-50%), rotate(135deg);
  border-bottom: 1.5px solid #000000;
  border-right: 1.5px solid #000000;
}

.order .order__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.order .reorder__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #c5c5c5;
  padding-bottom: 20px;
  margin-bottom: 20px;
  width: 100%;
}

@media only screen and (min-width: 750px) {
  .order .reorder__block {
    border: none;
    width: 50%;
    margin-bottom: 0;
    padding-bottom: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.order .reorder__block a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  color: #000000;
  font-size: 11px;
  letter-spacing: 0.73px;
  text-transform: uppercase;
  border: 1px solid;
  padding: 13px 39px;
}

@media only screen and (min-width: 480px) {
  .order .reorder__block a {
    max-width: 150px;
  }
}

@media only screen and (min-width: 750px) {
  .order .reorder__block a {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

.order .reorder__block a:hover {
  background: #000000;
  color: #ffffff;
}

.order .order__line-items {
  margin-bottom: 24px;
}

@media only screen and (min-width: 750px) {
  .order .order__line-items {
    margin-bottom: 0;
  }
  .order .order__line-items tr:first-child td {
    border-top: 0px none;
  }
}

.order .order__reorder {
  cursor: pointer;
  position: relative;
}

.order .order__reorder::before, .order .order__reorder::after {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.order .order__reorder::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  margin: -.64285714em 0 0 -.64285714em;
  width: 1.28571429em;
  height: 1.28571429em;
  border-radius: 500rem;
  border: 0.2em solid rgba(0, 0, 0, 0.15);
}

.order .order__reorder::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  margin: -.64285714em 0 0 -.64285714em;
  width: 1.28571429em;
  height: 1.28571429em;
  -webkit-animation: spin .6s linear;
  animation: spin .6s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 500rem;
  border-color: #fff transparent transparent;
  border-style: solid;
  border-width: .2em;
  -webkit-box-shadow: 0 0 0 1px transparent;
  box-shadow: 0 0 0 1px transparent;
  background-image: none;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  will-change: transform;
}

.order .order__reorder.loading, .loading .order .order__reorder[data-loads], .loading .order .order__reorder [data-loads] {
  cursor: default;
  text-shadow: none !important;
  color: transparent !important;
  opacity: 1;
  pointer-events: none;
}

.order .order__reorder.loading::before, .order .order__reorder.loading::after, .loading .order .order__reorder[data-loads]::before, .loading .order .order__reorder[data-loads]::after, .loading .order .order__reorder [data-loads]::before, .loading .order .order__reorder [data-loads]::after {
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 1;
}

.order .order__summary {
  margin-top: 1rem;
}

@media only screen and (min-width: 750px) {
  .order .order__summary {
    width: 380px;
    margin-left: auto;
  }
}

.order .order__summary tr td:first-child {
  padding-left: 20px;
}

.order .order__summary tr td:last-child {
  padding-right: 20px;
  text-align: right;
}

.order .order__summary tr:first-child td {
  border-top: 0 none;
}

.order .order__summary span {
  font-weight: 400;
  font-size: 0.8rem;
}

.order-detail-item + .order-detail-item {
  margin-left: 0;
  margin-top: 15px;
}

@media only screen and (min-width: 750px) {
  .order-detail-item + .order-detail-item {
    margin-top: 0;
    margin-left: 41px;
  }
}

.order-detail-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media only screen and (min-width: 750px) {
  .order-detail-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    padding-bottom: 0;
  }
  .order-detail-item:not(:last-child) {
    margin-right: 0.5rem;
  }
}

.order-detail-item .order-detail-item__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.order-detail-item .order-detail-item__value {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.order-detail-item--full-width {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}

@media only screen and (min-width: 750px) {
  .order-detail-item--full-width {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}

@media only screen and (min-width: 750px) {
  .order__addresses {
    padding-left: 3em;
  }
}

.order-line-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.order-line-item .order-line-item__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2rem;
          flex: 0 0 2rem;
  margin-right: 0.5rem;
  height: 3rem;
}

.order-line-item .order-line-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.order-line-item .order-line-item__details {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.order-line-item .order-line-item__title a {
  font-size: 10px;
  letter-spacing: 0.15px;
  line-height: 12px;
  text-decoration: none;
  color: #000000;
}

@media only screen and (min-width: 750px) {
  .order-line-item .order-line-item__title a {
    color: #000000;
    font-size: 12px;
    letter-spacing: 0.3px;
  }
}

.order-line-item .order-line-item__title a:hover {
  text-decoration: underline;
}

.order-line-item .order-line-item__additional-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}

@media only screen and (min-width: 750px) {
  .order-line-item .order-line-item__additional-details {
    display: none;
  }
}

.order-line-item .order-line-item__additional-details .additional-details__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.order-line-item .order-line-item__additional-details .additional-details__item:not(:last-child) {
  margin-right: 0.5rem;
}

.order-line-item .order-line-item__additional-details .additional-details__item .additional-details__item-title {
  margin-bottom: 0;
}

.order-line-item .order-line-item__additional-details .additional-details__item .additional-details__item-value {
  font-size: 11px;
  line-height: 18px;
}

@media only screen and (min-width: 750px) {
  .order-line-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.address {
  position: relative;
}

.address:not(:first-child) {
  border-top: 1px solid #eee;
  padding: 1em 0 0.5em 0;
}

.address p {
  margin: 0 0 0.5em;
}

.address .address__actions {
  position: absolute;
  bottom: 0.5em;
  right: 0;
}

.register-page .row {
  position: relative;
}

.register-page .register-page__details {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #d8d8d8;
  text-align: center;
}

.register-page .form-element--toggles.form-element--distributor.form-element--visible ~ * {
  display: none;
}

.register-page .form-element--product-interest {
  margin: 0 0 0.5em;
}

.register-page .form-element--product-interest label {
  display: inline-block;
  width: 46%;
  margin: 0 3% 0 0;
  vertical-align: top;
  min-width: 200px;
}

.register-page__form-title, .login-page__form-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}

@media only screen and (min-width: 750px) {
  .register-page__form-title, .login-page__form-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}

.register-page__form, .login-page__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media only screen and (min-width: 750px) {
  .register-page__form, .login-page__form {
    position: static;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    padding-right: 106px;
  }
}

.register-page__form .form-vertical, .login-page__form .form-vertical {
  width: 290px;
  padding: 29px 15px 35px;
  background-color: #ffffff;
  border-radius: 2px;
}

@media only screen and (min-width: 750px) {
  .register-page__form .form-vertical, .login-page__form .form-vertical {
    width: 405px;
    padding: 90px 0 0;
    background-color: transparent;
  }
}

.register-page__form .form-vertical input, .login-page__form .form-vertical input {
  height: 50px;
  margin-bottom: 9px;
  border-color: #e3e5e7;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 400;
  padding-left: 13px;
  padding-right: 13px;
}

.register-page__form .form-vertical input[placeholder], .login-page__form .form-vertical input[placeholder] {
  font-size: 13px;
}

.register-page__form .form-vertical input::-moz-placeholder, .login-page__form .form-vertical input::-moz-placeholder {
  font-size: 13px;
}

.register-page__form .form-vertical input:-moz-placeholder, .login-page__form .form-vertical input:-moz-placeholder {
  font-size: 13px;
}

.register-page__form .form-vertical input:-ms-input-placeholder, .login-page__form .form-vertical input:-ms-input-placeholder {
  font-size: 13px;
}

@media only screen and (min-width: 750px) {
  .register-page__form .form-vertical input[placeholder], .login-page__form .form-vertical input[placeholder] {
    font-size: 15px;
  }
  .register-page__form .form-vertical input::-moz-placeholder, .login-page__form .form-vertical input::-moz-placeholder {
    font-size: 15px;
  }
  .register-page__form .form-vertical input:-moz-placeholder, .login-page__form .form-vertical input:-moz-placeholder {
    font-size: 15px;
  }
  .register-page__form .form-vertical input:-ms-input-placeholder, .login-page__form .form-vertical input:-ms-input-placeholder {
    font-size: 15px;
  }
}

.register-page__form .form-vertical .btn, .register-page__form .form-vertical #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .register-page__form .form-vertical .bc-sf-filter-load-more-button, .login-page__form .form-vertical .btn, .login-page__form .form-vertical #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .login-page__form .form-vertical .bc-sf-filter-load-more-button {
  width: 100%;
  text-transform: capitalize;
}

.register-page__form .form-vertical .checkbox-label, .login-page__form .form-vertical .checkbox-label {
  margin-top: 15px;
  margin-bottom: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.register-page__form .form-vertical .checkbox-label [type="checkbox"], .login-page__form .form-vertical .checkbox-label [type="checkbox"] {
  margin: 0;
  display: none;
}

.register-page__form .form-vertical .checkbox-title, .login-page__form .form-vertical .checkbox-title {
  font-size: 14px;
  color: #1c1b1b;
  position: relative;
  padding-left: 26px;
  line-height: 19px;
}

.register-page__form .form-vertical .checkbox-title:before, .login-page__form .form-vertical .checkbox-title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #909090;
  vertical-align: middle;
  border-radius: 50%;
}

.register-page__form .form-vertical [type="checkbox"]:checked + span::after, .login-page__form .form-vertical [type="checkbox"]:checked + span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #3d5b58;
}

.register-page__form .form-vertical .form-vertical__actions, .login-page__form .form-vertical .form-vertical__actions {
  padding-top: 10px;
  padding-bottom: 0;
}

.register-page__form .form-vertical .form-vertical__actions a.btn, .register-page__form .form-vertical .form-vertical__actions #bc-sf-filter-load-more a.bc-sf-filter-load-more-button, #bc-sf-filter-load-more .register-page__form .form-vertical .form-vertical__actions a.bc-sf-filter-load-more-button, .register-page__form .form-vertical .form-vertical__actions input.btn, .register-page__form .form-vertical .form-vertical__actions #bc-sf-filter-load-more input.bc-sf-filter-load-more-button, #bc-sf-filter-load-more .register-page__form .form-vertical .form-vertical__actions input.bc-sf-filter-load-more-button, .login-page__form .form-vertical .form-vertical__actions a.btn, .login-page__form .form-vertical .form-vertical__actions #bc-sf-filter-load-more a.bc-sf-filter-load-more-button, #bc-sf-filter-load-more .login-page__form .form-vertical .form-vertical__actions a.bc-sf-filter-load-more-button, .login-page__form .form-vertical .form-vertical__actions input.btn, .login-page__form .form-vertical .form-vertical__actions #bc-sf-filter-load-more input.bc-sf-filter-load-more-button, #bc-sf-filter-load-more .login-page__form .form-vertical .form-vertical__actions input.bc-sf-filter-load-more-button {
  border-radius: 2px !important;
}

.register-page__form .form-vertical .btn-login-outlined, .login-page__form .form-vertical .btn-login-outlined {
  border-radius: 2px;
  border: 1px solid var(--color-primary);
  background-color: transparent;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  margin-bottom: 0;
}

.register-page__form .form-vertical .btn-login-outlined#HideRecoverPasswordLink, .login-page__form .form-vertical .btn-login-outlined#HideRecoverPasswordLink {
  margin-bottom: 9px;
}

.register-page__form .register-page__description, .login-page__form .register-page__description {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 18px;
}

div.register-page__image, div.login-page__image {
  padding: 0;
  min-height: 660px;
}

div.register-page__image img, div.login-page__image img {
  width: 100%;
  height: 100%;
}

.login-page__customer-password {
  position: relative;
}

.login-page__customer-password a {
  position: absolute;
  right: 25px;
  top: 50%;
  color: #1c1b1b;
  font-size: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-decoration: underline;
}

.switch-to-register {
  display: block;
  text-align: center;
  padding-top: 0 !important;
  font-size: 12px;
}

@media only screen and (min-width: 750px) {
  .switch-to-register {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.switch-to-register a {
  color: #000;
  text-decoration: underline;
}

#RecoverEmail {
  margin-top: 10px;
}

.dashboard-report {
  position: relative;
}

.dashboard-report::before, .dashboard-report::after {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.dashboard-report::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  margin: -.64285714em 0 0 -.64285714em;
  width: 1.28571429em;
  height: 1.28571429em;
  border-radius: 500rem;
  border: 0.2em solid rgba(0, 0, 0, 0.15);
}

.dashboard-report::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  margin: -.64285714em 0 0 -.64285714em;
  width: 1.28571429em;
  height: 1.28571429em;
  -webkit-animation: spin .6s linear;
  animation: spin .6s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 500rem;
  border-color: #fff transparent transparent;
  border-style: solid;
  border-width: .2em;
  -webkit-box-shadow: 0 0 0 1px transparent;
  box-shadow: 0 0 0 1px transparent;
  background-image: none;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  will-change: transform;
}

.dashboard-report.loading, .loading .dashboard-report[data-loads], .loading .dashboard-report [data-loads] {
  cursor: default;
  text-shadow: none !important;
  color: transparent !important;
  opacity: 1;
  pointer-events: none;
}

.dashboard-report.loading::before, .dashboard-report.loading::after, .loading .dashboard-report[data-loads]::before, .loading .dashboard-report[data-loads]::after, .loading .dashboard-report [data-loads]::before, .loading .dashboard-report [data-loads]::after {
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 1;
}

.dashboard-report .account-card__content {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.dashboard-report.loading .account-card__content {
  opacity: 0;
  height: 200px;
}

.dashboard-report.loading .account-card__title > *:not(h5) {
  display: none;
}

.dashboard-report .account-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dashboard-report .account-card__title .dashboard-report__type-selector {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 110px;
  position: relative;
}

.dashboard-report .account-card__title .dashboard-report__type-selector .type-selector__title {
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.dashboard-report .account-card__title .dashboard-report__type-selector .type-selector__title::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 4px;
  height: 4px;
  -webkit-transform: translateY(-100%) rotate(45deg);
          transform: translateY(-100%) rotate(45deg);
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.dashboard-report .account-card__title .dashboard-report__type-selector + h5 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.dashboard-report .account-card__title .dashboard-report__type-selector .type-selector__options {
  background-color: #fff;
  border-radius: 2px;
  width: 100%;
  z-index: 200;
  border: 1px solid #c5c5c5;
  padding: 10px;
  opacity: 0;
  -webkit-transition: opacity 0.175s ease;
  transition: opacity 0.175s ease;
  will-change: opacity;
  -webkit-box-shadow: 0 0 20px 4px rgba(154, 161, 177, 0.05), 0 4px 80px -8px rgba(36, 40, 47, 0.05), 0 4px 4px -2px rgba(91, 94, 105, 0.05);
          box-shadow: 0 0 20px 4px rgba(154, 161, 177, 0.05), 0 4px 80px -8px rgba(36, 40, 47, 0.05), 0 4px 4px -2px rgba(91, 94, 105, 0.05);
  pointer-events: none;
}

.dashboard-report .account-card__title .dashboard-report__type-selector .type-selector__options .type-selector__option {
  padding: 2.5px 0;
  margin: 2.5px 0;
  font-weight: 500;
  cursor: pointer;
}

.dashboard-report .account-card__title .dashboard-report__type-selector.dropdown-active .type-selector__options {
  pointer-events: all;
  opacity: 1;
}

.dashboard-report .account-card__title .dashboard-report__type-selector.dropdown-active .type-selector__title::after {
  -webkit-transform: translateY(-100%) rotate(225deg);
          transform: translateY(-100%) rotate(225deg);
}

.dashboard-report__data-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard-report__icon {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
}

.dashboard-report__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 1;
}

.dashboard-report__icon .icon {
  width: 1em;
  height: 1em;
  font-size: 90px;
  position: relative;
  z-index: 2;
}

.dashboard-report--feature .dashboard-report__icon::after {
  width: 80px;
  height: 80px;
}

.dashboard-report--feature .dashboard-report__icon .icon {
  font-size: 120px;
}

.dashboard-report__data {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.dashboard-report__count {
  font-size: 1.8em;
  font-weight: 500;
}

.dashboard-report--feature .dashboard-report__count {
  font-size: 2.5em;
}

.dashboard-report__description {
  font-weight: 700;
  font-size: 1.1em;
  text-transform: lowercase;
}

.dashboard-report__paragraph {
  display: block;
}

.template-dashboard .account, .template-account .account {
  padding-bottom: 0;
}

.template-dashboard .dashboard__addresses .account-section__body, .template-account .dashboard__addresses .account-section__body {
  margin-bottom: 0;
}

@media only screen and (min-width: 750px) {
  .template-dashboard .dashboard__addresses .address__block, .template-account .dashboard__addresses .address__block {
    width: 50%;
  }
}

.template-dashboard .dashboard__title-block, .template-account .dashboard__title-block {
  max-width: 100%;
}

@media only screen and (min-width: 990px) {
  .template-dashboard .dashboard__title-block, .template-account .dashboard__title-block {
    max-width: 87%;
  }
}

.template-dashboard .account__table, .template-account .account__table {
  max-width: 100%;
}

@media only screen and (min-width: 990px) {
  .template-dashboard .account__table, .template-account .account__table {
    max-width: 87%;
  }
}

.template-account.template-wishlist .product-text {
  padding-bottom: 60px;
}

.template-account.template-wishlist .wk-item form {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.template-account.template-wishlist .product-grid-item:first-child {
  padding-left: 0;
  margin-left: 5px;
}

@media only screen and (min-width: 750px) {
  .template-account.template-wishlist .product-grid-item:first-child {
    margin-left: 0;
  }
}

.template-account.template-wishlist .wishlist-title {
  display: none !important;
}

.template-account.template-wishlist .account__view {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.template-account.template-wishlist .top__block--wishlist {
  padding: 20px 14px;
  width: 100%;
}

@media only screen and (min-width: 750px) {
  .template-account.template-wishlist .top__block--wishlist {
    border-bottom: solid 1px #e6ebee;
    padding: 0 0 24px;
    margin-bottom: 24px;
  }
}

.template-account.template-wishlist .product-grid {
  max-width: 100%;
  width: 100%;
  padding: 0 6px;
  margin-left: -2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 1200px) {
  .template-account.template-wishlist .product-grid {
    max-width: 94%;
    padding: 0;
  }
}

.template-account.template-wishlist .product-grid-item {
  margin-left: 5px;
  padding-left: 0;
  width: calc(50% - 5px);
}

@media only screen and (min-width: 1200px) {
  .template-account.template-wishlist .product-grid-item {
    width: calc(33.333% - 10px) !important;
  }
  .template-account.template-wishlist .product-grid-item:first-child {
    padding-left: 0;
  }
}

.template-account #MainContent, .template-dashboard #MainContent, .template-preferences #MainContent {
  padding: 40px 0 40px;
  max-width: 1440px;
}

@media only screen and (min-width: 870px) {
  .template-account #MainContent, .template-dashboard #MainContent, .template-preferences #MainContent {
    padding: 20px 0 20px;
  }
}

.template-account .account-section, .template-dashboard .account-section, .template-preferences .account-section {
  margin-top: 0;
}

.template-account .container-fluid, .template-dashboard .container-fluid, .template-preferences .container-fluid {
  padding: 0 20px;
}

@media only screen and (min-width: 870px) {
  .template-account .container-fluid, .template-dashboard .container-fluid, .template-preferences .container-fluid {
    padding: 0;
  }
}

.template-account .account-section__title, .template-dashboard .account-section__title, .template-preferences .account-section__title {
  padding-bottom: 10px;
}

.template-account .account-section__title h2, .template-dashboard .account-section__title h2, .template-preferences .account-section__title h2 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.11;
  color: #252525;
  margin: 0;
}

.template-account .account-section__description p, .template-dashboard .account-section__description p, .template-preferences .account-section__description p {
  font-size: 14px;
  line-height: 1.29;
  color: #252525;
  margin: 0;
}

@media only screen and (min-width: 750px) {
  .template-account .account-section__description p, .template-dashboard .account-section__description p, .template-preferences .account-section__description p {
    color: #252525;
    font-size: 14px;
    letter-spacing: normal;
    line-height: 20px;
    max-width: 712px;
  }
}

.account_general-title {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  font-family: Prata;
  font-size: 35px;
  line-height: 1.51;
}

.account_general-title:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 70px;
  border-bottom: 1px solid #b69f75;
  left: 32%;
}

.account_title {
  width: 100%;
  text-align: center;
  padding-bottom: 54px;
  display: none;
}

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

.account_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

@media only screen and (min-width: 750px) {
  .account_content {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.account {
  width: 100%;
  background-color: #ffffff;
  padding-left: 0;
  padding-right: 0;
}

@media only screen and (min-width: 750px) {
  .account {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media only screen and (min-width: 870px) {
  .account {
    border-top: 0 none;
    padding: 0 105px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.top__block--orders {
  margin-bottom: 26px;
  text-align: left;
}

@media only screen and (min-width: 750px) {
  .top__block--orders {
    text-align: left;
    border-bottom: 1px solid #e6ebee;
    padding-bottom: 19px;
    margin-bottom: 24px;
  }
}

.dashboard__title-block {
  padding-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dashboard__title-block h2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: normal;
  color: #252525;
}

.dashboard__title-block a {
  font-size: 14px;
  line-height: 0.79;
  letter-spacing: 0.4px;
  color: #b69f75;
  margin: 0;
}

.dashboard__loyality-block {
  margin-bottom: 26px;
}

.dashboard__loyality-block .loyality-row p {
  display: inline-block;
  margin: 0;
}

.dashboard__loyality-block .loyality-row a {
  color: #b69f75;
  text-decoration: underline;
  font-weight: 400;
  padding-left: 8px;
}

.loyality-quantity {
  font-style: normal;
  font-weight: 500;
}

.account-section__body:last-child {
  margin-bottom: 0;
}

.account-section__body {
  margin-bottom: 26px;
}

.account-section__body p {
  font-size: 11px;
  font-style: normal;
  line-height: 1.27;
  letter-spacing: normal;
  color: #000000;
  margin-bottom: 0;
}

.order-history-table {
  margin-bottom: 12px;
}

.order-history-table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: capitalize;
}

.order-history-table th {
  padding: 13px 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #b69f75;
  text-align: left;
  width: 27%;
}

@media only screen and (min-width: 750px) {
  .order-history-table th {
    padding: 13px 16px;
    width: 25%;
  }
}

.order-history-table .empty_orders_note {
  padding: 0 1rem 0.3rem;
}

.order-history-table a {
  color: #000000;
}

.order-history-table .money__desc {
  display: block;
}

@media only screen and (min-width: 750px) {
  .order-history-table .money__desc {
    display: none;
  }
}

.order-history-table .mobile__button {
  display: block;
}

@media only screen and (min-width: 750px) {
  .order-history-table .mobile__button {
    display: none;
  }
}

.order-history-table .mobile__button--arrow {
  height: 30px;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  border-radius: 2px;
  border: 1px solid #000000;
}

.order-history-table .view_button a {
  font-size: 11px;
  line-height: 1.27;
  text-align: left;
  color: #b69f75;
  text-decoration: none;
}

.account__side-bar {
  margin: 0 auto;
  padding-bottom: 24px;
  width: 100%;
}

@media only screen and (min-width: 750px) {
  .account__side-bar {
    padding-bottom: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    margin-right: 10px;
  }
}

@media only screen and (min-width: 870px) {
  .account__side-bar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 248px;
            flex: 0 0 248px;
    margin-right: 93px;
  }
}

.account__user-details {
  display: none;
}

@media only screen and (min-width: 870px) {
  .account__user-details {
    display: block;
    background-color: #ffffff;
    border: 1px solid #c5c5c5;
    border-radius: 2px;
    margin-bottom: 15px;
  }
}

.account__view, .page__wishlist {
  width: 100%;
}

@media only screen and (min-width: 750px) {
  .account__view, .page__wishlist {
    width: auto;
    padding-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.account__view-left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.account__view-right:not(:empty) {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 380px;
          flex: 1 0 380px;
}

.account__view-title > * {
  display: inline-block;
}

.account__view-title .icon {
  font-size: 40px;
  margin-right: 0;
  margin-top: -20px;
}

.account__view-description {
  padding-bottom: 2rem;
  border-bottom: 1px solid #c5c5c5;
}

.account__sticky-cart {
  display: none;
}

.account__nav {
  background-color: #ffffff;
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  max-width: 335px;
  margin: 0 auto;
}

@media only screen and (min-width: 750px) {
  .account__nav {
    max-width: none;
    margin: auto;
  }
}

@media only screen and (min-width: 750px) {
  .account__nav {
    background-color: #fff;
    border-radius: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.user-details {
  text-align: center;
  padding: 15px 7.5px;
}

.user-details__image {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid #c5c5c5;
  margin: 0 auto 7.5px auto;
  overflow: hidden;
}

.user-details__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.user-details__image.user-details__image--no-image {
  background-color: #ffffff;
}

.user-details__name {
  font-weight: 900;
  font-size: 1.2em;
  margin-bottom: 7.5px;
}

.user-details__address {
  margin-bottom: 5px;
}

.user-details__type {
  margin-bottom: 5px;
}

.user-details__edit-link {
  font-size: 0.8rem;
}

@media only screen and (min-width: 750px) {
  .account-section {
    margin-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 750px) {
  .account-section:not(:last-child) {
    border-bottom: 1px solid #c5c5c5;
  }
}

.account-section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

@media only screen and (min-width: 750px) {
  .account-section__title {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.account-section__title a {
  font-size: 0.8rem;
  text-decoration: underline;
}

.account-order-addresses h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.14;
  color: #252525;
  padding-bottom: 10px;
}

.account-order-addresses .order-addresses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 750px) {
  .account-order-addresses .order-addresses {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.account-order-addresses .address__block {
  width: 100%;
  padding: 10px 16px;
  border-radius: 2px;
  border: solid 1px #e6ebee;
}

.account-order-addresses .address__block h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  letter-spacing: 1.4px;
  text-align: left;
  color: #252525;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: proxima-nova, sans-serif;
}

@media only screen and (min-width: 750px) {
  .account-order-addresses .address__block h3 {
    letter-spacing: normal;
  }
}

.account-order-addresses .address__block p {
  font-size: 11px;
  line-height: 1.7;
  text-align: left;
  color: #252525;
  margin: 0;
}

.account-order-addresses .address__block + .address__block {
  margin-top: 12px;
}

@media only screen and (min-width: 750px) {
  .account-order-addresses .address__block + .address__block {
    margin-left: 12px;
    margin-top: 0;
  }
}

.template-order #MainContent {
  padding: 30px 0 32px;
  max-width: 1440px;
}

@media only screen and (min-width: 870px) {
  .template-order #MainContent {
    padding: 20px 0 20px;
  }
}

.template-order .account-section__body {
  margin-bottom: 24px;
}

@media only screen and (min-width: 480px) {
  .template-order .account-section__body {
    margin-bottom: 18px;
  }
}

.template-order .account-section__body p {
  font-size: 11px;
  color: #252525;
  margin-top: 0;
}

.template-order .address__block p {
  margin-top: 12px;
}

.template-order .account__table tbody a {
  font-size: 11px;
  line-height: 1.27;
  text-align: left;
  color: #252525;
  text-transform: none;
  text-decoration: none;
}

.template-order .account-section {
  margin-top: 0;
  padding: 0;
  margin-bottom: 19px;
}

@media only screen and (min-width: 750px) {
  .template-order .account-section {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 750px) {
  .template-order .account-section:not(:last-child) {
    border-bottom: none;
  }
}

@media only screen and (min-width: 870px) {
  .template-order .account__view {
    padding-top: 0px;
  }
}

.template-order .container-fluid {
  padding: 0 20px;
}

@media only screen and (min-width: 870px) {
  .template-order .container-fluid {
    padding: 0;
  }
}

.template-order .order__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.template-order .account__view-description {
  text-align: center;
}

@media only screen and (min-width: 750px) {
  .template-order .account__view-description {
    text-align: left;
  }
}

.template-order .account__view-description p {
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 20px;
}

@media only screen and (min-width: 750px) {
  .template-order .account__view-description p {
    padding-right: 23px;
  }
}

.template-order .account__view-title {
  text-align: center;
}

@media only screen and (min-width: 750px) {
  .template-order .account__view-title {
    text-align: left;
  }
}

.template-order .account__view-title h2 {
  font-size: 20px;
  line-height: 21px;
  text-transform: uppercase;
  font-weight: 700;
}

@media only screen and (min-width: 750px) {
  .template-order .account__view-title h2 {
    font-size: 16px;
    line-height: 20px;
  }
}

@media only screen and (min-width: 750px) {
  .template-order .account__view-left {
    border-top: 1px solid #e6ebee;
  }
}

.template-order .order-detail-title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e6ebee;
}

@media only screen and (min-width: 750px) {
  .template-order .order-detail-title-block {
    padding-bottom: 12px;
    margin-bottom: 0;
    border-bottom: none;
  }
}

.template-order .order-detail-title-block h2 {
  display: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #252525;
}

@media only screen and (min-width: 750px) {
  .template-order .order-detail-title-block h2 {
    display: block;
  }
}

.template-order .order-detail-title-block a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #252525;
  text-transform: uppercase;
  width: 100%;
}

@media only screen and (min-width: 750px) {
  .template-order .order-detail-title-block a {
    width: auto;
  }
}

.template-order .account_order-title {
  display: block;
  width: 100%;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #252525;
  text-transform: uppercase;
  font-family: proxima-nova, sans-serif;
}

@media only screen and (min-width: 750px) {
  .template-order .account_order-title {
    display: none;
  }
}

.template-order .order-detail-item__title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #252525;
  padding-right: 10%;
}

@media only screen and (min-width: 750px) {
  .template-order .order-detail-item__title {
    padding-right: 0;
  }
}

.template-order .order-detail-item__title .h6 {
  margin-bottom: 0;
}

@media only screen and (min-width: 750px) {
  .template-order .order-detail-item__title .h6 {
    margin-bottom: 15px;
  }
}

.template-order .order-detail-item__value {
  font-size: 11px;
  line-height: 1.27;
  color: #252525;
}

.template-order .order-fulfillment-status {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (min-width: 870px) {
  .template-order .order__status--inl {
    height: auto;
    font-size: 12px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.template-order .account-order-addresses .account-section__body {
  margin-bottom: 20px;
}

.template-order .order-addresses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 750px) {
  .template-order .order-addresses {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.template-order .order__details {
  position: relative;
}

.template-order .order__summary.account__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border: none;
  background: #ffffff;
}

.template-order .order__summary.account__table tbody tr {
  border: none;
  background: #ffffff;
}

.template-order .order__summary.account__table tbody tr td:first-child {
  width: 55%;
}

@media only screen and (min-width: 750px) {
  .template-order .order__summary.account__table tbody tr td:first-child {
    width: auto;
  }
}

.template-order .order__summary.account__table table {
  max-width: 333px;
  margin: 0 20px;
}

@media only screen and (min-width: 750px) {
  .template-order .order__summary.account__table table {
    margin: 0;
  }
}

.template-order .order__summary.account__table td {
  border: none;
  padding: 12px 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #252525;
}

.template-order .order__summary.account__table tr:last-child {
  border-top: solid 1px #e6ebee;
}

.template-order .order__summary.account__table tr:last-child td {
  padding: 16px 0;
  font-size: 14px;
  line-height: 1.14;
  font-weight: 500;
  color: #252525;
  letter-spacing: normal;
}

.template-order .order__summary.account__table tr td:last-child {
  text-align: right;
  padding-right: 0;
}

@media only screen and (min-width: 750px) {
  .template-order .order__summary.account__table tr td:last-child {
    padding-right: 16px;
  }
}

.template-order .products--table {
  margin-top: 18px;
}

@media only screen and (min-width: 750px) {
  .template-order .products--table .order {
    padding-bottom: 15px;
  }
}

@media only screen and (min-width: 750px) {
  .template-order .products--table {
    margin-top: 21px;
  }
}

.template-order .products--table .responsive-table__row {
  border-bottom: 1px solid #000000;
}

.template-order .products--table .order-line-item__image {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  width: 80px;
  height: auto;
  background: transparent;
  margin: 0 39px 0 5px;
}

@media only screen and (min-width: 480px) {
  .template-order .products--table .order-line-item__image {
    width: 120px;
  }
}

@media only screen and (min-width: 750px) {
  .template-order .products--table .order-line-item__image {
    width: 70px;
    height: 94px;
    margin: 0 13px 0 10px;
  }
}

.template-order .products--table .order-line-item__variant {
  display: none;
}

@media only screen and (min-width: 750px) {
  .template-order .products--table .order-line-item__variant {
    display: block;
  }
}

.template-order .products--table .summary__order--block tr {
  color: #000000;
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border: none;
}

.template-order .products--table .summary__order--block td {
  padding: 6px;
}

.template-order .account__table {
  padding: 0;
}

.template-order .table__fiture {
  padding: 0;
  border: 1px solid var(--color-border);
}

.template-order .table__fiture .line-items-title {
  padding: 13px 6px;
  width: 20%;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #b69f75;
  text-align: left;
}

@media only screen and (min-width: 1200px) {
  .template-order .table__fiture .line-items-title {
    padding: 13px 16px;
    width: 17%;
  }
}

.template-order .table__fiture .line-items-title:first-child {
  width: 40%;
  border-left: 1px solid #e6ebee;
}

@media only screen and (min-width: 1200px) {
  .template-order .table__fiture .line-items-title:first-child {
    width: 58%;
  }
}

.template-order .table__fiture .line-items-title p {
  margin: 0;
}

.template-order .table__fiture .line-items-title:last-child {
  border-right: 1px solid #e6ebee;
}

.template-order .table__fiture .line-items-value {
  width: 20%;
  padding: 13px 6px;
  font-size: 11px;
  line-height: 1.27;
  text-align: left;
  color: #252525;
}

.template-order .table__fiture .line-items-value.total-block {
  text-align: right;
}

@media only screen and (min-width: 1200px) {
  .template-order .table__fiture .line-items-value {
    padding: 13px 16px;
    width: 17%;
  }
}

.template-order .table__fiture .line-items-value:first-child {
  width: 40%;
  border-left: 1px solid #e6ebee;
}

@media only screen and (min-width: 1200px) {
  .template-order .table__fiture .line-items-value:first-child {
    width: 58%;
  }
}

.template-order .table__fiture .line-items-value p {
  margin: 0;
}

.template-order .table__fiture .line-items-value:last-child {
  border-right: 1px solid #e6ebee;
}

.template-order .table__fiture .title__block--product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #e6ebee;
  text-transform: uppercase;
}

.template-order .table__fiture .content__block--product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #e6ebee;
}

@media only screen and (min-width: 750px) {
  .template-order .table__fiture .content__block--product {
    margin: 0;
  }
}

.template-order .table__fiture .content__block--product .line-items-value {
  background: #f7f7f7;
}

.template-order .table__fiture .additional-details__item .additional-details__item-value {
  text-align: center;
}

.template-order .section__order--return .order--return {
  padding: 30px 20px 0 20px;
  border-top: 1px solid #000000;
  margin-top: 30px !important;
}

@media only screen and (min-width: 870px) {
  .template-order .section__order--return .order--return {
    padding: 30px 0 0 0;
  }
}

.template-order .section__order--return .row {
  margin: 0;
}

.template-order .section__order--return .order--return__title {
  color: #3f4245;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 9px;
}

@media only screen and (min-width: 870px) {
  .template-order .section__order--return .order--return__title {
    margin-bottom: 11px;
    color: #000000;
    font-size: 16px;
    line-height: 20px;
  }
}

.template-order .section__order--return .order--return__body {
  line-height: normal;
}

.template-order .section__order--return .order--return__body span {
  color: #3f4245;
  font-size: 12px;
  letter-spacing: 0.2px;
  line-height: 17px;
}

@media only screen and (min-width: 870px) {
  .template-order .section__order--return .order--return__body span {
    color: #4a4a4a;
    font-size: 14px;
    letter-spacing: 0.2px;
    line-height: 20px;
  }
}

.template-order .section__order--return .order--return--info {
  padding: 0;
}

.template-order .section__order--return .order--return__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.template-order .section__order--return .order--return--button {
  width: 100%;
  padding: 0;
  text-align: right;
}

@media only screen and (min-width: 750px) {
  .template-order .section__order--return .order--return--button {
    width: auto;
  }
}

.template-order .section__order--return .order--return--button .btn, .template-order .section__order--return .order--return--button #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-order .section__order--return .order--return--button .bc-sf-filter-load-more-button {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: normal;
  margin-top: 50px;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  color: #1c1b1b;
  border: 1px solid var(--color-primary);
  padding: 10px 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 480px) {
  .template-order .section__order--return .order--return--button .btn, .template-order .section__order--return .order--return--button #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-order .section__order--return .order--return--button .bc-sf-filter-load-more-button {
    width: 355px;
  }
}

@media only screen and (min-width: 750px) {
  .template-order .section__order--return .order--return--button .btn, .template-order .section__order--return .order--return--button #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-order .section__order--return .order--return--button .bc-sf-filter-load-more-button {
    margin-top: 25px;
    width: auto;
  }
}

.template-order .section__order--return .order--return--button .btn:hover, .template-order .section__order--return .order--return--button #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .template-order .section__order--return .order--return--button .bc-sf-filter-load-more-button:hover {
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
}

@media only screen and (min-width: 870px) {
  .template-order .section__order--return .order--return--button .btn, .template-order .section__order--return .order--return--button #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-order .section__order--return .order--return--button .bc-sf-filter-load-more-button {
    padding: 20px 42px;
  }
}

.template-order .order--history--return__section {
  margin-top: 20px;
}

@media only screen and (min-width: 750px) {
  .template-order .order--history--return__section {
    margin-top: 70px;
  }
}

.account__table {
  background-color: #ffffff;
  border: solid 1px #e6ebee;
}

.account-card .account__table {
  background-color: #ffffff;
  border: 0 none;
  border-radius: 0;
  padding: 0;
}

.account__table table {
  margin-bottom: 0;
  width: 100%;
}

.account__table thead {
  color: #000000;
}

.account__table thead th:first-child {
  width: 19%;
}

.account__table thead th {
  text-transform: uppercase;
  border-right: solid 1px #e6ebee;
}

.account__table thead th:last-child {
  border-right: none;
}

.account__table tbody {
  color: #000000;
  font-size: 12px;
  text-transform: uppercase;
}

.account__table tbody a {
  color: #000000;
  font-size: 13px;
  text-decoration: underline;
}

.account__table tbody tr {
  border-top: 1px solid #e6ebee;
}

.account__table tbody tr:nth-child(2n+1) {
  background: #f7f7f7;
}

.account__table td:first-child {
  width: 19%;
}

.account__table td:last-child {
  border-right: none;
}

.account__table td {
  border-bottom: 0 none;
  padding: 13px 5px;
  font-size: 11px;
  font-weight: normal;
  line-height: 1.27;
  text-align: left;
  color: #252525;
  border-right: 1px solid #e6ebee;
  width: 27%;
}

@media only screen and (min-width: 750px) {
  .account__table td {
    padding: 13px 16px;
    width: 25%;
  }
}

.template-addresses .account__table td {
  white-space: normal;
}

.account__table td .unfulfilled__status {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 32px;
  color: #000000;
  font-size: 12px;
  border-radius: 2px;
  background-color: rgba(251, 141, 72, 0.3);
}

.account__table td .fulfilled__status {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 32px;
  color: #000000;
  font-size: 12px;
  border-radius: 2px;
  background-color: rgba(128, 222, 188, 0.3);
}

.order-history-table__lower td {
  border-top: 0 none;
}

.order-history-table__lower a:not(:first-child) {
  margin-left: 1em;
}

@media only screen and (min-width: 750px) {
  .order-history-table__lower {
    display: none;
  }
}

.shopify-section > .account-cards {
  margin-bottom: -1rem;
}

@media only screen and (min-width: 750px) {
  .account-cards.account-cards--inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .account-cards.account-cards--inline .account-card--left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
    height: 100%;
    margin-right: 0.5rem;
  }
  .account-cards.account-cards--inline .account-card--right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    height: 100%;
    min-height: 250px;
    margin-left: 0.5rem;
  }
}

.template-preferences .account__view {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.template-preferences .email-field.hidden {
  display: none;
}

.template-preferences .account_preferences {
  width: 100%;
  max-width: none;
}

@media only screen and (min-width: 750px) {
  .template-preferences .account_preferences {
    max-width: 466px;
  }
}

.template-preferences .top__block--preferences {
  width: 100%;
  padding: 0 20px;
}

@media only screen and (min-width: 750px) {
  .template-preferences .top__block--preferences {
    padding: 0;
  }
}

.template-preferences .top__block--preferences p {
  margin: 0;
  max-width: none;
}

.template-preferences .send {
  margin: 0 20px;
}

@media only screen and (min-width: 750px) {
  .template-preferences .send {
    margin: 0;
  }
}

.template-preferences .send .btn, .template-preferences .send #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-preferences .send .bc-sf-filter-load-more-button {
  padding: 19px 50px;
}

@media only screen and (min-width: 750px) {
  .template-preferences .send .btn, .template-preferences .send #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-preferences .send .bc-sf-filter-load-more-button {
    width: 44%;
    padding: 14px 50px;
  }
}

.template-preferences .preferences_form-block {
  padding: 15px;
  background: #f7f7f7;
  margin-bottom: 20px;
}

@media only screen and (min-width: 750px) {
  .template-preferences .preferences_form-block {
    padding: 20px 30px;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 750px) and (max-width: 1199px) {
  .template-preferences .preferences_form-block .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .template-preferences .preferences_form-block .grid .grid__item {
    width: 100%;
  }
  .template-preferences .preferences_form-block .checkbox-row {
    margin: 0 !important;
  }
}

.template-preferences .preferences_form-block .grid__item {
  height: 20px;
}

@media only screen and (min-width: 750px) {
  .template-preferences .preferences_form-block .grid__item {
    height: auto;
  }
}

.template-preferences .preferences_form-block .checkbox label {
  padding: 2px 0 0 24px;
}

@media only screen and (min-width: 750px) {
  .template-preferences .preferences_form-block .checkbox label {
    padding: 0 0 0 24px;
  }
}

.template-preferences .preferences_form-block .checkbox label:before {
  font-size: 20px;
}

@media only screen and (min-width: 750px) {
  .template-preferences .preferences_form-block .checkbox label:before {
    font-size: 15px;
  }
}

.template-preferences .preferences_form-block .checkbox-row {
  margin-bottom: 22px;
}

@media only screen and (min-width: 750px) {
  .template-preferences .preferences_form-block .checkbox-row {
    margin-bottom: 10px;
  }
}

.template-preferences .preferences_form-block .checkbox label:before {
  border-radius: 0;
  border: 1px solid #b69f75;
  background: #ffffff;
}

.template-preferences .preferences_form-block .checkbox input[type=checkbox]:checked + label:before, .template-preferences .preferences_form-block .checkbox input[type=checkbox][aria-checked] + label:before {
  background: #ffffff;
}

.template-preferences .preferences_form-block .checkbox label:after {
  left: 0.3em;
}

@media only screen and (min-width: 750px) {
  .template-preferences .preferences_form-block .checkbox label:after {
    left: 0.2em;
  }
}

.template-preferences .preferences_form-block .checkbox input[type=checkbox]:checked + label:after, .template-preferences .preferences_form-block .checkbox input[type=checkbox][aria-checked] + label:after {
  content: "";
  position: absolute;
  border-left: 1px solid #b69f75;
  border-bottom: 1px solid #b69f75;
  width: 1rem;
  height: 0.5rem;
  top: 28%;
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
  background-image: none;
}

@media only screen and (min-width: 750px) {
  .template-preferences .preferences_form-block .checkbox input[type=checkbox]:checked + label:after, .template-preferences .preferences_form-block .checkbox input[type=checkbox][aria-checked] + label:after {
    width: 0.7rem;
    height: 0.35rem;
  }
}

.template-preferences .account-section__description {
  padding-bottom: 20px;
  margin-bottom: 28px;
}

@media only screen and (min-width: 750px) {
  .template-preferences .account-section__description {
    border-bottom: 1px solid #e6ebee;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 750px) {
  .template-edit-account .account__view-left {
    max-width: 652px;
  }
}

.template-edit-account .account__view-title {
  margin-bottom: 10px;
}

.template-edit-account .account__view-title h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.11;
  font-family: proxima-nova, sans-serif;
  color: #252525;
}

.template-edit-account .account-card {
  margin-bottom: 26px;
}

.template-edit-account .account-card__title {
  border-bottom: none;
  margin-bottom: 18px;
  padding-bottom: 0;
}

.template-edit-account .account-card__title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.11;
  font-family: proxima-nova, sans-serif;
  color: #252525;
}

.template-edit-account .account-card__content {
  margin-bottom: 20px;
}

.template-edit-account .account-reset-password {
  width: 100%;
}

@media only screen and (min-width: 750px) {
  .template-edit-account .account-reset-password {
    width: 50%;
  }
}

.template-edit-account .account__view-description {
  border: none;
  margin-bottom: 26px;
  padding: 0;
}

@media only screen and (min-width: 750px) {
  .template-edit-account .account__view-description {
    padding-bottom: 19px;
  }
}

.template-edit-account .account__view-description p {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.29;
  letter-spacing: normal;
  margin: 0;
}

.template-edit-account .form-vertical__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 18px;
}

@media only screen and (min-width: 750px) {
  .template-edit-account .form-vertical__col {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-bottom: 20px;
  }
}

.template-edit-account .btn, .template-edit-account #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-edit-account .bc-sf-filter-load-more-button {
  padding: 19px 57px;
  width: 100%;
}

@media only screen and (min-width: 750px) {
  .template-edit-account .btn, .template-edit-account #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-edit-account .bc-sf-filter-load-more-button {
    width: auto;
  }
}

.template-edit-account .form_input-block + .form_input-block {
  margin-top: 18px;
}

@media only screen and (min-width: 750px) {
  .template-edit-account .form_input-block + .form_input-block {
    margin-top: 0;
    padding-left: 12px;
  }
}

.template-edit-account .account-card__footer {
  border: none;
  margin: 0;
  padding: 0;
}

.template-edit-account label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: left;
  color: rgba(37, 37, 37, 0.5);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.template-edit-account .form_input-block {
  width: 100%;
}

@media only screen and (min-width: 750px) {
  .template-edit-account .form_input-block {
    width: 50%;
  }
}

.account-card {
  width: 100%;
}

@media only screen and (min-width: 750px) {
  .account-card.account-card--left {
    float: left;
  }
}

@media only screen and (min-width: 750px) {
  .account-card.account-card--right {
    float: right;
  }
}

.account-card__title {
  border-bottom: 1px solid #000000;
  margin-bottom: 0;
  padding-bottom: 0.5rem;
}

.account-card__title h5 {
  margin: 0;
}

.account-card__title + .account-card__footer {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.account-card__footer {
  border-top: 1px solid #000000;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

.order-fulfillment-status {
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1rem;
}

.order-fulfillment-status[data-status="Success"], .order-fulfillment-status[data-status="Complete"], .order-fulfillment-status[data-status="Fulfilled"] {
  color: #84d653;
}

[data-dynamic-welcome-title] {
  opacity: 0;
}

[data-dynamic-welcome-title].fade-in {
  opacity: 1;
}

.no-js [data-dynamic-welcome-title] {
  opacity: 1;
}

.account-section .pagination-wrap {
  text-align: center;
  border-top: 1px solid #000000;
  padding-top: 1rem;
}

.news-grid-item {
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.news-grid-item__image {
  height: 300px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  overflow: hidden;
  display: block;
}

.news-grid-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-grid-item__text {
  padding: 0.5rem;
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news-grid-item__text p {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.news-grid-item__text a {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 700;
  text-decoration: underline;
}

.news-grid-item__text .news-grid-item__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 900;
  font-size: 1.2em;
}

.my-account .account-card--left {
  min-height: 250px;
}

@media only screen and (min-width: 750px) {
  .my-account .user-details {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-height: 100%;
    max-width: 100%;
  }
}

.my-account .user-details__image {
  width: 100px;
  height: 100px;
}

.my-account .user-details__name {
  margin-bottom: 0;
}

.template-account-edit-account #MainContent, .template-addresses #MainContent, .template-addresses-new #MainContent {
  padding: 40px 0 40px;
  max-width: 1440px;
}

@media only screen and (min-width: 870px) {
  .template-account-edit-account #MainContent, .template-addresses #MainContent, .template-addresses-new #MainContent {
    padding: 20px 0 20px;
  }
}

.template-account-edit-account .account__view, .template-addresses .account__view, .template-addresses-new .account__view {
  padding-top: 50px;
}

@media only screen and (min-width: 870px) {
  .template-account-edit-account .account__view, .template-addresses .account__view, .template-addresses-new .account__view {
    padding-top: 0px;
  }
}

@media only screen and (min-width: 750px) {
  .template-account-edit-account .account__side-bar, .template-addresses .account__side-bar, .template-addresses-new .account__side-bar {
    padding-top: 0px;
  }
}

.template-account-edit-account .h2, .template-addresses .h2, .template-addresses-new .h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
  text-transform: uppercase;
}

.template-account-edit-account .account__view-description, .template-addresses .account__view-description, .template-addresses-new .account__view-description {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  padding-bottom: 25px;
  margin-bottom: 33px;
}

.template-account-edit-account .account-cards, .template-addresses .account-cards, .template-addresses-new .account-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 480px) {
  .template-account-edit-account .account-cards, .template-addresses .account-cards, .template-addresses-new .account-cards {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (min-width: 480px) {
  .template-account-edit-account .account-card + .account-card, .template-addresses .account-card + .account-card, .template-addresses-new .account-card + .account-card {
    margin-left: 9px;
  }
}

.template-account-edit-account .account-card, .template-addresses .account-card, .template-addresses-new .account-card {
  width: 100%;
  padding: 20px 10px;
}

@media only screen and (min-width: 480px) {
  .template-account-edit-account .account-card, .template-addresses .account-card, .template-addresses-new .account-card {
    width: 50%;
  }
}

@media only screen and (min-width: 750px) {
  .template-account-edit-account .account-card, .template-addresses .account-card, .template-addresses-new .account-card {
    padding: 20px;
  }
}

.template-account-edit-account .account-card__title, .template-addresses .account-card__title, .template-addresses-new .account-card__title {
  padding-bottom: 20px;
}

.template-account-edit-account .account-card__title h3, .template-addresses .account-card__title h3, .template-addresses-new .account-card__title h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0;
}

@media only screen and (min-width: 750px) {
  .template-account-edit-account .account-card__title h3, .template-addresses .account-card__title h3, .template-addresses-new .account-card__title h3 {
    font-size: 16px;
    line-height: 20px;
  }
}

.template-account-edit-account form label, .template-addresses form label, .template-addresses-new form label {
  font-size: 10px;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
}

.template-account-edit-account form input, .template-account-edit-account form select, .template-addresses form input, .template-addresses form select, .template-addresses-new form input, .template-addresses-new form select {
  color: #414141;
  opacity: 0.7;
  height: 50px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.25px;
  line-height: 23px;
}

.template-account-edit-account .account-card__footer, .template-addresses .account-card__footer, .template-addresses-new .account-card__footer {
  margin-top: 20px;
}

.template-account-edit-account .account-card__footer .btn, .template-account-edit-account .account-card__footer #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-account-edit-account .account-card__footer .bc-sf-filter-load-more-button, .template-addresses .account-card__footer .btn, .template-addresses .account-card__footer #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-addresses .account-card__footer .bc-sf-filter-load-more-button, .template-addresses-new .account-card__footer .btn, .template-addresses-new .account-card__footer #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-addresses-new .account-card__footer .bc-sf-filter-load-more-button {
  width: 170px;
  height: 50px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  background: transparent;
}

.template-account-edit-account .account-card__footer .btn:hover, .template-account-edit-account .account-card__footer #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .template-account-edit-account .account-card__footer .bc-sf-filter-load-more-button:hover, .template-addresses .account-card__footer .btn:hover, .template-addresses .account-card__footer #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .template-addresses .account-card__footer .bc-sf-filter-load-more-button:hover, .template-addresses-new .account-card__footer .btn:hover, .template-addresses-new .account-card__footer #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .template-addresses-new .account-card__footer .bc-sf-filter-load-more-button:hover {
  background: #000000;
  color: #ffffff;
}

@media only screen and (min-width: 750px) {
  .template-account-edit-account .account-card__footer .btn, .template-account-edit-account .account-card__footer #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-account-edit-account .account-card__footer .bc-sf-filter-load-more-button, .template-addresses .account-card__footer .btn, .template-addresses .account-card__footer #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-addresses .account-card__footer .bc-sf-filter-load-more-button, .template-addresses-new .account-card__footer .btn, .template-addresses-new .account-card__footer #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-addresses-new .account-card__footer .bc-sf-filter-load-more-button {
    width: 154px;
  }
}

.template-addresses .account__view, .template-addresses-new .account__view {
  padding: 0;
}

.template-addresses .account-section, .template-addresses-new .account-section {
  margin-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.template-addresses .container-fluid, .template-addresses-new .container-fluid {
  padding: 0 20px;
}

@media only screen and (min-width: 870px) {
  .template-addresses .container-fluid, .template-addresses-new .container-fluid {
    padding: 0;
  }
}

.template-addresses .account__view-title h2, .template-addresses-new .account__view-title h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.11;
  text-align: left;
  color: #252525;
  font-family: proxima-nova, sans-serif;
  margin-bottom: 10px;
}

.template-addresses .account__view-description, .template-addresses-new .account__view-description {
  padding-bottom: 17px;
  margin-bottom: 23px;
  border: none;
}

@media only screen and (min-width: 750px) {
  .template-addresses .account__view-description, .template-addresses-new .account__view-description {
    padding-bottom: 17px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e6ebee;
  }
}

.template-addresses .account__view-description p, .template-addresses-new .account__view-description p {
  margin: 0;
  font-size: 14px;
  line-height: 1.29;
  color: #252525;
}

.template-addresses .address-edit-form, .template-addresses .address-new-form, .template-addresses-new .address-edit-form, .template-addresses-new .address-new-form {
  width: 100%;
  max-width: 652px;
}

.template-addresses .address-edit-form label, .template-addresses .address-new-form label, .template-addresses-new .address-edit-form label, .template-addresses-new .address-new-form label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  color: rgba(37, 37, 37, 0.5);
  margin: 0 0 8px;
  margin-top: 14px;
}

.template-addresses .address-edit-form input, .template-addresses .address-new-form input, .template-addresses-new .address-edit-form input, .template-addresses-new .address-new-form input {
  color: #252525;
  opacity: 1;
}

.template-addresses .address-edit-form .checkbox, .template-addresses .address-new-form .checkbox, .template-addresses-new .address-edit-form .checkbox, .template-addresses-new .address-new-form .checkbox {
  margin-top: 30px;
}

.template-addresses .address-edit-form .checkbox label, .template-addresses .address-new-form .checkbox label, .template-addresses-new .address-edit-form .checkbox label, .template-addresses-new .address-new-form .checkbox label {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: left;
  color: #252525;
  text-transform: none;
  padding-left: 30px;
  padding-top: 4px;
}

.template-addresses .address-edit-form .checkbox input[type=checkbox]:checked + label:before, .template-addresses .address-new-form .checkbox input[type=checkbox]:checked + label:before, .template-addresses-new .address-edit-form .checkbox input[type=checkbox]:checked + label:before, .template-addresses-new .address-new-form .checkbox input[type=checkbox]:checked + label:before {
  background-color: transparent;
}

.template-addresses .address-edit-form .checkbox input[type=checkbox]:checked + label:after, .template-addresses .address-new-form .checkbox input[type=checkbox]:checked + label:after, .template-addresses-new .address-edit-form .checkbox input[type=checkbox]:checked + label:after, .template-addresses-new .address-new-form .checkbox input[type=checkbox]:checked + label:after {
  top: 1px;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M15.5 5.949a.5.5 0 1 1 .7.713l-8.193 8.056a.5.5 0 0 1-.701 0L3.8 11.273a.5.5 0 1 1 .7-.713l3.156 3.1L15.5 5.949z' fill='%23B69F75'/%3E%3C/svg%3E");
}

.template-addresses .address-edit-form .address-form-note, .template-addresses .address-new-form .address-form-note, .template-addresses-new .address-edit-form .address-form-note, .template-addresses-new .address-new-form .address-form-note {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: left;
  color: #000;
  margin-top: 19px;
}

.template-addresses .address-edit-form .send.address-form-send, .template-addresses .address-new-form .send.address-form-send, .template-addresses-new .address-edit-form .send.address-form-send, .template-addresses-new .address-new-form .send.address-form-send {
  margin-top: 20px;
  margin-bottom: 30px;
}

.template-addresses .address-edit-form .send.address-form-send input, .template-addresses .address-new-form .send.address-form-send input, .template-addresses-new .address-edit-form .send.address-form-send input, .template-addresses-new .address-new-form .send.address-form-send input {
  opacity: 1;
}

.template-addresses .address-edit-form .btn, .template-addresses .address-edit-form #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-addresses .address-edit-form .bc-sf-filter-load-more-button, .template-addresses .address-new-form .btn, .template-addresses .address-new-form #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-addresses .address-new-form .bc-sf-filter-load-more-button, .template-addresses-new .address-edit-form .btn, .template-addresses-new .address-edit-form #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-addresses-new .address-edit-form .bc-sf-filter-load-more-button, .template-addresses-new .address-new-form .btn, .template-addresses-new .address-new-form #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-addresses-new .address-new-form .bc-sf-filter-load-more-button {
  font-size: 12px;
  line-height: 1.17;
  letter-spacing: 0.5px;
  text-align: center;
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
  max-width: none;
  background: #b69f75;
}

@media only screen and (min-width: 750px) {
  .template-addresses .address-edit-form .btn, .template-addresses .address-edit-form #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-addresses .address-edit-form .bc-sf-filter-load-more-button, .template-addresses .address-new-form .btn, .template-addresses .address-new-form #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-addresses .address-new-form .bc-sf-filter-load-more-button, .template-addresses-new .address-edit-form .btn, .template-addresses-new .address-edit-form #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-addresses-new .address-edit-form .bc-sf-filter-load-more-button, .template-addresses-new .address-new-form .btn, .template-addresses-new .address-new-form #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-addresses-new .address-new-form .bc-sf-filter-load-more-button {
    max-width: 217px;
  }
}

.template-addresses .address-edit-form .btn:hover, .template-addresses .address-edit-form #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .template-addresses .address-edit-form .bc-sf-filter-load-more-button:hover, .template-addresses .address-new-form .btn:hover, .template-addresses .address-new-form #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .template-addresses .address-new-form .bc-sf-filter-load-more-button:hover, .template-addresses-new .address-edit-form .btn:hover, .template-addresses-new .address-edit-form #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .template-addresses-new .address-edit-form .bc-sf-filter-load-more-button:hover, .template-addresses-new .address-new-form .btn:hover, .template-addresses-new .address-new-form #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .template-addresses-new .address-new-form .bc-sf-filter-load-more-button:hover {
  background: #ffffff;
  color: #b69f75;
}

.template-addresses .address-edit-form select, .template-addresses .address-new-form select, .template-addresses-new .address-edit-form select, .template-addresses-new .address-new-form select {
  background-image: var(--svg-select-icon-custom);
}

.template-addresses .address-edit-form .address-title-block, .template-addresses .address-new-form .address-title-block, .template-addresses-new .address-edit-form .address-title-block, .template-addresses-new .address-new-form .address-title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 6px;
  padding-bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (min-width: 750px) {
  .template-addresses .address-edit-form .address-title-block, .template-addresses .address-new-form .address-title-block, .template-addresses-new .address-edit-form .address-title-block, .template-addresses-new .address-new-form .address-title-block {
    border-bottom: 1px solid #e6ebee;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 13px;
    padding-bottom: 26px;
  }
}

.template-addresses .address-edit-form .address-title-block h2, .template-addresses .address-new-form .address-title-block h2, .template-addresses-new .address-edit-form .address-title-block h2, .template-addresses-new .address-new-form .address-title-block h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.11;
  color: #252525;
  font-family: proxima-nova, sans-serif;
  text-transform: uppercase;
  margin: 0;
}

.template-addresses .address-edit-form .address-title-block a, .template-addresses .address-new-form .address-title-block a, .template-addresses-new .address-edit-form .address-title-block a, .template-addresses-new .address-new-form .address-title-block a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #252525;
  text-transform: uppercase;
  text-decoration: none;
}

@media only screen and (max-width: 749px) {
  .template-addresses .address-edit-form .address-title-block a, .template-addresses .address-new-form .address-title-block a, .template-addresses-new .address-edit-form .address-title-block a, .template-addresses-new .address-new-form .address-title-block a {
    margin-bottom: 22px;
  }
}

.template-addresses .address-edit-form .checkbox label:before, .template-addresses .address-new-form .checkbox label:before, .template-addresses-new .address-edit-form .checkbox label:before, .template-addresses-new .address-new-form .checkbox label:before {
  border-radius: 0;
  border: 1px solid #b69f75;
  width: 20px;
  height: 20px;
  background-color: transparent;
}

.template-addresses .address-edit-form .checkbox label:after, .template-addresses .address-new-form .checkbox label:after, .template-addresses-new .address-edit-form .checkbox label:after, .template-addresses-new .address-new-form .checkbox label:after {
  width: 20px;
  height: 20px;
}

.template-addresses .account-cards, .template-addresses-new .account-cards {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.template-addresses .account-cards .address-add-new, .template-addresses-new .account-cards .address-add-new {
  width: 100%;
  max-width: none;
  padding: 19px;
  margin-top: 24px;
  margin-bottom: 24px;
  background: #ffffff;
  color: #b69f75;
  border: 1px solid #b69f75;
  -webkit-transition: .3s;
  transition: .3s;
}

.template-addresses .account-cards .address-add-new:hover, .template-addresses-new .account-cards .address-add-new:hover {
  background: #b69f75;
  color: #ffffff;
}

@media only screen and (min-width: 750px) {
  .template-addresses .account-cards .address-add-new, .template-addresses-new .account-cards .address-add-new {
    max-width: 217px;
    background: #b69f75;
    color: #ffffff;
    border: none;
  }
  .template-addresses .account-cards .address-add-new:hover, .template-addresses-new .account-cards .address-add-new:hover {
    background: #ffffff;
    color: #b69f75;
  }
}

.template-addresses .account-cards .address-block, .template-addresses-new .account-cards .address-block {
  width: 100%;
  position: relative;
  padding: 10px 16px;
  border: 1px solid #e6ebee;
  margin-bottom: 12px;
}

@media only screen and (min-width: 750px) {
  .template-addresses .account-cards .address-block, .template-addresses-new .account-cards .address-block {
    width: 49%;
    margin-bottom: 0;
  }
}

.template-addresses .account-cards .address-block h2, .template-addresses-new .account-cards .address-block h2 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.14;
  color: #252525;
  margin-bottom: 12px;
  text-transform: capitalize;
  max-width: 58%;
}

.template-addresses .account-cards .address-block .address-info p, .template-addresses-new .account-cards .address-block .address-info p {
  font-size: 11px;
  line-height: 1.6;
  color: #252525;
  margin: 0;
}

@media only screen and (min-width: 750px) {
  .template-addresses .account-cards .address-block .address-info p, .template-addresses-new .account-cards .address-block .address-info p {
    margin: 0 0 1.333em;
    line-height: 1.9;
  }
}

.template-addresses .account-cards .address-block .address-actions, .template-addresses-new .account-cards .address-block .address-actions {
  position: absolute;
  top: 0;
  right: 0;
  margin: 9px 14px;
}

.template-addresses .account-cards .address-block .address-actions a + a, .template-addresses-new .account-cards .address-block .address-actions a + a {
  padding-left: 15px;
}

.template-addresses .account-cards .address-block .address-actions a, .template-addresses-new .account-cards .address-block .address-actions a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: left;
  color: #b69f75;
  text-transform: uppercase;
}

.template-addresses .account__table tbody tr:first-child, .template-addresses-new .account__table tbody tr:first-child {
  border: none;
}

.template-addresses .account__table tbody tr, .template-addresses-new .account__table tbody tr {
  text-transform: none;
}

.template-addresses .account-card, .template-addresses-new .account-card {
  width: 100%;
  padding: 20px 10px;
}

@media only screen and (min-width: 480px) {
  .template-addresses .account-card, .template-addresses-new .account-card {
    width: auto;
  }
}

@media only screen and (min-width: 750px) {
  .template-addresses .account-card, .template-addresses-new .account-card {
    padding: 20px;
  }
}

.template-addresses .account-entry__column-content, .template-addresses-new .account-entry__column-content {
  max-width: 27rem;
  width: 100%;
}

.template-addresses .account-card__title, .template-addresses-new .account-card__title {
  border: none;
  padding-bottom: 0;
}

@media only screen and (min-width: 750px) {
  .template-addresses .account-card__title, .template-addresses-new .account-card__title {
    border-bottom: 1px solid #000000;
    padding-bottom: 20px;
  }
}

.template-addresses #address_default_address_new, .template-addresses-new #address_default_address_new {
  margin: 0;
}

.template-addresses .h5, .template-addresses-new .h5 {
  color: #000000;
  font-size: 20px;
  line-height: 21px;
  text-transform: uppercase;
}

@media only screen and (min-width: 750px) {
  .template-addresses .h5, .template-addresses-new .h5 {
    font-size: 16px;
    line-height: 20px;
  }
}

.template-addresses .account-card__footer .btn, .template-addresses .account-card__footer #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-addresses .account-card__footer .bc-sf-filter-load-more-button, .template-addresses-new .account-card__footer .btn, .template-addresses-new .account-card__footer #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-addresses-new .account-card__footer .bc-sf-filter-load-more-button {
  width: 170px !important;
  height: 50px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}

@media only screen and (min-width: 750px) {
  .template-addresses .account-card__footer .btn, .template-addresses .account-card__footer #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-addresses .account-card__footer .bc-sf-filter-load-more-button, .template-addresses-new .account-card__footer .btn, .template-addresses-new .account-card__footer #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .template-addresses-new .account-card__footer .bc-sf-filter-load-more-button {
    width: 154px !important;
  }
}

/*================ Blog ================*/
.template-blog .main-content .wrapper {
  padding-top: 10px;
}

.template-blog .main-content .article {
  margin-bottom: 30px;
}

.template-blog .main-content .article a {
  display: block;
  color: #252525;
}

.template-blog .main-content .article .image {
  margin-bottom: 14px;
  background: #f7f7f7;
}

.template-blog .main-content .article img {
  width: 100%;
}

.template-blog .main-content .article .date {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}

.template-blog .main-content .article h3 {
  position: relative;
  margin-top: 0.42857em;
  margin-bottom: 1.42857em;
}

.template-blog .main-content .article h3::before {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  border-top: 1px solid var(--color-primary);
  content: '';
}

.template-blog .main-content .article h6 {
  margin-top: 1.66667em;
  color: var(--color-primary);
}

.template-blog .categories {
  margin-bottom: 10px;
  background: #f7f7f7;
}

.template-blog .categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.template-blog .categories .active {
  font-weight: 700;
}

.template-blog .blog-main .grid {
  margin-left: -10px;
}

.template-blog .blog-main .grid__item {
  padding-left: 10px;
}

.template-blog .pagination {
  margin-top: 30px;
}

.template-blog .blog-subscription {
  padding-top: 30px;
  border-top: 1px solid #e9e9e9;
}

@media only screen and (min-width: 750px) {
  .template-blog .main-content .wrapper {
    padding-top: 30px;
  }
  .template-blog .main-content .article:nth-child(1), .template-blog .main-content .article:nth-child(2) {
    margin-bottom: 48px;
  }
  .template-blog .main-content .article .image {
    margin-bottom: 16px;
  }
  .template-blog .main-content .article h3 {
    margin-top: 0.1875em;
    margin-bottom: 1.5em;
  }
  .template-blog .main-content .article h6 {
    margin-top: -0.33333em;
  }
  .template-blog .categories {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 750px) and (max-width: 1199px) {
  .template-blog .main-content .article:nth-child(2n+1) {
    clear: both;
  }
}

@media only screen and (min-width: 990px) {
  .template-blog .categories {
    padding: 20px;
  }
  .template-blog .categories h2 {
    position: relative;
    margin-bottom: 1em;
  }
  .template-blog .categories h2::before {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    border-top: 1px solid var(--color-primary);
    content: '';
  }
  .template-blog .blog-main {
    float: right;
    margin-left: 30px;
    width: calc(100% - 280px);
  }
  .template-blog .blog-sidebar {
    float: left;
    width: 250px;
  }
  .template-blog .blog-subscription {
    padding-top: 0;
    border-top: 0;
  }
  .template-blog .blog-subscription h4 {
    position: relative;
    margin-bottom: 1.375em;
  }
  .template-blog .blog-subscription h4::before {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    border-top: 1px solid var(--color-primary);
    content: '';
  }
  .template-blog .blog-subscription .form-error {
    padding-bottom: 12px;
  }
}

@media only screen and (max-width: 989px) {
  .template-blog .categories {
    position: relative;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .template-blog .categories label {
    position: relative;
    margin: 0;
    padding: 9px 23px 9px 10px;
    background: #f7f7f7;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
  }
  .template-blog .categories label::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    width: 7px;
    height: 5px;
    margin-top: -2.5px;
    background: var(--svg-select-icon) no-repeat;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
  .template-blog .categories.active label::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .template-blog .categories ul {
    position: absolute;
    z-index: 30;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    background: #f7f7f7;
  }
  .template-blog .categories li:first-child a,
  .template-blog .categories li:first-child .active {
    padding-top: 4px;
  }
  .template-blog .categories li:last-child a,
  .template-blog .categories li:last-child .active {
    padding-bottom: 10px;
  }
  .template-blog .categories a,
  .template-blog .categories .active {
    display: block;
    padding: 2px 10px;
    color: #252525;
  }
}

@media only screen and (min-width: 1200px) {
  .template-blog .main-content .article:nth-child(3n+3) {
    clear: both;
  }
}

.template-article .main-content {
  padding-bottom: 60px;
}

.template-article .article-header .date {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-align: center;
}

.template-article .article-header h1 {
  margin-top: 0;
  margin-bottom: 1.52em;
}

.template-article .article-footer {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #c7c8cf;
}

.template-article .article-footer .back {
  margin-top: 2.5em;
}

.template-article .article-footer .back a {
  color: var(--color-primary);
}

@media only screen and (min-width: 750px) {
  .template-article .main-content {
    padding-top: 58px;
    padding-bottom: 120px;
  }
  .template-article .article-header h1 {
    margin-bottom: 2.11429em;
  }
  .template-article .article-main img {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .template-article .article-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 60px;
  }
  .template-article .article-footer .back {
    margin: 0;
  }
  .template-article .social-sharing {
    position: relative;
    text-align: right;
  }
  .template-article .social-sharing .link {
    margin-bottom: -38px;
  }
}

.social-sharing h6,
.social-sharing a {
  display: inline-block;
  vertical-align: middle;
}

.social-sharing h6 {
  margin-bottom: 0;
  margin-right: 10px;
}

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

.social-sharing a.show-link {
  padding-right: 0;
}

.social-sharing .icon {
  width: 25px;
  height: 25px;
}

.social-sharing .link {
  display: none;
  margin: 0;
  font-size: 10px;
  color: #666;
}

.social-sharing .link.shown {
  display: block;
}

.social-sharing .link-text {
  display: inline-block;
  vertical-align: middle;
  margin: 6px 6px 6px 0;
}

.social-sharing .copy-link {
  display: inline-block;
  vertical-align: middle;
  margin: 6px 0;
  padding: 4px 7px;
  font-size: 12px;
  background: #252525;
  color: #fff;
}

/*================ Contact ================*/
.template-contact .main-content .wrapper {
  max-width: 890px;
}

.template-contact-bullion .main-content > .wrapper {
  padding-top: 40px;
  padding-bottom: 0;
}

@media only screen and (min-width: 750px) {
  .template-contact-bullion .main-content > .wrapper {
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 870px) {
  .template-contact-bullion .main-content > .wrapper {
    padding-bottom: 40px;
  }
}

.contact-form h4 {
  color: var(--color-primary);
  margin-bottom: 15px;
}

.contact-form .smaller {
  font-size: 12px;
  margin-bottom: 15px;
}

.contact-form textarea {
  min-height: 160px;
}

.contact-form .help-block .action-links,
.contact-form .help-block .contact-details,
.contact-form .help-block .current-time,
.contact-form .help-block .public-holidays {
  border-color: #e9e9e9;
  margin: 0;
}

@media only screen and (min-width: 750px) {
  .contact-form .help-block .action-links,
  .contact-form .help-block .contact-details,
  .contact-form .help-block .current-time,
  .contact-form .help-block .public-holidays {
    margin-left: 0;
    margin-right: 0;
  }
}

.template-contact-bullion .contact-form .help-block {
  margin: 30px 0;
}

@media only screen and (min-width: 870px) {
  .template-contact-bullion .contact-form .help-block {
    margin: 0;
  }
}

@media only screen and (max-width: 749px) {
  .contact-form .help-block .action-links {
    overflow-x: hidden;
  }
}

.contact-form .public-holidays {
  border-bottom: 0;
}

@media only screen and (min-width: 750px) {
  .contact-form .public-holidays {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 870px) {
  .template-contact-bullion .contact-form .public-holidays {
    padding-bottom: 40px;
  }
}

.contact-form .action-links .icon-phone,
.contact-form .action-links .icon {
  margin-right: 10px;
}

.contact-form .send {
  margin-top: 0;
}

.contact-form .product-select {
  overflow: visible;
  margin-top: 30px;
  max-height: 400px;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}

.contact-form .product-select.hidden {
  overflow: hidden;
  visibility: hidden;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  -webkit-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}

.contact-form .product-select hr {
  margin-top: 14px;
  margin-bottom: 30px;
}

.contact-form .product-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}

.contact-form .product-quantity .js-qty {
  width: 100px;
}

.contact-form .product-quantity .js-qty input[type="text"] {
  font-size: 16px;
  padding: 5px 25px;
}

.contact-form .product-quantity .js-qty__adjust {
  width: 30px;
  height: 30px;
}

.contact-add-product {
  text-align: right;
  margin: 0 0 30px 0;
  cursor: pointer;
}

.contact-add-product h6 {
  display: inline-block;
}

.contact-add-product .icon-plus {
  width: 10px;
  height: 10px;
  margin-right: 5px;
  position: relative;
  top: -1px;
}

/*================ Google Map ================*/
.google-map {
  display: block;
  height: 220px;
}

@media only screen and (min-width: 750px) {
  .google-map {
    height: 400px;
  }
}

.template-contact-bullion .google-map {
  margin: 0;
  width: 100%;
}

.google-map-desktop {
  display: none;
}

@media only screen and (min-width: 870px) {
  .google-map-desktop {
    display: block;
  }
}

.google-map-mobile {
  display: block;
}

@media only screen and (min-width: 870px) {
  .google-map-mobile {
    display: none;
  }
}

@media only screen and (min-width: 870px) {
  .stockists-region-list,
  .faq-category-list {
    text-align: center;
  }
}

.stockists-region-list.nav,
.faq-category-list.nav {
  position: relative;
  margin: 0 auto;
  font-size: 12px;
  width: 100%;
}

@media only screen and (min-width: 870px) {
  .stockists-region-list.nav,
  .faq-category-list.nav {
    font-size: 14px;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
}

@media only screen and (min-width: 1200px) {
  .stockists-region-list.nav,
  .faq-category-list.nav {
    font-size: 16px;
  }
}

.stockists-region-list.nav label,
.faq-category-list.nav label {
  position: relative;
  margin: 0;
  padding: 14px 38px 14px 14px;
  background: #f7f7f7;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}

.stockists-region-list.nav label::after,
.faq-category-list.nav label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  display: block;
  width: 7px;
  height: 5px;
  margin-top: -2.5px;
  background: var(--svg-select-icon) no-repeat;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

@media only screen and (min-width: 870px) {
  .stockists-region-list.nav label,
  .faq-category-list.nav label {
    display: none;
  }
}

.stockists-region-list.nav.active label::after,
.faq-category-list.nav.active label::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.stockists-region-list.nav ul,
.faq-category-list.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 869px) {
  .stockists-region-list.nav ul,
  .faq-category-list.nav ul {
    position: absolute;
    z-index: 30;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    background: #f7f7f7;
  }
}

@media only screen and (min-width: 870px) {
  .stockists-region-list.nav ul,
  .faq-category-list.nav ul {
    display: block !important;
    margin-top: 20px;
  }
}

.stockists-region-list.nav li:first-child a,
.faq-category-list.nav li:first-child a {
  padding-top: 4px;
}

.stockists-region-list.nav li:last-child a,
.faq-category-list.nav li:last-child a {
  padding-bottom: 10px;
}

@media only screen and (min-width: 870px) {
  .stockists-region-list.nav li,
  .faq-category-list.nav li {
    display: inline-block;
    vertical-align: top;
    margin: 0;
  }
  .stockists-region-list.nav li:first-child a, .stockists-region-list.nav li:last-child a,
  .faq-category-list.nav li:first-child a,
  .faq-category-list.nav li:last-child a {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.stockists-region-list.nav a,
.faq-category-list.nav a {
  display: block;
  padding: 4px 14px;
  color: #252525;
}

.stockists-region-list.nav a.active,
.faq-category-list.nav a.active {
  font-weight: 700;
}

@media only screen and (min-width: 870px) {
  .stockists-region-list.nav a,
  .faq-category-list.nav a {
    padding: 0 15px;
  }
  .stockists-region-list.nav a.active,
  .faq-category-list.nav a.active {
    font-weight: 500;
    color: var(--color-primary);
  }
}

@media only screen and (min-width: 990px) {
  .stockists-region-list.nav a,
  .faq-category-list.nav a {
    padding: 0 22px;
  }
}

.stockists-list,
.faq-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
}

.stockists-list .medium-up--one-half,
.faq-list .medium-up--one-half {
  margin-bottom: 10px;
}

.stockists-list h3,
.faq-list h3 {
  margin-bottom: 15px;
  margin-top: 30px;
  color: var(--color-primary);
}

.stockists-list .location,
.faq-list .location {
  margin: 0 5px;
}

.stockists-list .stockist,
.faq-list .stockist {
  background-color: #f7f7f7;
  padding: 25px;
  margin: 0 5px;
  height: 100%;
}

/*================ Stockists ================*/
.template-stockists .main-content .wrapper {
  padding-bottom: 60px;
}

@media only screen and (min-width: 870px) {
  .template-stockists .main-content .wrapper {
    padding-bottom: 60px;
  }
}

.stockist-visit-link,
.stockist-site {
  display: block;
}

.stockist-site {
  color: var(--color-primary);
}

.stockist-visit-link {
  margin-top: 15px;
}

.stockist-visit-link .icon {
  width: 12px;
  height: 12px;
}

/*================ FAQs ================*/
.faq-item {
  background-color: #f7f7f7;
  padding: 20px;
  margin-bottom: 10px;
}

.faq-item .question h2 {
  margin-bottom: 0;
}

.faq-item .question .toggle-icon {
  right: 0;
}

.faq-item .answer {
  padding-top: 20px;
}

.faq-item .answer .rte,
.faq-item .answer p:last-child {
  margin-bottom: 0;
}

/*================ Landing Page ================*/
.landing-page {
  top: 0;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-align: center;
  color: #fff;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
}

.landing-page.shown {
  z-index: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
}

.landing-page .site-logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
}

.landing-page .site-logo a {
  display: block;
  color: #000;
}

.landing-page .site-logo .icon {
  width: 80px;
  height: 80px;
}

.landing-page .landing-page-block {
  height: 50%;
  background-color: #252525;
  background-size: cover;
  background-position: center center;
}

.landing-page .inner {
  width: 100%;
  padding: 30px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.landing-page a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100%;
  color: #fff;
}

.landing-page h3 {
  margin-bottom: 0.66667em;
  color: var(--color-primary);
}

.landing-page h2 {
  margin-bottom: 40px;
}

.landing-page h2::before {
  bottom: -12px;
}

.landing-page .btn, .landing-page #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .landing-page .bc-sf-filter-load-more-button {
  background: transparent;
}

.landing-page .btn:hover, .landing-page #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .landing-page .bc-sf-filter-load-more-button:hover, .landing-page .btn:focus, .landing-page #bc-sf-filter-load-more .bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .landing-page .bc-sf-filter-load-more-button:focus {
  background: var(--color-primary);
}

.landing-page .btn.btn-solid, .landing-page #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button, #bc-sf-filter-load-more .landing-page .btn-solid.bc-sf-filter-load-more-button {
  background: var(--color-primary);
  color: #fff;
}

.landing-page .btn.btn-solid:hover, .landing-page #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .landing-page .btn-solid.bc-sf-filter-load-more-button:hover, .landing-page .btn.btn-solid:focus, .landing-page #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .landing-page .btn-solid.bc-sf-filter-load-more-button:focus {
  background: transparent;
  color: var(--color-primary);
}

.landing-page .color-theme-light {
  background-color: #fff;
  color: #252525;
}

.landing-page .color-theme-light a {
  color: #252525;
}

.landing-page .color-theme-gold {
  background-color: var(--color-primary);
}

.landing-page .color-theme-gold.has-image {
  background-color: #252525;
}

.landing-page .color-theme-gold h3 {
  color: #fff;
}

.landing-page .color-theme-gold h2::before {
  border-color: #fff;
}

.landing-page .color-theme-gold .btn, .landing-page .color-theme-gold #bc-sf-filter-load-more .bc-sf-filter-load-more-button, #bc-sf-filter-load-more .landing-page .color-theme-gold .bc-sf-filter-load-more-button {
  border-color: #fff;
  color: #fff;
}

.landing-page .color-theme-gold .btn:hover, .landing-page .color-theme-gold #bc-sf-filter-load-more .bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .landing-page .color-theme-gold .bc-sf-filter-load-more-button:hover, .landing-page .color-theme-gold .btn:focus, .landing-page .color-theme-gold #bc-sf-filter-load-more .bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .landing-page .color-theme-gold .bc-sf-filter-load-more-button:focus {
  background: #fff;
  color: var(--color-primary);
}

.landing-page .color-theme-gold .btn.btn-solid, .landing-page .color-theme-gold #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button, #bc-sf-filter-load-more .landing-page .color-theme-gold .btn-solid.bc-sf-filter-load-more-button {
  background: #fff;
  color: var(--color-primary);
}

.landing-page .color-theme-gold .btn.btn-solid:hover, .landing-page .color-theme-gold #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:hover, #bc-sf-filter-load-more .landing-page .color-theme-gold .btn-solid.bc-sf-filter-load-more-button:hover, .landing-page .color-theme-gold .btn.btn-solid:focus, .landing-page .color-theme-gold #bc-sf-filter-load-more .btn-solid.bc-sf-filter-load-more-button:focus, #bc-sf-filter-load-more .landing-page .color-theme-gold .btn-solid.bc-sf-filter-load-more-button:focus {
  background: transparent;
  color: #fff;
}

@media only screen and (min-width: 375px) {
  .landing-page .site-logo .icon {
    width: 100px;
    height: 100px;
  }
  .landing-page .inner {
    padding: 40px;
  }
}

@media only screen and (min-width: 480px) {
  .landing-page .inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 750px) {
  .landing-page .site-logo .icon {
    width: 160px;
    height: 160px;
  }
  .landing-page h3 {
    font-size: 16px;
    margin-bottom: 0.1875em;
  }
  .landing-page h2 {
    margin-bottom: 38px;
  }
  .landing-page h2::before {
    bottom: -8px;
  }
}

@media only screen and (min-width: 870px) {
  .landing-page {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .landing-page .site-logo {
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  }
  .landing-page .site-logo .icon {
    width: 220px;
    height: 220px;
  }
  .landing-page .landing-page-block {
    width: 50%;
    height: 100%;
  }
  .landing-page a:hover .inner, .landing-page a:focus .inner {
    -webkit-transform: translate(0%, -5%);
    transform: translate(0%, -5%);
  }
}

/*================ Wishlist ================*/
.template-wishlist .main-content,
.template-wishlist-shared .main-content {
  max-width: 1440px;
}

.template-wishlist .main-content .note,
.template-wishlist-shared .main-content .note {
  margin-bottom: 24px;
}

.template-wishlist .main-content .wishlist-share-outer,
.template-wishlist-shared .main-content .wishlist-share-outer {
  margin-bottom: 24px;
}

.template-wishlist .main-content .wishlist-share,
.template-wishlist-shared .main-content .wishlist-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.template-wishlist .main-content .share-title,
.template-wishlist-shared .main-content .share-title {
  margin: 0 10px 0 0;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.template-wishlist .main-content .product-grid-item,
.template-wishlist-shared .main-content .product-grid-item {
  margin-bottom: 40px;
}

.template-wishlist .main-content .product-grid-item .selector-wrapper,
.template-wishlist-shared .main-content .product-grid-item .selector-wrapper {
  position: relative;
}

.template-wishlist .main-content .product-grid-item .selector-wrapper label,
.template-wishlist-shared .main-content .product-grid-item .selector-wrapper label {
  position: absolute;
  top: 4px;
  left: 16px;
  margin-bottom: 0;
  font-size: 10px;
  color: #999;
}

.template-wishlist .main-content .product-grid-item .selector-wrapper select,
.template-wishlist-shared .main-content .product-grid-item .selector-wrapper select {
  padding-top: 18px;
  padding-bottom: 10px;
}

@media only screen and (min-width: 750px) {
  .template-wishlist .main-content .wishlist-title,
  .template-wishlist-shared .main-content .wishlist-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 10px;
  }
  .template-wishlist .main-content .note,
  .template-wishlist-shared .main-content .note {
    margin-bottom: 30px;
  }
  .template-wishlist .main-content h1,
  .template-wishlist .main-content .wishlist-share-outer,
  .template-wishlist-shared .main-content h1,
  .template-wishlist-shared .main-content .wishlist-share-outer {
    margin-bottom: 0;
  }
  .template-wishlist .main-content .wishlist-share,
  .template-wishlist-shared .main-content .wishlist-share {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .template-wishlist .main-content .product-grid-item,
  .template-wishlist-shared .main-content .product-grid-item {
    margin-bottom: 60px;
  }
}

.template-rewards .product-loyalty-wrap {
  margin-bottom: 15px;
  background: rgba(236, 221, 195, 0.6);
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  font-family: proxima-nova, sans-serif;
  color: #252525;
}

@media only screen and (max-width: 749px) {
  .template-rewards .product-loyalty-wrap {
    font-size: 12px;
  }
}

.template-rewards .product-loyalty-wrap a {
  font-weight: 600;
  text-decoration: underline;
}

.template-rewards .rewards-page__left,
.template-rewards .rewards-page__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__left,
  .template-rewards .rewards-page__right {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.template-rewards .product-pagee__login-popup_inner {
  position: relative;
  width: 672px;
  background: #fff;
  padding: 60px 90px 40px;
}

@media only screen and (max-width: 749px) {
  .template-rewards .product-pagee__login-popup_inner {
    width: 95%;
    padding: 60px 10px 40px;
  }
}

.template-rewards .product-pagee__login-popup_inner .product-pagee__login-popup_close {
  position: absolute;
  cursor: pointer;
  right: 16px;
  top: 16px;
}

.template-rewards .product-pagee__login-popup_inner #CustomerLoginForm .send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 749px) {
  .template-rewards .product-pagee__login-popup_inner #CustomerLoginForm .send {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.template-rewards .product-pagee__login-popup_inner #CustomerLoginForm .send .login-submit {
  width: 100%;
  margin: 0;
  margin-bottom: 20px;
}

.template-rewards .product-pagee__login-popup_inner #CustomerLoginForm .send a {
  font-size: 11px;
  color: #252525;
  font-family: proxima-nova, sans-serif;
}

@media only screen and (max-width: 749px) {
  .template-rewards .product-pagee__login-popup_inner #CustomerLoginForm .send a {
    margin: 0;
    margin-top: 20px;
  }
}

.template-rewards .product-pagee__login-popup_inner #CustomerLoginForm h1 {
  text-align: center;
  margin-bottom: 50px;
}

.template-rewards.hidden {
  display: none;
}

.template-rewards .rewards-page__content {
  max-width: 1140px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 80px 0;
}

@media (max-width: 1139px) {
  .template-rewards .rewards-page__content {
    padding: 35px 20px;
  }
}

.template-rewards .rewards-page__left,
.template-rewards .rewards-page__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__left,
  .template-rewards .rewards-page__right {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.template-rewards .rewards-page__full {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__collector-club .rewards-page__left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__collector-club .rewards-page__right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 20px;
  }
}

.template-rewards .rewards-page__collector-club .rewards-page__left-wrap {
  max-width: 427px;
}

.template-rewards .rewards-page__collector-club .rewards-page__title {
  color: #f7f7f7;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__collector-club .rewards-page__title {
    font-size: 26px;
    text-align: center;
  }
}

.template-rewards .rewards-page__collector-club .rewards-page__text {
  color: #f7f7f7;
}

.template-rewards .rewards-page__collector-club .rewards-page__button {
  margin-top: 40px;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__collector-club .rewards-page__button {
    display: none;
  }
}

.template-rewards .rewards-page__collector-club .rewards-page__right-wrap {
  max-width: 100%;
  margin: 0;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__collector-club .rewards-page__right-wrap {
    max-width: 260px;
    margin: 0 auto;
  }
}

@media (max-width: 1040px) {
  .template-rewards .rewards-page__collector-club {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .template-rewards .rewards-page__collector-club .rewards-page__points-el {
    width: calc(33.3333% - 60px);
    margin-bottom: 30px;
  }
}

@media (max-width: 620px) {
  .template-rewards .rewards-page__collector-club {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .template-rewards .rewards-page__collector-club .rewards-page__points-el {
    width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}

.template-rewards .rewards-page__bonus {
  border-bottom: 1px solid #e6ebee;
}

.template-rewards .rewards-page__bonus .rewards-page__section-image {
  max-width: 507px;
  margin-left: -100px;
  width: 100%;
}

@media (max-width: 1139px) {
  .template-rewards .rewards-page__bonus .rewards-page__section-image {
    margin-left: -15px;
  }
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__bonus .rewards-page__section-image {
    max-width: 280px;
    margin: 0 auto 40px;
  }
}

.template-rewards .rewards-page__bonus .rewards-page__right-wrap {
  max-width: 500px;
}

.template-rewards .rewards-page__earn-credits .rewards-page__left-wrap {
  max-width: 420px;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__earn-credits .rewards-page__section-image {
    display: none;
  }
}

@media (max-width: 1040px) {
  .template-rewards .rewards-page__earn-credits .rewards-page__content {
    padding-bottom: 30px;
  }
}

@media (max-width: 620px) {
  .template-rewards .rewards-page__earn-credits .rewards-page__content {
    padding-bottom: 10px;
  }
}

.template-rewards .rewards-page__points {
  margin-top: 50px;
}

.template-rewards .rewards-page__points .rewards-page__points-title {
  font-family: "Prata", serif;
  text-align: center;
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  color: #252525;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__points .rewards-page__points-title {
    font-size: 16px;
  }
}

.template-rewards .rewards-page__points .rewards-page__points-wrap {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.template-rewards .rewards-page__points .rewards-page__points-wrap .rewards-page__points-el {
  width: 140px;
  margin: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.template-rewards .rewards-page__points .rewards-page__points-wrap .rewards-page__points-el .rewards-page__points-images {
  width: 50px;
  margin-bottom: 12px;
}

.template-rewards .rewards-page__points .rewards-page__points-wrap .rewards-page__points-el .rewards-page__points-images img {
  width: 100%;
}

.template-rewards .rewards-page__points .rewards-page__points-wrap .rewards-page__points-el .rewards-page__points-name {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: center;
  color: #252525;
}

.template-rewards .rewards-page__points .rewards-page__points-wrap .rewards-page__points-el .rewards-page__points-points {
  margin-top: 2px;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: center;
  color: #252525;
}

@media (max-width: 1040px) {
  .template-rewards .rewards-page__points .rewards-page__points-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .template-rewards .rewards-page__points .rewards-page__points-wrap .rewards-page__points-el {
    width: calc(33.3333% - 60px);
    margin-bottom: 30px;
  }
}

@media (max-width: 620px) {
  .template-rewards .rewards-page__points .rewards-page__points-wrap {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .template-rewards .rewards-page__points .rewards-page__points-wrap .rewards-page__points-el {
    width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}

.template-rewards .rewards-page__exclusive .rewards-page__section-image {
  max-width: 507px;
  width: 100%;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__exclusive .rewards-page__section-image {
    max-width: 280px;
    margin: 0 auto 40px;
  }
}

.template-rewards .rewards-page__exclusive .rewards-page__right-wrap {
  max-width: 486px;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__exclusive .rewards-page__title {
    padding: 0 40px;
    font-size: 25px;
  }
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__exclusive .rewards-page__title::after {
    display: none;
  }
}

.template-rewards .rewards-page__refer-friends .rewards-page__section-image {
  max-width: 423px;
  width: 100%;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__refer-friends .rewards-page__section-image {
    max-width: 280px;
    margin: 0 auto;
  }
}

.template-rewards .rewards-page__refer-friends .rewards-page__left-wrap {
  max-width: 420px;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__refer-friends .rewards-page__left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__refer-friends .rewards-page__right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 40px;
  }
}

.template-rewards .rewards-page__start {
  text-align: center;
}

.template-rewards .rewards-page__start .rewards-page__content {
  padding: 50px 0;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__start .rewards-page__content {
    padding: 35px 20px;
  }
}

.template-rewards .rewards-page__start .rewards-page__title {
  text-align: center;
  color: #f7f7f7;
  width: 390px;
  margin: 0 auto;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__start .rewards-page__title {
    width: 100%;
  }
}

.template-rewards .rewards-page__start .rewards-page__text {
  color: #f7f7f7;
  text-align: center;
  width: 390px;
  margin: 0 auto;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__start .rewards-page__text {
    width: 100%;
  }
}

.template-rewards .rewards-page__start .rewards-page__button {
  margin-top: 40px;
  text-align: center;
}

.template-rewards .rewards-page__title {
  font-family: "Prata", serif;
  color: #252525;
  font-size: 35px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 53px;
  letter-spacing: normal;
  padding-bottom: 19px;
  border-bottom: 1px solid #d3d6d9;
  position: relative;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__title {
    font-size: 26px;
    text-align: center;
    padding-bottom: 14px;
    border-bottom: 0;
  }
}

.template-rewards .rewards-page__title::after {
  width: 140px;
  background-color: #d3d6d9;
  height: 1px;
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -70px;
  display: none;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__title::after {
    display: block;
  }
}

.template-rewards .rewards-page__text {
  padding-top: 30px;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 18px;
  letter-spacing: normal;
  text-align: left;
  color: #252525;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__text {
    font-size: 12px;
    text-align: center;
    padding-top: 20px;
  }
}

.template-rewards .rewards-page__button {
  margin-top: 30px;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__button {
    text-align: center;
  }
}

.template-rewards .rewards-page__button button {
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.5px;
  background-color: #19b39b;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 50px;
  color: #fff;
  display: inline-block;
}

.template-rewards .rewards-page__faq-term {
  margin-top: 60px;
  color: #f7f7f7;
  font-size: 14px;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: center;
}

@media (max-width: 376px) {
  .template-rewards .rewards-page__faq-term {
    text-align: left;
  }
}

.template-rewards .rewards-page__faq-term a {
  color: #19b39b;
  font-weight: bold;
  text-decoration: underline;
}

.template-rewards .rewards-page__info {
  background-color: #b9e8e1;
  padding: 18px 17px 18px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 373px;
  margin: 50px 0 0;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__info {
    margin: 50px auto 0;
  }
}

.template-rewards .rewards-page__info .rewards-page__info-ico {
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.template-rewards .rewards-page__info .rewards-page__info-ico img {
  width: 100%;
}

.template-rewards .rewards-page__info .rewards-page__info-content {
  padding-left: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.template-rewards .rewards-page__info .rewards-page__info-title {
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.3px;
  text-align: left;
  color: #252525;
  text-transform: uppercase;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__info .rewards-page__info-title {
    font-size: 14px;
  }
}

.template-rewards .rewards-page__info .rewards-page__info-text {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: left;
  color: #252525;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__info .rewards-page__info-text {
    font-size: 12px;
  }
}

.template-rewards .rewards-page__exclusive-wrap {
  margin-top: 50px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__exclusive-wrap {
    margin-top: 35px;
    padding-right: 0;
  }
}

.template-rewards .rewards-page__exclusive-wrap .rewards-page__exclusive-el {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  margin-bottom: 40px;
}

.template-rewards .rewards-page__exclusive-wrap .rewards-page__exclusive-el:nth-child(even) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.template-rewards .rewards-page__exclusive-wrap .rewards-page__exclusive-el:last-child {
  margin-bottom: 0;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__exclusive-wrap .rewards-page__exclusive-el {
    width: 25px;
  }
}

.template-rewards .rewards-page__exclusive-wrap .rewards-page__exclusive-el .rewards-page__exclusive-image {
  width: 60px;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__exclusive-wrap .rewards-page__exclusive-el .rewards-page__exclusive-image {
    width: 40px;
  }
}

.template-rewards .rewards-page__exclusive-wrap .rewards-page__exclusive-el .rewards-page__exclusive-image img {
  width: 100%;
}

.template-rewards .rewards-page__exclusive-wrap .rewards-page__exclusive-el .rewards-page__exclusive-name-coupon {
  padding-left: 15px;
  max-width: 155px;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__exclusive-wrap .rewards-page__exclusive-el .rewards-page__exclusive-name-coupon {
    padding-left: 8px;
    width: 120px;
    max-width: 120px;
  }
}

.template-rewards .rewards-page__exclusive-wrap .rewards-page__exclusive-el .rewards-page__exclusive-name {
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.3px;
  text-align: left;
  color: #252525;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__exclusive-wrap .rewards-page__exclusive-el .rewards-page__exclusive-name {
    font-size: 14px;
  }
}

.template-rewards .rewards-page__exclusive-wrap .rewards-page__exclusive-el .rewards-page__exclusive-coupon {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: left;
  color: #252525;
}

@media (max-width: 749px) {
  .template-rewards .rewards-page__exclusive-wrap .rewards-page__exclusive-el .rewards-page__exclusive-coupon {
    font-size: 12px;
  }
}

/* Lazy Product Images */
.product-slide:not(.slick-slide) .product-image__secondary {
  visibility: hidden;
}

.product-slide:not(.slick-slide):not(:first-child) {
  display: none;
}

.product-loyalty-wrap {
  margin-bottom: 15px;
  background: rgba(236, 221, 195, 0.6);
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-family: proxima-nova, sans-serif;
  color: #252525;
}

@media only screen and (max-width: 749px) {
  .product-loyalty-wrap {
    font-size: 12px;
  }
}

.product-loyalty-wrap a {
  font-weight: 600;
  text-decoration: underline;
}

.product-pagee__login-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
}

.product-pagee__login-popup .product-pagee__login-popup_inner {
  position: relative;
  width: 672px;
  background: #fff;
  padding: 60px 90px 40px;
}

@media only screen and (max-width: 749px) {
  .product-pagee__login-popup .product-pagee__login-popup_inner {
    width: 95%;
    padding: 60px 10px 40px;
  }
}

.product-pagee__login-popup .product-pagee__login-popup_inner .product-pagee__login-popup_close {
  position: absolute;
  cursor: pointer;
  right: 16px;
  top: 16px;
}

.product-pagee__login-popup .product-pagee__login-popup_inner #CustomerLoginForm .send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 749px) {
  .product-pagee__login-popup .product-pagee__login-popup_inner #CustomerLoginForm .send {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.product-pagee__login-popup .product-pagee__login-popup_inner #CustomerLoginForm .send .login-submit {
  width: 100%;
  margin: 0;
  margin-bottom: 20px;
}

.product-pagee__login-popup .product-pagee__login-popup_inner #CustomerLoginForm .send a {
  font-size: 11px;
  color: #252525;
  font-family: proxima-nova, sans-serif;
}

@media only screen and (max-width: 749px) {
  .product-pagee__login-popup .product-pagee__login-popup_inner #CustomerLoginForm .send a {
    margin: 0;
    margin-top: 20px;
  }
}

.product-pagee__login-popup .product-pagee__login-popup_inner #CustomerLoginForm h1 {
  text-align: center;
  margin-bottom: 50px;
}

.product-pagee__login-popup.hidden {
  display: none;
}

.smile-hidden #smile-ui-container {
  display: none !important;
}

.smile-hidden .product-loyalty-wrap {
  display: none !important;
}

@media only screen and (min-width: 750px) {
  .help-block .action-links a {
    padding: 10px 15px !important;
  }
  .help-block .action-links {
    margin-left: 10px;
  }
}

.metafeilds__hello-bar {
  min-width: 100vw;
  height: auto;
  position: fixed;
  top: 0;
  right: 0;
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 100vw;
  height: 36px;
  position: fixed;
  top: 0;
  right: 0;
  padding: 10px 40px;
  left: 0;
  z-index: 231;
}

.checkout-announcement,
.metafields-ajax-cart,
.product-announcement {
  margin-bottom: 20px;
  padding: 40px 40px;
  width: 100%;
  height: auto;
}

.product-announcement {
  padding: 12px;
}

#create-account h1 {
  font-size: 35px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.5px;
  text-align: left;
  color: #252525;
  margin-bottom: 18px;
}

@media only screen and (max-width: 749px) {
  #create-account h1 {
    margin-bottom: 29px;
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.46;
    letter-spacing: 0.5px;
    text-align: left;
    color: #252525;
  }
}

#create-account .name-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 749px) {
  #create-account .name-fields {
    display: block;
  }
}

#create-account p.name-fields input {
  width: calc(50% - 5px);
}

@media only screen and (max-width: 749px) {
  #create-account p.name-fields input {
    width: 100%;
    margin-bottom: 10px;
  }
}

#create-account p.create_birth {
  font-family: proxima-nova, sans-serif;
  font-size: 11px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.09;
  letter-spacing: normal;
  color: #000;
  text-transform: uppercase;
  margin-top: 23px;
  margin-bottom: 7px;
}

@media only screen and (max-width: 749px) {
  #create-account p.create_birth {
    margin-bottom: 13px;
  }
}

#create-account input.birth_data {
  width: 239px;
  height: 48px;
  font-family: proxima-nova, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 0.37px;
  text-align: left;
  color: rgba(37, 37, 37, 0.5);
}

@media only screen and (max-width: 749px) {
  #create-account input.birth_data {
    width: 100%;
  }
}

#create-account #metafields_form input :not(.btn) {
  height: 44px;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 0.37px;
  text-align: left;
  color: rgba(37, 37, 37, 0.5);
}

#create-account #metafields_form p.send {
  margin-top: 20px;
}

@media only screen and (max-width: 749px) {
  #create-account #metafields_form p.send {
    margin-top: 30px;
  }
}

#create-account .return {
  font-family: proxima-nova, sans-serif;
  font-size: 11px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.09;
  letter-spacing: normal;
  text-align: left;
  color: #000;
  margin-top: 20px;
  text-transform: uppercase;
}

@media only screen and (max-width: 749px) {
  #create-account .return {
    text-align: center;
  }
}

#create-account span.metafields_forms_error {
  color: red;
}

.flex-break {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  height: 0;
}

.edit-account input.birth_data {
  font-family: proxima-nova, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.37px;
  text-align: left;
  padding: 12px 16px 11px;
}

@media only screen and (max-width: 749px) {
  .edit-account input.birth_data {
    width: 100%;
  }
}

.birthdate-tag.hidden {
  display: none;
}

#accepts_marketing_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

#accepts_marketing_checkbox label {
  margin: 0;
  margin-left: 10px;
}

.ql-editor h2 {
  font-family: Prata,seri !important;
  font-weight: 400 !important;
}

.ql-editor p span {
  font-family: proxima-nova,sans-serif !important;
  line-height: 1.5 !important;
}

.klaviyo_form_trigger_colletions{
  padding: 13px 110px;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: white;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
}
.klaviyo_form_trigger_colletions:hover{
  background: #fff;
  color: var(--color-primary);
}

.bc-sf-search-suggestion-mobile-top-panel form {
  height: 80px;
}
.bc-sf-search-suggestion-mobile-top-panel::after {
  position: fixed;
  top: 0;
  content: '';
  opacity: 0.5;
  background: #252525;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
}
.bc-sf-search-suggestion-mobile-top-panel #bc-sf-search-box-mobile {
  height: 100%;
}
.bc-sf-search-suggestion-mobile-top-panel .bc-sf-search-btn-close-suggestion {
  height: 100%;
}
.bc-sf-search-suggestion-mobile-top-panel .bc-sf-search-btn-close-suggestion:before {
  align-items: center;
  justify-content: center;
  line-height: 50px;
  display: flex;
  height: 100%;
}
.bc-sf-search-suggestion-mobile.bc-sf-search-suggestion-wrapper {
  top: 80px !important;
}
#launcher {
  z-index: 9 !important;
}
.template-bullion .needsclick.kl-private-reset-css-Xuajs1 { 
  display: none !important;
}
.sticky-block {
  position : sticky;
  top: 80px;
  background: white;
  z-index: 10;
}

@media screen and (max-width: 600px){
  .footer-social a{ font-size: 13px !important; }

  .footer-links a{ font-size: 15px !important; line-height: 17px; }

  .action-links ul li a { font-size: 16px !important; }

  .footer-links h4 a{ font-size: 16px !important; }

  .product-grid-item .product-text h2, .product-grid-item .product-text p{ font-size: 14px !important; }

  #shopify-section-1580361804280 .main-text.rte p{ font-size: 16px !important; }

  .featured-collections .nav label, .related-products .nav label { font-size: 15px !important; }

  .tab-content.rte.product-description.active,
  .tab-content.rte.product-description.active p,
  .product-loyalty-wrap,
  .product-loyalty-wrap *{
    font-size: 15px !important;
  }

  .zrx-bundle-product-name a,
  .zrx-bundle-product-price.zrx-bundle-item-price{
  font-size: 15px !important;
  }

  p, .template-product .specs td, .template-product .specs th {
  font-size: 15px !important
  }
}



.shopping_in_the_us{
  display: none;
  margin-top: 1rem;
  padding: 5px 10px;
  border: 1px solid #d90429;
  background: #ef233c;
  color: white;
}

.shopify-collection-description {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  *zoom: 1;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1320px;
}

#shopify-section-collection-description {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1320px;
}

#shopify-section-collection-description .shopify-collection-description {
  margin-bottom: 30px;
}

#shopify-section-collection-description > .collection-banner {
  width: 77%;
  float: right;
}

@media (min-width: 768px) and (max-width: 1199px) {
  #shopify-section-collection-description > .collection-banner {
    width: 75%;
  }
}

@media (max-width: 767px) {
  #shopify-section-collection-description {
    padding: 0;
  }

  #shopify-section-collection-description > .collection-banner {
    width: auto;
    float: none;
  }
}

.seo-text__title {
  font-family: proxima-nova, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 1rem;
  display: block;
}

.accordion input[type="checkbox"] {
  display:none;
}

.accordion .accordion-product-toggle {
  border-top: 1px solid #F3F3F3;
  padding: 12px 0;
  position: relative;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.accordion .accordion-product-toggle:after {
  content: '';
  position: absolute;
  right: 0;
  display: inline-block;
  top: 50%;
  border-top: 1px solid #252525;
  width: 11px;
}

.accordion .accordion-product-toggle:before {
  content: '';
  position: absolute;
  right: 5px;
  display: inline-block;
  top: calc(50% - 5px);
  border-right: 1px solid #252525;
  height: 11px;
}

.accordion > .accordion-checkbox-content {
  height: 0;
  overflow: hidden;
  margin: 0;

  -webkit-transition: height .2s ease-in-out;
  -moz-transition: height .2s ease-in-out;
  -o-transition: height .2s ease-in-out;
  -ms-transition: height .2s ease-in-out;
  transition: height .2s ease-in-out;
}

.accordion .tab-content {
  display: block;
}

.accordion input[type="checkbox"]:checked + .accordion-product-toggle:before {
  display: none;
}

.accordion input[type="checkbox"]:checked ~ .accordion-checkbox-content {
  height: auto;
  padding-bottom: 22px;
}

.expand-wrapper .small p:not(:first-child) {
  overflow: hidden;
  height: 0;
  margin: 0;
}

.expand-wrapper .big p:not(:first-child) {
  height: auto;
}

.expand-wrapper a.expand-toggle {
  border-bottom-color: var(--color-primary);
}

.accordion-wrap + #shopify-section-product-icons .value-props {
  margin: 0;
}

@media only screen and (min-width: 750px) {
  .accordion .help-block .action-links ul {
    margin-left: 0;
    margin-right: 0;
  }
}
