@charset "UTF-8";
/*============================================================================
  [replace with theme name] | Built with Slate
    - You cannot use native CSS/Sass @imports in this file without a build script
==============================================================================*/
/*================ VENDOR ================*/
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }

.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.pswp img {
  max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none; }

.pswp__button:hover {
  opacity: 1; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(default-skin.svg); }

  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }
.pswp__button--close {
  float: right;
  position: absolute;
  top: 20px;
  right: 20px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

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

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

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px; }

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000; }

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0; }

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*

	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }

.pswp__caption small {
  font-size: 11px;
  color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite; }

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /*
			The idea of animating inner circle is based on Polymer ("material") loading indicator
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

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

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

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

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

  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg); }

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

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

  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg); }

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

/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: transparent; }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: transparent; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }

/*================ UTILS ================*/
.flex-row {
  display: flex; }

.nowrap {
  white-space: nowrap; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

/*================ 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 ================*/
/*================ Easings ================*/
/*================ 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 ================*/
/*================ Buttons ================*/
/*================ Forms ================*/
/*================ COMMON ================*/
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

img {
  max-width: 100%; }

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

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

optgroup {
  font-weight: 700; }

option {
  color: #8d77ce;
  background-color: white; }

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

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

/*================ Helper Classes ================*/
.clear-left {
  clear: left; }

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

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

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

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

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

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

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

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

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

.embed-responsive {
  position: relative;
  width: 100%; }

.embed-responsive-2by1 {
  padding-top: 50%; }

.embed-responsive-32by15 {
  padding-top: 46.875%; }

.embed-responsive > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

@font-face {
  font-family: "din-next-rounded";
  src: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/din-next-rounded-regular.otf?v=1226233587331903281") format("opentype"); }

@font-face {
  font-family: "din-next-rounded";
  font-weight: 300;
  src: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/din-next-rounded-light.otf?v=9090977700982683221") format("opentype"); }

@font-face {
  font-family: "din-next-rounded";
  font-weight: 500;
  src: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/din-next-rounded-medium.otf?v=16200403426895559508") format("opentype"); }

@font-face {
  font-family: "din-next-rounded";
  font-weight: 700;
  src: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/din-next-rounded-bold.otf?v=9120554382589812869") format("opentype"); }

.container,
.container-sm,
.container-lg,
.container-half {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%; }

.container {
  max-width: 1160px; }

.container-sm {
  max-width: 630px; }

.container-lg {
  max-width: 1280px; }

.container-half {
  max-width: 580px; }

.container-full {
  display: flex;
  align-items: center; }
  .container-full > :first-child {
    margin-right: 0; }
  .container-full > :last-child {
    margin-left: 0; }

/*============================================================================
  Padding
==============================================================================*/
.pb-0 {
  padding-bottom: 0 !important; }

.pt-0 {
  padding-top: 0 !important; }

.mb-0 {
  margin-bottom: 0 !important; }

.mb-3 {
  margin-bottom: 1rem !important; }

.mb-4 {
  margin-bottom: 1.5rem !important; }

.mb-5 {
  margin-bottom: 2rem !important; }

.mt-0 {
  margin-top: 0 !important; }

.ml-4 {
  margin-left: 1.5rem !important; }

/*============================================================================
  Grid
    - Based on CSS Wizardry grid
==============================================================================*/
.grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  margin-left: -40px; }

.grid__item {
  padding-left: 40px;
  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 {
  flex-direction: row-reverse; }

/*============================================================================
  Grid Columns
    - Create width classes, prepended by the breakpoint name.
==============================================================================*/
/*================ Grid push classes ================*/
/*================ 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; }

.show-inline {
  display: inline-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%; }

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

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

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

  .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%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .small-up--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 750px) {
  /* Halves */
  .medium-up--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-up--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 990px) {
  /* Halves */
  .large-up--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large-up--push-eleven-twelfths {
    left: 91.66667%; } }
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 300; }

h1,
.h1 {
  margin-bottom: 30px;
  font-size: 30px;
  line-height: 36px; }

h2,
.h2 {
  margin-bottom: 30px;
  font-size: 30px;
  line-height: 36px; }

h3,
.h3 {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400; }

p {
  margin-top: 0;
  margin-bottom: 20px; }

s {
  position: relative;
  text-decoration: none; }
  s::after {
    display: block;
    position: absolute;
    top: 40%;
    left: -1px;
    right: -1px;
    height: 4px;
    background: #7da532;
    border-radius: 2px;
    transform: rotate(-8deg);
    content: ''; }

.normal-text {
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  text-decoration: none; }

@media only screen and (min-width: 750px) {
  h1,
  .h1 {
    margin-bottom: 40px;
    font-size: 60px;
    line-height: 68px; }

  h2,
  .h2 {
    margin-bottom: 40px;
    font-size: 48px;
    line-height: 54px; }

  h3,
  .h3 {
    margin-bottom: 30px;
    font-size: 36px;
    line-height: 45px;
    font-weight: 300; }

  p {
    margin-bottom: 30px; } }
/*================ General layout styles ================*/
body {
  background-color: white;
  font-family: din-next-rounded, "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #8d77ce;
  overflow-x: hidden; }
  @media only screen and (min-width: 750px) {
    body {
      font-size: 21px;
      line-height: 30px; } }

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

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

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

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

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

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

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

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

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

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

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

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

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar; }

/*================ Links & Buttons ================*/
.btn, section.product-reviews .spr-summary-actions-newreview {
  -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;
  padding: 12px 28px;
  width: auto;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1px;
  border: solid 1px;
  border-radius: 21px;
  transition: color .2s, background-color .2s, border-color .2s, opacity .2s; }
  .btn:disabled, section.product-reviews .spr-summary-actions-newreview:disabled, form:invalid .btn[type=submit], form:invalid section.product-reviews [type=submit].spr-summary-actions-newreview, section.product-reviews form:invalid [type=submit].spr-summary-actions-newreview {
    cursor: not-allowed; }

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

.btn-icon {
  width: 42px;
  height: 40px;
  padding: 0;
  line-height: 40px;
  text-align: center;
  border: 0; }
  @media only screen and (min-width: 750px) {
    .btn-icon {
      width: 50px;
      height: 50px;
      line-height: 48px; } }

.btn-search {
  color: #8d77ce;
  background-color: #fff;
  border-radius: 50%; }

.btn-close {
  margin: 0;
  padding: 20px;
  border: none;
  background: transparent;
  color: #8d77ce;
  text-align: center;
  font-size: 0;
  opacity: .5;
  transition: opacity .2s; }
  .btn-close:hover {
    opacity: 1; }
  .btn-close .icon-close {
    display: inline-block; }
  @media only screen and (min-width: 750px) {
    .btn-close::after {
      display: block;
      margin-top: 5px;
      font-size: 12px;
      font-weight: 700;
      line-height: 14px;
      content: 'ESC'; } }

.pswp__button--close.btn-close .icon-close {
  pointer-events: none; }

.btn-close-light {
  color: #fff; }

.btn-submit {
  position: relative;
  padding-left: 60px;
  padding-right: 60px; }
  .btn-submit .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -10px; }
  .btn-submit .icon-arrow-right {
    width: 16px;
    height: 12px;
    margin-top: -6px; }
  .btn-submit .icon-location {
    width: 16px;
    height: 16px;
    margin-top: -8px; }

.btn-primary, .btn-custom {
  color: white;
  border-color: #8d77ce;
  background-color: #8d77ce; }
  .btn-primary:hover, .btn-custom:hover, .btn-primary:focus, .btn-custom:focus, .btn-primary:active, .btn-custom:active, .btn-primary.active, .active.btn-custom {
    opacity: .9; }
  .btn-primary:disabled, .btn-custom:disabled, form:invalid .btn-primary[type=submit], form:invalid [type=submit].btn-custom {
    opacity: .5; }

.btn-secondary {
  color: white;
  border-color: #7da532;
  background-color: #7da532; }
  .btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary.active {
    opacity: .9; }
  .btn-secondary:disabled, form:invalid .btn-secondary[type=submit] {
    opacity: .5; }

.btn-dark-primary, .btn-dark-custom {
  color: #8d77ce;
  border-color: #fff;
  background-color: #fff; }
  .btn-dark-primary:hover, .btn-dark-custom:hover, .btn-dark-primary:focus, .btn-dark-custom:focus, .btn-dark-primary:active, .btn-dark-custom:active, .btn-dark-primary.active, .active.btn-dark-custom {
    opacity: .9; }
  .btn-dark-primary:disabled, .btn-dark-custom:disabled, form:invalid .btn-dark-primary[type=submit], form:invalid [type=submit].btn-dark-custom {
    opacity: .5; }

.btn-dark-secondary {
  color: #7da532;
  border-color: #fff;
  background-color: #fff; }
  .btn-dark-secondary:hover, .btn-dark-secondary:focus, .btn-dark-secondary:active, .btn-dark-secondary.active {
    opacity: .9; }
  .btn-dark-secondary:disabled, form:invalid .btn-dark-secondary[type=submit] {
    opacity: .5; }

.btn-clear-primary, .btn-clear-custom {
  color: #8d77ce;
  border-color: transparent;
  background-color: transparent; }
  .btn-clear-primary:hover, .btn-clear-custom:hover, .btn-clear-primary:focus, .btn-clear-custom:focus, .btn-clear-primary:active, .btn-clear-custom:active, .btn-clear-primary.active, .active.btn-clear-custom {
    opacity: .9; }
  .btn-clear-primary:disabled, .btn-clear-custom:disabled, form:invalid .btn-clear-primary[type=submit], form:invalid [type=submit].btn-clear-custom {
    opacity: .5; }

.btn-clear-secondary {
  color: #7da532;
  border-color: transparent;
  background-color: transparent; }
  .btn-clear-secondary:hover, .btn-clear-secondary:focus, .btn-clear-secondary:active, .btn-clear-secondary.active {
    opacity: .9; }
  .btn-clear-secondary:disabled, form:invalid .btn-clear-secondary[type=submit] {
    opacity: .5; }

.btn-outline-primary, .btn-outline-custom {
  color: #8d77ce;
  border-color: #8d77ce;
  background-color: rgba(255, 255, 255, 0); }
  .btn-outline-primary:hover, .btn-outline-custom:hover, .btn-outline-primary:focus, .btn-outline-custom:focus, .btn-outline-primary:active, .btn-outline-custom:active, .btn-outline-primary.active, .active.btn-outline-custom {
    color: white;
    background-color: #8d77ce; }
  .btn-outline-primary:disabled, .btn-outline-custom:disabled, form:invalid .btn-outline-primary[type=submit], form:invalid [type=submit].btn-outline-custom {
    opacity: .5;
    color: #8d77ce;
    background-color: rgba(255, 255, 255, 0); }

.btn-outline-secondary, section.product-reviews .spr-summary-actions-newreview {
  color: #7da532;
  border-color: #7da532;
  background-color: rgba(255, 255, 255, 0); }
  .btn-outline-secondary:hover, section.product-reviews .spr-summary-actions-newreview:hover, .btn-outline-secondary:focus, section.product-reviews .spr-summary-actions-newreview:focus, .btn-outline-secondary:active, section.product-reviews .spr-summary-actions-newreview:active, .btn-outline-secondary.active, section.product-reviews .active.spr-summary-actions-newreview {
    color: white;
    background-color: #7da532; }
  .btn-outline-secondary:disabled, section.product-reviews .spr-summary-actions-newreview:disabled, form:invalid .btn-outline-secondary[type=submit], form:invalid section.product-reviews [type=submit].spr-summary-actions-newreview, section.product-reviews form:invalid [type=submit].spr-summary-actions-newreview {
    opacity: .5;
    color: #7da532;
    background-color: rgba(255, 255, 255, 0); }

.btn-outline-dark-primary, .btn-outline-dark-custom {
  color: #fff;
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0); }
  .btn-outline-dark-primary:hover, .btn-outline-dark-custom:hover, .btn-outline-dark-primary:focus, .btn-outline-dark-custom:focus, .btn-outline-dark-primary:active, .btn-outline-dark-custom:active, .btn-outline-dark-primary.active, .active.btn-outline-dark-custom {
    color: #8d77ce;
    background-color: #fff; }
  .btn-outline-dark-primary:disabled, .btn-outline-dark-custom:disabled, form:invalid .btn-outline-dark-primary[type=submit], form:invalid [type=submit].btn-outline-dark-custom {
    opacity: .5;
    color: #fff;
    background-color: rgba(255, 255, 255, 0); }

.btn-outline-dark-secondary {
  color: #fff;
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0); }
  .btn-outline-dark-secondary:hover, .btn-outline-dark-secondary:focus, .btn-outline-dark-secondary:active, .btn-outline-dark-secondary.active {
    color: #7da532;
    background-color: #fff; }
  .btn-outline-dark-secondary:disabled, form:invalid .btn-outline-dark-secondary[type=submit] {
    opacity: .5;
    color: #fff;
    background-color: rgba(255, 255, 255, 0); }

@supports (--foo: white) {
  .btn-custom {
    color: white;
    border-color: var(--color-custom, #8d77ce);
    background-color: var(--color-custom, #8d77ce); }
    .btn-custom:hover, .btn-custom:focus, .btn-custom:active, .btn-custom.active {
      opacity: .9; }
    .btn-custom:disabled, form:invalid .btn-custom[type=submit] {
      opacity: .5; }

  .btn-dark-custom {
    color: var(--color-custom, #8d77ce);
    border-color: #fff;
    background-color: #fff; }
    .btn-dark-custom:hover, .btn-dark-custom:focus, .btn-dark-custom:active, .btn-dark-custom.active {
      opacity: .9; }
    .btn-dark-custom:disabled, form:invalid .btn-dark-custom[type=submit] {
      opacity: .5; }

  .btn-clear-custom {
    color: var(--color-custom, #8d77ce);
    border-color: transparent;
    background-color: transparent; }
    .btn-clear-custom:hover, .btn-clear-custom:focus, .btn-clear-custom:active, .btn-clear-custom.active {
      opacity: .9; }
    .btn-clear-custom:disabled, form:invalid .btn-clear-custom[type=submit] {
      opacity: .5; }

  .btn-outline-custom {
    color: var(--color-custom, #8d77ce);
    border-color: var(--color-custom, #8d77ce);
    background-color: rgba(255, 255, 255, 0); }
    .btn-outline-custom:hover, .btn-outline-custom:focus, .btn-outline-custom:active, .btn-outline-custom.active {
      color: white;
      background-color: var(--color-custom, #8d77ce); }
    .btn-outline-custom:disabled, form:invalid .btn-outline-custom[type=submit] {
      opacity: .5;
      color: var(--color-custom, #8d77ce);
      background-color: rgba(255, 255, 255, 0); }

  .btn-outline-dark-custom {
    color: #fff;
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0); }
    .btn-outline-dark-custom:hover, .btn-outline-dark-custom:focus, .btn-outline-dark-custom:active, .btn-outline-dark-custom.active {
      color: var(--color-custom, #8d77ce);
      background-color: #fff; }
    .btn-outline-dark-custom:disabled, form:invalid .btn-outline-dark-custom[type=submit] {
      opacity: .5;
      color: #fff;
      background-color: rgba(255, 255, 255, 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-control, section.product-detail .bold-ro__product select, section.product-reviews input.spr-form-input,
section.product-reviews textarea.spr-form-input {
  padding: 18px;
  width: 100%;
  height: 54px;
  font-size: 18px;
  line-height: 18px;
  color: #8d77ce;
  background-color: rgba(141, 119, 206, 0.1);
  border: none;
  border-radius: 5px; }
  .form-control:focus, section.product-detail .bold-ro__product select:focus, section.product-reviews input.spr-form-input:focus,
  section.product-reviews textarea.spr-form-input:focus {
    outline: none; }
  .form-control::placeholder, section.product-detail .bold-ro__product select::placeholder, section.product-reviews input.spr-form-input::placeholder,
  section.product-reviews textarea.spr-form-input::placeholder {
    color: rgba(141, 119, 206, 0.5); }
  @media only screen and (min-width: 750px) {
    .form-control, section.product-detail .bold-ro__product select, section.product-reviews input.spr-form-input,
    section.product-reviews textarea.spr-form-input {
      padding: 20px;
      height: 60px;
      font-size: 21px;
      line-height: 20px; } }

.form-control-sm {
  padding: 15px;
  height: 50px;
  font-size: 16px;
  line-height: 20px; }
  @media only screen and (min-width: 750px) {
    .form-control-sm {
      padding: 15px;
      height: 50px;
      font-size: 16px;
      line-height: 20px; } }

.form-control-light {
  background-color: #fff; }

/*================ Textareas ================*/
textarea {
  resize: vertical; }

textarea.form-control,
section.product-reviews textarea.spr-form-input {
  height: 140px;
  line-height: 26px; }
  @media only screen and (min-width: 750px) {
    textarea.form-control,
    section.product-reviews textarea.spr-form-input {
      height: 160px;
      line-height: 30px; } }

textarea.form-control-sm {
  height: 126px;
  line-height: 24px; }
  @media only screen and (min-width: 750px) {
    textarea.form-control-sm {
      height: 126px;
      line-height: 24px; } }

.form-error {
  color: #dd4a5b;
  font-size: 16px; }
  @media only screen and (min-width: 750px) {
    .form-error {
      font-size: 16px; } }

/*================ Form groups ================*/
.form-group, section.product-reviews .spr-form-contact-name,
section.product-reviews .spr-form-contact-email,
section.product-reviews .spr-form-contact-location,
section.product-reviews .spr-form-review-rating,
section.product-reviews .spr-form-review-title,
section.product-reviews .spr-form-review-body {
  position: relative;
  margin-bottom: 30px; }
  .form-group::after, section.product-reviews .spr-form-contact-name::after,
  section.product-reviews .spr-form-contact-email::after,
  section.product-reviews .spr-form-contact-location::after,
  section.product-reviews .spr-form-review-rating::after,
  section.product-reviews .spr-form-review-title::after,
  section.product-reviews .spr-form-review-body::after {
    position: absolute;
    top: 50%;
    right: 18px;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color .2s;
    content: ''; }
  .form-group .form-control:placeholder-shown + label, section.product-reviews .spr-form-contact-name .form-control:placeholder-shown + label,
  section.product-reviews .spr-form-contact-email .form-control:placeholder-shown + label,
  section.product-reviews .spr-form-contact-location .form-control:placeholder-shown + label,
  section.product-reviews .spr-form-review-rating .form-control:placeholder-shown + label,
  section.product-reviews .spr-form-review-title .form-control:placeholder-shown + label,
  section.product-reviews .spr-form-review-body .form-control:placeholder-shown + label, .form-group section.product-detail .bold-ro__product select:placeholder-shown + label, section.product-detail .bold-ro__product .form-group select:placeholder-shown + label, section.product-reviews .spr-form-contact-name section.product-detail .bold-ro__product select:placeholder-shown + label, section.product-detail .bold-ro__product section.product-reviews .spr-form-contact-name select:placeholder-shown + label,
  section.product-reviews .spr-form-contact-email section.product-detail .bold-ro__product select:placeholder-shown + label,
  section.product-detail .bold-ro__product section.product-reviews .spr-form-contact-email select:placeholder-shown + label,
  section.product-reviews .spr-form-contact-location section.product-detail .bold-ro__product select:placeholder-shown + label,
  section.product-detail .bold-ro__product section.product-reviews .spr-form-contact-location select:placeholder-shown + label,
  section.product-reviews .spr-form-review-rating section.product-detail .bold-ro__product select:placeholder-shown + label,
  section.product-detail .bold-ro__product section.product-reviews .spr-form-review-rating select:placeholder-shown + label,
  section.product-reviews .spr-form-review-title section.product-detail .bold-ro__product select:placeholder-shown + label,
  section.product-detail .bold-ro__product section.product-reviews .spr-form-review-title select:placeholder-shown + label,
  section.product-reviews .spr-form-review-body section.product-detail .bold-ro__product select:placeholder-shown + label,
  section.product-detail .bold-ro__product section.product-reviews .spr-form-review-body select:placeholder-shown + label, .form-group section.product-reviews input.spr-form-input:placeholder-shown + label, section.product-reviews .form-group input.spr-form-input:placeholder-shown + label, section.product-reviews .spr-form-contact-name input.spr-form-input:placeholder-shown + label,
  section.product-reviews .spr-form-contact-email input.spr-form-input:placeholder-shown + label,
  section.product-reviews .spr-form-contact-location input.spr-form-input:placeholder-shown + label,
  section.product-reviews .spr-form-review-rating input.spr-form-input:placeholder-shown + label,
  section.product-reviews .spr-form-review-title input.spr-form-input:placeholder-shown + label,
  section.product-reviews .spr-form-review-body input.spr-form-input:placeholder-shown + label,
  .form-group section.product-reviews textarea.spr-form-input:placeholder-shown + label,
  section.product-reviews .form-group textarea.spr-form-input:placeholder-shown + label,
  section.product-reviews .spr-form-contact-name textarea.spr-form-input:placeholder-shown + label,
  section.product-reviews .spr-form-contact-email textarea.spr-form-input:placeholder-shown + label,
  section.product-reviews .spr-form-contact-location textarea.spr-form-input:placeholder-shown + label,
  section.product-reviews .spr-form-review-rating textarea.spr-form-input:placeholder-shown + label,
  section.product-reviews .spr-form-review-title textarea.spr-form-input:placeholder-shown + label,
  section.product-reviews .spr-form-review-body textarea.spr-form-input:placeholder-shown + label {
    transform: translateY(10px);
    opacity: 0; }
  .form-group .form-control ~ label, section.product-reviews .spr-form-contact-name .form-control ~ label,
  section.product-reviews .spr-form-contact-email .form-control ~ label,
  section.product-reviews .spr-form-contact-location .form-control ~ label,
  section.product-reviews .spr-form-review-rating .form-control ~ label,
  section.product-reviews .spr-form-review-title .form-control ~ label,
  section.product-reviews .spr-form-review-body .form-control ~ label, .form-group section.product-detail .bold-ro__product select ~ label, section.product-detail .bold-ro__product .form-group select ~ label, section.product-reviews .spr-form-contact-name section.product-detail .bold-ro__product select ~ label, section.product-detail .bold-ro__product section.product-reviews .spr-form-contact-name select ~ label,
  section.product-reviews .spr-form-contact-email section.product-detail .bold-ro__product select ~ label,
  section.product-detail .bold-ro__product section.product-reviews .spr-form-contact-email select ~ label,
  section.product-reviews .spr-form-contact-location section.product-detail .bold-ro__product select ~ label,
  section.product-detail .bold-ro__product section.product-reviews .spr-form-contact-location select ~ label,
  section.product-reviews .spr-form-review-rating section.product-detail .bold-ro__product select ~ label,
  section.product-detail .bold-ro__product section.product-reviews .spr-form-review-rating select ~ label,
  section.product-reviews .spr-form-review-title section.product-detail .bold-ro__product select ~ label,
  section.product-detail .bold-ro__product section.product-reviews .spr-form-review-title select ~ label,
  section.product-reviews .spr-form-review-body section.product-detail .bold-ro__product select ~ label,
  section.product-detail .bold-ro__product section.product-reviews .spr-form-review-body select ~ label, .form-group section.product-reviews input.spr-form-input ~ label, section.product-reviews .form-group input.spr-form-input ~ label, section.product-reviews .spr-form-contact-name input.spr-form-input ~ label,
  section.product-reviews .spr-form-contact-email input.spr-form-input ~ label,
  section.product-reviews .spr-form-contact-location input.spr-form-input ~ label,
  section.product-reviews .spr-form-review-rating input.spr-form-input ~ label,
  section.product-reviews .spr-form-review-title input.spr-form-input ~ label,
  section.product-reviews .spr-form-review-body input.spr-form-input ~ label,
  .form-group section.product-reviews textarea.spr-form-input ~ label,
  section.product-reviews .form-group textarea.spr-form-input ~ label,
  section.product-reviews .spr-form-contact-name textarea.spr-form-input ~ label,
  section.product-reviews .spr-form-contact-email textarea.spr-form-input ~ label,
  section.product-reviews .spr-form-contact-location textarea.spr-form-input ~ label,
  section.product-reviews .spr-form-review-rating textarea.spr-form-input ~ label,
  section.product-reviews .spr-form-review-title textarea.spr-form-input ~ label,
  section.product-reviews .spr-form-review-body textarea.spr-form-input ~ label {
    position: absolute;
    top: -20px;
    left: 18px;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform .2s, opacity .2s; }
  .form-group .form-error, section.product-reviews .spr-form-contact-name .form-error,
  section.product-reviews .spr-form-contact-email .form-error,
  section.product-reviews .spr-form-contact-location .form-error,
  section.product-reviews .spr-form-review-rating .form-error,
  section.product-reviews .spr-form-review-title .form-error,
  section.product-reviews .spr-form-review-body .form-error {
    position: absolute;
    top: 100%;
    right: 18px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 14px;
    opacity: 0;
    transition: opacity .2s; }
  .form-group .form-control-light ~ label, section.product-reviews .spr-form-contact-name .form-control-light ~ label,
  section.product-reviews .spr-form-contact-email .form-control-light ~ label,
  section.product-reviews .spr-form-contact-location .form-control-light ~ label,
  section.product-reviews .spr-form-review-rating .form-control-light ~ label,
  section.product-reviews .spr-form-review-title .form-control-light ~ label,
  section.product-reviews .spr-form-review-body .form-control-light ~ label,
  .form-group .form-control-light ~ .form-error,
  section.product-reviews .spr-form-contact-name .form-control-light ~ .form-error,
  section.product-reviews .spr-form-contact-email .form-control-light ~ .form-error,
  section.product-reviews .spr-form-contact-location .form-control-light ~ .form-error,
  section.product-reviews .spr-form-review-rating .form-control-light ~ .form-error,
  section.product-reviews .spr-form-review-title .form-control-light ~ .form-error,
  section.product-reviews .spr-form-review-body .form-control-light ~ .form-error {
    color: #fff; }
  .form-group .form-control-sm ~ label, section.product-reviews .spr-form-contact-name .form-control-sm ~ label,
  section.product-reviews .spr-form-contact-email .form-control-sm ~ label,
  section.product-reviews .spr-form-contact-location .form-control-sm ~ label,
  section.product-reviews .spr-form-review-rating .form-control-sm ~ label,
  section.product-reviews .spr-form-review-title .form-control-sm ~ label,
  section.product-reviews .spr-form-review-body .form-control-sm ~ label {
    left: 15px; }
  @media only screen and (min-width: 750px) {
    .form-group::after, section.product-reviews .spr-form-contact-name::after,
    section.product-reviews .spr-form-contact-email::after,
    section.product-reviews .spr-form-contact-location::after,
    section.product-reviews .spr-form-review-rating::after,
    section.product-reviews .spr-form-review-title::after,
    section.product-reviews .spr-form-review-body::after {
      right: 20px; }
    .form-group .form-control ~ label, section.product-reviews .spr-form-contact-name .form-control ~ label,
    section.product-reviews .spr-form-contact-email .form-control ~ label,
    section.product-reviews .spr-form-contact-location .form-control ~ label,
    section.product-reviews .spr-form-review-rating .form-control ~ label,
    section.product-reviews .spr-form-review-title .form-control ~ label,
    section.product-reviews .spr-form-review-body .form-control ~ label, .form-group section.product-detail .bold-ro__product select ~ label, section.product-detail .bold-ro__product .form-group select ~ label, section.product-reviews .spr-form-contact-name section.product-detail .bold-ro__product select ~ label, section.product-detail .bold-ro__product section.product-reviews .spr-form-contact-name select ~ label,
    section.product-reviews .spr-form-contact-email section.product-detail .bold-ro__product select ~ label,
    section.product-detail .bold-ro__product section.product-reviews .spr-form-contact-email select ~ label,
    section.product-reviews .spr-form-contact-location section.product-detail .bold-ro__product select ~ label,
    section.product-detail .bold-ro__product section.product-reviews .spr-form-contact-location select ~ label,
    section.product-reviews .spr-form-review-rating section.product-detail .bold-ro__product select ~ label,
    section.product-detail .bold-ro__product section.product-reviews .spr-form-review-rating select ~ label,
    section.product-reviews .spr-form-review-title section.product-detail .bold-ro__product select ~ label,
    section.product-detail .bold-ro__product section.product-reviews .spr-form-review-title select ~ label,
    section.product-reviews .spr-form-review-body section.product-detail .bold-ro__product select ~ label,
    section.product-detail .bold-ro__product section.product-reviews .spr-form-review-body select ~ label, .form-group section.product-reviews input.spr-form-input ~ label, section.product-reviews .form-group input.spr-form-input ~ label, section.product-reviews .spr-form-contact-name input.spr-form-input ~ label,
    section.product-reviews .spr-form-contact-email input.spr-form-input ~ label,
    section.product-reviews .spr-form-contact-location input.spr-form-input ~ label,
    section.product-reviews .spr-form-review-rating input.spr-form-input ~ label,
    section.product-reviews .spr-form-review-title input.spr-form-input ~ label,
    section.product-reviews .spr-form-review-body input.spr-form-input ~ label,
    .form-group section.product-reviews textarea.spr-form-input ~ label,
    section.product-reviews .form-group textarea.spr-form-input ~ label,
    section.product-reviews .spr-form-contact-name textarea.spr-form-input ~ label,
    section.product-reviews .spr-form-contact-email textarea.spr-form-input ~ label,
    section.product-reviews .spr-form-contact-location textarea.spr-form-input ~ label,
    section.product-reviews .spr-form-review-rating textarea.spr-form-input ~ label,
    section.product-reviews .spr-form-review-title textarea.spr-form-input ~ label,
    section.product-reviews .spr-form-review-body textarea.spr-form-input ~ label {
      left: 20px; }
    .form-group .form-error, section.product-reviews .spr-form-contact-name .form-error,
    section.product-reviews .spr-form-contact-email .form-error,
    section.product-reviews .spr-form-contact-location .form-error,
    section.product-reviews .spr-form-review-rating .form-error,
    section.product-reviews .spr-form-review-title .form-error,
    section.product-reviews .spr-form-review-body .form-error {
      right: 20px;
      font-size: 13px;
      line-height: 16px; }
    .form-group .form-control-sm ~ label, section.product-reviews .spr-form-contact-name .form-control-sm ~ label,
    section.product-reviews .spr-form-contact-email .form-control-sm ~ label,
    section.product-reviews .spr-form-contact-location .form-control-sm ~ label,
    section.product-reviews .spr-form-review-rating .form-control-sm ~ label,
    section.product-reviews .spr-form-review-title .form-control-sm ~ label,
    section.product-reviews .spr-form-review-body .form-control-sm ~ label {
      left: 15px; } }

.form-group.has-error::after, section.product-reviews .has-error.spr-form-contact-name::after,
section.product-reviews .has-error.spr-form-contact-email::after,
section.product-reviews .has-error.spr-form-contact-location::after,
section.product-reviews .has-error.spr-form-review-rating::after,
section.product-reviews .has-error.spr-form-review-title::after,
section.product-reviews .has-error.spr-form-review-body::after {
  background-color: #dd4a5b; }
.form-group.has-error .form-control, section.product-reviews .has-error.spr-form-contact-name .form-control,
section.product-reviews .has-error.spr-form-contact-email .form-control,
section.product-reviews .has-error.spr-form-contact-location .form-control,
section.product-reviews .has-error.spr-form-review-rating .form-control,
section.product-reviews .has-error.spr-form-review-title .form-control,
section.product-reviews .has-error.spr-form-review-body .form-control, .form-group.has-error section.product-detail .bold-ro__product select, section.product-detail .bold-ro__product .form-group.has-error select, section.product-reviews .has-error.spr-form-contact-name section.product-detail .bold-ro__product select, section.product-detail .bold-ro__product section.product-reviews .has-error.spr-form-contact-name select,
section.product-reviews .has-error.spr-form-contact-email section.product-detail .bold-ro__product select,
section.product-detail .bold-ro__product section.product-reviews .has-error.spr-form-contact-email select,
section.product-reviews .has-error.spr-form-contact-location section.product-detail .bold-ro__product select,
section.product-detail .bold-ro__product section.product-reviews .has-error.spr-form-contact-location select,
section.product-reviews .has-error.spr-form-review-rating section.product-detail .bold-ro__product select,
section.product-detail .bold-ro__product section.product-reviews .has-error.spr-form-review-rating select,
section.product-reviews .has-error.spr-form-review-title section.product-detail .bold-ro__product select,
section.product-detail .bold-ro__product section.product-reviews .has-error.spr-form-review-title select,
section.product-reviews .has-error.spr-form-review-body section.product-detail .bold-ro__product select,
section.product-detail .bold-ro__product section.product-reviews .has-error.spr-form-review-body select, .form-group.has-error section.product-reviews input.spr-form-input, section.product-reviews .form-group.has-error input.spr-form-input, section.product-reviews .has-error.spr-form-contact-name input.spr-form-input,
section.product-reviews .has-error.spr-form-contact-email input.spr-form-input,
section.product-reviews .has-error.spr-form-contact-location input.spr-form-input,
section.product-reviews .has-error.spr-form-review-rating input.spr-form-input,
section.product-reviews .has-error.spr-form-review-title input.spr-form-input,
section.product-reviews .has-error.spr-form-review-body input.spr-form-input,
.form-group.has-error section.product-reviews textarea.spr-form-input,
section.product-reviews .form-group.has-error textarea.spr-form-input,
section.product-reviews .has-error.spr-form-contact-name textarea.spr-form-input,
section.product-reviews .has-error.spr-form-contact-email textarea.spr-form-input,
section.product-reviews .has-error.spr-form-contact-location textarea.spr-form-input,
section.product-reviews .has-error.spr-form-review-rating textarea.spr-form-input,
section.product-reviews .has-error.spr-form-review-title textarea.spr-form-input,
section.product-reviews .has-error.spr-form-review-body textarea.spr-form-input {
  padding-right: 50px; }
.form-group.has-error .form-error, section.product-reviews .has-error.spr-form-contact-name .form-error,
section.product-reviews .has-error.spr-form-contact-email .form-error,
section.product-reviews .has-error.spr-form-contact-location .form-error,
section.product-reviews .has-error.spr-form-review-rating .form-error,
section.product-reviews .has-error.spr-form-review-title .form-error,
section.product-reviews .has-error.spr-form-review-body .form-error {
  opacity: 1; }

@media only screen and (min-width: 750px) {
  .form-group-half {
    float: left;
    width: calc(50% - 10px); }

  .form-group-half + .form-group-half {
    margin-left: 20px; }

  .form-group-half + .form-group-half + * {
    clear: left; } }
/*================ Input groups ================*/
.input-group {
  display: flex;
  background-color: rgba(141, 119, 206, 0.1);
  border-radius: 5px; }
  .input-group .form-control, .input-group section.product-detail .bold-ro__product select, section.product-detail .bold-ro__product .input-group select, .input-group section.product-reviews input.spr-form-input, section.product-reviews .input-group input.spr-form-input,
  .input-group section.product-reviews textarea.spr-form-input,
  section.product-reviews .input-group textarea.spr-form-input {
    flex-grow: 1; }
  .input-group > * {
    border-radius: 0; }
  .input-group > :first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px; }
  .input-group > :last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px; }
  .input-group .btn, .input-group section.product-reviews .spr-summary-actions-newreview, section.product-reviews .input-group .spr-summary-actions-newreview {
    padding: 18px;
    line-height: 18px;
    border: none; }
  @media only screen and (min-width: 750px) {
    .input-group .btn, .input-group section.product-reviews .spr-summary-actions-newreview, section.product-reviews .input-group .spr-summary-actions-newreview {
      padding: 20px;
      line-height: 20px; } }

.input-group-light {
  background-color: #fff; }

/*================ Custom checkbox/radio style ================*/
.custom-checkbox,
.custom-radio {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px; }

.custom-checkbox-input,
.custom-radio-input {
  position: absolute;
  z-index: -1;
  opacity: 0; }

.custom-checkbox-indicator,
.custom-radio-indicator,
section.product-detail .bold-ro__radio-div input[type=radio] + span::before {
  margin-right: 16px;
  width: 24px;
  height: 24px;
  border: solid 1px #8d77ce;
  border-radius: 3px;
  background-image: none;
  background-position: center;
  background-repeat: no-repeat; }
  :checked + .custom-checkbox-indicator, :checked +
  .custom-radio-indicator, section.product-detail .bold-ro__radio-div input[type=radio]:checked + span::before {
    background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/tick-purple.svg?v=1407333180570358029"); }
  :disabled + .custom-checkbox-indicator, :disabled +
  .custom-radio-indicator, section.product-detail .bold-ro__radio-div input[type=radio]:disabled + span::before {
    opacity: .5;
    cursor: not-allowed; }

.custom-checkbox-description,
.custom-radio-description {
  font-size: 16px;
  line-height: 24px; }
  :disabled ~ .custom-checkbox-description, :disabled ~
  .custom-radio-description {
    opacity: .5; }
  @media only screen and (min-width: 750px) {
    .custom-checkbox-description,
    .custom-radio-description {
      font-size: 16px; } }

/*================ Custom select style ================*/
select.form-control, section.product-detail .bold-ro__product select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url(//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/ico-select.svg?v=1686168240517253357);
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 ================*/ }
  .ie9 select.form-control, .ie9 section.product-detail .bold-ro__product select, section.product-detail .bold-ro__product .ie9 select {
    padding-right: 10px;
    background-image: none; }

select.form-control::-ms-expand, section.product-detail .bold-ro__product select::-ms-expand {
  display: none; }

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

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

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

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

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

ol.nav-pagination,
ul.nav-pagination {
  padding: 0;
  list-style: none;
  text-align: center; }
  ol.nav-pagination li,
  ul.nav-pagination li {
    display: inline-block;
    padding: 0 7px;
    color: rgba(141, 119, 206, 0.65); }
    ol.nav-pagination li.active,
    ul.nav-pagination li.active {
      color: #7da532;
      color: var(--color-custom, #7da532); }
  ol.nav-pagination a,
  ul.nav-pagination a {
    text-decoration: none;
    color: #8d77ce; }

.nav-tabs {
  display: flex;
  justify-content: stretch; }

.btn-tab {
  flex-grow: 1;
  padding-left: 0;
  padding-right: 0;
  margin-right: 4px;
  border-radius: 0;
  border: none;
  border-bottom: solid 1px #8d77ce;
  background: transparent;
  color: #8d77ce;
  opacity: .5;
  transition: opacity .2s, border-bottom-color .2s, color .2s; }
  .btn-tab:last-child {
    margin-right: 0; }
  .btn-tab:hover, .btn-tab:focus, .btn-tab:active, .btn-tab.active {
    opacity: 1; }
  .btn-tab:active, .btn-tab.active {
    border-bottom-color: #7da532;
    border-bottom-color: var(--color-custom, #7da532);
    color: #7da532;
    color: var(--color-custom, #7da532);
    background: transparent; }

.tab-content {
  display: none; }
  .tab-content.active {
    display: block; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td {
  padding: 0; }

.table {
  margin-bottom: 20px;
  width: 100%; }
  .table thead {
    border-bottom: solid 1px rgba(141, 119, 206, 0.2); }
  .table tfoot {
    border-top: solid 1px rgba(141, 119, 206, 0.2); }
  .table th {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left; }
  .table tbody th, .table tbody td {
    padding: 10px 0; }
  .table tbody tr:first-child th,
  .table tbody tr:first-child td {
    padding-top: 20px; }
  .table tbody tr:last-child th,
  .table tbody tr:last-child td {
    padding-bottom: 20px; }
  .table tfoot th, .table tfoot td {
    padding-top: 20px; }
  @media only screen and (min-width: 750px) {
    .table th {
      font-size: 13px; } }

.modal-active {
  overflow-y: hidden; }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .modal.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all; }
  .modal .btn-close {
    position: absolute;
    top: 10px;
    right: 10px; }
  @media only screen and (min-width: 750px) {
    .modal .btn-close {
      top: 20px;
      right: 20px; } }

.dropdown {
  position: relative;
  display: inline-block; }

.dropdown-toggle {
  width: 100%; }
  .dropdown-toggle:focus {
    outline: none; }

.dropdown-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: -20px;
  padding: 5px 0;
  min-width: 200px;
  max-height: 300px;
  background-color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  z-index: 99; }
  .dropdown.active > .dropdown-menu {
    opacity: 1;
    pointer-events: all; }
  @media only screen and (min-width: 750px) {
    .dropdown:hover > .dropdown-menu {
      opacity: 1;
      pointer-events: all; } }

.dropdown-item {
  margin: 0;
  padding: 0 20px;
  color: #8d77ce;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  text-decoration: none;
  background-color: rgba(141, 119, 206, 0);
  transition: background-color .2s; }
  .dropdown-item:hover, .dropdown-item:focus, .dropdown-item:active, .dropdown-item.active {
    background-color: rgba(141, 119, 206, 0.1); }
  @media only screen and (min-width: 750px) {
    .dropdown-item {
      font-size: 16px; } }

.accordian {
  height: 26px;
  overflow-y: hidden;
  transition: height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }

.accordian-toggle:focus {
  outline: none; }

/*================ SECTIONS ================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 0 0 0;
  z-index: 4;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .header .container-lg {
    display: flex;
    flex-direction: row;
    align-items: center; }
    @media only screen and (min-width: 990px) {
      .header .container-lg {
        flex-direction: column;
        align-items: center;
        justify-content: space-between; } }
  .header .logo {
    line-height: 0;
    display: block;
    width: 100px;
    height: 60px;
    background: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/bubs-australia.svg?v=14108760984116279010") no-repeat center center; }
    .header .logo svg {
      width: 100px;
      height: 60px;
      overflow: visible; }
    .header .logo #large,
    .header .logo #small {
      transition: opacity 0.3s, transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .header .nav-link {
    color: #8d77ce;
    text-decoration: none;
    transition: color .2s; }
    .header .nav-link:hover, .header .nav-link:active, .header .nav-link.active {
      color: #7da532; }
  .header button.nav-link {
    padding: 0;
    background: none;
    border: none; }
  .header .nav-divider {
    height: 32px;
    border-right: solid 1px rgba(141, 119, 206, 0.25); }
  .header .primary-nav {
    display: none;
    flex-grow: 1;
    font-size: 16px;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .header .primary-nav .nav-link,
    .header .primary-nav .dropdown {
      margin-left: 30px; }
    .header .primary-nav .nav-link:first-child,
    .header .primary-nav .dropdown:first-child {
      margin-left: 0; }
    .header .primary-nav .dropdown-menu {
      max-height: none;
      overflow-y: visible; }
  .header .secondary-nav {
    display: none;
    width: 100%;
    /*justify-content: flex-end;*/
    background: #f9f7ff;
    padding: 10px 0; }
    .header .secondary-nav .nav-wrap {
      align-items: center;
      margin-right: 15px; }
    .header .secondary-nav .dropdown {
      position: relative;
      top: -1px; }
    .header .secondary-nav small {
      font-size: 14px; }
    .header .secondary-nav .nav-actions {
      padding-top: 0; }
    .header .secondary-nav .nav-link,
    .header .secondary-nav .nav-divider {
      margin-left: 10px; }
    .header .secondary-nav .nav-link:first-child {
      margin-left: 0; }
    .header .secondary-nav .nav-link {
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-right: 10px; }
    .header .secondary-nav .icon-facebook {
      width: 8px;
      height: 14px; }
    .header .secondary-nav .icon-instagram {
      width: 14px;
      height: 14px; }
    .header .secondary-nav .icon-wechat {
      width: 20px;
      height: 16px; }
    @media only screen and (min-width: 990px) {
      .header .secondary-nav .container-lg {
        flex-direction: row;
        justify-content: flex-end; } }
  .header .mobile-nav {
    display: flex;
    align-items: center;
    margin-left: auto; }
    .header .mobile-nav .nav-link,
    .header .mobile-nav .nav-divider {
      margin-left: 20px; }
    .header .mobile-nav .nav-link:first-child {
      margin-left: 0; }
    .header .mobile-nav .nav-link {
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px; }
  .header .nav-link-cart {
    position: relative;
    top: -2px; }
    .header .nav-link-cart .icon-cart {
      width: 30px;
      height: 30px;
      color: #7da532; }
    .header .nav-link-cart .icon-cart + .count {
      position: absolute;
      bottom: 0;
      left: 50%;
      font-weight: 700;
      line-height: 20px;
      color: #7da532;
      transform: translateX(-50%); }
  @media only screen and (min-width: 990px) {
    .header .logo {
      width: 133px;
      height: 80px;
      margin-right: 20px; }
      .header .logo svg {
        width: 133px;
        height: 80px; }
    .header .main-nav {
      display: block;
      display: flex;
      align-items: center;
      align-self: flex-start; }
    .header .primary-nav {
      display: block;
      font-size: 16px; }
    .header .secondary-nav {
      display: flex; }
    .header .mobile-nav {
      display: none; } }

header.small {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
  header.small .logo {
    background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/bubs-australia-icon.svg?v=6034637112778578230");
    background-repeat: no-repeat;
    background-position: -10px 5px; }
    header.small .logo #large,
    header.small .logo #small {
      transform: translate(-27px, 7px); }
    header.small .logo #large {
      opacity: 0; }
  header.small .primary-nav {
    margin-top: 7px; }
  header.small .social-nav {
    display: none; }
  @media only screen and (min-width: 990px) {
    header.small {
      transform: translateY(0); }
      header.small .logo {
        background-position: -10px 10px; }
      header.small .primary-nav {
        transform: translateX(-60px); } }

.footer {
  position: relative;
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 100px;
  background-color: #8d77ce;
  color: #fff; }
  .footer .grid {
    align-items: center; }
  .footer h3 {
    margin-bottom: 50px;
    max-width: 540px; }
  .footer .subscribe {
    margin-bottom: 40px; }
    .footer .subscribe .icon-arrow-right {
      width: 20px;
      height: 15px; }
    .footer .subscribe .form-group, .footer .subscribe section.product-reviews .spr-form-contact-name, section.product-reviews .footer .subscribe .spr-form-contact-name,
    .footer .subscribe section.product-reviews .spr-form-contact-email,
    section.product-reviews .footer .subscribe .spr-form-contact-email,
    .footer .subscribe section.product-reviews .spr-form-contact-location,
    section.product-reviews .footer .subscribe .spr-form-contact-location,
    .footer .subscribe section.product-reviews .spr-form-review-rating,
    section.product-reviews .footer .subscribe .spr-form-review-rating,
    .footer .subscribe section.product-reviews .spr-form-review-title,
    section.product-reviews .footer .subscribe .spr-form-review-title,
    .footer .subscribe section.product-reviews .spr-form-review-body,
    section.product-reviews .footer .subscribe .spr-form-review-body {
      max-width: 540px; }
  .footer .socials {
    margin-bottom: 60px;
    font-size: 16px; }
    .footer .socials > span {
      display: inline-block;
      margin-right: 15px; }
    .footer .socials .btn, .footer .socials section.product-reviews .spr-summary-actions-newreview, section.product-reviews .footer .socials .spr-summary-actions-newreview {
      margin-left: 15px; }
    .footer .socials .social-label {
      display: none;
      margin-left: 12px;
      margin-right: 15px;
      margin-bottom: 0;
      color: #fff; }
    .footer .socials .icon-instagram {
      width: 19px;
      height: 19px; }
    .footer .socials .icon-facebook {
      width: 8px;
      height: 17px; }
    .footer .socials .icon-wechat {
      width: 25px;
      height: 20px; }
  .footer .tagline {
    margin-bottom: 30px; }
  .footer .disclaimer {
    margin-top: 40px;
    font-size: 14px;
    line-height: 24px; }
  .footer .copyright {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.5); }
    .footer .copyright a {
      color: #fff;
      text-decoration: none; }
      .footer .copyright a:hover, .footer .copyright a:focus {
        text-decoration: underline; }
    .footer .copyright a + a {
      margin-left: 20px; }
  .footer .grid__item:last-child {
    text-align: right; }
  .footer .smile {
    display: none;
    width: 388px;
    opacity: .2; }
  @media only screen and (min-width: 750px) {
    .footer {
      margin-top: 120px;
      padding-top: 100px;
      padding-bottom: 120px; }
      .footer .subscribe .form-group:nth-child(1), .footer .subscribe section.product-reviews .spr-form-contact-name:nth-child(1), section.product-reviews .footer .subscribe .spr-form-contact-name:nth-child(1),
      .footer .subscribe section.product-reviews .spr-form-contact-email:nth-child(1),
      section.product-reviews .footer .subscribe .spr-form-contact-email:nth-child(1),
      .footer .subscribe section.product-reviews .spr-form-contact-location:nth-child(1),
      section.product-reviews .footer .subscribe .spr-form-contact-location:nth-child(1),
      .footer .subscribe section.product-reviews .spr-form-review-rating:nth-child(1),
      section.product-reviews .footer .subscribe .spr-form-review-rating:nth-child(1),
      .footer .subscribe section.product-reviews .spr-form-review-title:nth-child(1),
      section.product-reviews .footer .subscribe .spr-form-review-title:nth-child(1),
      .footer .subscribe section.product-reviews .spr-form-review-body:nth-child(1),
      section.product-reviews .footer .subscribe .spr-form-review-body:nth-child(1),
      .footer .subscribe .form-group:nth-child(2),
      .footer .subscribe section.product-reviews .spr-form-contact-name:nth-child(2),
      section.product-reviews .footer .subscribe .spr-form-contact-name:nth-child(2),
      .footer .subscribe section.product-reviews .spr-form-contact-email:nth-child(2),
      section.product-reviews .footer .subscribe .spr-form-contact-email:nth-child(2),
      .footer .subscribe section.product-reviews .spr-form-contact-location:nth-child(2),
      section.product-reviews .footer .subscribe .spr-form-contact-location:nth-child(2),
      .footer .subscribe section.product-reviews .spr-form-review-rating:nth-child(2),
      section.product-reviews .footer .subscribe .spr-form-review-rating:nth-child(2),
      .footer .subscribe section.product-reviews .spr-form-review-title:nth-child(2),
      section.product-reviews .footer .subscribe .spr-form-review-title:nth-child(2),
      .footer .subscribe section.product-reviews .spr-form-review-body:nth-child(2),
      section.product-reviews .footer .subscribe .spr-form-review-body:nth-child(2) {
        float: left;
        width: calc(50% - 10px);
        max-width: 260px; }
      .footer .subscribe .form-group:nth-child(2), .footer .subscribe section.product-reviews .spr-form-contact-name:nth-child(2), section.product-reviews .footer .subscribe .spr-form-contact-name:nth-child(2),
      .footer .subscribe section.product-reviews .spr-form-contact-email:nth-child(2),
      section.product-reviews .footer .subscribe .spr-form-contact-email:nth-child(2),
      .footer .subscribe section.product-reviews .spr-form-contact-location:nth-child(2),
      section.product-reviews .footer .subscribe .spr-form-contact-location:nth-child(2),
      .footer .subscribe section.product-reviews .spr-form-review-rating:nth-child(2),
      section.product-reviews .footer .subscribe .spr-form-review-rating:nth-child(2),
      .footer .subscribe section.product-reviews .spr-form-review-title:nth-child(2),
      section.product-reviews .footer .subscribe .spr-form-review-title:nth-child(2),
      .footer .subscribe section.product-reviews .spr-form-review-body:nth-child(2),
      section.product-reviews .footer .subscribe .spr-form-review-body:nth-child(2) {
        margin-left: 20px; }
      .footer .subscribe .form-group:nth-child(3), .footer .subscribe section.product-reviews .spr-form-contact-name:nth-child(3), section.product-reviews .footer .subscribe .spr-form-contact-name:nth-child(3),
      .footer .subscribe section.product-reviews .spr-form-contact-email:nth-child(3),
      section.product-reviews .footer .subscribe .spr-form-contact-email:nth-child(3),
      .footer .subscribe section.product-reviews .spr-form-contact-location:nth-child(3),
      section.product-reviews .footer .subscribe .spr-form-contact-location:nth-child(3),
      .footer .subscribe section.product-reviews .spr-form-review-rating:nth-child(3),
      section.product-reviews .footer .subscribe .spr-form-review-rating:nth-child(3),
      .footer .subscribe section.product-reviews .spr-form-review-title:nth-child(3),
      section.product-reviews .footer .subscribe .spr-form-review-title:nth-child(3),
      .footer .subscribe section.product-reviews .spr-form-review-body:nth-child(3),
      section.product-reviews .footer .subscribe .spr-form-review-body:nth-child(3) {
        clear: left; }
      .footer .socials {
        font-size: 16px; }
        .footer .socials .btn, .footer .socials section.product-reviews .spr-summary-actions-newreview, section.product-reviews .footer .socials .spr-summary-actions-newreview {
          margin-left: 25px; }
        .footer .socials .social-label {
          display: inline-block; } }
  @media only screen and (min-width: 990px) {
    .footer .smile {
      display: inline; } }

section.home-carousel {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 40px; }
  .shopify-section:first-child > section.home-carousel {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.home-carousel {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.home-carousel {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.home-carousel {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.home-carousel {
        padding-top: 100px; } }
  .shopify-section:first-child > section.home-carousel {
    padding-top: 100px; }
  section.home-carousel .carousel-btns {
    display: none; }
  @media only screen and (min-width: 750px) {
    section.home-carousel {
      height: 100vh;
      min-height: 667px; }
      section.home-carousel .container {
        height: 100%; }
      section.home-carousel .carousel {
        display: flex;
        align-items: center;
        height: 100%; }
      section.home-carousel .carousel-btns {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 20px; } }

section.home-content .grid {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.home-content .grid {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.home-content .grid {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.home-content .grid {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.home-content .grid {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.home-content .grid {
        padding-top: 100px; } }
section.home-content .grid:last-child {
  margin-bottom: 0; }
section.home-content .grid__item:last-child {
  margin-bottom: 30px;
  order: -1; }
section.home-content .subheading {
  margin-bottom: 10px;
  max-width: 80%;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  color: #7da532;
  text-transform: uppercase;
  letter-spacing: 1px; }
  section.home-content .subheading::after {
    content: ' —'; }
@media only screen and (min-width: 750px) {
  section.home-content .grid__item:last-child {
    margin-bottom: 0;
    order: 0; }
  section.home-content .grid:nth-child(even) {
    position: relative;
    flex-direction: row-reverse;
    z-index: 0; }
  section.home-content .subheading {
    margin-bottom: 15px;
    font-size: 13px; }
  section.home-content .description {
    margin-bottom: 40px; } }

.bold-heading-theme h1 {
  font-weight: 600; }
.bold-heading-theme h2,
.bold-heading-theme .h2 {
  font-weight: 400; }
.bold-heading-theme h3, .bold-heading-theme h4, .bold-heading-theme h5,
.bold-heading-theme .h3, .bold-heading-theme .h4, .bold-heading-theme .h5 {
  font-weight: 400; }

section.home-content-row-title h2,
section.home-content-row-title .h2 {
  font-weight: 400; }
section.home-content-row-title h3, section.home-content-row-title h4, section.home-content-row-title h5,
section.home-content-row-title .h3, section.home-content-row-title .h4, section.home-content-row-title .h5 {
  font-weight: 400; }

section.home-content-three-column {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-top: 10px; }
  .shopify-section:first-child > section.home-content-three-column {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.home-content-three-column {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.home-content-three-column {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.home-content-three-column {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.home-content-three-column {
        padding-top: 100px; } }
  section.home-content-three-column a {
    text-decoration: none; }
  section.home-content-three-column h2 {
    font-weight: 400; }
  section.home-content-three-column h3, section.home-content-three-column h4 {
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #7da532; }
  @media only screen and (min-width: 750px) {
    section.home-content-three-column {
      padding-top: 0; } }

section.home-content-row {
  padding-top: 20px;
  padding-bottom: 20px;
  background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0) 300px), linear-gradient(to top, white, rgba(255, 255, 255, 0) 300px), url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/bg-beach.jpg?v=548009283868972734");
  background-size: auto, auto, cover;
  background-position: top, bottom, bottom;
  /*  background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/bg-beach.jpg?v=548009283868972734");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;*/
  margin-bottom: 20px; }
  @media only screen and (min-width: 750px) {
    section.home-content-row {
      padding-top: 40px;
      padding-bottom: 40px; } }
  section.home-content-row h2 {
    font-weight: 500; }
  section.home-content-row h3, section.home-content-row h4 {
    font-weight: 400; }
  section.home-content-row .btn, section.home-content-row section.product-reviews .spr-summary-actions-newreview, section.product-reviews section.home-content-row .spr-summary-actions-newreview {
    margin-top: 10px; }
  section.home-content-row:nth-child(odd) {
    background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0) 300px), linear-gradient(to top, white, rgba(255, 255, 255, 0) 300px), url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/bg-window-sm.jpg?v=1951904828424231193");
    background-size: auto, auto, cover;
    background-position: top, bottom, bottom;
    /*    background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/bg-window-sm.jpg?v=1951904828424231193");
    */ }

section.collection-intro {
  margin-top: 60px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #f9f7ff; }
  section.collection-intro .info {
    position: relative;
    padding-top: 20px;
    padding-bottom: 400px;
    text-align: center; }
  section.collection-intro h1 {
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px; }
  section.collection-intro .intro-img {
    display: block;
    width: 360px;
    height: 200px;
    background-size: contain;
    position: absolute;
    bottom: 10px;
    background-repeat: no-repeat;
    background-position: left bottom;
    left: 50%;
    margin-left: -175px; }
  @media only screen and (min-width: 750px) {
    section.collection-intro {
      padding-top: 20px;
      margin-top: 130px;
      margin-bottom: 0;
      background-size: cover; }
      section.collection-intro .info {
        padding-bottom: 360px;
        text-align: left;
        min-height: 650px; }
      section.collection-intro .intro-img {
        width: 660px;
        height: 360px;
        left: 0;
        margin-left: 0; } }
  section.collection-intro.goats-milk-formula {
    background-color: #F0EFF0;
    background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/goat-collection-intro-bg-mobile.jpg?v=17938427304900972076"); }
    section.collection-intro.goats-milk-formula .intro-img {
      background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/collection-intro-goat.png?v=1368148586525210996"); }
    @media only screen and (min-width: 750px) {
      section.collection-intro.goats-milk-formula {
        background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/goat-collection-intro-bg-desktop.jpg?v=2526014808136439041"); } }
  section.collection-intro.cows-milk-organic-baby-formula {
    background-color: #F0EFF0;
    background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/cow-collection-intro-bg-mobile.jpg?v=7710597326915560205"); }
    section.collection-intro.cows-milk-organic-baby-formula h1, section.collection-intro.cows-milk-organic-baby-formula p {
      color: #fff;
      text-shadow: 1px 1px 2px rgba(70, 63, 20, 0.7); }
    section.collection-intro.cows-milk-organic-baby-formula .intro-img {
      background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/collection-intro-cow.png?v=11810964991287395845"); }
    @media only screen and (min-width: 750px) {
      section.collection-intro.cows-milk-organic-baby-formula {
        background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/cow-collection-intro-bg-desktop.jpg?v=13802450672312391982"); } }
  section.collection-intro.vita-bubs {
    background-color: #F0EFF0;
    background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/VB-collection-intro-bg-mobile.jpg?v=5698080683244114170");
    background-position: center top; }
    section.collection-intro.vita-bubs h1, section.collection-intro.vita-bubs p {
      color: #8d77ce;
      text-shadow: none; }
    section.collection-intro.vita-bubs .intro-img {
      background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/collection-intro-VB.png?v=1155855206967905346"); }
    section.collection-intro.vita-bubs .intro-signature {
      background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/Signature-and-Name.png?v=15119354830303261873");
      height: 130px;
      background-repeat: no-repeat;
      background-size: contain; }
    @media only screen and (min-width: 750px) {
      section.collection-intro.vita-bubs {
        background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/VB-collection-intro-bg-desktop.jpg?v=2365843438494401400");
        background-position: center bottom; }
        section.collection-intro.vita-bubs section.collection-intro .intro-img {
          height: 260px; } }
    @media only screen and (max-width: 479px) {
      section.collection-intro.vita-bubs {
        background-size: cover; }
        section.collection-intro.vita-bubs .container.info {
          padding-bottom: 200px; }
        section.collection-intro.vita-bubs .intro-img {
          height: 120px; }
        section.collection-intro.vita-bubs .intro-signature {
          height: 60px; } }
  @media only screen and (min-width: 990px) {
    section.collection-intro.vita-bubs h1 {
      padding-right: 275px; } }
  @media only screen and (max-width: 479px) {
    section.collection-intro.vita-bubs h1 {
      text-align: left;
      padding-right: 100px; } }
  section.collection-intro.certified-organic-baby-food {
    background-color: #F0EFF0;
    background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/food-collection-intro-bg-mobile.jpg?v=1207808255684357635"); }
    section.collection-intro.certified-organic-baby-food h1, section.collection-intro.certified-organic-baby-food p {
      color: #fff;
      text-shadow: 1px 1px 2px rgba(70, 63, 20, 0.7); }
    section.collection-intro.certified-organic-baby-food .intro-img {
      background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/collection-intro-food.png?v=10405047967226392694"); }
    @media only screen and (min-width: 750px) {
      section.collection-intro.certified-organic-baby-food {
        background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/food-collection-intro-bg-desktop.jpg?v=15444868710071388663"); } }
  section.collection-intro.generation-joy {
    background-size: cover;
    background-position: top center;
    background-color: #F0EFF0;
    background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/generation-joy-intro-bg-mobile.jpg?v=14253759270825040691"); }
    @media only screen and (min-width: 750px) {
      section.collection-intro.generation-joy {
        background-position: center center;
        background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/generation-joy-intro-bg-desktop.jpg?v=8310224722024853539"); } }

.section-sm {
  padding-top: 20px;
  padding-bottom: 20px; }
  @media only screen and (min-width: 750px) {
    .section-sm {
      padding-top: 40px;
      padding-bottom: 40px; } }

.snippet-product.snippet-product-trim {
  height: auto !important; }
  .snippet-product.snippet-product-trim .h5 {
    font-weight: 500; }

.stores-list .list-logos {
  justify-content: center; }

@media only screen and (min-width: 750px) {
  .md-up--order-2 {
    order: 2; }

  .md-up--center {
    display: flex;
    flex-direction: column;
    justify-content: center; } }
.generation-joy.page-content {
  padding-top: 30px; }
  @media only screen and (min-width: 750px) {
    .generation-joy.page-content {
      padding-top: 70px; } }
  @media only screen and (min-width: 750px) {
    .generation-joy.page-content .intro p {
      font-size: 30px;
      font-weight: 300;
      line-height: 1.2em; } }
.generation-joy .anchor {
  position: relative;
  top: -90px; }
  @media only screen and (min-width: 750px) {
    .generation-joy .anchor {
      top: -160px; } }

section.timeline {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0) 300px), linear-gradient(to top, white, rgba(255, 255, 255, 0) 300px), url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/bg-window.jpg?v=15783363572012905819");
  background-size: auto, auto, cover;
  background-position: top, bottom, bottom;
  margin-bottom: 100px;
  padding-top: 150px;
  text-align: center; }
  .shopify-section:first-child > section.timeline {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.timeline {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.timeline {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.timeline {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.timeline {
        padding-top: 100px; } }
  section.timeline .shop-now {
    margin-bottom: 15px;
    transform: rotate(10deg); }
  section.timeline h3 {
    margin-left: auto;
    margin-right: auto;
    max-width: 468px; }
  section.timeline p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    max-width: 600px; }
  section.timeline .stages {
    position: relative;
    display: flex;
    margin-top: 40px;
    margin-bottom: -80px;
    padding-right: 40px;
    height: 48px;
    align-items: center;
    text-align: center;
    z-index: 0; }
    section.timeline .stages::after {
      position: absolute;
      right: 0;
      top: 50%;
      margin-top: -100px;
      width: 80px;
      height: 200px;
      background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/timeline-arrow-head.svg?v=8073659887288488302");
      background-size: contain;
      background-position: right center;
      background-repeat: no-repeat;
      content: ''; }
    section.timeline .stages a {
      position: relative;
      flex-grow: 1;
      height: 100%;
      margin-left: 6px;
      padding-left: 20px;
      color: #fff;
      line-height: 48px;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      text-decoration: none;
      background-color: #C8D700; }
      section.timeline .stages a::before, section.timeline .stages a::after {
        position: absolute;
        top: 0;
        border: solid 24px transparent;
        border-right-width: 0;
        content: ''; }
      section.timeline .stages a::after {
        right: -24px;
        border-left-color: #c8d700; }
      section.timeline .stages a::before {
        left: 0;
        border-left-color: #fff; }
      section.timeline .stages a:nth-child(1) {
        z-index: 4; }
      section.timeline .stages a:nth-child(2) {
        z-index: 3; }
      section.timeline .stages a:nth-child(3) {
        z-index: 2; }
      section.timeline .stages a:nth-child(4) {
        z-index: 1; }
  section.timeline a:nth-child(1) {
    background-color: #48a5e0; }
  section.timeline a:nth-child(2) {
    background-color: #c8d700; }
  section.timeline a:nth-child(3) {
    background-color: #f1b600; }
  section.timeline a:nth-child(4) {
    background-color: #e04858; }
  section.timeline a:last-child {
    background-color: #e04858; }
  section.timeline a:nth-child(1)::after {
    border-left-color: #48a5e0; }
  section.timeline a:nth-child(2)::after {
    border-left-color: #c8d700; }
  section.timeline a:nth-child(3)::after {
    border-left-color: #f1b600; }
  section.timeline a:nth-child(4)::after {
    border-left-color: #e04858; }
  section.timeline a:last-child::after {
    border-left-color: #e04858; }
  section.timeline a:first-child {
    margin-left: 0;
    padding-left: 10px;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px; }
    section.timeline a:first-child::before {
      display: none; }
  section.timeline span {
    position: relative;
    left: 5px; }
  @media only screen and (min-width: 750px) {
    section.timeline {
      padding-top: 240px; }
      section.timeline .stages {
        text-align: left; }
        section.timeline .stages::after {
          width: 106px; }
        section.timeline .stages a {
          margin-left: 12px;
          padding-left: 40px;
          font-size: 13px; }
        section.timeline .stages a:first-child {
          margin-left: 0;
          padding-left: 30px; }
        section.timeline .stages span {
          position: static; } }

section.stores {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center; }
  .shopify-section:first-child > section.stores {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.stores {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.stores {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.stores {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.stores {
        padding-top: 100px; } }
  section.stores .btn, section.stores section.product-reviews .spr-summary-actions-newreview, section.product-reviews section.stores .spr-summary-actions-newreview {
    margin-bottom: 50px; }
  section.stores .grid__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px; }
  section.stores .logos {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    section.stores .logos .divider {
      margin-left: 20px;
      margin-right: 20px;
      height: 140px;
      border-left: solid 1px rgba(141, 119, 206, 0.2); }
  @media only screen and (min-width: 750px) {
    section.stores .grid__item {
      height: 300px; }
      section.stores .grid__item:nth-child(3)::before, section.stores .grid__item:nth-child(4)::before {
        display: none; }
      section.stores .grid__item:nth-child(2n)::after {
        display: block; }
      section.stores .grid__item:nth-child(4n)::after {
        display: none; } }

section.collection-hero {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0) 300px), linear-gradient(to top, white, rgba(255, 255, 255, 0) 300px), url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/bg-window.jpg?v=15783363572012905819");
  background-size: auto, auto, cover;
  background-position: top, bottom, top;
  margin-bottom: -100px;
  padding-bottom: 150px;
  text-align: center; }
  .shopify-section:first-child > section.collection-hero {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.collection-hero {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.collection-hero {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.collection-hero {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.collection-hero {
        padding-top: 100px; } }
  section.collection-hero h2 {
    margin: 0 auto;
    max-width: 640px; }
  section.collection-hero .dropdown-toggle {
    margin: 0;
    margin-bottom: 15px;
    padding: 0;
    width: auto;
    appearance: none;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    background: transparent;
    border: none;
    border-bottom: solid 2px #7da532;
    border-radius: 0;
    color: #7da532; }
  section.collection-hero .dropdown-menu {
    text-align: left; }
  @media only screen and (min-width: 750px) {
    section.collection-hero {
      margin-bottom: -200px;
      padding-bottom: 200px; }
      section.collection-hero .dropdown-menu {
        left: 0; } }

.collection-detail {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > .collection-detail {
    padding-top: 130px; }
  .modal .shopify-section:first-child > .collection-detail {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    .collection-detail {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > .collection-detail {
        padding-top: 240px; }
      .modal .shopify-section:first-child > .collection-detail {
        padding-top: 100px; } }
  .collection-detail .heading {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px; }
    .collection-detail .heading:first-child {
      margin-top: 0; }
  .collection-detail .grid__item {
    margin-bottom: 20px; }
  .collection-detail .snippet-product {
    height: 100%; }
  @media only screen and (min-width: 750px) {
    .collection-detail .heading {
      font-size: 13px; }
    .collection-detail .grid__item {
      margin-bottom: 40px; } }

section.product-detail {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.product-detail {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.product-detail {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.product-detail {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.product-detail {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.product-detail {
        padding-top: 100px; } }
  .shopify-section:first-child > section.product-detail {
    padding-top: 90px; }
    @media only screen and (min-width: 750px) {
      .shopify-section:first-child > section.product-detail {
        padding-top: 120px; } }
  section.product-detail .preview {
    display: none;
    margin-bottom: 40px;
    text-align: center;
    perspective: 1500px;
    overflow: hidden; }
    section.product-detail .preview.active {
      display: block; }
    section.product-detail .preview .images {
      position: relative; }
      section.product-detail .preview .images img {
        display: none;
        backface-visibility: hidden;
        transform-style: preserve-3d; }
        section.product-detail .preview .images img.enter, section.product-detail .preview .images img.leave, section.product-detail .preview .images img.active {
          display: block; }
        section.product-detail .preview .images img.enter, section.product-detail .preview .images img.leave {
          transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
        section.product-detail .preview .images img.enter {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%) rotateY(180deg); }
        section.product-detail .preview .images img.enter-to {
          transform: translate(-50%, -50%) rotateY(0deg); }
        section.product-detail .preview .images img.leave-to {
          transform: rotateY(-180deg); }
    section.product-detail .preview .actions {
      position: relative; }
    section.product-detail .preview .btn:first-child, section.product-detail .preview section.product-reviews .spr-summary-actions-newreview:first-child, section.product-reviews section.product-detail .preview .spr-summary-actions-newreview:first-child {
      margin-right: 15px; }
    section.product-detail .preview .icon-rotate {
      width: 18px;
      height: 22px; }
    section.product-detail .preview .icon-zoom-in {
      width: 18px;
      height: 18px; }
  section.product-detail form {
    margin-bottom: 40px; }
  section.product-detail .product-variants {
    margin-bottom: 40px; }
  section.product-detail .product-quantity {
    display: inline-flex;
    margin-right: 12px;
    vertical-align: middle; }
    section.product-detail .product-quantity .icon-minus {
      width: 12px;
      height: 2px; }
    section.product-detail .product-quantity .icon-plus {
      width: 12px;
      height: 12px; }
    section.product-detail .product-quantity .btn, section.product-detail .product-quantity section.product-reviews .spr-summary-actions-newreview, section.product-reviews section.product-detail .product-quantity .spr-summary-actions-newreview {
      padding-left: 21px;
      padding-right: 21px; }
    section.product-detail .product-quantity .btn:first-child, section.product-detail .product-quantity section.product-reviews .spr-summary-actions-newreview:first-child, section.product-reviews section.product-detail .product-quantity .spr-summary-actions-newreview:first-child {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      border-right: none; }
    section.product-detail .product-quantity .btn:last-child, section.product-detail .product-quantity section.product-reviews .spr-summary-actions-newreview:last-child, section.product-reviews section.product-detail .product-quantity .spr-summary-actions-newreview:last-child {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
      border-left: none; }
    section.product-detail .product-quantity .form-control, section.product-detail .product-quantity .bold-ro__product select, section.product-detail .bold-ro__product .product-quantity select, section.product-detail .product-quantity section.product-reviews input.spr-form-input, section.product-reviews section.product-detail .product-quantity input.spr-form-input,
    section.product-detail .product-quantity section.product-reviews textarea.spr-form-input,
    section.product-reviews section.product-detail .product-quantity textarea.spr-form-input {
      padding: 12px 0;
      width: 40px;
      height: 42px;
      text-align: center;
      font-size: 14px;
      font-weight: 700;
      line-height: 16px;
      background: transparent;
      border-top: solid 1px;
      border-bottom: solid 1px;
      border-color: #8d77ce;
      border-color: var(--color-custom, #8d77ce);
      color: #8d77ce;
      color: var(--color-custom, #8d77ce);
      border-radius: 0; }
    section.product-detail .product-quantity input[type=number]::-webkit-inner-spin-button,
    section.product-detail .product-quantity input[type=number]::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0; }
  section.product-detail .bold-ro__product {
    position: relative;
    margin-top: -10px;
    margin-bottom: 40px;
    padding-top: 30px; }
    section.product-detail .bold-ro__product::before {
      position: absolute;
      top: 0;
      left: 0;
      width: 60px;
      border-top: solid 1px rgba(141, 119, 206, 0.25);
      content: ''; }
  section.product-detail .bold-ro__recurring-title {
    display: none; }
  section.product-detail .bold-ro__radio-div {
    padding: 0;
    border: none;
    font-size: 16px; }
  section.product-detail .bold-ro__frequency-label {
    font-size: 16px; }
  section.product-detail .bold-ro__bold-active {
    background-color: transparent;
    border: none; }
  section.product-detail .bold-ro__recurring-lbl {
    display: block;
    margin-bottom: 16px;
    position: relative;
    height: 24px;
    padding-left: 40px; }
  section.product-detail .bold-ro__radio-div input[type=radio] {
    position: absolute;
    opacity: 0; }
  section.product-detail .bold-ro__radio-div input[type=radio] + span::before {
    position: absolute;
    top: 0;
    left: 0;
    content: ''; }
  section.product-detail .bold-ro__frequency-label {
    padding-top: 0; }
  section.product-detail .bold-ro__product select {
    height: 40px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 12px;
    font-size: 16px; }
    section.product-detail .bold-ro__product select.bold-ro__frequency-num {
      width: 60px; }
    section.product-detail .bold-ro__product select.bold-ro__frequency-type {
      width: 140px; }
  section.product-detail .description {
    margin-bottom: 40px; }
    section.product-detail .description p {
      margin-bottom: 15px; }
  section.product-detail .info {
    margin-bottom: 40px; }
    section.product-detail .info .nav-tabs {
      margin-bottom: 40px; }
    section.product-detail .info ul {
      padding-left: 24px;
      list-style-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/tick-green.svg?v=16906856030768214130"); }
    section.product-detail .info li {
      padding-left: 10px; }
  section.product-detail #more-info {
    font-size: 16px; }
  section.product-detail #ingredients {
    font-size: 16px; }
    section.product-detail #ingredients .emoji {
      float: left;
      margin-right: 15px;
      font-size: 48px;
      line-height: 63px; }
    section.product-detail #ingredients td:last-child {
      padding-left: 30px;
      text-align: right;
      font-weight: 500; }
  section.product-detail #nutrition {
    font-size: 16px; }
    section.product-detail #nutrition .serve-info {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
      max-width: 350px;
      font-weight: 700; }
    section.product-detail #nutrition table {
      width: 100%; }
    section.product-detail #nutrition thead {
      border-bottom: solid 1px rgba(141, 119, 206, 0.5); }
    section.product-detail #nutrition th, section.product-detail #nutrition td {
      text-align: right; }
      section.product-detail #nutrition th:first-child, section.product-detail #nutrition td:first-child {
        text-align: left; }
    section.product-detail #nutrition th {
      padding: 0;
      font-weight: 400; }
    section.product-detail #nutrition tr:first-child > td {
      padding-top: 15px; }
  section.product-detail .shipping-info {
    font-size: 14px;
    font-weight: 700;
    color: #8d77ce;
    text-transform: uppercase;
    letter-spacing: 1px; }
  @media only screen and (max-width: 479px) {
    section.product-detail .product-quantity,
    section.product-detail form button[type="submit"] {
      margin-top: 15px; } }
  @media only screen and (min-width: 750px) {
    section.product-detail .container-lg {
      display: flex;
      align-items: flex-start; }
    section.product-detail .content,
    section.product-detail .preview {
      width: 50%; }
    section.product-detail .preview {
      margin-bottom: 0;
      padding-right: 40px; }
    section.product-detail .product-quantity {
      margin-right: 16px; }
      section.product-detail .product-quantity .icon-minus {
        width: 14px;
        height: 2px; }
      section.product-detail .product-quantity .icon-plus {
        width: 14px;
        height: 14px; }
      section.product-detail .product-quantity .btn, section.product-detail .product-quantity section.product-reviews .spr-summary-actions-newreview, section.product-reviews section.product-detail .product-quantity .spr-summary-actions-newreview {
        padding-left: 24px;
        padding-right: 24px; }
      section.product-detail .product-quantity .form-control, section.product-detail .product-quantity .bold-ro__product select, section.product-detail .bold-ro__product .product-quantity select, section.product-detail .product-quantity section.product-reviews input.spr-form-input, section.product-reviews section.product-detail .product-quantity input.spr-form-input,
      section.product-detail .product-quantity section.product-reviews textarea.spr-form-input,
      section.product-reviews section.product-detail .product-quantity textarea.spr-form-input {
        padding: 16px 0;
        width: 60px;
        height: 50px;
        font-size: 13px;
        line-height: 16px; }
    section.product-detail .bold-ro__radio-div {
      font-size: 16px; }
    section.product-detail .bold-ro__frequency-label {
      font-size: 16px; }
    section.product-detail .bold-ro__product select {
      font-size: 16px; }
    section.product-detail #more-info {
      font-size: 16px; }
    section.product-detail #ingredients {
      font-size: 16px; }
    section.product-detail #nutrition {
      font-size: 16px; }
    section.product-detail .shipping-info {
      font-size: 13px; } }

section.product-bundle {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0) 300px), linear-gradient(to top, white, rgba(255, 255, 255, 0) 300px), url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/bg-window.jpg?v=15783363572012905819");
  background-size: auto, auto, cover;
  background-position: top, bottom, bottom;
  margin-top: -30px;
  text-align: center; }
  .shopify-section:first-child > section.product-bundle {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.product-bundle {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.product-bundle {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.product-bundle {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.product-bundle {
        padding-top: 100px; } }
  section.product-bundle .container {
    display: flex;
    align-items: center;
    flex-direction: column; }
  section.product-bundle .btn, section.product-bundle section.product-reviews .spr-summary-actions-newreview, section.product-reviews section.product-bundle .spr-summary-actions-newreview {
    margin-bottom: 60px; }
  @media only screen and (min-width: 750px) {
    section.product-bundle {
      margin-top: -90px; } }

section.product-reviews {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.product-reviews {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.product-reviews {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.product-reviews {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.product-reviews {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.product-reviews {
        padding-top: 100px; } }
  section.product-reviews #shopify-product-reviews {
    margin: 0; }
  section.product-reviews .spr-icon {
    position: static;
    display: inline-block;
    float: none;
    margin-right: 3px;
    width: 23px;
    height: 22px;
    font-size: 0;
    vertical-align: middle;
    background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/star-active.svg?v=8184327814412594267"); }
    section.product-reviews .spr-icon::before {
      display: none; }
  section.product-reviews .spr-icon.spr-icon-star {
    background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/star-active.svg?v=8184327814412594267"); }
  section.product-reviews .spr-icon.spr-icon-star-half {
    background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/star-half.svg?v=1964977273709397168"); }
  section.product-reviews .spr-icon.spr-icon-empty,
  section.product-reviews .spr-icon.spr-icon-star-empty {
    background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/star.svg?v=5992643056579553737");
    opacity: 1; }
  section.product-reviews .spr-form-input .spr-icon.spr-icon-star-empty {
    opacity: .5;
    transition: opacity .2s; }
    section.product-reviews .spr-form-input .spr-icon.spr-icon-star-empty.spr-icon-star-hover {
      opacity: 1; }
  section.product-reviews .spr-summary-actions {
    display: block;
    margin-top: 40px; }
  section.product-reviews .spr-summary-actions-newreview {
    float: none; }
  section.product-reviews .spr-reviews {
    margin-top: 80px; }
  section.product-reviews .spr-review {
    margin-bottom: 40px;
    padding: 0; }
    section.product-reviews .spr-review:first-child {
      margin-top: 0; }
    section.product-reviews .spr-review:last-child {
      margin-bottom: 0; }
  section.product-reviews .spr-reivew-header-starratings {
    margin-bottom: 12px; }
  section.product-reviews .spr-review-header-title {
    font-size: 21px;
    font-weight: 700;
    line-height: 26px; }
  section.product-reviews .spr-review-header-byline {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
    font-style: normal; }
  section.product-reviews .spr-review-content {
    margin: 0; }
  section.product-reviews .spr-review-content-body {
    font-size: inherit;
    line-height: inherit; }
  section.product-reviews .spr-review-reply {
    display: none; }
  section.product-reviews .spr-pagination {
    display: none; }
  section.product-reviews .spr-form-review-rating {
    overflow: visible; }
    section.product-reviews .spr-form-review-rating a, section.product-reviews .spr-form-review-rating a:hover {
      float: none; }
  section.product-reviews .spr-form-input.spr-starrating {
    padding: 0 18px;
    font-size: 0; }
  @media only screen and (min-width: 750px) {
    section.product-reviews .spr-review-header-title {
      font-size: 24px; }
    section.product-reviews .spr-review-header-byline {
      font-size: 16px; }
    section.product-reviews .spr-form-input.spr-starrating {
      padding: 0 20px; } }

section.product-comments {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center; }
  .shopify-section:first-child > section.product-comments {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.product-comments {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.product-comments {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.product-comments {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.product-comments {
        padding-top: 100px; } }

section.related-products {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.related-products {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.related-products {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.related-products {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.related-products {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.related-products {
        padding-top: 100px; } }
  section.related-products h3 {
    margin-bottom: 40px;
    text-align: center; }
  section.related-products .grid__item {
    margin-bottom: 40px; }
  section.related-products .snippet-product {
    height: 100%; }
  @media only screen and (min-width: 750px) {
    section.related-products h3 {
      margin-bottom: 60px; } }

section.about-content {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.about-content {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.about-content {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.about-content {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.about-content {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.about-content {
        padding-top: 100px; } }
  section.about-content .title {
    margin-bottom: 10px;
    max-width: none;
    font-size: 14px;
    font-weight: 700;
    color: #7da532;
    text-transform: uppercase; }
    section.about-content .title::after {
      content: ' —'; }
  section.about-content h2 {
    max-width: 540px; }
  section.about-content p {
    margin-left: auto;
    margin-right: 0;
    max-width: 540px; }
  section.about-content blockquote {
    position: relative;
    margin: 60px auto;
    max-width: 540px;
    font-size: 24px;
    line-height: 30px; }
  section.about-content .title + blockquote {
    margin-top: 0;
    margin-left: 0; }
  section.about-content blockquote footer {
    font-size: 16px;
    line-height: 26px; }
    section.about-content blockquote footer::before {
      content: '— '; }
  @media only screen and (min-width: 750px) {
    section.about-content .title {
      font-size: 13px; }
    section.about-content blockquote {
      margin: 80px auto;
      font-size: 36px;
      line-height: 45px; }
    section.about-content .title + blockquote {
      margin-top: 0;
      margin-left: 0; }
    section.about-content blockquote p {
      margin-bottom: 20px; }
    section.about-content blockquote footer {
      font-size: 16px;
      line-height: 30px; } }

section.about-certification {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.about-certification {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.about-certification {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.about-certification {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.about-certification {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.about-certification {
        padding-top: 100px; } }
  section.about-certification h3 {
    max-width: 460px; }
  section.about-certification p {
    white-space: pre-line; }
  @media only screen and (min-width: 750px) {
    section.about-certification img {
      margin-top: -40px; } }

section.about-awards {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.about-awards {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.about-awards {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.about-awards {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.about-awards {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.about-awards {
        padding-top: 100px; } }
  section.about-awards h3 {
    max-width: 460px; }
  section.about-awards p {
    white-space: pre-line; }
  section.about-awards .award {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-align: center; }
    section.about-awards .award img {
      margin-top: auto;
      margin-bottom: auto; }
    section.about-awards .award h5 {
      margin-top: 40px;
      margin-bottom: 0;
      font-size: 14px;
      font-weight: 500;
      line-height: 20px; }
    section.about-awards .award p {
      margin-bottom: 80px;
      font-size: 14px;
      line-height: 20px; }
  @media only screen and (min-width: 750px) {
    section.about-awards .award h5 {
      font-size: 13px; }
    section.about-awards .award p {
      font-size: 13px; } }

section.blog-articles {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.blog-articles {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.blog-articles {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.blog-articles {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.blog-articles {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.blog-articles {
        padding-top: 100px; } }
  section.blog-articles .subheading {
    margin-bottom: 10px;
    max-width: 80%;
    font-size: 14px;
    font-weight: 700;
    line-height: 19px;
    color: #7da532;
    text-transform: uppercase;
    letter-spacing: 1px; }
    section.blog-articles .subheading::after {
      content: ' —'; }
  section.blog-articles h2 {
    max-width: 540px; }
  @media only screen and (min-width: 750px) {
    section.blog-articles h2 {
      margin-bottom: 80px; } }

section.blog-tv {
  position: relative;
  padding-top: 90px;
  padding-bottom: 130px; }
  section.blog-tv::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 554px;
    background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/forwardwind.svg?v=13888086479932578227");
    transform: translate(-50%, -50%);
    opacity: .07;
    content: ''; }
  section.blog-tv h3 {
    margin-bottom: 60px;
    text-align: center; }
  section.blog-tv .video-wrapper {
    position: relative;
    margin: 0 auto 20px; }
    section.blog-tv .video-wrapper::before {
      display: block;
      padding-top: 56.25%;
      content: ''; }
  section.blog-tv iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  section.blog-tv p {
    margin-bottom: 0;
    font-size: 21px; }

section.article-hero {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative; }
  .shopify-section:first-child > section.article-hero {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.article-hero {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.article-hero {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.article-hero {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.article-hero {
        padding-top: 100px; } }
  section.article-hero .snippet-background-image {
    display: none; }
  section.article-hero .content {
    margin-top: 40px;
    max-width: 600px; }
  section.article-hero .tags {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
    line-height: 15px;
    color: #7da532;
    text-transform: uppercase; }
    section.article-hero .tags::after {
      content: ' —'; }
  section.article-hero .excerpt {
    margin-bottom: 40px;
    color: #7da532; }
  section.article-hero .author-avatar {
    float: left;
    margin-right: 16px;
    border-radius: 50%; }
  section.article-hero .author-name {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 21px; }
  section.article-hero time {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 1px;
    text-transform: uppercase; }
  @media only screen and (min-width: 750px) {
    section.article-hero .content {
      margin-top: 0;
      padding-left: 40px; }
    section.article-hero .tags {
      font-size: 13px; }
    section.article-hero .author-name {
      font-size: 16px; }
    section.article-hero time {
      font-size: 13px; } }

@supports (filter: blur(50px)) {
  section.article-hero .snippet-background-image {
    display: block; } }
section.article-content {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  padding-top: 0; }
  .shopify-section:first-child > section.article-content {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.article-content {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.article-content {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.article-content {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.article-content {
        padding-top: 100px; } }
  section.article-content .socials {
    display: none;
    flex-direction: column;
    position: sticky;
    top: 120px;
    float: left;
    padding-left: 20px; }
    section.article-content .socials a {
      margin-bottom: 16px;
      width: 50px;
      height: 50px;
      background-color: #8d77ce;
      border-radius: 50%;
      text-align: center;
      line-height: 50px;
      transition: background-color .2s;
      color: #fff; }
      section.article-content .socials a:last-child {
        margin-bottom: 0; }
      section.article-content .socials a:hover, section.article-content .socials a:focus {
        background-color: #7d64c7; }
    section.article-content .socials .icon-facebook {
      width: 8px;
      height: 17px; }
    section.article-content .socials .icon-instagram {
      width: 19px;
      height: 19px; }
    section.article-content .socials .icon-wechat {
      width: 25px;
      height: 20px; }
  section.article-content .container-sm {
    position: relative; }
    section.article-content .container-sm::after {
      position: absolute;
      bottom: -40px;
      right: 20px;
      width: 50px;
      height: 48px;
      background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/logo-sm.svg?v=5504322306612925703");
      content: ''; }
    section.article-content .container-sm > :first-child {
      margin-top: 0; }
    section.article-content .container-sm > :last-child {
      margin-bottom: 0; }
  section.article-content h4 {
    margin-top: 40px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #7da532; }
  section.article-content img {
    display: block;
    margin: 50px auto; }
  section.article-content img + img {
    margin-top: -30px; }
  section.article-content blockquote {
    position: relative;
    margin: 60px 0;
    font-size: 24px;
    font-weight: 300;
    line-height: 30px;
    color: #7da532; }
  @media only screen and (min-width: 750px) {
    section.article-content {
      padding-top: 0; }
      section.article-content .socials {
        display: flex; }
      section.article-content img {
        display: block;
        margin: 100px auto;
        transform: translateX(calc(50% + 40px)); }
      section.article-content img + img {
        margin-top: -290px; }
      section.article-content img:nth-of-type(even) {
        transform: translateX(calc(-50% - 40px)); }
      section.article-content blockquote {
        margin: 100px 0;
        font-size: 36px;
        line-height: 45px; } }
  @media (min-width: 1280px) {
    section.article-content .socials {
      margin-left: calc((100vw - 1280px) / 2); } }

section.article-contribute {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.article-contribute {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.article-contribute {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.article-contribute {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.article-contribute {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.article-contribute {
        padding-top: 100px; } }
  section.article-contribute p {
    margin-bottom: 0;
    max-width: 500px;
    font-size: 24px;
    font-weight: 300;
    line-height: 30px; }
  section.article-contribute a {
    color: #7da532;
    text-decoration: none; }
    section.article-contribute a:hover {
      text-decoration: underline; }
  @media only screen and (min-width: 750px) {
    section.article-contribute .container {
      display: flex;
      align-items: center;
      justify-content: center; }
    section.article-contribute p {
      font-size: 36px;
      line-height: 45px; } }

section.article-comments {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center; }
  .shopify-section:first-child > section.article-comments {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.article-comments {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.article-comments {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.article-comments {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.article-comments {
        padding-top: 100px; } }

section.support-main {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative; }
  .shopify-section:first-child > section.support-main {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.support-main {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.support-main {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.support-main {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.support-main {
        padding-top: 100px; } }
  section.support-main .description {
    margin-bottom: 50px;
    max-width: 540px; }
  section.support-main .method {
    margin-top: 40px;
    max-width: 400px;
    padding: 30px;
    border-radius: 10px;
    background-color: #8d77ce;
    background-color: var(--color-custom);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-align: center; }
    section.support-main .method:first-child {
      margin-top: 0; }
    section.support-main .method .icon-wrapper {
      margin: 10px auto 20px;
      width: 117px;
      height: 110px;
      background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/blob-white.svg?v=16058907821804592348");
      line-height: 110px;
      text-align: center; }
      section.support-main .method .icon-wrapper img {
        vertical-align: middle; }
    section.support-main .method h4 {
      margin-bottom: 20px;
      font-weight: 500; }
    section.support-main .method p {
      margin-left: auto;
      margin-right: auto;
      max-width: 285px;
      line-height: 1.333; }
  @media only screen and (min-width: 750px) {
    section.support-main .description {
      margin-bottom: 100px; }
    section.support-main .methods {
      display: flex;
      justify-content: flex-end; }
    section.support-main .method {
      flex-grow: 1;
      margin-top: 0;
      margin-left: 40px; }
      section.support-main .method:first-child {
        margin-left: 0; }
      section.support-main .method p {
        font-size: 16px; } }

section.support-faqs {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.support-faqs {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.support-faqs {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.support-faqs {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.support-faqs {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.support-faqs {
        padding-top: 100px; } }
  section.support-faqs h3 {
    margin-bottom: 60px; }
  section.support-faqs .grid__item {
    margin-top: 60px; }
    section.support-faqs .grid__item:first-child {
      margin-top: 0; }
  section.support-faqs h4 {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 15px;
    text-transform: uppercase;
    color: #7da532; }
  section.support-faqs .articles {
    margin-bottom: 40px; }
    section.support-faqs .articles a {
      display: block;
      margin-bottom: 16px;
      color: #8d77ce;
      text-decoration: none;
      transition: color .2s; }
      section.support-faqs .articles a:hover {
        color: #7da532; }
  @media only screen and (min-width: 750px) {
    section.support-faqs .grid__item {
      margin-top: 0; }
    section.support-faqs h4 {
      font-size: 13px; }
    section.support-faqs .articles {
      margin-bottom: 60px; } }

section.support-articles {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.support-articles {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.support-articles {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.support-articles {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.support-articles {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.support-articles {
        padding-top: 100px; } }
  section.support-articles h3 {
    max-width: 540px; }

section.contact-form {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.contact-form {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.contact-form {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.contact-form {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.contact-form {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.contact-form {
        padding-top: 100px; } }
  section.contact-form h2 {
    margin-bottom: 30px;
    max-width: 540px; }
  section.contact-form .description {
    margin-bottom: 60px;
    max-width: 540px; }
  section.contact-form .contact {
    position: relative;
    margin-bottom: 60px;
    padding-left: 85px; }
    section.contact-form .contact .icon-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 60px;
      height: 60px;
      text-align: center;
      line-height: 60px;
      background-color: #fff;
      border-radius: 50%;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
    section.contact-form .contact .icon-logo-sm {
      width: 25px;
      height: 24px; }
    section.contact-form .contact .icon-phone-sm {
      width: 24px;
      height: 24px;
      color: #4ca6de; }
    section.contact-form .contact h4 {
      margin-bottom: 0;
      font-weight: 500; }
    section.contact-form .contact p {
      margin-bottom: 0;
      white-space: pre-line; }
  section.contact-form .socials {
    margin-bottom: 60px;
    padding-left: 85px; }
    section.contact-form .socials .btn, section.contact-form .socials section.product-reviews .spr-summary-actions-newreview, section.product-reviews section.contact-form .socials .spr-summary-actions-newreview {
      margin-right: 16px; }
    section.contact-form .socials .icon-instagram {
      width: 19px;
      height: 19px; }
    section.contact-form .socials .icon-facebook {
      width: 8px;
      height: 17px; }
    section.contact-form .socials .icon-wechat {
      width: 25px;
      height: 20px; }
  section.contact-form .actions {
    text-align: right; }

section.store-finder-form {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.store-finder-form {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.store-finder-form {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.store-finder-form {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.store-finder-form {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.store-finder-form {
        padding-top: 100px; } }
  section.store-finder-form .location {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px; }
    section.store-finder-form .location .or {
      margin: 5px 0;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase; }
    section.store-finder-form .location .form-group, section.store-finder-form .location section.product-reviews .spr-form-contact-name, section.product-reviews section.store-finder-form .location .spr-form-contact-name,
    section.store-finder-form .location section.product-reviews .spr-form-contact-email,
    section.product-reviews section.store-finder-form .location .spr-form-contact-email,
    section.store-finder-form .location section.product-reviews .spr-form-contact-location,
    section.product-reviews section.store-finder-form .location .spr-form-contact-location,
    section.store-finder-form .location section.product-reviews .spr-form-review-rating,
    section.product-reviews section.store-finder-form .location .spr-form-review-rating,
    section.store-finder-form .location section.product-reviews .spr-form-review-title,
    section.product-reviews section.store-finder-form .location .spr-form-review-title,
    section.store-finder-form .location section.product-reviews .spr-form-review-body,
    section.product-reviews section.store-finder-form .location .spr-form-review-body {
      margin-bottom: 0;
      width: 244px; }
  section.store-finder-form .include {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 16px; }
    section.store-finder-form .include .label {
      display: none;
      margin-bottom: 0; }
    section.store-finder-form .include .custom-checkbox {
      margin-bottom: 0; }
  @media only screen and (min-width: 750px) {
    section.store-finder-form .location {
      flex-direction: row; }
      section.store-finder-form .location .or {
        margin: 0 20px;
        font-size: 13px; }
      section.store-finder-form .location .form-group, section.store-finder-form .location section.product-reviews .spr-form-contact-name, section.product-reviews section.store-finder-form .location .spr-form-contact-name,
      section.store-finder-form .location section.product-reviews .spr-form-contact-email,
      section.product-reviews section.store-finder-form .location .spr-form-contact-email,
      section.store-finder-form .location section.product-reviews .spr-form-contact-location,
      section.product-reviews section.store-finder-form .location .spr-form-contact-location,
      section.store-finder-form .location section.product-reviews .spr-form-review-rating,
      section.product-reviews section.store-finder-form .location .spr-form-review-rating,
      section.store-finder-form .location section.product-reviews .spr-form-review-title,
      section.product-reviews section.store-finder-form .location .spr-form-review-title,
      section.store-finder-form .location section.product-reviews .spr-form-review-body,
      section.product-reviews section.store-finder-form .location .spr-form-review-body {
        width: 280px; }
    section.store-finder-form .include {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      font-size: 16px; }
      section.store-finder-form .include .label {
        display: block; }
      section.store-finder-form .include .custom-checkbox {
        margin-left: 30px; } }

section.store-finder-results {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.store-finder-results {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.store-finder-results {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.store-finder-results {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.store-finder-results {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.store-finder-results {
        padding-top: 100px; } }
  section.store-finder-results .list .container-half {
    margin-right: 0; }
  section.store-finder-results .list .result {
    position: relative;
    padding: 0px 40px 20px 80px;
    margin-bottom: 20px;
    border-bottom: solid 1px rgba(141, 119, 206, 0.2); }
    section.store-finder-results .list .result:last-child {
      margin-bottom: 0;
      border-bottom: none; }
  section.store-finder-results .list .marker {
    position: absolute;
    top: 0;
    left: 40px;
    margin-left: -16px; }
  section.store-finder-results .list .distance {
    position: absolute;
    top: 56px;
    left: 0;
    width: 80px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 15px;
    text-transform: uppercase;
    opacity: .5; }
  section.store-finder-results .list .title {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #7da532;
    cursor: pointer; }
  section.store-finder-results .list .address {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 20px; }
  section.store-finder-results .list .actions {
    display: flex;
    flex-direction: column;
    font-size: 16px; }
    section.store-finder-results .list .actions a {
      margin-top: 10px;
      color: #8d77ce;
      text-decoration: none;
      white-space: nowrap; }
      section.store-finder-results .list .actions a:first-child {
        margin-top: 0; }
    section.store-finder-results .list .actions .icon {
      margin-right: 10px;
      color: #4ca6de; }
    section.store-finder-results .list .actions .icon-phone-sm {
      width: 24px;
      height: 24px; }
    section.store-finder-results .list .actions .icon-navigation {
      width: 24px;
      height: 24px; }
  section.store-finder-results .list #result_template {
    display: none; }
  section.store-finder-results .preview {
    margin-bottom: 40px; }
  section.store-finder-results .map {
    width: 100%;
    max-width: 720px;
    height: 100vw;
    max-height: 720px; }
  @media only screen and (min-width: 750px) {
    section.store-finder-results {
      display: flex;
      align-items: flex-start;
      flex-direction: row-reverse; }
      section.store-finder-results .list {
        width: 50%; }
        section.store-finder-results .list .results {
          padding-bottom: 300px;
          max-height: 1000px;
          overflow-y: auto; }
        section.store-finder-results .list .result {
          padding: 0px 80px 40px 120px;
          margin-bottom: 40px; }
        section.store-finder-results .list .marker {
          left: 60px; }
        section.store-finder-results .list .distance {
          width: 120px;
          font-size: 13px; }
        section.store-finder-results .list .title {
          font-size: 16px; }
        section.store-finder-results .list .address {
          font-size: 16px;
          line-height: 26px; }
        section.store-finder-results .list .actions {
          justify-content: space-between;
          flex-direction: column;
          font-size: 16px; }
          section.store-finder-results .list .actions a {
            margin-top: 0; }
      section.store-finder-results .preview {
        margin-bottom: 0;
        width: 50%; }
      section.store-finder-results .map {
        height: 600px; } }

section.legal-content {
  padding-top: 240px;
  padding-bottom: 90px; }
  section.legal-content h2 {
    margin-bottom: 90px; }
  section.legal-content h4 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px; }
    section.legal-content h4:first-child {
      margin-top: 0; }
  section.legal-content p {
    margin-bottom: 16px; }
  section.legal-content a {
    color: #7da532;
    text-decoration: none; }
    section.legal-content a:hover {
      text-decoration: underline; }
  section.legal-content td {
    padding: 10px 0; }
  section.legal-content td:first-child {
    padding-right: 40px;
    font-weight: 500;
    color: #7da532;
    white-space: nowrap;
    vertical-align: top; }

section.login-form {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.login-form {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.login-form {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.login-form {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.login-form {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.login-form {
        padding-top: 100px; } }
  section.login-form .content {
    margin: auto;
    max-width: 540px; }
  section.login-form .icon-logo-sm {
    margin-right: 10px;
    width: 48px;
    height: 46.5px; }
  section.login-form .nav-tabs {
    margin-bottom: 40px; }
  section.login-form #login .actions {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  section.login-form #login .forgot {
    font-size: 14px;
    color: #8d77ce;
    text-decoration: none; }
    section.login-form #login .forgot:hover {
      text-decoration: underline; }
  section.login-form #recover .help {
    font-size: 16px; }
  section.login-form #recover .actions {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
  section.login-form #recover .cancel {
    margin-right: 30px;
    font-size: 16px;
    color: #8d77ce;
    text-decoration: none; }
    section.login-form #recover .cancel:hover {
      text-decoration: underline; }
  section.login-form #signup .actions {
    text-align: right; }

section.reset-form {
  padding-top: 240px;
  padding-bottom: 90px; }
  section.reset-form .actions {
    text-align: right; }

.shopify-challenge__container {
  padding-top: 240px;
  padding-bottom: 90px; }
  .shopify-challenge__container .g-recaptcha {
    margin-bottom: 30px !important; }
  .shopify-challenge__container .shopify-challenge__button {
    color: white;
    border-color: #7da532;
    background-color: #7da532; }
    .shopify-challenge__container .shopify-challenge__button:hover, .shopify-challenge__container .shopify-challenge__button:focus, .shopify-challenge__container .shopify-challenge__button:active, .shopify-challenge__container .shopify-challenge__button.active {
      opacity: .9; }
    .shopify-challenge__container .shopify-challenge__button:disabled, form:invalid .shopify-challenge__container .shopify-challenge__button[type=submit] {
      opacity: .5; }

section.account-detail {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.account-detail {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.account-detail {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.account-detail {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.account-detail {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.account-detail {
        padding-top: 100px; } }
  section.account-detail .heading-wrapper {
    margin-bottom: 40px; }
  section.account-detail h2 {
    margin-bottom: 10px; }
  section.account-detail .logout {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    color: #7da532;
    letter-spacing: 1px; }
  section.account-detail h4,
  section.account-detail .heading {
    margin-top: 60px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7da532; }
    section.account-detail h4:first-child,
    section.account-detail .heading:first-child {
      margin-top: 0; }
  section.account-detail .profile-info {
    margin-bottom: 40px; }
    section.account-detail .profile-info p {
      margin-bottom: 10px; }
    section.account-detail .profile-info .heading {
      margin-top: 40px;
      margin-bottom: 0;
      color: inherit; }
      section.account-detail .profile-info .heading:first-child {
        margin-top: 0; }
    section.account-detail .profile-info a {
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      text-decoration: underline;
      color: #8d77ce; }
  section.account-detail .table {
    margin-bottom: 40px;
    font-size: 16px; }
    section.account-detail .table th:last-child,
    section.account-detail .table td:last-child {
      text-align: right; }
    section.account-detail .table a {
      color: inherit; }
  @media only screen and (min-width: 750px) {
    section.account-detail .heading-wrapper {
      display: flex;
      margin-bottom: 80px; }
    section.account-detail h2 {
      margin-right: 20px;
      margin-bottom: 0; }
    section.account-detail .logout {
      align-self: flex-end;
      margin-left: auto;
      font-size: 16px; }
    section.account-detail h4,
    section.account-detail .heading {
      font-size: 13px; }
    section.account-detail .profile-info a {
      font-size: 13px; }
    section.account-detail .table {
      font-size: 16px; } }

section.orders-detail {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.orders-detail {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.orders-detail {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.orders-detail {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.orders-detail {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.orders-detail {
        padding-top: 100px; } }
  section.orders-detail .table {
    font-size: 16px;
    min-width: 600px; }
    section.orders-detail .table th:last-child,
    section.orders-detail .table td:last-child {
      text-align: right; }
    section.orders-detail .table a {
      color: inherit; }
  @media only screen and (min-width: 750px) {
    section.orders-detail .table {
      font-size: 16px; } }

section.order-detail {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.order-detail {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.order-detail {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.order-detail {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.order-detail {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.order-detail {
        padding-top: 100px; } }
  section.order-detail .heading-wrapper {
    margin-bottom: 40px; }
  section.order-detail h2 {
    margin-bottom: 10px; }
  section.order-detail .status {
    margin-bottom: 0;
    font-size: 21px;
    font-weight: 500;
    color: #7da532;
    letter-spacing: 1px; }
  section.order-detail .created_at {
    margin-bottom: 40px;
    font-size: 21px;
    font-weight: 500; }
  section.order-detail .addresses {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px; }
  section.order-detail .address {
    font-size: 16px; }
  section.order-detail .address .heading {
    margin-bottom: 20px;
    font-weight: 500; }
  section.order-detail .table {
    margin-bottom: 40px;
    font-size: 16px; }
    section.order-detail .table th:last-child,
    section.order-detail .table td:last-child {
      text-align: right; }
    section.order-detail .table a {
      color: inherit; }
  @media only screen and (min-width: 480px) {
    section.order-detail .addresses {
      justify-content: flex-start; }
    section.order-detail .address + .address {
      margin-left: 80px; } }
  @media only screen and (min-width: 750px) {
    section.order-detail .heading-wrapper {
      display: flex; }
    section.order-detail h2 {
      margin-right: 20px;
      margin-bottom: 0; }
    section.order-detail .status {
      align-self: flex-end;
      margin-left: auto;
      font-size: 24px; }
    section.order-detail .created-at {
      font-size: 24px; }
    section.order-detail .address {
      font-size: 16px; }
    section.order-detail .table {
      font-size: 16px; } }

section.addresses-detail {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.addresses-detail {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.addresses-detail {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.addresses-detail {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.addresses-detail {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.addresses-detail {
        padding-top: 100px; } }
  section.addresses-detail .table {
    font-size: 16px;
    min-width: 800px; }
    section.addresses-detail .table a {
      color: inherit; }
  @media only screen and (min-width: 750px) {
    section.addresses-detail .table {
      font-size: 16px; } }

section.cart-content {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.cart-content {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.cart-content {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.cart-content {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.cart-content {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.cart-content {
        padding-top: 100px; } }
  section.cart-content .product {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 0; }
    section.cart-content .product::after {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      border-top: solid 1px rgba(141, 119, 206, 0.2);
      content: ''; }
    section.cart-content .product img {
      flex: 0 0 100px;
      display: none;
      margin-right: 30px;
      width: 100px;
      height: 100px;
      border-radius: 5px;
      background-color: #fff;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }
    section.cart-content .product .details {
      flex-grow: 1;
      margin-right: 30px;
      line-height: 24px; }
      section.cart-content .product .details .title {
        font-size: 16px;
        color: #8d77ce;
        text-decoration: none;
        transition: color .2s; }
        section.cart-content .product .details .title:hover {
          color: #7da532; }
      section.cart-content .product .details .variation {
        margin-bottom: 0;
        font-size: 14px; }
      section.cart-content .product .details .bold_recurring_desc {
        margin-bottom: 0;
        font-size: 14px; }
    section.cart-content .product .qty {
      flex: 0 0 64px;
      position: relative;
      margin-right: 15px; }
      section.cart-content .product .qty .form-control, section.cart-content .product .qty section.product-detail .bold-ro__product select, section.product-detail .bold-ro__product section.cart-content .product .qty select, section.cart-content .product .qty section.product-reviews input.spr-form-input, section.product-reviews section.cart-content .product .qty input.spr-form-input,
      section.cart-content .product .qty section.product-reviews textarea.spr-form-input,
      section.product-reviews section.cart-content .product .qty textarea.spr-form-input {
        padding-left: 10px;
        padding-right: 30px;
        width: 100%;
        text-align: center; }
      section.cart-content .product .qty input[type=number]::-webkit-inner-spin-button,
      section.cart-content .product .qty input[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0; }
      section.cart-content .product .qty .btn, section.cart-content .product .qty section.product-reviews .spr-summary-actions-newreview, section.product-reviews section.cart-content .product .qty .spr-summary-actions-newreview {
        position: absolute;
        right: 0;
        padding: 0;
        padding-right: 10px;
        width: 20px;
        height: 20px;
        border: none;
        border-radius: 0;
        background-color: rgba(141, 119, 206, 0);
        color: #8d77ce;
        text-align: center;
        line-height: 0;
        box-sizing: content-box; }
        section.cart-content .product .qty .btn:focus, section.cart-content .product .qty section.product-reviews .spr-summary-actions-newreview:focus, section.product-reviews section.cart-content .product .qty .spr-summary-actions-newreview:focus {
          outline: none; }
        section.cart-content .product .qty .btn:active .icon-chevron-up, section.cart-content .product .qty section.product-reviews .spr-summary-actions-newreview:active .icon-chevron-up, section.product-reviews section.cart-content .product .qty .spr-summary-actions-newreview:active .icon-chevron-up {
          transform: translateY(-1px); }
        section.cart-content .product .qty .btn:active .icon-chevron-down, section.cart-content .product .qty section.product-reviews .spr-summary-actions-newreview:active .icon-chevron-down, section.product-reviews section.cart-content .product .qty .spr-summary-actions-newreview:active .icon-chevron-down {
          transform: translateY(1px); }
      section.cart-content .product .qty .btn-up {
        bottom: 50%;
        padding-top: 4px; }
      section.cart-content .product .qty .btn-down {
        top: 50%;
        padding-bottom: 4px; }
      section.cart-content .product .qty .icon-chevron-up {
        width: 12px;
        height: 8px;
        transition: transform .1s ease-out; }
      section.cart-content .product .qty .icon-chevron-down {
        width: 12px;
        height: 8px;
        transition: transform .1s ease-out; }
    section.cart-content .product .actions {
      flex: 0 0 65px;
      text-align: right;
      line-height: 24px; }
      section.cart-content .product .actions .price {
        margin-bottom: 0;
        font-size: 16px; }
      section.cart-content .product .actions a {
        font-size: 14px;
        color: #8d77ce;
        opacity: .8; }
        section.cart-content .product .actions a:hover {
          opacity: 1; }
  section.cart-content .sub-total {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px; }
    section.cart-content .sub-total::after {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      border-top: solid 1px rgba(141, 119, 206, 0.2);
      content: ''; }
    section.cart-content .sub-total label {
      margin-right: 30px;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase; }
    section.cart-content .sub-total p {
      margin-left: auto;
      margin-bottom: 0; }
  section.cart-content .instruction {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    padding-top: 25px;
    padding-bottom: 25px; }
    section.cart-content .instruction::after {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      border-top: solid 1px rgba(141, 119, 206, 0.2);
      content: ''; }
    section.cart-content .instruction label {
      margin-right: 30px;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase; }
    section.cart-content .instruction p {
      margin-right: auto;
      margin-bottom: 0; }
      section.cart-content .instruction p.title {
        font-size: 16px;
        line-height: 1.45rem;
        margin-bottom: 1rem; }
    section.cart-content .instruction textarea {
      height: 100px;
      font-size: 16px;
      padding: 15px; }
  section.cart-content .checkout {
    text-align: right; }
  section.cart-content .btn[name=update], section.cart-content section.product-reviews [name=update].spr-summary-actions-newreview, section.product-reviews section.cart-content [name=update].spr-summary-actions-newreview {
    display: none; }
  @media only screen and (min-width: 750px) {
    section.cart-content .product::after {
      left: 130px; }
    section.cart-content .product img {
      display: block; }
    section.cart-content .product .details .title {
      font-size: 16px; }
    section.cart-content .product .details .variation {
      font-size: 13px; }
    section.cart-content .product .details .bold_recurring_desc {
      font-size: 13px; }
    section.cart-content .product .qty {
      margin-right: 30px; }
    section.cart-content .product .actions .price {
      font-size: 16px; }
    section.cart-content .product .actions a {
      font-size: 13px; }
    section.cart-content .sub-total,
    section.cart-content .instruction {
      padding-left: 130px; }
      section.cart-content .sub-total::after,
      section.cart-content .instruction::after {
        left: 130px; }
      section.cart-content .sub-total label,
      section.cart-content .instruction label {
        font-size: 13px; } }

section.cart-info {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.cart-info {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.cart-info {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.cart-info {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.cart-info {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.cart-info {
        padding-top: 100px; } }
  section.cart-info .content {
    position: relative;
    margin-bottom: 40px;
    min-height: 130px; }
    section.cart-info .content:last-child {
      margin-bottom: 0; }
  section.cart-info h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; }
  section.cart-info p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px; }
  @media only screen and (min-width: 750px) {
    section.cart-info h4 {
      font-size: 16px; }
    section.cart-info p {
      margin-bottom: 30px;
      font-size: 16px; } }

section.search-form {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.search-form {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.search-form {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.search-form {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.search-form {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.search-form {
        padding-top: 100px; } }
  .shopify-section:first-child > section.search-form {
    padding-top: 80px; }
  section.search-form .form-group, section.search-form section.product-reviews .spr-form-contact-name, section.product-reviews section.search-form .spr-form-contact-name,
  section.search-form section.product-reviews .spr-form-contact-email,
  section.product-reviews section.search-form .spr-form-contact-email,
  section.search-form section.product-reviews .spr-form-contact-location,
  section.product-reviews section.search-form .spr-form-contact-location,
  section.search-form section.product-reviews .spr-form-review-rating,
  section.product-reviews section.search-form .spr-form-review-rating,
  section.search-form section.product-reviews .spr-form-review-title,
  section.product-reviews section.search-form .spr-form-review-title,
  section.search-form section.product-reviews .spr-form-review-body,
  section.product-reviews section.search-form .spr-form-review-body {
    display: flex;
    align-items: center; }
    section.search-form .form-group input[type="search"], section.search-form section.product-reviews .spr-form-contact-name input[type="search"], section.product-reviews section.search-form .spr-form-contact-name input[type="search"],
    section.search-form section.product-reviews .spr-form-contact-email input[type="search"],
    section.product-reviews section.search-form .spr-form-contact-email input[type="search"],
    section.search-form section.product-reviews .spr-form-contact-location input[type="search"],
    section.product-reviews section.search-form .spr-form-contact-location input[type="search"],
    section.search-form section.product-reviews .spr-form-review-rating input[type="search"],
    section.product-reviews section.search-form .spr-form-review-rating input[type="search"],
    section.search-form section.product-reviews .spr-form-review-title input[type="search"],
    section.product-reviews section.search-form .spr-form-review-title input[type="search"],
    section.search-form section.product-reviews .spr-form-review-body input[type="search"],
    section.product-reviews section.search-form .spr-form-review-body input[type="search"] {
      width: 100%; }
  section.search-form .help {
    margin-bottom: 15px;
    font-size: 16px;
    opacity: .5; }
  section.search-form .form-control, section.search-form section.product-detail .bold-ro__product select, section.product-detail .bold-ro__product section.search-form select, section.search-form section.product-reviews input.spr-form-input, section.product-reviews section.search-form input.spr-form-input,
  section.search-form section.product-reviews textarea.spr-form-input,
  section.product-reviews section.search-form textarea.spr-form-input {
    padding: 0;
    height: 64px;
    background-color: transparent;
    color: inherit;
    font-size: 64px;
    line-height: 64px;
    font-weight: 300; }
  @media only screen and (min-width: 750px) {
    .shopify-section:first-child > section.search-form {
      padding-top: 100px; }
    section.search-form .help {
      font-size: 16px; }
    section.search-form .form-control, section.search-form section.product-detail .bold-ro__product select, section.product-detail .bold-ro__product section.search-form select, section.search-form section.product-reviews input.spr-form-input, section.product-reviews section.search-form input.spr-form-input,
    section.search-form section.product-reviews textarea.spr-form-input,
    section.product-reviews section.search-form textarea.spr-form-input {
      height: 96px;
      font-size: 96px;
      line-height: 96px; } }

section.search-results {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  margin-top: 100px;
  padding-top: 1px;
  background-color: #fff;
  color: #8d77ce; }
  .shopify-section:first-child > section.search-results {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.search-results {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.search-results {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.search-results {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.search-results {
        padding-top: 100px; } }
  section.search-results .results {
    position: relative;
    margin-top: -180px;
    min-height: 70vh; }
  section.search-results .heading {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px; }
  section.search-results .heading:first-child {
    color: #fff; }
  section.search-results .grid__item {
    margin-bottom: 40px; }
  section.search-results .snippet-product {
    height: 100%; }
  @media only screen and (min-width: 750px) {
    section.search-results {
      margin-top: 150px; }
      section.search-results .results {
        margin-top: -320px; }
      section.search-results .heading {
        font-size: 13px; } }

section.search-no-results {
  display: none; }
  section.search-no-results .empty-message {
    text-align: center; }
    section.search-no-results .empty-message p {
      margin: 0 auto 40px;
      max-width: 600px;
      font-size: 24px;
      font-weight: 300;
      line-height: 30px; }
  section.search-no-results .empty-results {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    margin-top: 220px;
    padding-top: 1px;
    background-color: #fff;
    color: #8d77ce; }
    .shopify-section:first-child > section.search-no-results .empty-results {
      padding-top: 130px; }
    .modal .shopify-section:first-child > section.search-no-results .empty-results {
      padding-top: 80px; }
    @media only screen and (min-width: 750px) {
      section.search-no-results .empty-results {
        padding-top: 90px;
        padding-bottom: 90px; }
        .shopify-section:first-child > section.search-no-results .empty-results {
          padding-top: 240px; }
        .modal .shopify-section:first-child > section.search-no-results .empty-results {
          padding-top: 100px; } }
    section.search-no-results .empty-results .container-lg {
      position: relative;
      margin-top: -180px; }
    section.search-no-results .empty-results .heading {
      margin-top: 60px;
      margin-bottom: 20px;
      font-size: 14px;
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: 1px; }
    section.search-no-results .empty-results .heading:first-child {
      color: #fff; }
    section.search-no-results .empty-results .grid__item {
      margin-bottom: 40px; }
  @media only screen and (min-width: 750px) {
    section.search-no-results .empty-message p {
      font-size: 36px;
      line-height: 45px; }
    section.search-no-results .empty-results {
      margin-top: 300px; }
      section.search-no-results .empty-results .container-lg {
        margin-top: -320px; }
      section.search-no-results .empty-results .heading {
        font-size: 13px; } }

section.forofor-content {
  padding-top: 240px;
  padding-bottom: 90px; }
  section.forofor-content h2,
  section.forofor-content p {
    max-width: 540px; }
  section.forofor-content p {
    margin-bottom: 90px; }
  section.forofor-content .video-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 854px; }
    section.forofor-content .video-wrapper::before {
      display: block;
      padding-top: 56.25%;
      content: ''; }
  section.forofor-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

section.faqs-hero {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative; }
  .shopify-section:first-child > section.faqs-hero {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.faqs-hero {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.faqs-hero {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.faqs-hero {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.faqs-hero {
        padding-top: 100px; } }
  section.faqs-hero h2 {
    margin-bottom: 0;
    max-width: 540px; }
  section.faqs-hero a {
    color: #7da532;
    text-decoration: none; }
    section.faqs-hero a:hover {
      text-decoration: underline; }

section.faqs-content {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > section.faqs-content {
    padding-top: 130px; }
  .modal .shopify-section:first-child > section.faqs-content {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    section.faqs-content {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > section.faqs-content {
        padding-top: 240px; }
      .modal .shopify-section:first-child > section.faqs-content {
        padding-top: 100px; } }
  section.faqs-content .tag {
    position: relative;
    margin-bottom: 90px;
    min-height: 200px; }
    section.faqs-content .tag > img {
      display: none;
      position: absolute;
      top: 0;
      left: 140px;
      max-width: 280px;
      transform: translateX(-50%); }
  section.faqs-content h4 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    transition: color .2s;
    cursor: pointer; }
    section.faqs-content h4:hover, section.faqs-content h4.active {
      color: #7da532; }
  section.faqs-content .article {
    margin-bottom: 30px;
    max-width: 600px; }
  section.faqs-content .content {
    display: none; }
    section.faqs-content .content::before {
      display: block;
      height: 20px;
      content: ''; }
    section.faqs-content .content > :last-child {
      margin-bottom: 0; }
  @media only screen and (min-width: 750px) {
    section.faqs-content .tag {
      margin-bottom: 180px;
      padding-left: 280px; }
      section.faqs-content .tag > img {
        display: block; } }

.main-notice-wrappter {
  padding: 0 20px; }

span.was-price span {
  text-decoration: line-through; }

section.notice-content .title {
  max-width: 540px;
  padding-top: 70px;
  position: relative;
  margin-bottom: 20px;
  display: none; }
  section.notice-content .title:before {
    content: '';
    line-height: 0;
    display: inline-block;
    width: 120px;
    height: 60px;
    /* background: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/bubs-australia.svg?v=14108760984116279010") no-repeat center center; */
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -60px; }
section.notice-content h3 {
  font-size: 24px;
  line-height: 28px; }
section.notice-content p {
  line-height: 1.5em; }
section.notice-content .icon-logo-sm {
  margin-right: 10px;
  width: 38px;
  height: 36.5px; }
section.notice-content .content {
  /*max-width: 540px;*/
  font-size: 16px;
  margin: auto; }
  section.notice-content .content h3 {
    font-size: 16px;
    line-height: 1.5em;
    font-weight: normal; }
section.notice-content form {
  /*max-width: 540px;*/ }
@media only screen and (min-width: 750px) {
  section.notice-content .icon-logo-sm {
    width: 48px;
    height: 46.5px; }
  section.notice-content .content {
    font-size: 16px; }
  section.notice-content form {
    text-align: right; } }
@media only screen and (max-width: 749px) {
  section.notice-content .content {
    max-width: 100%; } }

/*================ SNIPPETS ================*/
.snippet-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  color: inherit;
  text-decoration: none;
  background-color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  text-align: center;
  transition: box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .snippet-product:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); }
  .snippet-product img {
    margin-bottom: 20px; }
  .snippet-product h5, .snippet-product .h5 {
    margin-top: auto;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-custom, #8d77ce);
    width: 100%; }
  .snippet-product .price {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    opacity: .5;
    color: var(--color-custom, #8d77ce); }
  .snippet-product .btn, .snippet-product section.product-reviews .spr-summary-actions-newreview, section.product-reviews .snippet-product .spr-summary-actions-newreview {
    position: relative; }
    .snippet-product .btn span, .snippet-product section.product-reviews .spr-summary-actions-newreview span, section.product-reviews .snippet-product .spr-summary-actions-newreview span {
      transition: opacity .2s; }
    .snippet-product .btn .icon-tick, .snippet-product section.product-reviews .spr-summary-actions-newreview .icon-tick, section.product-reviews .snippet-product .spr-summary-actions-newreview .icon-tick {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: opacity .2s; }
  .snippet-product .btn.success span, .snippet-product section.product-reviews .success.spr-summary-actions-newreview span, section.product-reviews .snippet-product .success.spr-summary-actions-newreview span {
    opacity: 0; }
  .snippet-product .btn.success .icon-tick, .snippet-product section.product-reviews .success.spr-summary-actions-newreview .icon-tick, section.product-reviews .snippet-product .success.spr-summary-actions-newreview .icon-tick {
    opacity: 1; }
  .snippet-product .ro_widget {
    display: none; }
  @media only screen and (min-width: 750px) {
    .snippet-product {
      padding: 40px 50px; } }

.snippet-article {
  display: block;
  margin-bottom: 40px;
  color: inherit;
  text-decoration: none; }
  .snippet-article .image {
    margin-bottom: 30px;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    background-color: rgba(141, 119, 206, 0.2);
    background-blend-mode: luminosity; }
  .snippet-article .tags {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 15px;
    color: #7da532;
    text-transform: uppercase;
    letter-spacing: 1px; }
  .snippet-article h4 {
    margin-bottom: 0;
    font-size: 21px;
    font-weight: 400; }
  @media only screen and (min-width: 750px) {
    .snippet-article .tags {
      font-size: 13px; }
    .snippet-article h4 {
      font-size: 24px; } }

.snippet-articles-grid {
  *zoom: 1; }
  .snippet-articles-grid::after {
    content: '';
    display: table;
    clear: both; }
  @media only screen and (min-width: 750px) {
    .snippet-articles-grid .snippet-article:nth-child(5n+1) {
      clear: both;
      float: left;
      width: 48%; }
      .snippet-articles-grid .snippet-article:nth-child(5n+1) h4 {
        font-size: 36px;
        line-height: 45px;
        font-weight: 300; }
    .snippet-articles-grid .snippet-article:nth-child(5n+2),
    .snippet-articles-grid .snippet-article:nth-child(5n+3),
    .snippet-articles-grid .snippet-article:nth-child(5n+4),
    .snippet-articles-grid .snippet-article:nth-child(5n+5) {
      float: right;
      width: 22%;
      margin-left: 4%; }
    .snippet-articles-grid .snippet-article:nth-child(5n+4) {
      clear: right; }
    .snippet-articles-grid .snippet-article:nth-child(10n+6) {
      float: right; }
    .snippet-articles-grid .snippet-article:nth-child(10n+7),
    .snippet-articles-grid .snippet-article:nth-child(10n+8),
    .snippet-articles-grid .snippet-article:nth-child(10n+9),
    .snippet-articles-grid .snippet-article:nth-child(10n+10) {
      float: left;
      margin-left: 0;
      margin-right: 4%; }
    .snippet-articles-grid .snippet-article:nth-child(10n+9) {
      clear: left; } }

.snippet-faq {
  display: block;
  margin-bottom: 40px;
  color: inherit;
  text-decoration: none; }
  .snippet-faq .tags {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 15px;
    color: #7da532;
    text-transform: uppercase;
    letter-spacing: 1px; }
  .snippet-faq h4 {
    margin-bottom: 0;
    font-size: 21px;
    font-weight: 400; }
  @media only screen and (min-width: 750px) {
    .snippet-faq .tags {
      font-size: 13px; }
    .snippet-faq h4 {
      font-size: 24px; } }

@media only screen and (min-width: 750px) {
  .modal-cart {
    overflow-y: hidden; }
    .modal-cart .modal-content {
      display: flex;
      align-items: center;
      height: 100%; }
      .modal-cart .modal-content .shopify-section {
        flex-grow: 1;
        max-height: 100%;
        overflow-y: auto; }
        .modal-cart .modal-content .shopify-section:first-child {
          flex-grow: 3; }
      .modal-cart .modal-content section.cart-info {
        width: 380px;
        padding-right: 40px; } }

.modal-search {
  background-color: #8d77ce;
  color: #fff; }

.modal-login .modal-content {
  display: flex;
  align-items: center;
  min-height: 100%; }
  .modal-login .modal-content .shopify-section {
    width: 100%; }

.modal-notice {
  background-color: rgba(141, 119, 206, 0.7); }
  .modal-notice .modal-content {
    display: flex;
    align-items: center;
    min-height: 100%; }
    .modal-notice .modal-content .shopify-section {
      width: 100%; }
    .modal-notice .modal-content section.notice-content {
      padding: 30px;
      margin: auto;
      background: #fff;
      max-width: 890px; }
      @media only screen and (max-width: 749px) {
        .modal-notice .modal-content section.notice-content {
          /*margin-left: 20px;
          margin-right: 20px;*/
          max-width: 100%; }
          .modal-notice .modal-content section.notice-content form .btn-submit {
            width: 100%; }
          .modal-notice .modal-content section.notice-content .notice-content-wrap {
            text-align: left;
            overflow-y: scroll;
            max-height: 480px;
            margin-bottom: 20px; } }

.modal-wechat .modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%; }
.modal-wechat .content {
  padding: 0 16px;
  width: 280px;
  font-size: 14px;
  line-height: 20px;
  text-align: center; }
  .modal-wechat .content p {
    margin-bottom: 8px; }
  .modal-wechat .content a {
    color: #7da532;
    text-decoration: none; }
    .modal-wechat .content a:hover {
      text-decoration: underline; }

.modal-address .modal-content {
  display: none; }
  .modal-address .modal-content.active {
    display: block; }
.modal-address section.address {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > .modal-address section.address {
    padding-top: 130px; }
  .modal .shopify-section:first-child > .modal-address section.address {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    .modal-address section.address {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > .modal-address section.address {
        padding-top: 240px; }
      .modal .shopify-section:first-child > .modal-address section.address {
        padding-top: 100px; } }

.modal-address-new section.address-new {
  padding-top: 30px;
  padding-bottom: 30px; }
  .shopify-section:first-child > .modal-address-new section.address-new {
    padding-top: 130px; }
  .modal .shopify-section:first-child > .modal-address-new section.address-new {
    padding-top: 80px; }
  @media only screen and (min-width: 750px) {
    .modal-address-new section.address-new {
      padding-top: 90px;
      padding-bottom: 90px; }
      .shopify-section:first-child > .modal-address-new section.address-new {
        padding-top: 240px; }
      .modal .shopify-section:first-child > .modal-address-new section.address-new {
        padding-top: 100px; } }

.modal-menu .modal-content {
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: 60px 0; }
.modal-menu .primary-nav {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .modal-menu .primary-nav .accordian {
    text-align: center; }
  .modal-menu .primary-nav .nav-link,
  .modal-menu .primary-nav .accordian {
    margin-top: 1.5rem; }
  .modal-menu .primary-nav .nav-link:first-child,
  .modal-menu .primary-nav .accordian:first-child {
    margin-top: 0; }
  .modal-menu .primary-nav .nav-link {
    font-size: 21px;
    color: #8d77ce;
    text-decoration: none;
    transition: color .2s;
    text-align: left; }
    .modal-menu .primary-nav .nav-link:hover, .modal-menu .primary-nav .nav-link:active {
      color: #7da532; }
  .modal-menu .primary-nav button.nav-link {
    padding: 0;
    background: none;
    border: none; }
  .modal-menu .primary-nav .btn-login {
    margin-top: 2rem; }
  .modal-menu .primary-nav .accordian-content {
    display: flex;
    flex-direction: column;
    align-items: center; }
  .modal-menu .primary-nav .sub-nav-link {
    margin: 0;
    padding: 0 12px;
    color: #8d77ce;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-decoration: none; }
    .modal-menu .primary-nav .sub-nav-link:first-child {
      margin-top: 6px; }
.modal-menu .social-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 1rem; }
  .modal-menu .social-nav .nav-link {
    font-size: 14px;
    color: #8d77ce; }
  .modal-menu .social-nav .icon-facebook {
    width: 10px;
    height: 18px; }
  .modal-menu .social-nav .icon-instagram {
    width: 18px;
    height: 18px; }
  .modal-menu .social-nav .icon-wechat {
    width: 25px;
    height: 20px; }

.snippet-featured-image {
  position: relative;
  height: 56.25vw;
  min-height: 50vh;
  max-height: 70vh;
  z-index: 0;
  background-color: #000; }
  .snippet-featured-image::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0) 300px);
    content: ''; }
  .snippet-featured-image .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center; }

.snippet-featured-video {
  position: relative;
  height: 56.25vw;
  z-index: 0;
  background-color: #000; }
  .snippet-featured-video::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0) 300px);
    content: ''; }
  .snippet-featured-video .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s; }
    .snippet-featured-video .bg-video.loaded {
      opacity: 1; }

.carousel-item {
  display: none;
  flex-direction: column;
  width: 100%; }
  .carousel-item.active {
    display: flex; }
  .carousel-item.enter-active {
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }
  .carousel-item.leave-active {
    transition: opacity 0.6s cubic-bezier(0.95, 0.05, 0.795, 0.035), transform 0.6s cubic-bezier(0.95, 0.05, 0.795, 0.035); }
  .carousel-item.enter-from {
    opacity: 0;
    transform: translateX(20px); }
  .carousel-item.leave-to {
    opacity: 0;
    transform: translateX(-20px); }
  .carousel-item .image {
    margin-bottom: 20px;
    text-align: center;
    font-size: 0;
    line-height: 1; }
  .carousel-item .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; }
  .carousel-item p {
    order: 1;
    margin-bottom: 0; }
  .carousel-item .btn, .carousel-item section.product-reviews .spr-summary-actions-newreview, section.product-reviews .carousel-item .spr-summary-actions-newreview {
    margin-bottom: 30px; }
  @media only screen and (min-width: 750px) {
    .carousel-item {
      flex-direction: row-reverse;
      align-items: center; }
      .carousel-item .content,
      .carousel-item .image {
        width: 50%; }
      .carousel-item .image {
        display: block;
        margin-bottom: 0; }
      .carousel-item .content {
        display: block;
        padding-right: 40px;
        text-align: left; }
      .carousel-item p {
        margin-bottom: 30px; }
      .carousel-item .btn, .carousel-item section.product-reviews .spr-summary-actions-newreview, section.product-reviews .carousel-item .spr-summary-actions-newreview {
        margin-bottom: 0; } }

.shopify-section:first-child > .full-width.home-carousel {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 60px;
  margin-bottom: 80px;
  min-height: 400px;
  height: 400px; }
  @media only screen and (min-width: 990px) {
    .shopify-section:first-child > .full-width.home-carousel {
      padding-top: 0;
      padding-bottom: 0;
      margin-top: 130px;
      margin-bottom: 120px;
      height: 670px;
      min-height: 670px; } }
.full-width.home-carousel .carousel-btns {
  display: block;
  position: absolute;
  bottom: -60px; }
  @media only screen and (min-width: 990px) {
    .full-width.home-carousel .carousel-btns {
      bottom: -80px; } }
.full-width.carousel-item {
  flex-direction: row;
  position: relative; }
  .full-width.carousel-item .content-wrap {
    z-index: 0;
    height: 400px;
    display: flex;
    align-items: flex-start; }
    .full-width.carousel-item .content-wrap .content {
      width: 100%;
      margin-top: 20px;
      text-align: left;
      align-items: baseline; }
      .full-width.carousel-item .content-wrap .content h1 {
        font-size: 30px;
        font-weight: 700;
        margin-top: 10px;
        margin-bottom: 10px;
        line-height: 1.2em; }
      .full-width.carousel-item .content-wrap .content p {
        display: none; }
      .full-width.carousel-item .content-wrap .content .image {
        width: 200px; }
      .full-width.carousel-item .content-wrap .content .button {
        display: flex;
        flex-direction: column; }
        .full-width.carousel-item .content-wrap .content .button .btn, .full-width.carousel-item .content-wrap .content .button section.product-reviews .spr-summary-actions-newreview, section.product-reviews .full-width.carousel-item .content-wrap .content .button .spr-summary-actions-newreview {
          margin-bottom: 10px; }
          @media only screen and (max-width: 989px) {
            .full-width.carousel-item .content-wrap .content .button .btn, .full-width.carousel-item .content-wrap .content .button section.product-reviews .spr-summary-actions-newreview, section.product-reviews .full-width.carousel-item .content-wrap .content .button .spr-summary-actions-newreview {
              padding: 12px 15px 10px 15px;
              font-size: 14px;
              line-height: 1; } }
      @media only screen and (min-width: 750px) {
        .full-width.carousel-item .content-wrap .content .button {
          flex-direction: row; }
          .full-width.carousel-item .content-wrap .content .button .btn-outline-secondary, .full-width.carousel-item .content-wrap .content .button section.product-reviews .spr-summary-actions-newreview, section.product-reviews .full-width.carousel-item .content-wrap .content .button .spr-summary-actions-newreview {
            margin-left: 10px; } }
      @media only screen and (min-width: 990px) {
        .full-width.carousel-item .content-wrap .content {
          margin-top: 40px; }
          .full-width.carousel-item .content-wrap .content h1 {
            font-size: 60px; }
          .full-width.carousel-item .content-wrap .content p {
            display: block; }
          .full-width.carousel-item .content-wrap .content .image {
            width: 350px; } }
    @media only screen and (min-width: 990px) {
      .full-width.carousel-item .content-wrap {
        height: 670px; } }
  .full-width.carousel-item .carousel-item-bg {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0; }
    .full-width.carousel-item .carousel-item-bg.desktop {
      display: none; }
    .full-width.carousel-item .carousel-item-bg.mobile {
      display: block; }
    @media only screen and (min-width: 990px) {
      .full-width.carousel-item .carousel-item-bg {
        height: 670px;
        background-size: cover; }
        .full-width.carousel-item .carousel-item-bg.desktop {
          display: block; }
        .full-width.carousel-item .carousel-item-bg.mobile {
          display: none; } }

.carousel-item-brand .image {
  padding: 0 30px; }
  .carousel-item-brand .image svg {
    max-width: 100%; }
@media only screen and (min-width: 750px) {
  .carousel-item-brand .image {
    padding: 0; } }

.carousel-item-product form {
  display: inline-block; }

.carousel-item-goat .image svg {
  max-width: 100%; }

.carousel-btn {
  position: relative;
  display: inline-block;
  margin-right: 10px; }
  .carousel-btn svg {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 44px;
    height: 44px;
    transform: rotate(-90deg);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s; }
  .carousel-btn circle {
    stroke-dasharray: 157px;
    stroke-dashoffset: 157px; }
  .carousel-btn .btn-icon {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none; }
  .carousel-btn img {
    border-radius: 50%;
    vertical-align: middle; }
  @media only screen and (min-width: 750px) {
    .carousel-btn svg {
      width: 52px;
      height: 52px; } }

.carousel-btn.active svg {
  opacity: 1; }

.carousel-btn-brand img {
  width: 24px; }

.snippet-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  overflow: hidden;
  line-height: 0; }
  .snippet-background-image img {
    width: 100%;
    min-height: 50vh;
    object-fit: cover;
    opacity: .2; }
  .snippet-background-image::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 50%, white), linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
    content: ''; }

.snippet-background-image.flip::after {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, white), linear-gradient(to bottom, rgba(255, 255, 255, 0), white); }

@media only screen and (min-width: 750px) {
  .snippet-background-image.half {
    bottom: 0; }
    .snippet-background-image.half img {
      height: 100%;
      min-height: 0;
      opacity: .75; }
    .snippet-background-image.half::after {
      background-image: linear-gradient(to left, rgba(255, 255, 255, 0), white 60%), linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, white); } }

@media only screen and (min-width: 750px) {
  .snippet-background-image.half.flip::after {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), white 60%), linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, white); } }

@supports (filter: blur(50px)) {
  .snippet-background-image.blur img {
    filter: blur(50px); } }
.snippet-image {
  line-height: 0;
  background-color: rgba(141, 119, 206, 0.2);
  isolation: isolate; }
  .snippet-image.bg-transparent {
    background: transparent; }
  .snippet-image img {
    object-fit: cover;
    mix-blend-mode: luminosity; }
  @media only screen and (max-width: 989px) {
    .snippet-image.sm-index img {
      max-width: 70%;
      margin-left: -40px;
      margin-bottom: 20px; } }
  .snippet-image.content-feature {
    background-color: transparent; }
    .snippet-image.content-feature img {
      float: left;
      max-width: 40%;
      margin: 0 20px 20px 0; }
    @media only screen and (max-width: 989px) {
      .snippet-image.content-feature {
        width: 100%; }
        .snippet-image.content-feature img {
          float: none;
          max-width: 70%; } }

.snippet-image.square {
  position: relative;
  padding-top: 100%; }
  .snippet-image.square img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.snippet-wave {
  position: absolute;
  left: 0;
  width: 100vw;
  height: 5vw; }

.snippet-wave-top {
  bottom: 100%; }

.snippet-wave-bottom {
  bottom: 0; }

.breadcrumb {
  margin: 1rem 0 2rem 0;
  font-size: 1rem; }
  .breadcrumb > a {
    text-decoration: none;
    font-size: 1rem;
    color: #7da532; }
    .breadcrumb > a:hover {
      text-decoration: underline; }
  @media only screen and (min-width: 750px) {
    .product-detail .breadcrumb {
      width: 50%;
      margin-left: auto; } }

nav.nav-page {
  border-top: 1px solid #9d8ad5;
  border-bottom: none;
  overflow: hidden; }
  @media only screen and (max-width: 989px) {
    nav.nav-page {
      margin-top: 20px; } }
  nav.nav-page ul {
    list-style-type: none;
    padding: 0;
    margin: 0; }
    nav.nav-page ul a {
      display: block;
      background-color: #fff;
      text-decoration: none;
      padding: 15px 20px 12px 20px;
      color: #8d77ce;
      border-bottom: 1px solid #9d8ad5;
      font-size: 18px;
      line-height: 1em; }
      nav.nav-page ul a:hover {
        color: #7da532 !important;
        text-decoration: underline; }
      nav.nav-page ul a.active {
        background-color: #eeebf8;
        color: #7d64c7; }
    nav.nav-page ul li ul {
      display: none; }
    nav.nav-page ul li.child-active > ul {
      display: block; }
    nav.nav-page ul li.active > ul {
      display: block; }
    nav.nav-page ul.parent > li > a {
      text-transform: uppercase;
      font-weight: bold; }
    nav.nav-page ul.child li a {
      border-bottom: 1px solid #bcafe2;
      padding-left: 40px;
      position: relative; }
      nav.nav-page ul.child li a:before {
        position: absolute;
        display: block;
        content: '-';
        top: 12px;
        left: 20px; }
    nav.nav-page ul.child li.child-active > a {
      color: #7d64c7; }
    nav.nav-page ul.grandchild li a {
      padding-left: 55px; }
      nav.nav-page ul.grandchild li a:before {
        padding-left: 20px; }

/* Page Content Style */
section.page-content {
  padding-top: 70px;
  padding-bottom: 90px; }
  section.page-content a:not(.btn) {
    color: #7da532;
    text-decoration: none; }
    section.page-content a:not(.btn):hover {
      text-decoration: underline; }
  @media only screen and (min-width: 990px) {
    section.page-content {
      padding-top: 140px; } }

/* Related blog posts */
#shopify-section-related-posts {
  padding-bottom: 20px; }
  #shopify-section-related-posts .rb_blog-grid > * {
    width: 100%; }
    #shopify-section-related-posts .rb_blog-grid > * img {
      width: inherit;
      height: auto; }
  #shopify-section-related-posts a {
    color: #7da532;
    text-decoration: none;
    font-family: din-next-rounded, "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    #shopify-section-related-posts a:hover, #shopify-section-related-posts a:focus {
      background-color: transparent; }
  #shopify-section-related-posts .rb_title {
    margin: 10px 0; }
  #shopify-section-related-posts .rb_continue_button {
    padding: 0;
    border: 0; }

/* .snack-landing page */
.page-new-snacks-range .header {
  background: #ffff; }

.snacks-landing .collection-hero {
  padding-top: 150px !important;
  background: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/snack-hero-wood-bg.jpg?v=6443435292424025294");
  background-size: cover; }
  .snacks-landing .collection-hero::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0) 400px);
    content: '';
    z-index: 0; }
  @media only screen and (max-width: 749px) {
    .snacks-landing .collection-hero {
      padding-top: 80px; }
      .snacks-landing .collection-hero::after {
        background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0) 500px); } }
  .snacks-landing .collection-hero .grid__item {
    position: relative; }
    .snacks-landing .collection-hero .grid__item:before, .snacks-landing .collection-hero .grid__item:after {
      width: 520px;
      height: 650px;
      position: absolute;
      display: block;
      content: '';
      top: 0;
      background-repeat: no-repeat;
      background-position: center center; }
    .snacks-landing .collection-hero .grid__item:before {
      left: 0;
      margin-left: -380px;
      background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/snack-grains-left.png?v=7967707414286493306");
      z-index: 1; }
    .snacks-landing .collection-hero .grid__item:after {
      right: 0;
      margin-right: -480px;
      background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/snack-grains-right.png?v=445551755532337699");
      z-index: 1; }
    @media only screen and (max-width: 989px) {
      .snacks-landing .collection-hero .grid__item {
        overflow: hidden; }
        .snacks-landing .collection-hero .grid__item:before, .snacks-landing .collection-hero .grid__item:after {
          width: 120%;
          height: auto;
          padding-top: 100%;
          background-size: contain; }
        .snacks-landing .collection-hero .grid__item:before {
          margin-left: 0; }
        .snacks-landing .collection-hero .grid__item:after {
          display: none; } }
  .snacks-landing .collection-hero .grid__info {
    z-index: 1;
    position: relative; }
    .snacks-landing .collection-hero .grid__info .img-product {
      margin-top: 20px; }
    .snacks-landing .collection-hero .grid__info .sticker-available {
      color: #fff;
      background: #9F114E; }
      @media only screen and (max-width: 989px) {
        .snacks-landing .collection-hero .grid__info .sticker-available {
          display: inline-block;
          border-radius: 30px;
          padding: 10px 15px;
          font-weight: 500; } }
      @media only screen and (min-width: 990px) {
        .snacks-landing .collection-hero .grid__info .sticker-available {
          position: absolute;
          width: 200px;
          height: 200px;
          display: block;
          padding: 30px;
          border-radius: 100px;
          right: -120px;
          bottom: 50%;
          line-height: 1.4rem;
          font-size: 18px;
          -webkit-box-shadow: 10px 10px 5px 0px rgba(153, 153, 153, 0.15);
          -moz-box-shadow: 10px 10px 5px 0px rgba(153, 153, 153, 0.15);
          box-shadow: 10px 10px 5px 0px rgba(153, 153, 153, 0.15);
          z-index: 3; }
          .snacks-landing .collection-hero .grid__info .sticker-available .txt {
            display: block;
            margin-bottom: 0.8rem; }
            .snacks-landing .collection-hero .grid__info .sticker-available .txt.txt--1 {
              font-size: 26px;
              font-weight: 700;
              margin-bottom: 1rem; }
            .snacks-landing .collection-hero .grid__info .sticker-available .txt.txt--2 {
              font-size: 46px;
              font-weight: 900; } }
.snacks-landing .collection-detail {
  background: #fff; }
  @media only screen and (min-width: 750px) {
    .snacks-landing .collection-detail {
      padding-bottom: 45px;
      padding-top: 45px; } }
  .snacks-landing .collection-detail.collection-product {
    padding-bottom: 0;
    padding-top: 0; }
  @media only screen and (min-width: 750px) {
    .snacks-landing .collection-detail .perfect-age .info {
      order: 2; }
    .snacks-landing .collection-detail .perfect-age .image {
      order: 1; } }
.snacks-landing .faqs-content--purple .article {
  max-width: 100%;
  border-bottom: 1px solid #ac9cdc;
  padding-bottom: 20px; }
  .snacks-landing .faqs-content--purple .article h4 {
    font-size: 22px;
    font-weight: 500;
    position: relative;
    padding-right: 30px;
    line-height: 1.1; }
    .snacks-landing .faqs-content--purple .article h4:after {
      content: "\0003E";
      position: absolute;
      right: 30px;
      transform: rotate(90deg);
      top: 50%;
      margin-top: -10px; }
    .snacks-landing .faqs-content--purple .article h4.active:after {
      transform: rotate(-90deg); }
  .snacks-landing .faqs-content--purple .article .content a {
    color: #8d77ce; }

.goatmilk-landing ul.check-gold {
  list-style: none; }
  .goatmilk-landing ul.check-gold li {
    position: relative;
    padding-left: 10px;
    margin-bottom: 1.1rem; }
    .goatmilk-landing ul.check-gold li:before {
      content: '';
      display: block;
      width: 30px;
      height: 30px;
      background: url(tick-gold.png) no-repeat top center;
      background-size: cover;
      position: absolute;
      left: -30px;
      top: -3px; }
.goatmilk-landing .grid--box {
  background: #f7f7f7;
  border-radius: 15px;
  padding: 30px 20px;
  margin-left: 0; }
  .goatmilk-landing .grid--box .grid__item {
    margin-bottom: 0;
    padding-left: 10px; }
  .goatmilk-landing .grid--box a {
    color: #8d77ce; }
.goatmilk-landing .collection-hero {
  padding-top: 150px !important;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 50px; }
  @media only screen and (max-width: 749px) {
    .goatmilk-landing .collection-hero {
      padding-bottom: 25px; } }
  .goatmilk-landing .collection-hero .container {
    position: relative;
    z-index: 1; }
  .goatmilk-landing .collection-hero .product-range {
    margin-top: 1rem; }
  .goatmilk-landing .collection-hero h2 {
    max-width: 100% !important; }
  .goatmilk-landing .collection-hero::after {
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 600px;
    background-image: linear-gradient(to top, #e0e0e0, rgba(224, 224, 224, 0) 600px);
    z-index: 0; }
  .goatmilk-landing .collection-hero h1 {
    position: relative;
    padding-left: 130px;
    font-weight: 300; }
    .goatmilk-landing .collection-hero h1 .sticker-new {
      position: absolute;
      text-indent: -999em;
      display: block;
      width: 110px;
      height: 110px;
      overflow: hidden;
      background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/icon-new.png?v=15107468186709207731");
      background-size: cover;
      background-repeat: no-repeat;
      left: 0;
      top: 50%;
      margin-top: -55px; }
    @media only screen and (max-width: 749px) {
      .goatmilk-landing .collection-hero h1 {
        padding-left: 50px; }
        .goatmilk-landing .collection-hero h1 .sticker-new {
          width: 40px;
          height: 40px; } }
  @media only screen and (min-width: 750px) {
    .goatmilk-landing .collection-hero .hero-info .h3 {
      font-size: 26px;
      font-weight: 400;
      line-height: 1.1; } }
.goatmilk-landing .collection-detail {
  background: #fff; }
  .goatmilk-landing .collection-detail .collection-range h2 {
    color: #0c9dd6;
    margin-bottom: 0;
    font-weight: 500; }

/* Announcement Bar */
#qab_container {
  /*  Only show acnnoucment bar in a new session BUBS-101*/
  visibility: hidden !important; }
  #qab_container.active {
    visibility: visible !important; }

#qab_background {
  display: flex;
  height: 200px !important;
  z-index: 3 !important; }
  @media only screen and (max-width: 749px) {
    #qab_background {
      height: 120px !important; } }

#qab_bar {
  display: flex !important;
  flex-direction: column;
  justify-content: baseline;
  /*  padding-left: 180px !important;
    padding-right: 20px !important;*/
  background-size: cover;
  background-position: 50%;
  background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/bg-beach.jpg?v=548009283868972734"); }
  @media only screen and (max-width: 749px) {
    #qab_bar {
      padding-top: 15px !important;
      padding-bottom: 15px !important;
      padding-left: 140px !important; } }

#qab_content #qab_message {
  position: relative;
  font-size: 18px !important;
  color: #8d77ce !important;
  font-weight: bold;
  text-shadow: 1px 1px #fff; }
  #qab_content #qab_message::before {
    content: '';
    display: block;
    position: absolute;
    width: 180px;
    height: 110px;
    left: 50%;
    margin-top: 35px;
    top: 50%;
    background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/group-shot.png?v=17618693804460661987");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain; }
  @media only screen and (max-width: 749px) {
    #qab_content #qab_message {
      font-size: 16px !important; }
      #qab_content #qab_message::before {
        width: 120px;
        margin-left: -140px;
        left: 0;
        top: 0;
        height: 100px;
        margin-top: 0; } }
  @media screen and (max-width: 321px) {
    #qab_content #qab_message::before {
      left: -140px; } }
  #qab_content #qab_message + span {
    margin-top: 10px !important; }

#qab_button {
  padding: 10px 15px !important;
  text-transform: uppercase;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 16px !important;
  letter-spacing: 1px !important;
  border: solid 1px !important;
  border-radius: 21px !important;
  transition: color .2s, background-color .2s, border-color .2s, opacity .2s;
  color: #fff !important;
  border-color: #7da532 !important;
  background-color: #7da532 !important;
  display: block !important; }

#qab_close {
  top: 16px !important;
  color: #8d77ce !important; }

ul.tick-purple li {
  padding-left: 10px;
  margin-bottom: 15px;
  list-style-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/tick-purple.svg?v=1407333180570358029"); }

ul.list-icons {
  list-style: none; }
  ul.list-icons li {
    position: relative;
    padding-left: 100px;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem; }
    ul.list-icons li h2 {
      margin-bottom: 0.5rem; }
    ul.list-icons li:before {
      content: '';
      display: block;
      width: 85px;
      height: 85px;
      background: url(icon-nz.png) no-repeat top center;
      position: absolute;
      left: 0px;
      top: -5px; }
    ul.list-icons li.icon-grass:before {
      background: url(icon-grass.png) no-repeat top center; }
    ul.list-icons li.icon-sun:before {
      background: url(icon-sun.png) no-repeat top center; }

.bg-white {
  background: #fff; }

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

.pb-0 {
  padding-bottom: 0 !important; }

.text-green {
  color: #7da532 !important; }

.iframe-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  margin: 1rem 0; }
  .iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.cart-content .mandatory {
  font-size: 20px;
  color: #EB3942; }
.cart-content .hidden-screen {
  height: 1px;
  width: 1px;
  position: relative;
  display: block; }
  .cart-content .hidden-screen textarea {
    visibility: hidden; }

.collection-footer-logo {
  margin-bottom: -126px; }

.faqs-wrapper {
  position: relative; }

.collection-footer-logo .bubs-faqs-img {
  text-align: right; }

.collection-footer-logo .bubs-faqs-img img {
  width: 180px;
  position: relative;
  right: 93px; }

.collection-footer-logo .bubs-faqs {
  position: absolute;
  right: 254px;
  bottom: 71px;
  z-index: 1; }

.collection-footer-logo .bubs-faqs img {
  width: 205px; }

.vita-collection .grid .grid__item a, .vita-newest-collection.grid .grid__item a {
  position: relative; }

.vita-collection .grid .bubs-prod-grid-3 a:after, .vita-newest-collection.grid .grid__item.newest-vita-grid-3 a:after {
  content: "";
  position: absolute;
  background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/vita-icon-1.gif?v=15332954829949875774");
  background-size: contain;
  top: -120px;
  width: 100%;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center right; }

.vita-collection .grid .bubs-prod-grid-6 a:after {
  content: "";
  position: absolute;
  background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/vita-icon-2.gif?v=1118151360028797732");
  background-size: contain;
  top: -117px;
  width: 100%;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center right;
  right: 0px; }

.vita-collection .grid .bubs-prod-grid-7 a:after {
  content: "";
  position: absolute;
  background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/vita-icon-3.gif?v=16530257401516053337");
  background-size: contain;
  top: -120px;
  width: 100%;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center left;
  left: -24px; }

.collection-detail .vita-collection .grid__item {
  margin-bottom: 130px; }

.vita-intro {
  background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/vita-Bubs-smile-background.png?v=5453699216754388420");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  padding-bottom: 100px; }

.vita-intro .vita-intro-header {
  width: 66%;
  margin: auto;
  text-align: center;
  margin-bottom: 80px; }

.vita-intro .vita-prod-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600; }

.vita-intro .vita-product-list {
  display: flex;
  flex-wrap: wrap; }

.vita-intro .vita-product-item {
  position: relative;
  padding-bottom: 20px; }

.vita-intro .vita-product-item.one {
  width: 35%; }

.vita-intro .vita-product-item.two {
  width: 29%; }

.vita-intro .vita-product-item.three {
  width: 11%; }

.vita-intro .vita-product-item.four {
  width: 100%; }

.vita-intro .vita-product-item.five {
  width: 100%; }

.vita-features {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px; }

.vita-features .feature-item {
  width: 25%; }

.vita-features .feature-item .v-icon {
  height: 70px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center; }

.vita-features .feature-item .one {
  background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/vita-kids-icon.png?v=11890150258913772028"); }

.vita-features .feature-item .two {
  background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/vita-science-icon.png?v=2122871169965810191"); }

.vita-features .feature-item .three {
  background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/vita-nothing-artificial-icon.png?v=649645100227964131"); }

.vita-features .feature-item .four {
  background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/vita-aus-icon.png?v=2275473380140632323"); }

.vita-features .feature-title {
  color: #333;
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500; }

.vita-content ul {
  list-style: none;
  padding-left: 35px; }

.vita-content ul li {
  position: relative;
  margin-bottom: 10px; }

.vita-content ul li:before {
  position: absolute;
  content: '';
  background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/vita-smile-mini.png?v=8118632843270838762");
  background-size: contain;
  position: absolute;
  width: 25px;
  background-repeat: no-repeat;
  left: -35px;
  height: 100%; }

.grid.vita-bubs-grid {
  margin-top: 140px;
  margin-bottom: 110px; }

.grid.vita-bubs-grid .iframe-container {
  padding-top: 0;
  margin-top: 0; }

.grid.vita-bubs-grid h3 {
  width: 90%; }

.vita-product-heading {
  margin-bottom: 80px;
  text-align: center; }

.signature-wrap {
  position: relative; }

.signature-wrap .science-logo {
  position: relative;
  background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/vita-basedonscience-icon-TOP.png?v=18351288245199904814");
  width: 100px;
  height: 70px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 36%;
  bottom: 0; }

.logo-wrap .science-logo {
  position: relative;
  background-image: url("//cdn.shopify.com/s/files/1/2809/7488/t/12/assets/vita-basedonscience-icon-TOP.png?v=18351288245199904814");
  width: 100px;
  height: 70px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 637px;
  bottom: 157px; }

section.collection-intro.vita-bubs .intro-img {
  height: 300px; }

section.collection-intro.vita-bubs .info {
  padding-bottom: 260px; }

@media only screen and (max-width: 1150px) {
  .signature-wrap .science-logo {
    left: 42%; } }
@media only screen and (max-width: 992px) {
  .signature-wrap .science-logo {
    left: 56%; } }
@media only screen and (max-width: 751px) {
  .vita-collection .grid .bubs-prod-grid-6 a:after {
    right: 0; }

  .vita-collection .grid .bubs-prod-grid-7 a:after {
    left: -13px; }

  .collection-footer-logo {
    margin-bottom: -49px;
    padding-top: 50px; }

  .collection-footer-logo .bubs-faqs-img img {
    right: 0;
    width: 170px; }

  .collection-footer-logo .bubs-faqs {
    right: 150px; }

  section.collection-intro.vita-bubs h1 {
    width: 216px;
    padding-right: 0;
    text-align: left; }

  .vita-intro {
    padding-bottom: 0; }

  .vita-intro .vita-intro-header {
    width: 100%; }

  .vita-intro .vita-product-item {
    margin-bottom: 30px; }

  .vita-intro .vita-product-item.one {
    width: 100%; }

  .vita-intro .vita-product-item.two {
    width: 100%; }

  .vita-intro .vita-product-item.three {
    width: 33.33%; }

  .vita-intro .vita-prod-title {
    position: relative; }

  .vita-features .feature-item {
    width: 50%;
    margin-bottom: 30px; }

  .grid.vita-bubs-grid {
    margin-top: 50px;
    margin-bottom: 10px; }

  .vita-product-heading {
    margin-bottom: 50px; }

  .signature-wrap .science-logo {
    left: 38%;
    height: 60px; }

  .logo-wrap .science-logo {
    height: 60px; }

  .logo-wrap .science-logo {
    right: 0;
    left: auto;
    bottom: 100px; } }
