/** Shopify CDN: Minification failed

Line 2264:3 Unexpected "zoom"
Line 2350:3 Unexpected "zoom"

**/
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Work+Sans:400,500,600,700,800&display=swap");
@font-face {
  font-family: 'river_jaderegular';
  src: url("/cdn/shop/t/201/assets/river_jade-webfont.woff2?v=29919927555628826411683149583") format("woff2"), url("/cdn/shop/t/201/assets/river_jade-webfont.woff?v=156658207511312205381683149583") format("woff");
  font-weight: normal;
  font-style: normal; }

/*============================================================================
  Boost | Built with Slate
    - You cannot use native CSS/Sass @imports in this file without a build script
==============================================================================*/
.pt-alt-1 {
  padding-top: 1rem  !important; }

.pt-alt-2 {
  padding-top: 2rem !important; }

.pt-alt-3 {
  padding-top: 3rem !important; }

.pt-alt-4 {
  padding-top: 4rem !important; }

.pt-alt-5 {
  padding-top: 5rem !important; }

.pb-alt-1 {
  padding-bottom: 1rem; }

.pb-alt-2 {
  padding-bottom: 2rem; }

.pb-alt-3 {
  padding-bottom: 3rem; }

.pb-alt-4 {
  padding-bottom: 4rem; }

.pb-alt-5 {
  padding-bottom: 5rem; }

.mt-alt-1 {
  margin-top: 1rem !important; }

.mt-alt-2 {
  margin-top: 2rem !important; }

.mt-alt-3 {
  margin-top: 3rem !important; }

.mt-alt-4 {
  margin-top: 4rem !important; }

.mt-alt-5 {
  margin-top: 5rem !important; }

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

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

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

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

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

.mr-alt-1 {
  margin-right: 1rem; }

.mr-alt-2 {
  margin-right: 2rem; }

.mr-alt-3 {
  margin-right: 3rem; }

.mr-alt-4 {
  margin-right: 4rem; }

.mr-alt-5 {
  margin-right: 5rem; }

.ml-alt-1 {
  margin-left: 1rem; }

.ml-alt-2 {
  margin-left: 2rem; }

.ml-alt-3 {
  margin-left: 3rem; }

.ml-alt-4 {
  margin-left: 4rem; }

.ml-alt-5 {
  margin-left: 5rem; }

@media (max-width: 768px) {
  .mb-alt-4 {
    margin-bottom: 2rem !important; }

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

  .mr-alt-4 {
    margin-right: 2rem !important; }

  .mr-alt-5 {
    margin-right: 3rem !important; }

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

  .ml-alt-5 {
    margin-left: 3rem !important; } }
/*================ 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: #000;
  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.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none; }

.pswp__button:focus, .pswp__button:hover {
  opacity: 1; }

.pswp__button:active {
  outline: none;
  opacity: 0.9; }

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(/cdn/shop/t/201/assets/photoswipe-default-skin.png?v=115405504031309184941683149583) 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(/cdn/shop/t/201/assets/photoswipe-default-skin.svg?v=153845424322445325761683149583); }

  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }
.pswp__button--close {
  background-position: 0 -44px; }

.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(/cdn/shop/t/201/assets/preloader.gif?v=77008736554601496081683149583) 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: rgba(0, 0, 0, 0.5); }

/* 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: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

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

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

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

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

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block; }

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

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

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

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

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

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

/* Slider */
.slick-loading .slick-list {
  background: white url(/cdn/shop/t/201/assets/preloader.gif?v=77008736554601496081683149583) center center no-repeat; }

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

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

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

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

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

.slick-prev {
  left: 120px; }

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

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

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

.slick-next {
  right: 120px; }

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

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

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

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

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
  padding: 0; }

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #ccc;
  border-radius: 8px;
  transition: all 150ms; }

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

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

.slick-dots li.slick-active button {
  background: #fff;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5); }

.template-index .slick-dots {
  bottom: 0; }

.will-slick:not(.slick-slider) > .slide:not(:first-child) {
  display: none; }

.image-expand-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #444; }

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0); }

#cboxWrapper {
  max-width: none; }

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%; }

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left; }

#cboxContent {
  position: relative; }

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

#cboxTitle {
  margin: 0; }

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer; }

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic; }

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0; }

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; }

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF); }

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative; }

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px; }

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-search--inline {
  float: left; }

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0; }

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }

.select2-results__option[aria-selected] {
  cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box; }

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-search--dropdown.select2-search--hide {
  display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #eaeaea;
  border-radius: 4px; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold; }

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px; }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none; }

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left; }

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px; }

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

.clickyboxes {
  margin: 0.4em 0 1em;
  padding: 0; }
  .clickyboxes li {
    display: inline; }
    .clickyboxes li a {
      position: relative;
      display: inline-block;
      margin: 0 10px 5px 0;
      padding: 4px 10px;
      border: 1px solid #CCC;
      text-decoration: none;
      color: inherit; }
      .clickyboxes li a.active, .clickyboxes li a.active:hover {
        border-color: #999;
        background: #fff;
        color: #333; }
      .clickyboxes li a:hover {
        color: inherit;
        background: rgba(0, 0, 0, 0.05); }
      .clickyboxes li a.unavailable {
        opacity: 0.5; }
        .clickyboxes li a.unavailable::after {
          content: '';
          position: absolute;
          top: 50%;
          left: 0;
          width: 100%;
          border-top: 1px solid;
          opacity: 0.25; }

/*================ TOOLS ================*/
/*================ 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 ================*/
@keyframes onAutoFillStart {
  from {
    /**/ }

  to {
    /**/ } }

@keyframes onAutoFillCancel {
  from {
    /**/ }

  to {
    /**/ } }

@keyframes radius-corners {
  0% {
    border-radius: 0 0px 0px 0; }

  100% {
    border-radius: 0 0 0 0; } }

/*================ SETTINGS ================*/
/*================ Color Variables ================*/
/*
$colorPrimary: #1f1f1f;
$colorSecondary: #a18f8e;
$colorSuccess: #ffede5;
$colorDanger: #d0615f;
$colorWarning: #edcec6;
$colorInfo: #d2d7df;
$colorLight: #f4f4f4;
$colorDark: #1f1f1f;

.text-colorPrimary {  color: $colorPrimary; }
.text-colorSecondary {  color: $colorSecondary; }
.text-colorSuccess {  color: $colorSuccess; }
.text-colorDanger {  color: $colorDanger; }
.text-colorWarning {  color: $colorWarning; }
.text-colorInfo {  color: $colorInfo; }
.text-colorLight {  color: $colorLight; }
.text-colorDark {  color: $colorDark; }

.bg-colorPrimary {  background-color: $colorPrimary; }
.bg-colorSecondary {  background-color: $colorSecondary; }
.bg-colorSuccess {  background-color: $colorSuccess; }
.bg-colorDanger {  background-color: $colorDanger; }
.bg-colorWarning {  background-color: $colorWarning; }
.bg-colorInfo {  background-color: $colorInfo; }
.bg-colorLight {  background-color: $colorLight; }
.bg-colorDark {  background-color: $colorDark; }
*/
/*================ SVG ================*/
/* LOGO */
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: normal;
  src: url("/cdn/fonts/avenir_next/avenirnext_n4.7fd0287595be20cd5a683102bf49d073b6abf144.woff2?h1=YmVsbHliYW5kaXQuY29t&h2=bGVha3Byb29md2Vhci5jb20&hmac=01d12d6e2d818f816dfb2c134dfb1b2db9f431f911600a655e09af1daa805419") format("woff2"), url("/cdn/fonts/avenir_next/avenirnext_n4.a26a334a0852627a5f36b195112385b0cd700077.woff?h1=YmVsbHliYW5kaXQuY29t&h2=bGVha3Byb29md2Vhci5jb20&hmac=a2ea3c448d95ee26ce987c436f53fcd9d368de9d534fd4bfc38eec4ca72a3b0e") format("woff"); }

/* FONT FAMILIES */
@font-face {
  font-family: "Work Sans";
  font-weight: 400;
  font-style: normal;
  src: url("/cdn/fonts/work_sans/worksans_n4.29e3afeb38a0ba35e784cf169a40e8beaf814daa.woff2?h1=YmVsbHliYW5kaXQuY29t&h2=bGVha3Byb29md2Vhci5jb20&hmac=194c551ad303008301bde7732b84f7d2bb5fea6080bedd69b817741907cbe007") format("woff2"), url("/cdn/fonts/work_sans/worksans_n4.e7c533c4afbed28070f6ac45dbcfe6f37840c0a8.woff?h1=YmVsbHliYW5kaXQuY29t&h2=bGVha3Byb29md2Vhci5jb20&hmac=2f1fc1196d143af849fbc030f104deaf3e3e71bbd9696b31621d139163b4c20a") format("woff"); }

@font-face {
  font-family: "Work Sans";
  font-weight: 500;
  font-style: normal;
  src: url("/cdn/fonts/work_sans/worksans_n5.6cde5c1d2c480f1062bb34a4ed95b947b1d9bee0.woff2?h1=YmVsbHliYW5kaXQuY29t&h2=bGVha3Byb29md2Vhci5jb20&hmac=4e1766bc94858c6e7c6dc39cc743be26b8c16389e7496a42c4a96643c65a41d2") format("woff2"), url("/cdn/fonts/work_sans/worksans_n5.e4290375dc1b143844d0a460a29fd19c69d18b27.woff?h1=YmVsbHliYW5kaXQuY29t&h2=bGVha3Byb29md2Vhci5jb20&hmac=ca28c54a7d649f14fb9486a062cd444895473266b971f5416b468565e765056b") format("woff"); }

@font-face {
  font-family: "Work Sans";
  font-weight: 700;
  font-style: normal;
  src: url("/cdn/fonts/work_sans/worksans_n7.35eac55373d3da50c529c81066eb2f2f0fbedb82.woff2?h1=YmVsbHliYW5kaXQuY29t&h2=bGVha3Byb29md2Vhci5jb20&hmac=0858d24b23551710ce17da960b1d9f003b5d0a87d7ba9396a45c5f9020e19b07") format("woff2"), url("/cdn/fonts/work_sans/worksans_n7.1b010d40a44f517d5363112c4aff386332758bc9.woff?h1=YmVsbHliYW5kaXQuY29t&h2=bGVha3Byb29md2Vhci5jb20&hmac=d81dc05fb5a87bd07d936146b6e32dd416275e7388114875e7c3f4f63074bb1a") format("woff"); }

@font-face {
  font-family: "Playfair Display";
  font-weight: 400;
  font-style: normal;
  src: url("/cdn/fonts/playfair_display/playfairdisplay_n4.9cf7fc4f6a5a48eb27738cad395f0eba18922755.woff2?h1=YmVsbHliYW5kaXQuY29t&h2=bGVha3Byb29md2Vhci5jb20&hmac=b477c0de876bbc7d91c0e9cd1fa61e1b31d07a9b0e52641d5efa5573ad9cc2fe") format("woff2"), url("/cdn/fonts/playfair_display/playfairdisplay_n4.8a3fef162b1f576396eb89e46872ef50eeb08158.woff?h1=YmVsbHliYW5kaXQuY29t&h2=bGVha3Byb29md2Vhci5jb20&hmac=f88febb7a34730f50900edc7dffa3ba5853eb308b1ec408cec67a7390cce9c69") format("woff"); }

@font-face {
  font-family: "Work Sans";
  font-weight: 400;
  font-style: normal;
  src: url("/cdn/fonts/work_sans/worksans_n4.29e3afeb38a0ba35e784cf169a40e8beaf814daa.woff2?h1=YmVsbHliYW5kaXQuY29t&h2=bGVha3Byb29md2Vhci5jb20&hmac=194c551ad303008301bde7732b84f7d2bb5fea6080bedd69b817741907cbe007") format("woff2"), url("/cdn/fonts/work_sans/worksans_n4.e7c533c4afbed28070f6ac45dbcfe6f37840c0a8.woff?h1=YmVsbHliYW5kaXQuY29t&h2=bGVha3Byb29md2Vhci5jb20&hmac=2f1fc1196d143af849fbc030f104deaf3e3e71bbd9696b31621d139163b4c20a") format("woff"); }

/* FONT STYLES */
/* FONT SIZES */
/*================ Sizing Variables ================*/
/* Sub nav */
/*============================================================================
  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
==============================================================================*/
/*================ Z-Index ================*/
/*================ GENERIC ================*/
/*! 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: "Work Sans", sans-serif;
  /* 1 */
  font-weight: 400;
  font-style: normal;
  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: none;
  /* 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%; }

h1, h2, h3, h4, h5, h6, p {
  margin: 0; }

a:focus {
  color: inherit; }

img {
  max-width: 100%; }

ul {
  margin: 0;
  padding: 0; }

li {
  list-style: none; }

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

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

optgroup {
  font-weight: 500; }

option {
  color: #1f1f1f;
  background-color: white; }

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

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

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

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

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

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

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

.hidden {
  display: none; }

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

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

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

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

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

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

.grid {
  margin-left: -30px; }

.grid__item,
.grid__item-no-gutter {
  float: left;
  width: 100%; }
  .grid__item[class*='--push'],
  .grid__item-no-gutter[class*='--push'] {
    position: relative; }
  .grid__item[class*='--pull'],
  .grid__item-no-gutter[class*='--pull'] {
    position: relative; }

.grid__item {
  padding-left: 30px; }

@media only screen and (max-width: 767px) {
  .grid {
    margin-left: -20px; }

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

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

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

.two-thirds {
  width: 66.66667%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.33333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.66667%; }

.five-sixths {
  width: 83.33333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.66667%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.33333%; }

.five-twelfths {
  width: 41.66667%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.33333%; }

.eight-twelfths {
  width: 66.66667%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.33333%; }

.eleven-twelfths {
  width: 91.66667%; }

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

.grid--uniform-row-gutters .one-whole:nth-child(n+2),
.grid--uniform-row-gutters .one-half:nth-child(n+3),
.grid--uniform-row-gutters .one-third:nth-child(n+4),
.grid--uniform-row-gutters .one-quarter:nth-child(n+5),
.grid--uniform-row-gutters .one-fifth:nth-child(n+6),
.grid--uniform-row-gutters .one-sixth:nth-child(n+7),
.grid--uniform-row-gutters .two-sixths:nth-child(n+4),
.grid--uniform-row-gutters .three-sixths:nth-child(n+3),
.grid--uniform-row-gutters .one-eighth:nth-child(n+9),
.grid--uniform-row-gutters .two-eighths:nth-child(n+5),
.grid--uniform-row-gutters .four-eighths:nth-child(n+3),
.grid--uniform-row-gutters .five-tenths:nth-child(n+3),
.grid--uniform-row-gutters .one-twelfth:nth-child(n+13),
.grid--uniform-row-gutters .two-twelfths:nth-child(n+7),
.grid--uniform-row-gutters .three-twelfths:nth-child(n+5),
.grid--uniform-row-gutters .four-twelfths:nth-child(n+4),
.grid--uniform-row-gutters .six-twelfths:nth-child(n+3) {
  margin-top: 30px; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

/*================ Build Responsive Grid Classes ================*/
@media only screen and (min-width: 2560px) {
  /** Whole */
  .extra-large-up--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Hide/show - when used for spacing */
  .grid--uniform .extra-large-up--one-half:nth-child(2n+1),
  .grid--uniform .extra-large-up--one-third:nth-child(3n+1),
  .grid--uniform .extra-large-up--one-quarter:nth-child(4n+1),
  .grid--uniform .extra-large-up--one-fifth:nth-child(5n+1),
  .grid--uniform .extra-large-up--one-sixth:nth-child(6n+1),
  .grid--uniform .extra-large-up--two-sixths:nth-child(3n+1),
  .grid--uniform .extra-large-up--three-sixths:nth-child(2n+1),
  .grid--uniform .extra-large-up--one-eighth:nth-child(8n+1),
  .grid--uniform .extra-large-up--two-eighths:nth-child(4n+1),
  .grid--uniform .extra-large-up--four-eighths:nth-child(2n+1),
  .grid--uniform .extra-large-up--five-tenths:nth-child(2n+1),
  .grid--uniform .extra-large-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .extra-large-up--two-twelfths:nth-child(6n+1),
  .grid--uniform .extra-large-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .extra-large-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .extra-large-up--six-twelfths:nth-child(2n+1) {
    clear: both; }

  /* Halves */
  .extra-large-up--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .extra-large-up--push-eleven-twelfths {
    left: 91.66667%; }

  /* Halves */
  .extra-large-up--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .extra-large-up--pull-one-third {
    left: -percentage(1/3); }

  .extra-large-up--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .extra-large-up--pull-one-quarter {
    left: -percentage(1/4); }

  .extra-large-up--pull-two-quarters {
    left: -percentage(2/4); }

  .extra-large-up--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .extra-large-up--pull-one-fifth {
    left: -percentage(1/5); }

  .extra-large-up--pull-two-fifths {
    left: -percentage(2/5); }

  .extra-large-up--pull-three-fifths {
    left: -percentage(3/5); }

  .extra-large-up--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .extra-large-up--pull-one-sixth {
    left: -percentage(1/6); }

  .extra-large-up--pull-two-sixths {
    left: -percentage(2/6); }

  .extra-large-up--pull-three-sixths {
    left: -percentage(3/6); }

  .extra-large-up--pull-four-sixths {
    left: -percentage(4/6); }

  .extra-large-up--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .extra-large-up--pull-one-eighth {
    left: -percentage(1/8); }

  .extra-large-up--pull-two-eighths {
    left: -percentage(2/8); }

  .extra-large-up--pull-three-eighths {
    left: -percentage(3/8); }

  .extra-large-up--pull-four-eighths {
    left: -percentage(4/8); }

  .extra-large-up--pull-five-eighths {
    left: -percentage(5/8); }

  .extra-large-up--pull-six-eighths {
    left: -percentage(6/8); }

  .extra-large-up--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .extra-large-up--pull-one-tenth {
    left: -percentage(1/10); }

  .extra-large-up--pull-two-tenths {
    left: -percentage(2/10); }

  .extra-large-up--pull-three-tenths {
    left: -percentage(3/10); }

  .extra-large-up--pull-four-tenths {
    left: -percentage(4/10); }

  .extra-large-up--pull-five-tenths {
    left: -percentage(5/10); }

  .extra-large-up--pull-six-tenths {
    left: -percentage(6/10); }

  .extra-large-up--pull-seven-tenths {
    left: -percentage(7/10); }

  .extra-large-up--pull-eight-tenths {
    left: -percentage(8/10); }

  .extra-large-up--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .extra-large-up--pull-one-twelfth {
    left: -percentage(1/12); }

  .extra-large-up--pull-two-twelfths {
    left: -percentage(2/12); }

  .extra-large-up--pull-three-twelfths {
    left: -percentage(3/12); }

  .extra-large-up--pull-four-twelfths {
    left: -percentage(4/12); }

  .extra-large-up--pull-five-twelfths {
    left: -percentage(5/12); }

  .extra-large-up--pull-six-twelfths {
    left: -percentage(6/12); }

  .extra-large-up--pull-seven-twelfths {
    left: -percentage(7/12); }

  .extra-large-up--pull-eight-twelfths {
    left: -percentage(8/12); }

  .extra-large-up--pull-nine-twelfths {
    left: -percentage(9/12); }

  .extra-large-up--pull-ten-twelfths {
    left: -percentage(10/12); }

  .extra-large-up--pull-eleven-twelfths {
    left: -percentage(11/12); }

  .grid--uniform-row-gutters .extra-large-up--one-whole:nth-child(n+2),
  .grid--uniform-row-gutters .extra-large-up--one-half:nth-child(n+3),
  .grid--uniform-row-gutters .extra-large-up--one-third:nth-child(n+4),
  .grid--uniform-row-gutters .extra-large-up--one-quarter:nth-child(n+5),
  .grid--uniform-row-gutters .extra-large-up--one-fifth:nth-child(n+6),
  .grid--uniform-row-gutters .extra-large-up--one-sixth:nth-child(n+7),
  .grid--uniform-row-gutters .extra-large-up--two-sixths:nth-child(n+4),
  .grid--uniform-row-gutters .extra-large-up--three-sixths:nth-child(n+3),
  .grid--uniform-row-gutters .extra-large-up--one-eighth:nth-child(n+9),
  .grid--uniform-row-gutters .extra-large-up--two-eighths:nth-child(n+5),
  .grid--uniform-row-gutters .extra-large-up--four-eighths:nth-child(n+3),
  .grid--uniform-row-gutters .extra-large-up--five-tenths:nth-child(n+3),
  .grid--uniform-row-gutters .extra-large-up--one-twelfth:nth-child(n+13),
  .grid--uniform-row-gutters .extra-large-up--two-twelfths:nth-child(n+7),
  .grid--uniform-row-gutters .extra-large-up--three-twelfths:nth-child(n+5),
  .grid--uniform-row-gutters .extra-large-up--four-twelfths:nth-child(n+4),
  .grid--uniform-row-gutters .extra-large-up--six-twelfths:nth-child(n+3) {
    margin-top: 30px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Hide/show - when used for spacing */
  .grid--uniform .extra-large--one-half:nth-child(2n+1),
  .grid--uniform .extra-large--one-third:nth-child(3n+1),
  .grid--uniform .extra-large--one-quarter:nth-child(4n+1),
  .grid--uniform .extra-large--one-fifth:nth-child(5n+1),
  .grid--uniform .extra-large--one-sixth:nth-child(6n+1),
  .grid--uniform .extra-large--two-sixths:nth-child(3n+1),
  .grid--uniform .extra-large--three-sixths:nth-child(2n+1),
  .grid--uniform .extra-large--one-eighth:nth-child(8n+1),
  .grid--uniform .extra-large--two-eighths:nth-child(4n+1),
  .grid--uniform .extra-large--four-eighths:nth-child(2n+1),
  .grid--uniform .extra-large--five-tenths:nth-child(2n+1),
  .grid--uniform .extra-large--one-twelfth:nth-child(12n+1),
  .grid--uniform .extra-large--two-twelfths:nth-child(6n+1),
  .grid--uniform .extra-large--three-twelfths:nth-child(4n+1),
  .grid--uniform .extra-large--four-twelfths:nth-child(3n+1),
  .grid--uniform .extra-large--six-twelfths:nth-child(2n+1) {
    clear: both; }

  /* Halves */
  .extra-large--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .extra-large--push-eleven-twelfths {
    left: 91.66667%; }

  /* Halves */
  .extra-large--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .extra-large--pull-one-third {
    left: -percentage(1/3); }

  .extra-large--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .extra-large--pull-one-quarter {
    left: -percentage(1/4); }

  .extra-large--pull-two-quarters {
    left: -percentage(2/4); }

  .extra-large--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .extra-large--pull-one-fifth {
    left: -percentage(1/5); }

  .extra-large--pull-two-fifths {
    left: -percentage(2/5); }

  .extra-large--pull-three-fifths {
    left: -percentage(3/5); }

  .extra-large--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .extra-large--pull-one-sixth {
    left: -percentage(1/6); }

  .extra-large--pull-two-sixths {
    left: -percentage(2/6); }

  .extra-large--pull-three-sixths {
    left: -percentage(3/6); }

  .extra-large--pull-four-sixths {
    left: -percentage(4/6); }

  .extra-large--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .extra-large--pull-one-eighth {
    left: -percentage(1/8); }

  .extra-large--pull-two-eighths {
    left: -percentage(2/8); }

  .extra-large--pull-three-eighths {
    left: -percentage(3/8); }

  .extra-large--pull-four-eighths {
    left: -percentage(4/8); }

  .extra-large--pull-five-eighths {
    left: -percentage(5/8); }

  .extra-large--pull-six-eighths {
    left: -percentage(6/8); }

  .extra-large--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .extra-large--pull-one-tenth {
    left: -percentage(1/10); }

  .extra-large--pull-two-tenths {
    left: -percentage(2/10); }

  .extra-large--pull-three-tenths {
    left: -percentage(3/10); }

  .extra-large--pull-four-tenths {
    left: -percentage(4/10); }

  .extra-large--pull-five-tenths {
    left: -percentage(5/10); }

  .extra-large--pull-six-tenths {
    left: -percentage(6/10); }

  .extra-large--pull-seven-tenths {
    left: -percentage(7/10); }

  .extra-large--pull-eight-tenths {
    left: -percentage(8/10); }

  .extra-large--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .extra-large--pull-one-twelfth {
    left: -percentage(1/12); }

  .extra-large--pull-two-twelfths {
    left: -percentage(2/12); }

  .extra-large--pull-three-twelfths {
    left: -percentage(3/12); }

  .extra-large--pull-four-twelfths {
    left: -percentage(4/12); }

  .extra-large--pull-five-twelfths {
    left: -percentage(5/12); }

  .extra-large--pull-six-twelfths {
    left: -percentage(6/12); }

  .extra-large--pull-seven-twelfths {
    left: -percentage(7/12); }

  .extra-large--pull-eight-twelfths {
    left: -percentage(8/12); }

  .extra-large--pull-nine-twelfths {
    left: -percentage(9/12); }

  .extra-large--pull-ten-twelfths {
    left: -percentage(10/12); }

  .extra-large--pull-eleven-twelfths {
    left: -percentage(11/12); }

  .grid--uniform-row-gutters .extra-large--one-whole:nth-child(n+2),
  .grid--uniform-row-gutters .extra-large--one-half:nth-child(n+3),
  .grid--uniform-row-gutters .extra-large--one-third:nth-child(n+4),
  .grid--uniform-row-gutters .extra-large--one-quarter:nth-child(n+5),
  .grid--uniform-row-gutters .extra-large--one-fifth:nth-child(n+6),
  .grid--uniform-row-gutters .extra-large--one-sixth:nth-child(n+7),
  .grid--uniform-row-gutters .extra-large--two-sixths:nth-child(n+4),
  .grid--uniform-row-gutters .extra-large--three-sixths:nth-child(n+3),
  .grid--uniform-row-gutters .extra-large--one-eighth:nth-child(n+9),
  .grid--uniform-row-gutters .extra-large--two-eighths:nth-child(n+5),
  .grid--uniform-row-gutters .extra-large--four-eighths:nth-child(n+3),
  .grid--uniform-row-gutters .extra-large--five-tenths:nth-child(n+3),
  .grid--uniform-row-gutters .extra-large--one-twelfth:nth-child(n+13),
  .grid--uniform-row-gutters .extra-large--two-twelfths:nth-child(n+7),
  .grid--uniform-row-gutters .extra-large--three-twelfths:nth-child(n+5),
  .grid--uniform-row-gutters .extra-large--four-twelfths:nth-child(n+4),
  .grid--uniform-row-gutters .extra-large--six-twelfths:nth-child(n+3) {
    margin-top: 30px; }

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

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

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

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

  .extra-large--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 1024px) {
  /** 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%; }

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

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

  /* Halves */
  .large-up--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .large-up--pull-one-third {
    left: -percentage(1/3); }

  .large-up--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .large-up--pull-one-quarter {
    left: -percentage(1/4); }

  .large-up--pull-two-quarters {
    left: -percentage(2/4); }

  .large-up--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .large-up--pull-one-fifth {
    left: -percentage(1/5); }

  .large-up--pull-two-fifths {
    left: -percentage(2/5); }

  .large-up--pull-three-fifths {
    left: -percentage(3/5); }

  .large-up--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .large-up--pull-one-sixth {
    left: -percentage(1/6); }

  .large-up--pull-two-sixths {
    left: -percentage(2/6); }

  .large-up--pull-three-sixths {
    left: -percentage(3/6); }

  .large-up--pull-four-sixths {
    left: -percentage(4/6); }

  .large-up--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .large-up--pull-one-eighth {
    left: -percentage(1/8); }

  .large-up--pull-two-eighths {
    left: -percentage(2/8); }

  .large-up--pull-three-eighths {
    left: -percentage(3/8); }

  .large-up--pull-four-eighths {
    left: -percentage(4/8); }

  .large-up--pull-five-eighths {
    left: -percentage(5/8); }

  .large-up--pull-six-eighths {
    left: -percentage(6/8); }

  .large-up--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .large-up--pull-one-tenth {
    left: -percentage(1/10); }

  .large-up--pull-two-tenths {
    left: -percentage(2/10); }

  .large-up--pull-three-tenths {
    left: -percentage(3/10); }

  .large-up--pull-four-tenths {
    left: -percentage(4/10); }

  .large-up--pull-five-tenths {
    left: -percentage(5/10); }

  .large-up--pull-six-tenths {
    left: -percentage(6/10); }

  .large-up--pull-seven-tenths {
    left: -percentage(7/10); }

  .large-up--pull-eight-tenths {
    left: -percentage(8/10); }

  .large-up--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .large-up--pull-one-twelfth {
    left: -percentage(1/12); }

  .large-up--pull-two-twelfths {
    left: -percentage(2/12); }

  .large-up--pull-three-twelfths {
    left: -percentage(3/12); }

  .large-up--pull-four-twelfths {
    left: -percentage(4/12); }

  .large-up--pull-five-twelfths {
    left: -percentage(5/12); }

  .large-up--pull-six-twelfths {
    left: -percentage(6/12); }

  .large-up--pull-seven-twelfths {
    left: -percentage(7/12); }

  .large-up--pull-eight-twelfths {
    left: -percentage(8/12); }

  .large-up--pull-nine-twelfths {
    left: -percentage(9/12); }

  .large-up--pull-ten-twelfths {
    left: -percentage(10/12); }

  .large-up--pull-eleven-twelfths {
    left: -percentage(11/12); }

  .grid--uniform-row-gutters .large-up--one-whole:nth-child(n+2),
  .grid--uniform-row-gutters .large-up--one-half:nth-child(n+3),
  .grid--uniform-row-gutters .large-up--one-third:nth-child(n+4),
  .grid--uniform-row-gutters .large-up--one-quarter:nth-child(n+5),
  .grid--uniform-row-gutters .large-up--one-fifth:nth-child(n+6),
  .grid--uniform-row-gutters .large-up--one-sixth:nth-child(n+7),
  .grid--uniform-row-gutters .large-up--two-sixths:nth-child(n+4),
  .grid--uniform-row-gutters .large-up--three-sixths:nth-child(n+3),
  .grid--uniform-row-gutters .large-up--one-eighth:nth-child(n+9),
  .grid--uniform-row-gutters .large-up--two-eighths:nth-child(n+5),
  .grid--uniform-row-gutters .large-up--four-eighths:nth-child(n+3),
  .grid--uniform-row-gutters .large-up--five-tenths:nth-child(n+3),
  .grid--uniform-row-gutters .large-up--one-twelfth:nth-child(n+13),
  .grid--uniform-row-gutters .large-up--two-twelfths:nth-child(n+7),
  .grid--uniform-row-gutters .large-up--three-twelfths:nth-child(n+5),
  .grid--uniform-row-gutters .large-up--four-twelfths:nth-child(n+4),
  .grid--uniform-row-gutters .large-up--six-twelfths:nth-child(n+3) {
    margin-top: 30px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Hide/show - when used for spacing */
  .grid--uniform .large-down--one-half:nth-child(2n+1),
  .grid--uniform .large-down--one-third:nth-child(3n+1),
  .grid--uniform .large-down--one-quarter:nth-child(4n+1),
  .grid--uniform .large-down--one-fifth:nth-child(5n+1),
  .grid--uniform .large-down--one-sixth:nth-child(6n+1),
  .grid--uniform .large-down--two-sixths:nth-child(3n+1),
  .grid--uniform .large-down--three-sixths:nth-child(2n+1),
  .grid--uniform .large-down--one-eighth:nth-child(8n+1),
  .grid--uniform .large-down--two-eighths:nth-child(4n+1),
  .grid--uniform .large-down--four-eighths:nth-child(2n+1),
  .grid--uniform .large-down--five-tenths:nth-child(2n+1),
  .grid--uniform .large-down--one-twelfth:nth-child(12n+1),
  .grid--uniform .large-down--two-twelfths:nth-child(6n+1),
  .grid--uniform .large-down--three-twelfths:nth-child(4n+1),
  .grid--uniform .large-down--four-twelfths:nth-child(3n+1),
  .grid--uniform .large-down--six-twelfths:nth-child(2n+1) {
    clear: both; }

  /* Halves */
  .large-down--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large-down--push-eleven-twelfths {
    left: 91.66667%; }

  /* Halves */
  .large-down--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .large-down--pull-one-third {
    left: -percentage(1/3); }

  .large-down--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .large-down--pull-one-quarter {
    left: -percentage(1/4); }

  .large-down--pull-two-quarters {
    left: -percentage(2/4); }

  .large-down--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .large-down--pull-one-fifth {
    left: -percentage(1/5); }

  .large-down--pull-two-fifths {
    left: -percentage(2/5); }

  .large-down--pull-three-fifths {
    left: -percentage(3/5); }

  .large-down--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .large-down--pull-one-sixth {
    left: -percentage(1/6); }

  .large-down--pull-two-sixths {
    left: -percentage(2/6); }

  .large-down--pull-three-sixths {
    left: -percentage(3/6); }

  .large-down--pull-four-sixths {
    left: -percentage(4/6); }

  .large-down--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .large-down--pull-one-eighth {
    left: -percentage(1/8); }

  .large-down--pull-two-eighths {
    left: -percentage(2/8); }

  .large-down--pull-three-eighths {
    left: -percentage(3/8); }

  .large-down--pull-four-eighths {
    left: -percentage(4/8); }

  .large-down--pull-five-eighths {
    left: -percentage(5/8); }

  .large-down--pull-six-eighths {
    left: -percentage(6/8); }

  .large-down--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .large-down--pull-one-tenth {
    left: -percentage(1/10); }

  .large-down--pull-two-tenths {
    left: -percentage(2/10); }

  .large-down--pull-three-tenths {
    left: -percentage(3/10); }

  .large-down--pull-four-tenths {
    left: -percentage(4/10); }

  .large-down--pull-five-tenths {
    left: -percentage(5/10); }

  .large-down--pull-six-tenths {
    left: -percentage(6/10); }

  .large-down--pull-seven-tenths {
    left: -percentage(7/10); }

  .large-down--pull-eight-tenths {
    left: -percentage(8/10); }

  .large-down--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .large-down--pull-one-twelfth {
    left: -percentage(1/12); }

  .large-down--pull-two-twelfths {
    left: -percentage(2/12); }

  .large-down--pull-three-twelfths {
    left: -percentage(3/12); }

  .large-down--pull-four-twelfths {
    left: -percentage(4/12); }

  .large-down--pull-five-twelfths {
    left: -percentage(5/12); }

  .large-down--pull-six-twelfths {
    left: -percentage(6/12); }

  .large-down--pull-seven-twelfths {
    left: -percentage(7/12); }

  .large-down--pull-eight-twelfths {
    left: -percentage(8/12); }

  .large-down--pull-nine-twelfths {
    left: -percentage(9/12); }

  .large-down--pull-ten-twelfths {
    left: -percentage(10/12); }

  .large-down--pull-eleven-twelfths {
    left: -percentage(11/12); }

  .grid--uniform-row-gutters .large-down--one-whole:nth-child(n+2),
  .grid--uniform-row-gutters .large-down--one-half:nth-child(n+3),
  .grid--uniform-row-gutters .large-down--one-third:nth-child(n+4),
  .grid--uniform-row-gutters .large-down--one-quarter:nth-child(n+5),
  .grid--uniform-row-gutters .large-down--one-fifth:nth-child(n+6),
  .grid--uniform-row-gutters .large-down--one-sixth:nth-child(n+7),
  .grid--uniform-row-gutters .large-down--two-sixths:nth-child(n+4),
  .grid--uniform-row-gutters .large-down--three-sixths:nth-child(n+3),
  .grid--uniform-row-gutters .large-down--one-eighth:nth-child(n+9),
  .grid--uniform-row-gutters .large-down--two-eighths:nth-child(n+5),
  .grid--uniform-row-gutters .large-down--four-eighths:nth-child(n+3),
  .grid--uniform-row-gutters .large-down--five-tenths:nth-child(n+3),
  .grid--uniform-row-gutters .large-down--one-twelfth:nth-child(n+13),
  .grid--uniform-row-gutters .large-down--two-twelfths:nth-child(n+7),
  .grid--uniform-row-gutters .large-down--three-twelfths:nth-child(n+5),
  .grid--uniform-row-gutters .large-down--four-twelfths:nth-child(n+4),
  .grid--uniform-row-gutters .large-down--six-twelfths:nth-child(n+3) {
    margin-top: 30px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Halves */
  .large--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large--push-eleven-twelfths {
    left: 91.66667%; }

  /* Halves */
  .large--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .large--pull-one-third {
    left: -percentage(1/3); }

  .large--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .large--pull-one-quarter {
    left: -percentage(1/4); }

  .large--pull-two-quarters {
    left: -percentage(2/4); }

  .large--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .large--pull-one-fifth {
    left: -percentage(1/5); }

  .large--pull-two-fifths {
    left: -percentage(2/5); }

  .large--pull-three-fifths {
    left: -percentage(3/5); }

  .large--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .large--pull-one-sixth {
    left: -percentage(1/6); }

  .large--pull-two-sixths {
    left: -percentage(2/6); }

  .large--pull-three-sixths {
    left: -percentage(3/6); }

  .large--pull-four-sixths {
    left: -percentage(4/6); }

  .large--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .large--pull-one-eighth {
    left: -percentage(1/8); }

  .large--pull-two-eighths {
    left: -percentage(2/8); }

  .large--pull-three-eighths {
    left: -percentage(3/8); }

  .large--pull-four-eighths {
    left: -percentage(4/8); }

  .large--pull-five-eighths {
    left: -percentage(5/8); }

  .large--pull-six-eighths {
    left: -percentage(6/8); }

  .large--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .large--pull-one-tenth {
    left: -percentage(1/10); }

  .large--pull-two-tenths {
    left: -percentage(2/10); }

  .large--pull-three-tenths {
    left: -percentage(3/10); }

  .large--pull-four-tenths {
    left: -percentage(4/10); }

  .large--pull-five-tenths {
    left: -percentage(5/10); }

  .large--pull-six-tenths {
    left: -percentage(6/10); }

  .large--pull-seven-tenths {
    left: -percentage(7/10); }

  .large--pull-eight-tenths {
    left: -percentage(8/10); }

  .large--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .large--pull-one-twelfth {
    left: -percentage(1/12); }

  .large--pull-two-twelfths {
    left: -percentage(2/12); }

  .large--pull-three-twelfths {
    left: -percentage(3/12); }

  .large--pull-four-twelfths {
    left: -percentage(4/12); }

  .large--pull-five-twelfths {
    left: -percentage(5/12); }

  .large--pull-six-twelfths {
    left: -percentage(6/12); }

  .large--pull-seven-twelfths {
    left: -percentage(7/12); }

  .large--pull-eight-twelfths {
    left: -percentage(8/12); }

  .large--pull-nine-twelfths {
    left: -percentage(9/12); }

  .large--pull-ten-twelfths {
    left: -percentage(10/12); }

  .large--pull-eleven-twelfths {
    left: -percentage(11/12); }

  .grid--uniform-row-gutters .large--one-whole:nth-child(n+2),
  .grid--uniform-row-gutters .large--one-half:nth-child(n+3),
  .grid--uniform-row-gutters .large--one-third:nth-child(n+4),
  .grid--uniform-row-gutters .large--one-quarter:nth-child(n+5),
  .grid--uniform-row-gutters .large--one-fifth:nth-child(n+6),
  .grid--uniform-row-gutters .large--one-sixth:nth-child(n+7),
  .grid--uniform-row-gutters .large--two-sixths:nth-child(n+4),
  .grid--uniform-row-gutters .large--three-sixths:nth-child(n+3),
  .grid--uniform-row-gutters .large--one-eighth:nth-child(n+9),
  .grid--uniform-row-gutters .large--two-eighths:nth-child(n+5),
  .grid--uniform-row-gutters .large--four-eighths:nth-child(n+3),
  .grid--uniform-row-gutters .large--five-tenths:nth-child(n+3),
  .grid--uniform-row-gutters .large--one-twelfth:nth-child(n+13),
  .grid--uniform-row-gutters .large--two-twelfths:nth-child(n+7),
  .grid--uniform-row-gutters .large--three-twelfths:nth-child(n+5),
  .grid--uniform-row-gutters .large--four-twelfths:nth-child(n+4),
  .grid--uniform-row-gutters .large--six-twelfths:nth-child(n+3) {
    margin-top: 30px; }

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

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

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

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

  .large--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 768px) {
  /** 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%; }

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

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

  /* Halves */
  .medium-up--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .medium-up--pull-one-third {
    left: -percentage(1/3); }

  .medium-up--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .medium-up--pull-one-quarter {
    left: -percentage(1/4); }

  .medium-up--pull-two-quarters {
    left: -percentage(2/4); }

  .medium-up--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .medium-up--pull-one-fifth {
    left: -percentage(1/5); }

  .medium-up--pull-two-fifths {
    left: -percentage(2/5); }

  .medium-up--pull-three-fifths {
    left: -percentage(3/5); }

  .medium-up--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .medium-up--pull-one-sixth {
    left: -percentage(1/6); }

  .medium-up--pull-two-sixths {
    left: -percentage(2/6); }

  .medium-up--pull-three-sixths {
    left: -percentage(3/6); }

  .medium-up--pull-four-sixths {
    left: -percentage(4/6); }

  .medium-up--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .medium-up--pull-one-eighth {
    left: -percentage(1/8); }

  .medium-up--pull-two-eighths {
    left: -percentage(2/8); }

  .medium-up--pull-three-eighths {
    left: -percentage(3/8); }

  .medium-up--pull-four-eighths {
    left: -percentage(4/8); }

  .medium-up--pull-five-eighths {
    left: -percentage(5/8); }

  .medium-up--pull-six-eighths {
    left: -percentage(6/8); }

  .medium-up--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .medium-up--pull-one-tenth {
    left: -percentage(1/10); }

  .medium-up--pull-two-tenths {
    left: -percentage(2/10); }

  .medium-up--pull-three-tenths {
    left: -percentage(3/10); }

  .medium-up--pull-four-tenths {
    left: -percentage(4/10); }

  .medium-up--pull-five-tenths {
    left: -percentage(5/10); }

  .medium-up--pull-six-tenths {
    left: -percentage(6/10); }

  .medium-up--pull-seven-tenths {
    left: -percentage(7/10); }

  .medium-up--pull-eight-tenths {
    left: -percentage(8/10); }

  .medium-up--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .medium-up--pull-one-twelfth {
    left: -percentage(1/12); }

  .medium-up--pull-two-twelfths {
    left: -percentage(2/12); }

  .medium-up--pull-three-twelfths {
    left: -percentage(3/12); }

  .medium-up--pull-four-twelfths {
    left: -percentage(4/12); }

  .medium-up--pull-five-twelfths {
    left: -percentage(5/12); }

  .medium-up--pull-six-twelfths {
    left: -percentage(6/12); }

  .medium-up--pull-seven-twelfths {
    left: -percentage(7/12); }

  .medium-up--pull-eight-twelfths {
    left: -percentage(8/12); }

  .medium-up--pull-nine-twelfths {
    left: -percentage(9/12); }

  .medium-up--pull-ten-twelfths {
    left: -percentage(10/12); }

  .medium-up--pull-eleven-twelfths {
    left: -percentage(11/12); }

  .grid--uniform-row-gutters .medium-up--one-whole:nth-child(n+2),
  .grid--uniform-row-gutters .medium-up--one-half:nth-child(n+3),
  .grid--uniform-row-gutters .medium-up--one-third:nth-child(n+4),
  .grid--uniform-row-gutters .medium-up--one-quarter:nth-child(n+5),
  .grid--uniform-row-gutters .medium-up--one-fifth:nth-child(n+6),
  .grid--uniform-row-gutters .medium-up--one-sixth:nth-child(n+7),
  .grid--uniform-row-gutters .medium-up--two-sixths:nth-child(n+4),
  .grid--uniform-row-gutters .medium-up--three-sixths:nth-child(n+3),
  .grid--uniform-row-gutters .medium-up--one-eighth:nth-child(n+9),
  .grid--uniform-row-gutters .medium-up--two-eighths:nth-child(n+5),
  .grid--uniform-row-gutters .medium-up--four-eighths:nth-child(n+3),
  .grid--uniform-row-gutters .medium-up--five-tenths:nth-child(n+3),
  .grid--uniform-row-gutters .medium-up--one-twelfth:nth-child(n+13),
  .grid--uniform-row-gutters .medium-up--two-twelfths:nth-child(n+7),
  .grid--uniform-row-gutters .medium-up--three-twelfths:nth-child(n+5),
  .grid--uniform-row-gutters .medium-up--four-twelfths:nth-child(n+4),
  .grid--uniform-row-gutters .medium-up--six-twelfths:nth-child(n+3) {
    margin-top: 30px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Halves */
  .medium-down--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-down--push-eleven-twelfths {
    left: 91.66667%; }

  /* Halves */
  .medium-down--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .medium-down--pull-one-third {
    left: -percentage(1/3); }

  .medium-down--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .medium-down--pull-one-quarter {
    left: -percentage(1/4); }

  .medium-down--pull-two-quarters {
    left: -percentage(2/4); }

  .medium-down--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .medium-down--pull-one-fifth {
    left: -percentage(1/5); }

  .medium-down--pull-two-fifths {
    left: -percentage(2/5); }

  .medium-down--pull-three-fifths {
    left: -percentage(3/5); }

  .medium-down--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .medium-down--pull-one-sixth {
    left: -percentage(1/6); }

  .medium-down--pull-two-sixths {
    left: -percentage(2/6); }

  .medium-down--pull-three-sixths {
    left: -percentage(3/6); }

  .medium-down--pull-four-sixths {
    left: -percentage(4/6); }

  .medium-down--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .medium-down--pull-one-eighth {
    left: -percentage(1/8); }

  .medium-down--pull-two-eighths {
    left: -percentage(2/8); }

  .medium-down--pull-three-eighths {
    left: -percentage(3/8); }

  .medium-down--pull-four-eighths {
    left: -percentage(4/8); }

  .medium-down--pull-five-eighths {
    left: -percentage(5/8); }

  .medium-down--pull-six-eighths {
    left: -percentage(6/8); }

  .medium-down--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .medium-down--pull-one-tenth {
    left: -percentage(1/10); }

  .medium-down--pull-two-tenths {
    left: -percentage(2/10); }

  .medium-down--pull-three-tenths {
    left: -percentage(3/10); }

  .medium-down--pull-four-tenths {
    left: -percentage(4/10); }

  .medium-down--pull-five-tenths {
    left: -percentage(5/10); }

  .medium-down--pull-six-tenths {
    left: -percentage(6/10); }

  .medium-down--pull-seven-tenths {
    left: -percentage(7/10); }

  .medium-down--pull-eight-tenths {
    left: -percentage(8/10); }

  .medium-down--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .medium-down--pull-one-twelfth {
    left: -percentage(1/12); }

  .medium-down--pull-two-twelfths {
    left: -percentage(2/12); }

  .medium-down--pull-three-twelfths {
    left: -percentage(3/12); }

  .medium-down--pull-four-twelfths {
    left: -percentage(4/12); }

  .medium-down--pull-five-twelfths {
    left: -percentage(5/12); }

  .medium-down--pull-six-twelfths {
    left: -percentage(6/12); }

  .medium-down--pull-seven-twelfths {
    left: -percentage(7/12); }

  .medium-down--pull-eight-twelfths {
    left: -percentage(8/12); }

  .medium-down--pull-nine-twelfths {
    left: -percentage(9/12); }

  .medium-down--pull-ten-twelfths {
    left: -percentage(10/12); }

  .medium-down--pull-eleven-twelfths {
    left: -percentage(11/12); }

  .grid--uniform-row-gutters .medium-down--one-whole:nth-child(n+2),
  .grid--uniform-row-gutters .medium-down--one-half:nth-child(n+3),
  .grid--uniform-row-gutters .medium-down--one-third:nth-child(n+4),
  .grid--uniform-row-gutters .medium-down--one-quarter:nth-child(n+5),
  .grid--uniform-row-gutters .medium-down--one-fifth:nth-child(n+6),
  .grid--uniform-row-gutters .medium-down--one-sixth:nth-child(n+7),
  .grid--uniform-row-gutters .medium-down--two-sixths:nth-child(n+4),
  .grid--uniform-row-gutters .medium-down--three-sixths:nth-child(n+3),
  .grid--uniform-row-gutters .medium-down--one-eighth:nth-child(n+9),
  .grid--uniform-row-gutters .medium-down--two-eighths:nth-child(n+5),
  .grid--uniform-row-gutters .medium-down--four-eighths:nth-child(n+3),
  .grid--uniform-row-gutters .medium-down--five-tenths:nth-child(n+3),
  .grid--uniform-row-gutters .medium-down--one-twelfth:nth-child(n+13),
  .grid--uniform-row-gutters .medium-down--two-twelfths:nth-child(n+7),
  .grid--uniform-row-gutters .medium-down--three-twelfths:nth-child(n+5),
  .grid--uniform-row-gutters .medium-down--four-twelfths:nth-child(n+4),
  .grid--uniform-row-gutters .medium-down--six-twelfths:nth-child(n+3) {
    margin-top: 30px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Halves */
  .medium--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium--push-eleven-twelfths {
    left: 91.66667%; }

  /* Halves */
  .medium--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .medium--pull-one-third {
    left: -percentage(1/3); }

  .medium--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .medium--pull-one-quarter {
    left: -percentage(1/4); }

  .medium--pull-two-quarters {
    left: -percentage(2/4); }

  .medium--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .medium--pull-one-fifth {
    left: -percentage(1/5); }

  .medium--pull-two-fifths {
    left: -percentage(2/5); }

  .medium--pull-three-fifths {
    left: -percentage(3/5); }

  .medium--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .medium--pull-one-sixth {
    left: -percentage(1/6); }

  .medium--pull-two-sixths {
    left: -percentage(2/6); }

  .medium--pull-three-sixths {
    left: -percentage(3/6); }

  .medium--pull-four-sixths {
    left: -percentage(4/6); }

  .medium--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .medium--pull-one-eighth {
    left: -percentage(1/8); }

  .medium--pull-two-eighths {
    left: -percentage(2/8); }

  .medium--pull-three-eighths {
    left: -percentage(3/8); }

  .medium--pull-four-eighths {
    left: -percentage(4/8); }

  .medium--pull-five-eighths {
    left: -percentage(5/8); }

  .medium--pull-six-eighths {
    left: -percentage(6/8); }

  .medium--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .medium--pull-one-tenth {
    left: -percentage(1/10); }

  .medium--pull-two-tenths {
    left: -percentage(2/10); }

  .medium--pull-three-tenths {
    left: -percentage(3/10); }

  .medium--pull-four-tenths {
    left: -percentage(4/10); }

  .medium--pull-five-tenths {
    left: -percentage(5/10); }

  .medium--pull-six-tenths {
    left: -percentage(6/10); }

  .medium--pull-seven-tenths {
    left: -percentage(7/10); }

  .medium--pull-eight-tenths {
    left: -percentage(8/10); }

  .medium--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .medium--pull-one-twelfth {
    left: -percentage(1/12); }

  .medium--pull-two-twelfths {
    left: -percentage(2/12); }

  .medium--pull-three-twelfths {
    left: -percentage(3/12); }

  .medium--pull-four-twelfths {
    left: -percentage(4/12); }

  .medium--pull-five-twelfths {
    left: -percentage(5/12); }

  .medium--pull-six-twelfths {
    left: -percentage(6/12); }

  .medium--pull-seven-twelfths {
    left: -percentage(7/12); }

  .medium--pull-eight-twelfths {
    left: -percentage(8/12); }

  .medium--pull-nine-twelfths {
    left: -percentage(9/12); }

  .medium--pull-ten-twelfths {
    left: -percentage(10/12); }

  .medium--pull-eleven-twelfths {
    left: -percentage(11/12); }

  .grid--uniform-row-gutters .medium--one-whole:nth-child(n+2),
  .grid--uniform-row-gutters .medium--one-half:nth-child(n+3),
  .grid--uniform-row-gutters .medium--one-third:nth-child(n+4),
  .grid--uniform-row-gutters .medium--one-quarter:nth-child(n+5),
  .grid--uniform-row-gutters .medium--one-fifth:nth-child(n+6),
  .grid--uniform-row-gutters .medium--one-sixth:nth-child(n+7),
  .grid--uniform-row-gutters .medium--two-sixths:nth-child(n+4),
  .grid--uniform-row-gutters .medium--three-sixths:nth-child(n+3),
  .grid--uniform-row-gutters .medium--one-eighth:nth-child(n+9),
  .grid--uniform-row-gutters .medium--two-eighths:nth-child(n+5),
  .grid--uniform-row-gutters .medium--four-eighths:nth-child(n+3),
  .grid--uniform-row-gutters .medium--five-tenths:nth-child(n+3),
  .grid--uniform-row-gutters .medium--one-twelfth:nth-child(n+13),
  .grid--uniform-row-gutters .medium--two-twelfths:nth-child(n+7),
  .grid--uniform-row-gutters .medium--three-twelfths:nth-child(n+5),
  .grid--uniform-row-gutters .medium--four-twelfths:nth-child(n+4),
  .grid--uniform-row-gutters .medium--six-twelfths:nth-child(n+3) {
    margin-top: 30px; }

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

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

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

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

  .medium--text-center {
    text-align: center !important; } }
@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%; }

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

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

  /* Halves */
  .small-up--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .small-up--pull-one-third {
    left: -percentage(1/3); }

  .small-up--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .small-up--pull-one-quarter {
    left: -percentage(1/4); }

  .small-up--pull-two-quarters {
    left: -percentage(2/4); }

  .small-up--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .small-up--pull-one-fifth {
    left: -percentage(1/5); }

  .small-up--pull-two-fifths {
    left: -percentage(2/5); }

  .small-up--pull-three-fifths {
    left: -percentage(3/5); }

  .small-up--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .small-up--pull-one-sixth {
    left: -percentage(1/6); }

  .small-up--pull-two-sixths {
    left: -percentage(2/6); }

  .small-up--pull-three-sixths {
    left: -percentage(3/6); }

  .small-up--pull-four-sixths {
    left: -percentage(4/6); }

  .small-up--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .small-up--pull-one-eighth {
    left: -percentage(1/8); }

  .small-up--pull-two-eighths {
    left: -percentage(2/8); }

  .small-up--pull-three-eighths {
    left: -percentage(3/8); }

  .small-up--pull-four-eighths {
    left: -percentage(4/8); }

  .small-up--pull-five-eighths {
    left: -percentage(5/8); }

  .small-up--pull-six-eighths {
    left: -percentage(6/8); }

  .small-up--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .small-up--pull-one-tenth {
    left: -percentage(1/10); }

  .small-up--pull-two-tenths {
    left: -percentage(2/10); }

  .small-up--pull-three-tenths {
    left: -percentage(3/10); }

  .small-up--pull-four-tenths {
    left: -percentage(4/10); }

  .small-up--pull-five-tenths {
    left: -percentage(5/10); }

  .small-up--pull-six-tenths {
    left: -percentage(6/10); }

  .small-up--pull-seven-tenths {
    left: -percentage(7/10); }

  .small-up--pull-eight-tenths {
    left: -percentage(8/10); }

  .small-up--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .small-up--pull-one-twelfth {
    left: -percentage(1/12); }

  .small-up--pull-two-twelfths {
    left: -percentage(2/12); }

  .small-up--pull-three-twelfths {
    left: -percentage(3/12); }

  .small-up--pull-four-twelfths {
    left: -percentage(4/12); }

  .small-up--pull-five-twelfths {
    left: -percentage(5/12); }

  .small-up--pull-six-twelfths {
    left: -percentage(6/12); }

  .small-up--pull-seven-twelfths {
    left: -percentage(7/12); }

  .small-up--pull-eight-twelfths {
    left: -percentage(8/12); }

  .small-up--pull-nine-twelfths {
    left: -percentage(9/12); }

  .small-up--pull-ten-twelfths {
    left: -percentage(10/12); }

  .small-up--pull-eleven-twelfths {
    left: -percentage(11/12); }

  .grid--uniform-row-gutters .small-up--one-whole:nth-child(n+2),
  .grid--uniform-row-gutters .small-up--one-half:nth-child(n+3),
  .grid--uniform-row-gutters .small-up--one-third:nth-child(n+4),
  .grid--uniform-row-gutters .small-up--one-quarter:nth-child(n+5),
  .grid--uniform-row-gutters .small-up--one-fifth:nth-child(n+6),
  .grid--uniform-row-gutters .small-up--one-sixth:nth-child(n+7),
  .grid--uniform-row-gutters .small-up--two-sixths:nth-child(n+4),
  .grid--uniform-row-gutters .small-up--three-sixths:nth-child(n+3),
  .grid--uniform-row-gutters .small-up--one-eighth:nth-child(n+9),
  .grid--uniform-row-gutters .small-up--two-eighths:nth-child(n+5),
  .grid--uniform-row-gutters .small-up--four-eighths:nth-child(n+3),
  .grid--uniform-row-gutters .small-up--five-tenths:nth-child(n+3),
  .grid--uniform-row-gutters .small-up--one-twelfth:nth-child(n+13),
  .grid--uniform-row-gutters .small-up--two-twelfths:nth-child(n+7),
  .grid--uniform-row-gutters .small-up--three-twelfths:nth-child(n+5),
  .grid--uniform-row-gutters .small-up--four-twelfths:nth-child(n+4),
  .grid--uniform-row-gutters .small-up--six-twelfths:nth-child(n+3) {
    margin-top: 30px; }

  .small-up--show {
    display: 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 (max-width: 767px) {
  /** Whole */
  .small-down--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Halves */
  .small-down--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .small-down--push-eleven-twelfths {
    left: 91.66667%; }

  /* Halves */
  .small-down--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .small-down--pull-one-third {
    left: -percentage(1/3); }

  .small-down--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .small-down--pull-one-quarter {
    left: -percentage(1/4); }

  .small-down--pull-two-quarters {
    left: -percentage(2/4); }

  .small-down--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .small-down--pull-one-fifth {
    left: -percentage(1/5); }

  .small-down--pull-two-fifths {
    left: -percentage(2/5); }

  .small-down--pull-three-fifths {
    left: -percentage(3/5); }

  .small-down--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .small-down--pull-one-sixth {
    left: -percentage(1/6); }

  .small-down--pull-two-sixths {
    left: -percentage(2/6); }

  .small-down--pull-three-sixths {
    left: -percentage(3/6); }

  .small-down--pull-four-sixths {
    left: -percentage(4/6); }

  .small-down--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .small-down--pull-one-eighth {
    left: -percentage(1/8); }

  .small-down--pull-two-eighths {
    left: -percentage(2/8); }

  .small-down--pull-three-eighths {
    left: -percentage(3/8); }

  .small-down--pull-four-eighths {
    left: -percentage(4/8); }

  .small-down--pull-five-eighths {
    left: -percentage(5/8); }

  .small-down--pull-six-eighths {
    left: -percentage(6/8); }

  .small-down--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .small-down--pull-one-tenth {
    left: -percentage(1/10); }

  .small-down--pull-two-tenths {
    left: -percentage(2/10); }

  .small-down--pull-three-tenths {
    left: -percentage(3/10); }

  .small-down--pull-four-tenths {
    left: -percentage(4/10); }

  .small-down--pull-five-tenths {
    left: -percentage(5/10); }

  .small-down--pull-six-tenths {
    left: -percentage(6/10); }

  .small-down--pull-seven-tenths {
    left: -percentage(7/10); }

  .small-down--pull-eight-tenths {
    left: -percentage(8/10); }

  .small-down--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .small-down--pull-one-twelfth {
    left: -percentage(1/12); }

  .small-down--pull-two-twelfths {
    left: -percentage(2/12); }

  .small-down--pull-three-twelfths {
    left: -percentage(3/12); }

  .small-down--pull-four-twelfths {
    left: -percentage(4/12); }

  .small-down--pull-five-twelfths {
    left: -percentage(5/12); }

  .small-down--pull-six-twelfths {
    left: -percentage(6/12); }

  .small-down--pull-seven-twelfths {
    left: -percentage(7/12); }

  .small-down--pull-eight-twelfths {
    left: -percentage(8/12); }

  .small-down--pull-nine-twelfths {
    left: -percentage(9/12); }

  .small-down--pull-ten-twelfths {
    left: -percentage(10/12); }

  .small-down--pull-eleven-twelfths {
    left: -percentage(11/12); }

  .grid--uniform-row-gutters .small-down--one-whole:nth-child(n+2),
  .grid--uniform-row-gutters .small-down--one-half:nth-child(n+3),
  .grid--uniform-row-gutters .small-down--one-third:nth-child(n+4),
  .grid--uniform-row-gutters .small-down--one-quarter:nth-child(n+5),
  .grid--uniform-row-gutters .small-down--one-fifth:nth-child(n+6),
  .grid--uniform-row-gutters .small-down--one-sixth:nth-child(n+7),
  .grid--uniform-row-gutters .small-down--two-sixths:nth-child(n+4),
  .grid--uniform-row-gutters .small-down--three-sixths:nth-child(n+3),
  .grid--uniform-row-gutters .small-down--one-eighth:nth-child(n+9),
  .grid--uniform-row-gutters .small-down--two-eighths:nth-child(n+5),
  .grid--uniform-row-gutters .small-down--four-eighths:nth-child(n+3),
  .grid--uniform-row-gutters .small-down--five-tenths:nth-child(n+3),
  .grid--uniform-row-gutters .small-down--one-twelfth:nth-child(n+13),
  .grid--uniform-row-gutters .small-down--two-twelfths:nth-child(n+7),
  .grid--uniform-row-gutters .small-down--three-twelfths:nth-child(n+5),
  .grid--uniform-row-gutters .small-down--four-twelfths:nth-child(n+4),
  .grid--uniform-row-gutters .small-down--six-twelfths:nth-child(n+3) {
    margin-top: 20px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .small--push-eleven-twelfths {
    left: 91.66667%; }

  /* Halves */
  .small--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .small--pull-one-third {
    left: -percentage(1/3); }

  .small--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .small--pull-one-quarter {
    left: -percentage(1/4); }

  .small--pull-two-quarters {
    left: -percentage(2/4); }

  .small--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .small--pull-one-fifth {
    left: -percentage(1/5); }

  .small--pull-two-fifths {
    left: -percentage(2/5); }

  .small--pull-three-fifths {
    left: -percentage(3/5); }

  .small--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .small--pull-one-sixth {
    left: -percentage(1/6); }

  .small--pull-two-sixths {
    left: -percentage(2/6); }

  .small--pull-three-sixths {
    left: -percentage(3/6); }

  .small--pull-four-sixths {
    left: -percentage(4/6); }

  .small--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .small--pull-one-eighth {
    left: -percentage(1/8); }

  .small--pull-two-eighths {
    left: -percentage(2/8); }

  .small--pull-three-eighths {
    left: -percentage(3/8); }

  .small--pull-four-eighths {
    left: -percentage(4/8); }

  .small--pull-five-eighths {
    left: -percentage(5/8); }

  .small--pull-six-eighths {
    left: -percentage(6/8); }

  .small--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .small--pull-one-tenth {
    left: -percentage(1/10); }

  .small--pull-two-tenths {
    left: -percentage(2/10); }

  .small--pull-three-tenths {
    left: -percentage(3/10); }

  .small--pull-four-tenths {
    left: -percentage(4/10); }

  .small--pull-five-tenths {
    left: -percentage(5/10); }

  .small--pull-six-tenths {
    left: -percentage(6/10); }

  .small--pull-seven-tenths {
    left: -percentage(7/10); }

  .small--pull-eight-tenths {
    left: -percentage(8/10); }

  .small--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .small--pull-one-twelfth {
    left: -percentage(1/12); }

  .small--pull-two-twelfths {
    left: -percentage(2/12); }

  .small--pull-three-twelfths {
    left: -percentage(3/12); }

  .small--pull-four-twelfths {
    left: -percentage(4/12); }

  .small--pull-five-twelfths {
    left: -percentage(5/12); }

  .small--pull-six-twelfths {
    left: -percentage(6/12); }

  .small--pull-seven-twelfths {
    left: -percentage(7/12); }

  .small--pull-eight-twelfths {
    left: -percentage(8/12); }

  .small--pull-nine-twelfths {
    left: -percentage(9/12); }

  .small--pull-ten-twelfths {
    left: -percentage(10/12); }

  .small--pull-eleven-twelfths {
    left: -percentage(11/12); }

  .grid--uniform-row-gutters .small--one-whole:nth-child(n+2),
  .grid--uniform-row-gutters .small--one-half:nth-child(n+3),
  .grid--uniform-row-gutters .small--one-third:nth-child(n+4),
  .grid--uniform-row-gutters .small--one-quarter:nth-child(n+5),
  .grid--uniform-row-gutters .small--one-fifth:nth-child(n+6),
  .grid--uniform-row-gutters .small--one-sixth:nth-child(n+7),
  .grid--uniform-row-gutters .small--two-sixths:nth-child(n+4),
  .grid--uniform-row-gutters .small--three-sixths:nth-child(n+3),
  .grid--uniform-row-gutters .small--one-eighth:nth-child(n+9),
  .grid--uniform-row-gutters .small--two-eighths:nth-child(n+5),
  .grid--uniform-row-gutters .small--four-eighths:nth-child(n+3),
  .grid--uniform-row-gutters .small--five-tenths:nth-child(n+3),
  .grid--uniform-row-gutters .small--one-twelfth:nth-child(n+13),
  .grid--uniform-row-gutters .small--two-twelfths:nth-child(n+7),
  .grid--uniform-row-gutters .small--three-twelfths:nth-child(n+5),
  .grid--uniform-row-gutters .small--four-twelfths:nth-child(n+4),
  .grid--uniform-row-gutters .small--six-twelfths:nth-child(n+3) {
    margin-top: 30px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .extra-small--four-eighths {
    width: 50%; }

  .extra-small--five-eighths {
    width: 62.5%; }

  .extra-small--six-eighths {
    width: 75%; }

  .extra-small--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .extra-small--one-tenth {
    width: 10%; }

  .extra-small--two-tenths {
    width: 20%; }

  .extra-small--three-tenths {
    width: 30%; }

  .extra-small--four-tenths {
    width: 40%; }

  .extra-small--five-tenths {
    width: 50%; }

  .extra-small--six-tenths {
    width: 60%; }

  .extra-small--seven-tenths {
    width: 70%; }

  .extra-small--eight-tenths {
    width: 80%; }

  .extra-small--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .extra-small--one-twelfth {
    width: 8.33333%; }

  .extra-small--two-twelfths {
    width: 16.66667%; }

  .extra-small--three-twelfths {
    width: 25%; }

  .extra-small--four-twelfths {
    width: 33.33333%; }

  .extra-small--five-twelfths {
    width: 41.66667%; }

  .extra-small--six-twelfths {
    width: 50%; }

  .extra-small--seven-twelfths {
    width: 58.33333%; }

  .extra-small--eight-twelfths {
    width: 66.66667%; }

  .extra-small--nine-twelfths {
    width: 75%; }

  .extra-small--ten-twelfths {
    width: 83.33333%; }

  .extra-small--eleven-twelfths {
    width: 91.66667%; }

  /* Hide/show - when used for spacing */
  .grid--uniform .extra-small--one-half:nth-child(2n+1),
  .grid--uniform .extra-small--one-third:nth-child(3n+1),
  .grid--uniform .extra-small--one-quarter:nth-child(4n+1),
  .grid--uniform .extra-small--one-fifth:nth-child(5n+1),
  .grid--uniform .extra-small--one-sixth:nth-child(6n+1),
  .grid--uniform .extra-small--two-sixths:nth-child(3n+1),
  .grid--uniform .extra-small--three-sixths:nth-child(2n+1),
  .grid--uniform .extra-small--one-eighth:nth-child(8n+1),
  .grid--uniform .extra-small--two-eighths:nth-child(4n+1),
  .grid--uniform .extra-small--four-eighths:nth-child(2n+1),
  .grid--uniform .extra-small--five-tenths:nth-child(2n+1),
  .grid--uniform .extra-small--one-twelfth:nth-child(12n+1),
  .grid--uniform .extra-small--two-twelfths:nth-child(6n+1),
  .grid--uniform .extra-small--three-twelfths:nth-child(4n+1),
  .grid--uniform .extra-small--four-twelfths:nth-child(3n+1),
  .grid--uniform .extra-small--six-twelfths:nth-child(2n+1) {
    clear: both; }

  /* Halves */
  .extra-small--push-one-half {
    left: 50%; }

  /* Thirds */
  .extra-small--push-one-third {
    left: 33.33333%; }

  .extra-small--push-two-thirds {
    left: 66.66667%; }

  /* Quarters */
  .extra-small--push-one-quarter {
    left: 25%; }

  .extra-small--push-two-quarters {
    left: 50%; }

  .extra-small--push-three-quarters {
    left: 75%; }

  /* Fifths */
  .extra-small--push-one-fifth {
    left: 20%; }

  .extra-small--push-two-fifths {
    left: 40%; }

  .extra-small--push-three-fifths {
    left: 60%; }

  .extra-small--push-four-fifths {
    left: 80%; }

  /* Sixths */
  .extra-small--push-one-sixth {
    left: 16.66667%; }

  .extra-small--push-two-sixths {
    left: 33.33333%; }

  .extra-small--push-three-sixths {
    left: 50%; }

  .extra-small--push-four-sixths {
    left: 66.66667%; }

  .extra-small--push-five-sixths {
    left: 83.33333%; }

  /* Eighths */
  .extra-small--push-one-eighth {
    left: 12.5%; }

  .extra-small--push-two-eighths {
    left: 25%; }

  .extra-small--push-three-eighths {
    left: 37.5%; }

  .extra-small--push-four-eighths {
    left: 50%; }

  .extra-small--push-five-eighths {
    left: 62.5%; }

  .extra-small--push-six-eighths {
    left: 75%; }

  .extra-small--push-seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .extra-small--push-one-tenth {
    left: 10%; }

  .extra-small--push-two-tenths {
    left: 20%; }

  .extra-small--push-three-tenths {
    left: 30%; }

  .extra-small--push-four-tenths {
    left: 40%; }

  .extra-small--push-five-tenths {
    left: 50%; }

  .extra-small--push-six-tenths {
    left: 60%; }

  .extra-small--push-seven-tenths {
    left: 70%; }

  .extra-small--push-eight-tenths {
    left: 80%; }

  .extra-small--push-nine-tenths {
    left: 90%; }

  /* Twelfths */
  .extra-small--push-one-twelfth {
    left: 8.33333%; }

  .extra-small--push-two-twelfths {
    left: 16.66667%; }

  .extra-small--push-three-twelfths {
    left: 25%; }

  .extra-small--push-four-twelfths {
    left: 33.33333%; }

  .extra-small--push-five-twelfths {
    left: 41.66667%; }

  .extra-small--push-six-twelfths {
    left: 50%; }

  .extra-small--push-seven-twelfths {
    left: 58.33333%; }

  .extra-small--push-eight-twelfths {
    left: 66.66667%; }

  .extra-small--push-nine-twelfths {
    left: 75%; }

  .extra-small--push-ten-twelfths {
    left: 83.33333%; }

  .extra-small--push-eleven-twelfths {
    left: 91.66667%; }

  /* Halves */
  .extra-small--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .extra-small--pull-one-third {
    left: -percentage(1/3); }

  .extra-small--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .extra-small--pull-one-quarter {
    left: -percentage(1/4); }

  .extra-small--pull-two-quarters {
    left: -percentage(2/4); }

  .extra-small--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .extra-small--pull-one-fifth {
    left: -percentage(1/5); }

  .extra-small--pull-two-fifths {
    left: -percentage(2/5); }

  .extra-small--pull-three-fifths {
    left: -percentage(3/5); }

  .extra-small--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .extra-small--pull-one-sixth {
    left: -percentage(1/6); }

  .extra-small--pull-two-sixths {
    left: -percentage(2/6); }

  .extra-small--pull-three-sixths {
    left: -percentage(3/6); }

  .extra-small--pull-four-sixths {
    left: -percentage(4/6); }

  .extra-small--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .extra-small--pull-one-eighth {
    left: -percentage(1/8); }

  .extra-small--pull-two-eighths {
    left: -percentage(2/8); }

  .extra-small--pull-three-eighths {
    left: -percentage(3/8); }

  .extra-small--pull-four-eighths {
    left: -percentage(4/8); }

  .extra-small--pull-five-eighths {
    left: -percentage(5/8); }

  .extra-small--pull-six-eighths {
    left: -percentage(6/8); }

  .extra-small--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .extra-small--pull-one-tenth {
    left: -percentage(1/10); }

  .extra-small--pull-two-tenths {
    left: -percentage(2/10); }

  .extra-small--pull-three-tenths {
    left: -percentage(3/10); }

  .extra-small--pull-four-tenths {
    left: -percentage(4/10); }

  .extra-small--pull-five-tenths {
    left: -percentage(5/10); }

  .extra-small--pull-six-tenths {
    left: -percentage(6/10); }

  .extra-small--pull-seven-tenths {
    left: -percentage(7/10); }

  .extra-small--pull-eight-tenths {
    left: -percentage(8/10); }

  .extra-small--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .extra-small--pull-one-twelfth {
    left: -percentage(1/12); }

  .extra-small--pull-two-twelfths {
    left: -percentage(2/12); }

  .extra-small--pull-three-twelfths {
    left: -percentage(3/12); }

  .extra-small--pull-four-twelfths {
    left: -percentage(4/12); }

  .extra-small--pull-five-twelfths {
    left: -percentage(5/12); }

  .extra-small--pull-six-twelfths {
    left: -percentage(6/12); }

  .extra-small--pull-seven-twelfths {
    left: -percentage(7/12); }

  .extra-small--pull-eight-twelfths {
    left: -percentage(8/12); }

  .extra-small--pull-nine-twelfths {
    left: -percentage(9/12); }

  .extra-small--pull-ten-twelfths {
    left: -percentage(10/12); }

  .extra-small--pull-eleven-twelfths {
    left: -percentage(11/12); }

  .grid--uniform-row-gutters .extra-small--one-whole:nth-child(n+2),
  .grid--uniform-row-gutters .extra-small--one-half:nth-child(n+3),
  .grid--uniform-row-gutters .extra-small--one-third:nth-child(n+4),
  .grid--uniform-row-gutters .extra-small--one-quarter:nth-child(n+5),
  .grid--uniform-row-gutters .extra-small--one-fifth:nth-child(n+6),
  .grid--uniform-row-gutters .extra-small--one-sixth:nth-child(n+7),
  .grid--uniform-row-gutters .extra-small--two-sixths:nth-child(n+4),
  .grid--uniform-row-gutters .extra-small--three-sixths:nth-child(n+3),
  .grid--uniform-row-gutters .extra-small--one-eighth:nth-child(n+9),
  .grid--uniform-row-gutters .extra-small--two-eighths:nth-child(n+5),
  .grid--uniform-row-gutters .extra-small--four-eighths:nth-child(n+3),
  .grid--uniform-row-gutters .extra-small--five-tenths:nth-child(n+3),
  .grid--uniform-row-gutters .extra-small--one-twelfth:nth-child(n+13),
  .grid--uniform-row-gutters .extra-small--two-twelfths:nth-child(n+7),
  .grid--uniform-row-gutters .extra-small--three-twelfths:nth-child(n+5),
  .grid--uniform-row-gutters .extra-small--four-twelfths:nth-child(n+4),
  .grid--uniform-row-gutters .extra-small--six-twelfths:nth-child(n+3) {
    margin-top: 20px; }

  .extra-small--show {
    display: block !important; }

  .extra-small--hide {
    display: none !important; }

  .extra-small--text-left {
    text-align: left !important; }

  .extra-small--text-right {
    text-align: right !important; }

  .extra-small--text-center {
    text-align: center !important; } }
/*================ Build Grid Push Classes ================*/
@media only screen and (min-width: 1px) {
  /* Halves */
  .all--push-one-half {
    left: 50%; }

  /* Thirds */
  .all--push-one-third {
    left: 33.33333%; }

  .all--push-two-thirds {
    left: 66.66667%; }

  /* Quarters */
  .all--push-one-quarter {
    left: 25%; }

  .all--push-two-quarters {
    left: 50%; }

  .all--push-three-quarters {
    left: 75%; }

  /* Fifths */
  .all--push-one-fifth {
    left: 20%; }

  .all--push-two-fifths {
    left: 40%; }

  .all--push-three-fifths {
    left: 60%; }

  .all--push-four-fifths {
    left: 80%; }

  /* Sixths */
  .all--push-one-sixth {
    left: 16.66667%; }

  .all--push-two-sixths {
    left: 33.33333%; }

  .all--push-three-sixths {
    left: 50%; }

  .all--push-four-sixths {
    left: 66.66667%; }

  .all--push-five-sixths {
    left: 83.33333%; }

  /* Eighths */
  .all--push-one-eighth {
    left: 12.5%; }

  .all--push-two-eighths {
    left: 25%; }

  .all--push-three-eighths {
    left: 37.5%; }

  .all--push-four-eighths {
    left: 50%; }

  .all--push-five-eighths {
    left: 62.5%; }

  .all--push-six-eighths {
    left: 75%; }

  .all--push-seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .all--push-one-tenth {
    left: 10%; }

  .all--push-two-tenths {
    left: 20%; }

  .all--push-three-tenths {
    left: 30%; }

  .all--push-four-tenths {
    left: 40%; }

  .all--push-five-tenths {
    left: 50%; }

  .all--push-six-tenths {
    left: 60%; }

  .all--push-seven-tenths {
    left: 70%; }

  .all--push-eight-tenths {
    left: 80%; }

  .all--push-nine-tenths {
    left: 90%; }

  /* Twelfths */
  .all--push-one-twelfth {
    left: 8.33333%; }

  .all--push-two-twelfths {
    left: 16.66667%; }

  .all--push-three-twelfths {
    left: 25%; }

  .all--push-four-twelfths {
    left: 33.33333%; }

  .all--push-five-twelfths {
    left: 41.66667%; }

  .all--push-six-twelfths {
    left: 50%; }

  .all--push-seven-twelfths {
    left: 58.33333%; }

  .all--push-eight-twelfths {
    left: 66.66667%; }

  .all--push-nine-twelfths {
    left: 75%; }

  .all--push-ten-twelfths {
    left: 83.33333%; }

  .all--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 2560px) {
  /* Halves */
  .extra-large-up--push-one-half {
    left: 50%; }

  /* Thirds */
  .extra-large-up--push-one-third {
    left: 33.33333%; }

  .extra-large-up--push-two-thirds {
    left: 66.66667%; }

  /* Quarters */
  .extra-large-up--push-one-quarter {
    left: 25%; }

  .extra-large-up--push-two-quarters {
    left: 50%; }

  .extra-large-up--push-three-quarters {
    left: 75%; }

  /* Fifths */
  .extra-large-up--push-one-fifth {
    left: 20%; }

  .extra-large-up--push-two-fifths {
    left: 40%; }

  .extra-large-up--push-three-fifths {
    left: 60%; }

  .extra-large-up--push-four-fifths {
    left: 80%; }

  /* Sixths */
  .extra-large-up--push-one-sixth {
    left: 16.66667%; }

  .extra-large-up--push-two-sixths {
    left: 33.33333%; }

  .extra-large-up--push-three-sixths {
    left: 50%; }

  .extra-large-up--push-four-sixths {
    left: 66.66667%; }

  .extra-large-up--push-five-sixths {
    left: 83.33333%; }

  /* Eighths */
  .extra-large-up--push-one-eighth {
    left: 12.5%; }

  .extra-large-up--push-two-eighths {
    left: 25%; }

  .extra-large-up--push-three-eighths {
    left: 37.5%; }

  .extra-large-up--push-four-eighths {
    left: 50%; }

  .extra-large-up--push-five-eighths {
    left: 62.5%; }

  .extra-large-up--push-six-eighths {
    left: 75%; }

  .extra-large-up--push-seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .extra-large-up--push-one-tenth {
    left: 10%; }

  .extra-large-up--push-two-tenths {
    left: 20%; }

  .extra-large-up--push-three-tenths {
    left: 30%; }

  .extra-large-up--push-four-tenths {
    left: 40%; }

  .extra-large-up--push-five-tenths {
    left: 50%; }

  .extra-large-up--push-six-tenths {
    left: 60%; }

  .extra-large-up--push-seven-tenths {
    left: 70%; }

  .extra-large-up--push-eight-tenths {
    left: 80%; }

  .extra-large-up--push-nine-tenths {
    left: 90%; }

  /* Twelfths */
  .extra-large-up--push-one-twelfth {
    left: 8.33333%; }

  .extra-large-up--push-two-twelfths {
    left: 16.66667%; }

  .extra-large-up--push-three-twelfths {
    left: 25%; }

  .extra-large-up--push-four-twelfths {
    left: 33.33333%; }

  .extra-large-up--push-five-twelfths {
    left: 41.66667%; }

  .extra-large-up--push-six-twelfths {
    left: 50%; }

  .extra-large-up--push-seven-twelfths {
    left: 58.33333%; }

  .extra-large-up--push-eight-twelfths {
    left: 66.66667%; }

  .extra-large-up--push-nine-twelfths {
    left: 75%; }

  .extra-large-up--push-ten-twelfths {
    left: 83.33333%; }

  .extra-large-up--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 1280px) {
  /* Halves */
  .extra-large--push-one-half {
    left: 50%; }

  /* Thirds */
  .extra-large--push-one-third {
    left: 33.33333%; }

  .extra-large--push-two-thirds {
    left: 66.66667%; }

  /* Quarters */
  .extra-large--push-one-quarter {
    left: 25%; }

  .extra-large--push-two-quarters {
    left: 50%; }

  .extra-large--push-three-quarters {
    left: 75%; }

  /* Fifths */
  .extra-large--push-one-fifth {
    left: 20%; }

  .extra-large--push-two-fifths {
    left: 40%; }

  .extra-large--push-three-fifths {
    left: 60%; }

  .extra-large--push-four-fifths {
    left: 80%; }

  /* Sixths */
  .extra-large--push-one-sixth {
    left: 16.66667%; }

  .extra-large--push-two-sixths {
    left: 33.33333%; }

  .extra-large--push-three-sixths {
    left: 50%; }

  .extra-large--push-four-sixths {
    left: 66.66667%; }

  .extra-large--push-five-sixths {
    left: 83.33333%; }

  /* Eighths */
  .extra-large--push-one-eighth {
    left: 12.5%; }

  .extra-large--push-two-eighths {
    left: 25%; }

  .extra-large--push-three-eighths {
    left: 37.5%; }

  .extra-large--push-four-eighths {
    left: 50%; }

  .extra-large--push-five-eighths {
    left: 62.5%; }

  .extra-large--push-six-eighths {
    left: 75%; }

  .extra-large--push-seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .extra-large--push-one-tenth {
    left: 10%; }

  .extra-large--push-two-tenths {
    left: 20%; }

  .extra-large--push-three-tenths {
    left: 30%; }

  .extra-large--push-four-tenths {
    left: 40%; }

  .extra-large--push-five-tenths {
    left: 50%; }

  .extra-large--push-six-tenths {
    left: 60%; }

  .extra-large--push-seven-tenths {
    left: 70%; }

  .extra-large--push-eight-tenths {
    left: 80%; }

  .extra-large--push-nine-tenths {
    left: 90%; }

  /* Twelfths */
  .extra-large--push-one-twelfth {
    left: 8.33333%; }

  .extra-large--push-two-twelfths {
    left: 16.66667%; }

  .extra-large--push-three-twelfths {
    left: 25%; }

  .extra-large--push-four-twelfths {
    left: 33.33333%; }

  .extra-large--push-five-twelfths {
    left: 41.66667%; }

  .extra-large--push-six-twelfths {
    left: 50%; }

  .extra-large--push-seven-twelfths {
    left: 58.33333%; }

  .extra-large--push-eight-twelfths {
    left: 66.66667%; }

  .extra-large--push-nine-twelfths {
    left: 75%; }

  .extra-large--push-ten-twelfths {
    left: 83.33333%; }

  .extra-large--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 1024px) {
  /* 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%; } }
@media only screen and (max-width: 1279px) {
  /* Halves */
  .large-down--push-one-half {
    left: 50%; }

  /* Thirds */
  .large-down--push-one-third {
    left: 33.33333%; }

  .large-down--push-two-thirds {
    left: 66.66667%; }

  /* Quarters */
  .large-down--push-one-quarter {
    left: 25%; }

  .large-down--push-two-quarters {
    left: 50%; }

  .large-down--push-three-quarters {
    left: 75%; }

  /* Fifths */
  .large-down--push-one-fifth {
    left: 20%; }

  .large-down--push-two-fifths {
    left: 40%; }

  .large-down--push-three-fifths {
    left: 60%; }

  .large-down--push-four-fifths {
    left: 80%; }

  /* Sixths */
  .large-down--push-one-sixth {
    left: 16.66667%; }

  .large-down--push-two-sixths {
    left: 33.33333%; }

  .large-down--push-three-sixths {
    left: 50%; }

  .large-down--push-four-sixths {
    left: 66.66667%; }

  .large-down--push-five-sixths {
    left: 83.33333%; }

  /* Eighths */
  .large-down--push-one-eighth {
    left: 12.5%; }

  .large-down--push-two-eighths {
    left: 25%; }

  .large-down--push-three-eighths {
    left: 37.5%; }

  .large-down--push-four-eighths {
    left: 50%; }

  .large-down--push-five-eighths {
    left: 62.5%; }

  .large-down--push-six-eighths {
    left: 75%; }

  .large-down--push-seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .large-down--push-one-tenth {
    left: 10%; }

  .large-down--push-two-tenths {
    left: 20%; }

  .large-down--push-three-tenths {
    left: 30%; }

  .large-down--push-four-tenths {
    left: 40%; }

  .large-down--push-five-tenths {
    left: 50%; }

  .large-down--push-six-tenths {
    left: 60%; }

  .large-down--push-seven-tenths {
    left: 70%; }

  .large-down--push-eight-tenths {
    left: 80%; }

  .large-down--push-nine-tenths {
    left: 90%; }

  /* Twelfths */
  .large-down--push-one-twelfth {
    left: 8.33333%; }

  .large-down--push-two-twelfths {
    left: 16.66667%; }

  .large-down--push-three-twelfths {
    left: 25%; }

  .large-down--push-four-twelfths {
    left: 33.33333%; }

  .large-down--push-five-twelfths {
    left: 41.66667%; }

  .large-down--push-six-twelfths {
    left: 50%; }

  .large-down--push-seven-twelfths {
    left: 58.33333%; }

  .large-down--push-eight-twelfths {
    left: 66.66667%; }

  .large-down--push-nine-twelfths {
    left: 75%; }

  .large-down--push-ten-twelfths {
    left: 83.33333%; }

  .large-down--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  /* Halves */
  .large--push-one-half {
    left: 50%; }

  /* Thirds */
  .large--push-one-third {
    left: 33.33333%; }

  .large--push-two-thirds {
    left: 66.66667%; }

  /* Quarters */
  .large--push-one-quarter {
    left: 25%; }

  .large--push-two-quarters {
    left: 50%; }

  .large--push-three-quarters {
    left: 75%; }

  /* Fifths */
  .large--push-one-fifth {
    left: 20%; }

  .large--push-two-fifths {
    left: 40%; }

  .large--push-three-fifths {
    left: 60%; }

  .large--push-four-fifths {
    left: 80%; }

  /* Sixths */
  .large--push-one-sixth {
    left: 16.66667%; }

  .large--push-two-sixths {
    left: 33.33333%; }

  .large--push-three-sixths {
    left: 50%; }

  .large--push-four-sixths {
    left: 66.66667%; }

  .large--push-five-sixths {
    left: 83.33333%; }

  /* Eighths */
  .large--push-one-eighth {
    left: 12.5%; }

  .large--push-two-eighths {
    left: 25%; }

  .large--push-three-eighths {
    left: 37.5%; }

  .large--push-four-eighths {
    left: 50%; }

  .large--push-five-eighths {
    left: 62.5%; }

  .large--push-six-eighths {
    left: 75%; }

  .large--push-seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .large--push-one-tenth {
    left: 10%; }

  .large--push-two-tenths {
    left: 20%; }

  .large--push-three-tenths {
    left: 30%; }

  .large--push-four-tenths {
    left: 40%; }

  .large--push-five-tenths {
    left: 50%; }

  .large--push-six-tenths {
    left: 60%; }

  .large--push-seven-tenths {
    left: 70%; }

  .large--push-eight-tenths {
    left: 80%; }

  .large--push-nine-tenths {
    left: 90%; }

  /* Twelfths */
  .large--push-one-twelfth {
    left: 8.33333%; }

  .large--push-two-twelfths {
    left: 16.66667%; }

  .large--push-three-twelfths {
    left: 25%; }

  .large--push-four-twelfths {
    left: 33.33333%; }

  .large--push-five-twelfths {
    left: 41.66667%; }

  .large--push-six-twelfths {
    left: 50%; }

  .large--push-seven-twelfths {
    left: 58.33333%; }

  .large--push-eight-twelfths {
    left: 66.66667%; }

  .large--push-nine-twelfths {
    left: 75%; }

  .large--push-ten-twelfths {
    left: 83.33333%; }

  .large--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 768px) {
  /* 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 (max-width: 1023px) {
  /* Halves */
  .medium-down--push-one-half {
    left: 50%; }

  /* Thirds */
  .medium-down--push-one-third {
    left: 33.33333%; }

  .medium-down--push-two-thirds {
    left: 66.66667%; }

  /* Quarters */
  .medium-down--push-one-quarter {
    left: 25%; }

  .medium-down--push-two-quarters {
    left: 50%; }

  .medium-down--push-three-quarters {
    left: 75%; }

  /* Fifths */
  .medium-down--push-one-fifth {
    left: 20%; }

  .medium-down--push-two-fifths {
    left: 40%; }

  .medium-down--push-three-fifths {
    left: 60%; }

  .medium-down--push-four-fifths {
    left: 80%; }

  /* Sixths */
  .medium-down--push-one-sixth {
    left: 16.66667%; }

  .medium-down--push-two-sixths {
    left: 33.33333%; }

  .medium-down--push-three-sixths {
    left: 50%; }

  .medium-down--push-four-sixths {
    left: 66.66667%; }

  .medium-down--push-five-sixths {
    left: 83.33333%; }

  /* Eighths */
  .medium-down--push-one-eighth {
    left: 12.5%; }

  .medium-down--push-two-eighths {
    left: 25%; }

  .medium-down--push-three-eighths {
    left: 37.5%; }

  .medium-down--push-four-eighths {
    left: 50%; }

  .medium-down--push-five-eighths {
    left: 62.5%; }

  .medium-down--push-six-eighths {
    left: 75%; }

  .medium-down--push-seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .medium-down--push-one-tenth {
    left: 10%; }

  .medium-down--push-two-tenths {
    left: 20%; }

  .medium-down--push-three-tenths {
    left: 30%; }

  .medium-down--push-four-tenths {
    left: 40%; }

  .medium-down--push-five-tenths {
    left: 50%; }

  .medium-down--push-six-tenths {
    left: 60%; }

  .medium-down--push-seven-tenths {
    left: 70%; }

  .medium-down--push-eight-tenths {
    left: 80%; }

  .medium-down--push-nine-tenths {
    left: 90%; }

  /* Twelfths */
  .medium-down--push-one-twelfth {
    left: 8.33333%; }

  .medium-down--push-two-twelfths {
    left: 16.66667%; }

  .medium-down--push-three-twelfths {
    left: 25%; }

  .medium-down--push-four-twelfths {
    left: 33.33333%; }

  .medium-down--push-five-twelfths {
    left: 41.66667%; }

  .medium-down--push-six-twelfths {
    left: 50%; }

  .medium-down--push-seven-twelfths {
    left: 58.33333%; }

  .medium-down--push-eight-twelfths {
    left: 66.66667%; }

  .medium-down--push-nine-twelfths {
    left: 75%; }

  .medium-down--push-ten-twelfths {
    left: 83.33333%; }

  .medium-down--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  /* Halves */
  .medium--push-one-half {
    left: 50%; }

  /* Thirds */
  .medium--push-one-third {
    left: 33.33333%; }

  .medium--push-two-thirds {
    left: 66.66667%; }

  /* Quarters */
  .medium--push-one-quarter {
    left: 25%; }

  .medium--push-two-quarters {
    left: 50%; }

  .medium--push-three-quarters {
    left: 75%; }

  /* Fifths */
  .medium--push-one-fifth {
    left: 20%; }

  .medium--push-two-fifths {
    left: 40%; }

  .medium--push-three-fifths {
    left: 60%; }

  .medium--push-four-fifths {
    left: 80%; }

  /* Sixths */
  .medium--push-one-sixth {
    left: 16.66667%; }

  .medium--push-two-sixths {
    left: 33.33333%; }

  .medium--push-three-sixths {
    left: 50%; }

  .medium--push-four-sixths {
    left: 66.66667%; }

  .medium--push-five-sixths {
    left: 83.33333%; }

  /* Eighths */
  .medium--push-one-eighth {
    left: 12.5%; }

  .medium--push-two-eighths {
    left: 25%; }

  .medium--push-three-eighths {
    left: 37.5%; }

  .medium--push-four-eighths {
    left: 50%; }

  .medium--push-five-eighths {
    left: 62.5%; }

  .medium--push-six-eighths {
    left: 75%; }

  .medium--push-seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .medium--push-one-tenth {
    left: 10%; }

  .medium--push-two-tenths {
    left: 20%; }

  .medium--push-three-tenths {
    left: 30%; }

  .medium--push-four-tenths {
    left: 40%; }

  .medium--push-five-tenths {
    left: 50%; }

  .medium--push-six-tenths {
    left: 60%; }

  .medium--push-seven-tenths {
    left: 70%; }

  .medium--push-eight-tenths {
    left: 80%; }

  .medium--push-nine-tenths {
    left: 90%; }

  /* Twelfths */
  .medium--push-one-twelfth {
    left: 8.33333%; }

  .medium--push-two-twelfths {
    left: 16.66667%; }

  .medium--push-three-twelfths {
    left: 25%; }

  .medium--push-four-twelfths {
    left: 33.33333%; }

  .medium--push-five-twelfths {
    left: 41.66667%; }

  .medium--push-six-twelfths {
    left: 50%; }

  .medium--push-seven-twelfths {
    left: 58.33333%; }

  .medium--push-eight-twelfths {
    left: 66.66667%; }

  .medium--push-nine-twelfths {
    left: 75%; }

  .medium--push-ten-twelfths {
    left: 83.33333%; }

  .medium--push-eleven-twelfths {
    left: 91.66667%; } }
@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 (max-width: 767px) {
  /* Halves */
  .small-down--push-one-half {
    left: 50%; }

  /* Thirds */
  .small-down--push-one-third {
    left: 33.33333%; }

  .small-down--push-two-thirds {
    left: 66.66667%; }

  /* Quarters */
  .small-down--push-one-quarter {
    left: 25%; }

  .small-down--push-two-quarters {
    left: 50%; }

  .small-down--push-three-quarters {
    left: 75%; }

  /* Fifths */
  .small-down--push-one-fifth {
    left: 20%; }

  .small-down--push-two-fifths {
    left: 40%; }

  .small-down--push-three-fifths {
    left: 60%; }

  .small-down--push-four-fifths {
    left: 80%; }

  /* Sixths */
  .small-down--push-one-sixth {
    left: 16.66667%; }

  .small-down--push-two-sixths {
    left: 33.33333%; }

  .small-down--push-three-sixths {
    left: 50%; }

  .small-down--push-four-sixths {
    left: 66.66667%; }

  .small-down--push-five-sixths {
    left: 83.33333%; }

  /* Eighths */
  .small-down--push-one-eighth {
    left: 12.5%; }

  .small-down--push-two-eighths {
    left: 25%; }

  .small-down--push-three-eighths {
    left: 37.5%; }

  .small-down--push-four-eighths {
    left: 50%; }

  .small-down--push-five-eighths {
    left: 62.5%; }

  .small-down--push-six-eighths {
    left: 75%; }

  .small-down--push-seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .small-down--push-one-tenth {
    left: 10%; }

  .small-down--push-two-tenths {
    left: 20%; }

  .small-down--push-three-tenths {
    left: 30%; }

  .small-down--push-four-tenths {
    left: 40%; }

  .small-down--push-five-tenths {
    left: 50%; }

  .small-down--push-six-tenths {
    left: 60%; }

  .small-down--push-seven-tenths {
    left: 70%; }

  .small-down--push-eight-tenths {
    left: 80%; }

  .small-down--push-nine-tenths {
    left: 90%; }

  /* Twelfths */
  .small-down--push-one-twelfth {
    left: 8.33333%; }

  .small-down--push-two-twelfths {
    left: 16.66667%; }

  .small-down--push-three-twelfths {
    left: 25%; }

  .small-down--push-four-twelfths {
    left: 33.33333%; }

  .small-down--push-five-twelfths {
    left: 41.66667%; }

  .small-down--push-six-twelfths {
    left: 50%; }

  .small-down--push-seven-twelfths {
    left: 58.33333%; }

  .small-down--push-eight-twelfths {
    left: 66.66667%; }

  .small-down--push-nine-twelfths {
    left: 75%; }

  .small-down--push-ten-twelfths {
    left: 83.33333%; }

  .small-down--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 480px) and (max-width: 767px) {
  /* Halves */
  .small--push-one-half {
    left: 50%; }

  /* Thirds */
  .small--push-one-third {
    left: 33.33333%; }

  .small--push-two-thirds {
    left: 66.66667%; }

  /* Quarters */
  .small--push-one-quarter {
    left: 25%; }

  .small--push-two-quarters {
    left: 50%; }

  .small--push-three-quarters {
    left: 75%; }

  /* Fifths */
  .small--push-one-fifth {
    left: 20%; }

  .small--push-two-fifths {
    left: 40%; }

  .small--push-three-fifths {
    left: 60%; }

  .small--push-four-fifths {
    left: 80%; }

  /* Sixths */
  .small--push-one-sixth {
    left: 16.66667%; }

  .small--push-two-sixths {
    left: 33.33333%; }

  .small--push-three-sixths {
    left: 50%; }

  .small--push-four-sixths {
    left: 66.66667%; }

  .small--push-five-sixths {
    left: 83.33333%; }

  /* Eighths */
  .small--push-one-eighth {
    left: 12.5%; }

  .small--push-two-eighths {
    left: 25%; }

  .small--push-three-eighths {
    left: 37.5%; }

  .small--push-four-eighths {
    left: 50%; }

  .small--push-five-eighths {
    left: 62.5%; }

  .small--push-six-eighths {
    left: 75%; }

  .small--push-seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .small--push-one-tenth {
    left: 10%; }

  .small--push-two-tenths {
    left: 20%; }

  .small--push-three-tenths {
    left: 30%; }

  .small--push-four-tenths {
    left: 40%; }

  .small--push-five-tenths {
    left: 50%; }

  .small--push-six-tenths {
    left: 60%; }

  .small--push-seven-tenths {
    left: 70%; }

  .small--push-eight-tenths {
    left: 80%; }

  .small--push-nine-tenths {
    left: 90%; }

  /* Twelfths */
  .small--push-one-twelfth {
    left: 8.33333%; }

  .small--push-two-twelfths {
    left: 16.66667%; }

  .small--push-three-twelfths {
    left: 25%; }

  .small--push-four-twelfths {
    left: 33.33333%; }

  .small--push-five-twelfths {
    left: 41.66667%; }

  .small--push-six-twelfths {
    left: 50%; }

  .small--push-seven-twelfths {
    left: 58.33333%; }

  .small--push-eight-twelfths {
    left: 66.66667%; }

  .small--push-nine-twelfths {
    left: 75%; }

  .small--push-ten-twelfths {
    left: 83.33333%; }

  .small--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (max-width: 479px) {
  /* Halves */
  .extra-small--push-one-half {
    left: 50%; }

  /* Thirds */
  .extra-small--push-one-third {
    left: 33.33333%; }

  .extra-small--push-two-thirds {
    left: 66.66667%; }

  /* Quarters */
  .extra-small--push-one-quarter {
    left: 25%; }

  .extra-small--push-two-quarters {
    left: 50%; }

  .extra-small--push-three-quarters {
    left: 75%; }

  /* Fifths */
  .extra-small--push-one-fifth {
    left: 20%; }

  .extra-small--push-two-fifths {
    left: 40%; }

  .extra-small--push-three-fifths {
    left: 60%; }

  .extra-small--push-four-fifths {
    left: 80%; }

  /* Sixths */
  .extra-small--push-one-sixth {
    left: 16.66667%; }

  .extra-small--push-two-sixths {
    left: 33.33333%; }

  .extra-small--push-three-sixths {
    left: 50%; }

  .extra-small--push-four-sixths {
    left: 66.66667%; }

  .extra-small--push-five-sixths {
    left: 83.33333%; }

  /* Eighths */
  .extra-small--push-one-eighth {
    left: 12.5%; }

  .extra-small--push-two-eighths {
    left: 25%; }

  .extra-small--push-three-eighths {
    left: 37.5%; }

  .extra-small--push-four-eighths {
    left: 50%; }

  .extra-small--push-five-eighths {
    left: 62.5%; }

  .extra-small--push-six-eighths {
    left: 75%; }

  .extra-small--push-seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .extra-small--push-one-tenth {
    left: 10%; }

  .extra-small--push-two-tenths {
    left: 20%; }

  .extra-small--push-three-tenths {
    left: 30%; }

  .extra-small--push-four-tenths {
    left: 40%; }

  .extra-small--push-five-tenths {
    left: 50%; }

  .extra-small--push-six-tenths {
    left: 60%; }

  .extra-small--push-seven-tenths {
    left: 70%; }

  .extra-small--push-eight-tenths {
    left: 80%; }

  .extra-small--push-nine-tenths {
    left: 90%; }

  /* Twelfths */
  .extra-small--push-one-twelfth {
    left: 8.33333%; }

  .extra-small--push-two-twelfths {
    left: 16.66667%; }

  .extra-small--push-three-twelfths {
    left: 25%; }

  .extra-small--push-four-twelfths {
    left: 33.33333%; }

  .extra-small--push-five-twelfths {
    left: 41.66667%; }

  .extra-small--push-six-twelfths {
    left: 50%; }

  .extra-small--push-seven-twelfths {
    left: 58.33333%; }

  .extra-small--push-eight-twelfths {
    left: 66.66667%; }

  .extra-small--push-nine-twelfths {
    left: 75%; }

  .extra-small--push-ten-twelfths {
    left: 83.33333%; }

  .extra-small--push-eleven-twelfths {
    left: 91.66667%; } }
/*================ Build Grid Pull Classes ================*/
@media only screen and (min-width: 1px) {
  /* Halves */
  .all--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .all--pull-one-third {
    left: -percentage(1/3); }

  .all--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .all--pull-one-quarter {
    left: -percentage(1/4); }

  .all--pull-two-quarters {
    left: -percentage(2/4); }

  .all--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .all--pull-one-fifth {
    left: -percentage(1/5); }

  .all--pull-two-fifths {
    left: -percentage(2/5); }

  .all--pull-three-fifths {
    left: -percentage(3/5); }

  .all--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .all--pull-one-sixth {
    left: -percentage(1/6); }

  .all--pull-two-sixths {
    left: -percentage(2/6); }

  .all--pull-three-sixths {
    left: -percentage(3/6); }

  .all--pull-four-sixths {
    left: -percentage(4/6); }

  .all--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .all--pull-one-eighth {
    left: -percentage(1/8); }

  .all--pull-two-eighths {
    left: -percentage(2/8); }

  .all--pull-three-eighths {
    left: -percentage(3/8); }

  .all--pull-four-eighths {
    left: -percentage(4/8); }

  .all--pull-five-eighths {
    left: -percentage(5/8); }

  .all--pull-six-eighths {
    left: -percentage(6/8); }

  .all--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .all--pull-one-tenth {
    left: -percentage(1/10); }

  .all--pull-two-tenths {
    left: -percentage(2/10); }

  .all--pull-three-tenths {
    left: -percentage(3/10); }

  .all--pull-four-tenths {
    left: -percentage(4/10); }

  .all--pull-five-tenths {
    left: -percentage(5/10); }

  .all--pull-six-tenths {
    left: -percentage(6/10); }

  .all--pull-seven-tenths {
    left: -percentage(7/10); }

  .all--pull-eight-tenths {
    left: -percentage(8/10); }

  .all--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .all--pull-one-twelfth {
    left: -percentage(1/12); }

  .all--pull-two-twelfths {
    left: -percentage(2/12); }

  .all--pull-three-twelfths {
    left: -percentage(3/12); }

  .all--pull-four-twelfths {
    left: -percentage(4/12); }

  .all--pull-five-twelfths {
    left: -percentage(5/12); }

  .all--pull-six-twelfths {
    left: -percentage(6/12); }

  .all--pull-seven-twelfths {
    left: -percentage(7/12); }

  .all--pull-eight-twelfths {
    left: -percentage(8/12); }

  .all--pull-nine-twelfths {
    left: -percentage(9/12); }

  .all--pull-ten-twelfths {
    left: -percentage(10/12); }

  .all--pull-eleven-twelfths {
    left: -percentage(11/12); } }
@media only screen and (min-width: 2560px) {
  /* Halves */
  .extra-large-up--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .extra-large-up--pull-one-third {
    left: -percentage(1/3); }

  .extra-large-up--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .extra-large-up--pull-one-quarter {
    left: -percentage(1/4); }

  .extra-large-up--pull-two-quarters {
    left: -percentage(2/4); }

  .extra-large-up--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .extra-large-up--pull-one-fifth {
    left: -percentage(1/5); }

  .extra-large-up--pull-two-fifths {
    left: -percentage(2/5); }

  .extra-large-up--pull-three-fifths {
    left: -percentage(3/5); }

  .extra-large-up--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .extra-large-up--pull-one-sixth {
    left: -percentage(1/6); }

  .extra-large-up--pull-two-sixths {
    left: -percentage(2/6); }

  .extra-large-up--pull-three-sixths {
    left: -percentage(3/6); }

  .extra-large-up--pull-four-sixths {
    left: -percentage(4/6); }

  .extra-large-up--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .extra-large-up--pull-one-eighth {
    left: -percentage(1/8); }

  .extra-large-up--pull-two-eighths {
    left: -percentage(2/8); }

  .extra-large-up--pull-three-eighths {
    left: -percentage(3/8); }

  .extra-large-up--pull-four-eighths {
    left: -percentage(4/8); }

  .extra-large-up--pull-five-eighths {
    left: -percentage(5/8); }

  .extra-large-up--pull-six-eighths {
    left: -percentage(6/8); }

  .extra-large-up--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .extra-large-up--pull-one-tenth {
    left: -percentage(1/10); }

  .extra-large-up--pull-two-tenths {
    left: -percentage(2/10); }

  .extra-large-up--pull-three-tenths {
    left: -percentage(3/10); }

  .extra-large-up--pull-four-tenths {
    left: -percentage(4/10); }

  .extra-large-up--pull-five-tenths {
    left: -percentage(5/10); }

  .extra-large-up--pull-six-tenths {
    left: -percentage(6/10); }

  .extra-large-up--pull-seven-tenths {
    left: -percentage(7/10); }

  .extra-large-up--pull-eight-tenths {
    left: -percentage(8/10); }

  .extra-large-up--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .extra-large-up--pull-one-twelfth {
    left: -percentage(1/12); }

  .extra-large-up--pull-two-twelfths {
    left: -percentage(2/12); }

  .extra-large-up--pull-three-twelfths {
    left: -percentage(3/12); }

  .extra-large-up--pull-four-twelfths {
    left: -percentage(4/12); }

  .extra-large-up--pull-five-twelfths {
    left: -percentage(5/12); }

  .extra-large-up--pull-six-twelfths {
    left: -percentage(6/12); }

  .extra-large-up--pull-seven-twelfths {
    left: -percentage(7/12); }

  .extra-large-up--pull-eight-twelfths {
    left: -percentage(8/12); }

  .extra-large-up--pull-nine-twelfths {
    left: -percentage(9/12); }

  .extra-large-up--pull-ten-twelfths {
    left: -percentage(10/12); }

  .extra-large-up--pull-eleven-twelfths {
    left: -percentage(11/12); } }
@media only screen and (min-width: 1280px) {
  /* Halves */
  .extra-large--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .extra-large--pull-one-third {
    left: -percentage(1/3); }

  .extra-large--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .extra-large--pull-one-quarter {
    left: -percentage(1/4); }

  .extra-large--pull-two-quarters {
    left: -percentage(2/4); }

  .extra-large--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .extra-large--pull-one-fifth {
    left: -percentage(1/5); }

  .extra-large--pull-two-fifths {
    left: -percentage(2/5); }

  .extra-large--pull-three-fifths {
    left: -percentage(3/5); }

  .extra-large--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .extra-large--pull-one-sixth {
    left: -percentage(1/6); }

  .extra-large--pull-two-sixths {
    left: -percentage(2/6); }

  .extra-large--pull-three-sixths {
    left: -percentage(3/6); }

  .extra-large--pull-four-sixths {
    left: -percentage(4/6); }

  .extra-large--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .extra-large--pull-one-eighth {
    left: -percentage(1/8); }

  .extra-large--pull-two-eighths {
    left: -percentage(2/8); }

  .extra-large--pull-three-eighths {
    left: -percentage(3/8); }

  .extra-large--pull-four-eighths {
    left: -percentage(4/8); }

  .extra-large--pull-five-eighths {
    left: -percentage(5/8); }

  .extra-large--pull-six-eighths {
    left: -percentage(6/8); }

  .extra-large--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .extra-large--pull-one-tenth {
    left: -percentage(1/10); }

  .extra-large--pull-two-tenths {
    left: -percentage(2/10); }

  .extra-large--pull-three-tenths {
    left: -percentage(3/10); }

  .extra-large--pull-four-tenths {
    left: -percentage(4/10); }

  .extra-large--pull-five-tenths {
    left: -percentage(5/10); }

  .extra-large--pull-six-tenths {
    left: -percentage(6/10); }

  .extra-large--pull-seven-tenths {
    left: -percentage(7/10); }

  .extra-large--pull-eight-tenths {
    left: -percentage(8/10); }

  .extra-large--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .extra-large--pull-one-twelfth {
    left: -percentage(1/12); }

  .extra-large--pull-two-twelfths {
    left: -percentage(2/12); }

  .extra-large--pull-three-twelfths {
    left: -percentage(3/12); }

  .extra-large--pull-four-twelfths {
    left: -percentage(4/12); }

  .extra-large--pull-five-twelfths {
    left: -percentage(5/12); }

  .extra-large--pull-six-twelfths {
    left: -percentage(6/12); }

  .extra-large--pull-seven-twelfths {
    left: -percentage(7/12); }

  .extra-large--pull-eight-twelfths {
    left: -percentage(8/12); }

  .extra-large--pull-nine-twelfths {
    left: -percentage(9/12); }

  .extra-large--pull-ten-twelfths {
    left: -percentage(10/12); }

  .extra-large--pull-eleven-twelfths {
    left: -percentage(11/12); } }
@media only screen and (min-width: 1024px) {
  /* Halves */
  .large-up--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .large-up--pull-one-third {
    left: -percentage(1/3); }

  .large-up--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .large-up--pull-one-quarter {
    left: -percentage(1/4); }

  .large-up--pull-two-quarters {
    left: -percentage(2/4); }

  .large-up--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .large-up--pull-one-fifth {
    left: -percentage(1/5); }

  .large-up--pull-two-fifths {
    left: -percentage(2/5); }

  .large-up--pull-three-fifths {
    left: -percentage(3/5); }

  .large-up--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .large-up--pull-one-sixth {
    left: -percentage(1/6); }

  .large-up--pull-two-sixths {
    left: -percentage(2/6); }

  .large-up--pull-three-sixths {
    left: -percentage(3/6); }

  .large-up--pull-four-sixths {
    left: -percentage(4/6); }

  .large-up--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .large-up--pull-one-eighth {
    left: -percentage(1/8); }

  .large-up--pull-two-eighths {
    left: -percentage(2/8); }

  .large-up--pull-three-eighths {
    left: -percentage(3/8); }

  .large-up--pull-four-eighths {
    left: -percentage(4/8); }

  .large-up--pull-five-eighths {
    left: -percentage(5/8); }

  .large-up--pull-six-eighths {
    left: -percentage(6/8); }

  .large-up--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .large-up--pull-one-tenth {
    left: -percentage(1/10); }

  .large-up--pull-two-tenths {
    left: -percentage(2/10); }

  .large-up--pull-three-tenths {
    left: -percentage(3/10); }

  .large-up--pull-four-tenths {
    left: -percentage(4/10); }

  .large-up--pull-five-tenths {
    left: -percentage(5/10); }

  .large-up--pull-six-tenths {
    left: -percentage(6/10); }

  .large-up--pull-seven-tenths {
    left: -percentage(7/10); }

  .large-up--pull-eight-tenths {
    left: -percentage(8/10); }

  .large-up--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .large-up--pull-one-twelfth {
    left: -percentage(1/12); }

  .large-up--pull-two-twelfths {
    left: -percentage(2/12); }

  .large-up--pull-three-twelfths {
    left: -percentage(3/12); }

  .large-up--pull-four-twelfths {
    left: -percentage(4/12); }

  .large-up--pull-five-twelfths {
    left: -percentage(5/12); }

  .large-up--pull-six-twelfths {
    left: -percentage(6/12); }

  .large-up--pull-seven-twelfths {
    left: -percentage(7/12); }

  .large-up--pull-eight-twelfths {
    left: -percentage(8/12); }

  .large-up--pull-nine-twelfths {
    left: -percentage(9/12); }

  .large-up--pull-ten-twelfths {
    left: -percentage(10/12); }

  .large-up--pull-eleven-twelfths {
    left: -percentage(11/12); } }
@media only screen and (max-width: 1279px) {
  /* Halves */
  .large-down--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .large-down--pull-one-third {
    left: -percentage(1/3); }

  .large-down--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .large-down--pull-one-quarter {
    left: -percentage(1/4); }

  .large-down--pull-two-quarters {
    left: -percentage(2/4); }

  .large-down--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .large-down--pull-one-fifth {
    left: -percentage(1/5); }

  .large-down--pull-two-fifths {
    left: -percentage(2/5); }

  .large-down--pull-three-fifths {
    left: -percentage(3/5); }

  .large-down--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .large-down--pull-one-sixth {
    left: -percentage(1/6); }

  .large-down--pull-two-sixths {
    left: -percentage(2/6); }

  .large-down--pull-three-sixths {
    left: -percentage(3/6); }

  .large-down--pull-four-sixths {
    left: -percentage(4/6); }

  .large-down--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .large-down--pull-one-eighth {
    left: -percentage(1/8); }

  .large-down--pull-two-eighths {
    left: -percentage(2/8); }

  .large-down--pull-three-eighths {
    left: -percentage(3/8); }

  .large-down--pull-four-eighths {
    left: -percentage(4/8); }

  .large-down--pull-five-eighths {
    left: -percentage(5/8); }

  .large-down--pull-six-eighths {
    left: -percentage(6/8); }

  .large-down--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .large-down--pull-one-tenth {
    left: -percentage(1/10); }

  .large-down--pull-two-tenths {
    left: -percentage(2/10); }

  .large-down--pull-three-tenths {
    left: -percentage(3/10); }

  .large-down--pull-four-tenths {
    left: -percentage(4/10); }

  .large-down--pull-five-tenths {
    left: -percentage(5/10); }

  .large-down--pull-six-tenths {
    left: -percentage(6/10); }

  .large-down--pull-seven-tenths {
    left: -percentage(7/10); }

  .large-down--pull-eight-tenths {
    left: -percentage(8/10); }

  .large-down--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .large-down--pull-one-twelfth {
    left: -percentage(1/12); }

  .large-down--pull-two-twelfths {
    left: -percentage(2/12); }

  .large-down--pull-three-twelfths {
    left: -percentage(3/12); }

  .large-down--pull-four-twelfths {
    left: -percentage(4/12); }

  .large-down--pull-five-twelfths {
    left: -percentage(5/12); }

  .large-down--pull-six-twelfths {
    left: -percentage(6/12); }

  .large-down--pull-seven-twelfths {
    left: -percentage(7/12); }

  .large-down--pull-eight-twelfths {
    left: -percentage(8/12); }

  .large-down--pull-nine-twelfths {
    left: -percentage(9/12); }

  .large-down--pull-ten-twelfths {
    left: -percentage(10/12); }

  .large-down--pull-eleven-twelfths {
    left: -percentage(11/12); } }
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  /* Halves */
  .large--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .large--pull-one-third {
    left: -percentage(1/3); }

  .large--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .large--pull-one-quarter {
    left: -percentage(1/4); }

  .large--pull-two-quarters {
    left: -percentage(2/4); }

  .large--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .large--pull-one-fifth {
    left: -percentage(1/5); }

  .large--pull-two-fifths {
    left: -percentage(2/5); }

  .large--pull-three-fifths {
    left: -percentage(3/5); }

  .large--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .large--pull-one-sixth {
    left: -percentage(1/6); }

  .large--pull-two-sixths {
    left: -percentage(2/6); }

  .large--pull-three-sixths {
    left: -percentage(3/6); }

  .large--pull-four-sixths {
    left: -percentage(4/6); }

  .large--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .large--pull-one-eighth {
    left: -percentage(1/8); }

  .large--pull-two-eighths {
    left: -percentage(2/8); }

  .large--pull-three-eighths {
    left: -percentage(3/8); }

  .large--pull-four-eighths {
    left: -percentage(4/8); }

  .large--pull-five-eighths {
    left: -percentage(5/8); }

  .large--pull-six-eighths {
    left: -percentage(6/8); }

  .large--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .large--pull-one-tenth {
    left: -percentage(1/10); }

  .large--pull-two-tenths {
    left: -percentage(2/10); }

  .large--pull-three-tenths {
    left: -percentage(3/10); }

  .large--pull-four-tenths {
    left: -percentage(4/10); }

  .large--pull-five-tenths {
    left: -percentage(5/10); }

  .large--pull-six-tenths {
    left: -percentage(6/10); }

  .large--pull-seven-tenths {
    left: -percentage(7/10); }

  .large--pull-eight-tenths {
    left: -percentage(8/10); }

  .large--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .large--pull-one-twelfth {
    left: -percentage(1/12); }

  .large--pull-two-twelfths {
    left: -percentage(2/12); }

  .large--pull-three-twelfths {
    left: -percentage(3/12); }

  .large--pull-four-twelfths {
    left: -percentage(4/12); }

  .large--pull-five-twelfths {
    left: -percentage(5/12); }

  .large--pull-six-twelfths {
    left: -percentage(6/12); }

  .large--pull-seven-twelfths {
    left: -percentage(7/12); }

  .large--pull-eight-twelfths {
    left: -percentage(8/12); }

  .large--pull-nine-twelfths {
    left: -percentage(9/12); }

  .large--pull-ten-twelfths {
    left: -percentage(10/12); }

  .large--pull-eleven-twelfths {
    left: -percentage(11/12); } }
@media only screen and (min-width: 768px) {
  /* Halves */
  .medium-up--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .medium-up--pull-one-third {
    left: -percentage(1/3); }

  .medium-up--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .medium-up--pull-one-quarter {
    left: -percentage(1/4); }

  .medium-up--pull-two-quarters {
    left: -percentage(2/4); }

  .medium-up--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .medium-up--pull-one-fifth {
    left: -percentage(1/5); }

  .medium-up--pull-two-fifths {
    left: -percentage(2/5); }

  .medium-up--pull-three-fifths {
    left: -percentage(3/5); }

  .medium-up--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .medium-up--pull-one-sixth {
    left: -percentage(1/6); }

  .medium-up--pull-two-sixths {
    left: -percentage(2/6); }

  .medium-up--pull-three-sixths {
    left: -percentage(3/6); }

  .medium-up--pull-four-sixths {
    left: -percentage(4/6); }

  .medium-up--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .medium-up--pull-one-eighth {
    left: -percentage(1/8); }

  .medium-up--pull-two-eighths {
    left: -percentage(2/8); }

  .medium-up--pull-three-eighths {
    left: -percentage(3/8); }

  .medium-up--pull-four-eighths {
    left: -percentage(4/8); }

  .medium-up--pull-five-eighths {
    left: -percentage(5/8); }

  .medium-up--pull-six-eighths {
    left: -percentage(6/8); }

  .medium-up--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .medium-up--pull-one-tenth {
    left: -percentage(1/10); }

  .medium-up--pull-two-tenths {
    left: -percentage(2/10); }

  .medium-up--pull-three-tenths {
    left: -percentage(3/10); }

  .medium-up--pull-four-tenths {
    left: -percentage(4/10); }

  .medium-up--pull-five-tenths {
    left: -percentage(5/10); }

  .medium-up--pull-six-tenths {
    left: -percentage(6/10); }

  .medium-up--pull-seven-tenths {
    left: -percentage(7/10); }

  .medium-up--pull-eight-tenths {
    left: -percentage(8/10); }

  .medium-up--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .medium-up--pull-one-twelfth {
    left: -percentage(1/12); }

  .medium-up--pull-two-twelfths {
    left: -percentage(2/12); }

  .medium-up--pull-three-twelfths {
    left: -percentage(3/12); }

  .medium-up--pull-four-twelfths {
    left: -percentage(4/12); }

  .medium-up--pull-five-twelfths {
    left: -percentage(5/12); }

  .medium-up--pull-six-twelfths {
    left: -percentage(6/12); }

  .medium-up--pull-seven-twelfths {
    left: -percentage(7/12); }

  .medium-up--pull-eight-twelfths {
    left: -percentage(8/12); }

  .medium-up--pull-nine-twelfths {
    left: -percentage(9/12); }

  .medium-up--pull-ten-twelfths {
    left: -percentage(10/12); }

  .medium-up--pull-eleven-twelfths {
    left: -percentage(11/12); } }
@media only screen and (max-width: 1023px) {
  /* Halves */
  .medium-down--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .medium-down--pull-one-third {
    left: -percentage(1/3); }

  .medium-down--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .medium-down--pull-one-quarter {
    left: -percentage(1/4); }

  .medium-down--pull-two-quarters {
    left: -percentage(2/4); }

  .medium-down--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .medium-down--pull-one-fifth {
    left: -percentage(1/5); }

  .medium-down--pull-two-fifths {
    left: -percentage(2/5); }

  .medium-down--pull-three-fifths {
    left: -percentage(3/5); }

  .medium-down--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .medium-down--pull-one-sixth {
    left: -percentage(1/6); }

  .medium-down--pull-two-sixths {
    left: -percentage(2/6); }

  .medium-down--pull-three-sixths {
    left: -percentage(3/6); }

  .medium-down--pull-four-sixths {
    left: -percentage(4/6); }

  .medium-down--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .medium-down--pull-one-eighth {
    left: -percentage(1/8); }

  .medium-down--pull-two-eighths {
    left: -percentage(2/8); }

  .medium-down--pull-three-eighths {
    left: -percentage(3/8); }

  .medium-down--pull-four-eighths {
    left: -percentage(4/8); }

  .medium-down--pull-five-eighths {
    left: -percentage(5/8); }

  .medium-down--pull-six-eighths {
    left: -percentage(6/8); }

  .medium-down--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .medium-down--pull-one-tenth {
    left: -percentage(1/10); }

  .medium-down--pull-two-tenths {
    left: -percentage(2/10); }

  .medium-down--pull-three-tenths {
    left: -percentage(3/10); }

  .medium-down--pull-four-tenths {
    left: -percentage(4/10); }

  .medium-down--pull-five-tenths {
    left: -percentage(5/10); }

  .medium-down--pull-six-tenths {
    left: -percentage(6/10); }

  .medium-down--pull-seven-tenths {
    left: -percentage(7/10); }

  .medium-down--pull-eight-tenths {
    left: -percentage(8/10); }

  .medium-down--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .medium-down--pull-one-twelfth {
    left: -percentage(1/12); }

  .medium-down--pull-two-twelfths {
    left: -percentage(2/12); }

  .medium-down--pull-three-twelfths {
    left: -percentage(3/12); }

  .medium-down--pull-four-twelfths {
    left: -percentage(4/12); }

  .medium-down--pull-five-twelfths {
    left: -percentage(5/12); }

  .medium-down--pull-six-twelfths {
    left: -percentage(6/12); }

  .medium-down--pull-seven-twelfths {
    left: -percentage(7/12); }

  .medium-down--pull-eight-twelfths {
    left: -percentage(8/12); }

  .medium-down--pull-nine-twelfths {
    left: -percentage(9/12); }

  .medium-down--pull-ten-twelfths {
    left: -percentage(10/12); }

  .medium-down--pull-eleven-twelfths {
    left: -percentage(11/12); } }
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  /* Halves */
  .medium--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .medium--pull-one-third {
    left: -percentage(1/3); }

  .medium--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .medium--pull-one-quarter {
    left: -percentage(1/4); }

  .medium--pull-two-quarters {
    left: -percentage(2/4); }

  .medium--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .medium--pull-one-fifth {
    left: -percentage(1/5); }

  .medium--pull-two-fifths {
    left: -percentage(2/5); }

  .medium--pull-three-fifths {
    left: -percentage(3/5); }

  .medium--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .medium--pull-one-sixth {
    left: -percentage(1/6); }

  .medium--pull-two-sixths {
    left: -percentage(2/6); }

  .medium--pull-three-sixths {
    left: -percentage(3/6); }

  .medium--pull-four-sixths {
    left: -percentage(4/6); }

  .medium--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .medium--pull-one-eighth {
    left: -percentage(1/8); }

  .medium--pull-two-eighths {
    left: -percentage(2/8); }

  .medium--pull-three-eighths {
    left: -percentage(3/8); }

  .medium--pull-four-eighths {
    left: -percentage(4/8); }

  .medium--pull-five-eighths {
    left: -percentage(5/8); }

  .medium--pull-six-eighths {
    left: -percentage(6/8); }

  .medium--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .medium--pull-one-tenth {
    left: -percentage(1/10); }

  .medium--pull-two-tenths {
    left: -percentage(2/10); }

  .medium--pull-three-tenths {
    left: -percentage(3/10); }

  .medium--pull-four-tenths {
    left: -percentage(4/10); }

  .medium--pull-five-tenths {
    left: -percentage(5/10); }

  .medium--pull-six-tenths {
    left: -percentage(6/10); }

  .medium--pull-seven-tenths {
    left: -percentage(7/10); }

  .medium--pull-eight-tenths {
    left: -percentage(8/10); }

  .medium--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .medium--pull-one-twelfth {
    left: -percentage(1/12); }

  .medium--pull-two-twelfths {
    left: -percentage(2/12); }

  .medium--pull-three-twelfths {
    left: -percentage(3/12); }

  .medium--pull-four-twelfths {
    left: -percentage(4/12); }

  .medium--pull-five-twelfths {
    left: -percentage(5/12); }

  .medium--pull-six-twelfths {
    left: -percentage(6/12); }

  .medium--pull-seven-twelfths {
    left: -percentage(7/12); }

  .medium--pull-eight-twelfths {
    left: -percentage(8/12); }

  .medium--pull-nine-twelfths {
    left: -percentage(9/12); }

  .medium--pull-ten-twelfths {
    left: -percentage(10/12); }

  .medium--pull-eleven-twelfths {
    left: -percentage(11/12); } }
@media only screen and (min-width: 480px) {
  /* Halves */
  .small-up--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .small-up--pull-one-third {
    left: -percentage(1/3); }

  .small-up--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .small-up--pull-one-quarter {
    left: -percentage(1/4); }

  .small-up--pull-two-quarters {
    left: -percentage(2/4); }

  .small-up--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .small-up--pull-one-fifth {
    left: -percentage(1/5); }

  .small-up--pull-two-fifths {
    left: -percentage(2/5); }

  .small-up--pull-three-fifths {
    left: -percentage(3/5); }

  .small-up--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .small-up--pull-one-sixth {
    left: -percentage(1/6); }

  .small-up--pull-two-sixths {
    left: -percentage(2/6); }

  .small-up--pull-three-sixths {
    left: -percentage(3/6); }

  .small-up--pull-four-sixths {
    left: -percentage(4/6); }

  .small-up--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .small-up--pull-one-eighth {
    left: -percentage(1/8); }

  .small-up--pull-two-eighths {
    left: -percentage(2/8); }

  .small-up--pull-three-eighths {
    left: -percentage(3/8); }

  .small-up--pull-four-eighths {
    left: -percentage(4/8); }

  .small-up--pull-five-eighths {
    left: -percentage(5/8); }

  .small-up--pull-six-eighths {
    left: -percentage(6/8); }

  .small-up--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .small-up--pull-one-tenth {
    left: -percentage(1/10); }

  .small-up--pull-two-tenths {
    left: -percentage(2/10); }

  .small-up--pull-three-tenths {
    left: -percentage(3/10); }

  .small-up--pull-four-tenths {
    left: -percentage(4/10); }

  .small-up--pull-five-tenths {
    left: -percentage(5/10); }

  .small-up--pull-six-tenths {
    left: -percentage(6/10); }

  .small-up--pull-seven-tenths {
    left: -percentage(7/10); }

  .small-up--pull-eight-tenths {
    left: -percentage(8/10); }

  .small-up--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .small-up--pull-one-twelfth {
    left: -percentage(1/12); }

  .small-up--pull-two-twelfths {
    left: -percentage(2/12); }

  .small-up--pull-three-twelfths {
    left: -percentage(3/12); }

  .small-up--pull-four-twelfths {
    left: -percentage(4/12); }

  .small-up--pull-five-twelfths {
    left: -percentage(5/12); }

  .small-up--pull-six-twelfths {
    left: -percentage(6/12); }

  .small-up--pull-seven-twelfths {
    left: -percentage(7/12); }

  .small-up--pull-eight-twelfths {
    left: -percentage(8/12); }

  .small-up--pull-nine-twelfths {
    left: -percentage(9/12); }

  .small-up--pull-ten-twelfths {
    left: -percentage(10/12); }

  .small-up--pull-eleven-twelfths {
    left: -percentage(11/12); } }
@media only screen and (max-width: 767px) {
  /* Halves */
  .small-down--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .small-down--pull-one-third {
    left: -percentage(1/3); }

  .small-down--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .small-down--pull-one-quarter {
    left: -percentage(1/4); }

  .small-down--pull-two-quarters {
    left: -percentage(2/4); }

  .small-down--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .small-down--pull-one-fifth {
    left: -percentage(1/5); }

  .small-down--pull-two-fifths {
    left: -percentage(2/5); }

  .small-down--pull-three-fifths {
    left: -percentage(3/5); }

  .small-down--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .small-down--pull-one-sixth {
    left: -percentage(1/6); }

  .small-down--pull-two-sixths {
    left: -percentage(2/6); }

  .small-down--pull-three-sixths {
    left: -percentage(3/6); }

  .small-down--pull-four-sixths {
    left: -percentage(4/6); }

  .small-down--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .small-down--pull-one-eighth {
    left: -percentage(1/8); }

  .small-down--pull-two-eighths {
    left: -percentage(2/8); }

  .small-down--pull-three-eighths {
    left: -percentage(3/8); }

  .small-down--pull-four-eighths {
    left: -percentage(4/8); }

  .small-down--pull-five-eighths {
    left: -percentage(5/8); }

  .small-down--pull-six-eighths {
    left: -percentage(6/8); }

  .small-down--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .small-down--pull-one-tenth {
    left: -percentage(1/10); }

  .small-down--pull-two-tenths {
    left: -percentage(2/10); }

  .small-down--pull-three-tenths {
    left: -percentage(3/10); }

  .small-down--pull-four-tenths {
    left: -percentage(4/10); }

  .small-down--pull-five-tenths {
    left: -percentage(5/10); }

  .small-down--pull-six-tenths {
    left: -percentage(6/10); }

  .small-down--pull-seven-tenths {
    left: -percentage(7/10); }

  .small-down--pull-eight-tenths {
    left: -percentage(8/10); }

  .small-down--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .small-down--pull-one-twelfth {
    left: -percentage(1/12); }

  .small-down--pull-two-twelfths {
    left: -percentage(2/12); }

  .small-down--pull-three-twelfths {
    left: -percentage(3/12); }

  .small-down--pull-four-twelfths {
    left: -percentage(4/12); }

  .small-down--pull-five-twelfths {
    left: -percentage(5/12); }

  .small-down--pull-six-twelfths {
    left: -percentage(6/12); }

  .small-down--pull-seven-twelfths {
    left: -percentage(7/12); }

  .small-down--pull-eight-twelfths {
    left: -percentage(8/12); }

  .small-down--pull-nine-twelfths {
    left: -percentage(9/12); }

  .small-down--pull-ten-twelfths {
    left: -percentage(10/12); }

  .small-down--pull-eleven-twelfths {
    left: -percentage(11/12); } }
@media only screen and (min-width: 480px) and (max-width: 767px) {
  /* Halves */
  .small--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .small--pull-one-third {
    left: -percentage(1/3); }

  .small--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .small--pull-one-quarter {
    left: -percentage(1/4); }

  .small--pull-two-quarters {
    left: -percentage(2/4); }

  .small--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .small--pull-one-fifth {
    left: -percentage(1/5); }

  .small--pull-two-fifths {
    left: -percentage(2/5); }

  .small--pull-three-fifths {
    left: -percentage(3/5); }

  .small--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .small--pull-one-sixth {
    left: -percentage(1/6); }

  .small--pull-two-sixths {
    left: -percentage(2/6); }

  .small--pull-three-sixths {
    left: -percentage(3/6); }

  .small--pull-four-sixths {
    left: -percentage(4/6); }

  .small--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .small--pull-one-eighth {
    left: -percentage(1/8); }

  .small--pull-two-eighths {
    left: -percentage(2/8); }

  .small--pull-three-eighths {
    left: -percentage(3/8); }

  .small--pull-four-eighths {
    left: -percentage(4/8); }

  .small--pull-five-eighths {
    left: -percentage(5/8); }

  .small--pull-six-eighths {
    left: -percentage(6/8); }

  .small--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .small--pull-one-tenth {
    left: -percentage(1/10); }

  .small--pull-two-tenths {
    left: -percentage(2/10); }

  .small--pull-three-tenths {
    left: -percentage(3/10); }

  .small--pull-four-tenths {
    left: -percentage(4/10); }

  .small--pull-five-tenths {
    left: -percentage(5/10); }

  .small--pull-six-tenths {
    left: -percentage(6/10); }

  .small--pull-seven-tenths {
    left: -percentage(7/10); }

  .small--pull-eight-tenths {
    left: -percentage(8/10); }

  .small--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .small--pull-one-twelfth {
    left: -percentage(1/12); }

  .small--pull-two-twelfths {
    left: -percentage(2/12); }

  .small--pull-three-twelfths {
    left: -percentage(3/12); }

  .small--pull-four-twelfths {
    left: -percentage(4/12); }

  .small--pull-five-twelfths {
    left: -percentage(5/12); }

  .small--pull-six-twelfths {
    left: -percentage(6/12); }

  .small--pull-seven-twelfths {
    left: -percentage(7/12); }

  .small--pull-eight-twelfths {
    left: -percentage(8/12); }

  .small--pull-nine-twelfths {
    left: -percentage(9/12); }

  .small--pull-ten-twelfths {
    left: -percentage(10/12); }

  .small--pull-eleven-twelfths {
    left: -percentage(11/12); } }
@media only screen and (max-width: 479px) {
  /* Halves */
  .extra-small--pull-one-half {
    left: -percentage(1/2); }

  /* Thirds */
  .extra-small--pull-one-third {
    left: -percentage(1/3); }

  .extra-small--pull-two-thirds {
    left: -percentage(2/3); }

  /* Quarters */
  .extra-small--pull-one-quarter {
    left: -percentage(1/4); }

  .extra-small--pull-two-quarters {
    left: -percentage(2/4); }

  .extra-small--pull-three-quarters {
    left: -percentage(3/4); }

  /* Fifths */
  .extra-small--pull-one-fifth {
    left: -percentage(1/5); }

  .extra-small--pull-two-fifths {
    left: -percentage(2/5); }

  .extra-small--pull-three-fifths {
    left: -percentage(3/5); }

  .extra-small--pull-four-fifths {
    left: -percentage(4/5); }

  /* Sixths */
  .extra-small--pull-one-sixth {
    left: -percentage(1/6); }

  .extra-small--pull-two-sixths {
    left: -percentage(2/6); }

  .extra-small--pull-three-sixths {
    left: -percentage(3/6); }

  .extra-small--pull-four-sixths {
    left: -percentage(4/6); }

  .extra-small--pull-five-sixths {
    left: -percentage(5/6); }

  /* Eighths */
  .extra-small--pull-one-eighth {
    left: -percentage(1/8); }

  .extra-small--pull-two-eighths {
    left: -percentage(2/8); }

  .extra-small--pull-three-eighths {
    left: -percentage(3/8); }

  .extra-small--pull-four-eighths {
    left: -percentage(4/8); }

  .extra-small--pull-five-eighths {
    left: -percentage(5/8); }

  .extra-small--pull-six-eighths {
    left: -percentage(6/8); }

  .extra-small--pull-seven-eighths {
    left: -percentage(7/8); }

  /* Tenths */
  .extra-small--pull-one-tenth {
    left: -percentage(1/10); }

  .extra-small--pull-two-tenths {
    left: -percentage(2/10); }

  .extra-small--pull-three-tenths {
    left: -percentage(3/10); }

  .extra-small--pull-four-tenths {
    left: -percentage(4/10); }

  .extra-small--pull-five-tenths {
    left: -percentage(5/10); }

  .extra-small--pull-six-tenths {
    left: -percentage(6/10); }

  .extra-small--pull-seven-tenths {
    left: -percentage(7/10); }

  .extra-small--pull-eight-tenths {
    left: -percentage(8/10); }

  .extra-small--pull-nine-tenths {
    left: -percentage(9/10); }

  /* Twelfths */
  .extra-small--pull-one-twelfth {
    left: -percentage(1/12); }

  .extra-small--pull-two-twelfths {
    left: -percentage(2/12); }

  .extra-small--pull-three-twelfths {
    left: -percentage(3/12); }

  .extra-small--pull-four-twelfths {
    left: -percentage(4/12); }

  .extra-small--pull-five-twelfths {
    left: -percentage(5/12); }

  .extra-small--pull-six-twelfths {
    left: -percentage(6/12); }

  .extra-small--pull-seven-twelfths {
    left: -percentage(7/12); }

  .extra-small--pull-eight-twelfths {
    left: -percentage(8/12); }

  .extra-small--pull-nine-twelfths {
    left: -percentage(9/12); }

  .extra-small--pull-ten-twelfths {
    left: -percentage(10/12); }

  .extra-small--pull-eleven-twelfths {
    left: -percentage(11/12); } }
/*================ Rich Text Editor ================*/
.rte h3 {
  font-size: 1.25rem;
  line-height: 1.5; }
.rte h4 {
  font-size: 1rem;
  line-height: 1.6; }
.rte h5 {
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic; }
.rte h6 {
  font-size: 0.875rem;
  line-height: 1.4; }
.rte h1, .rte h2, .rte h3, .rte h4, .rte h5, .rte h6 {
  margin: 30px 0; }
.rte img {
  height: auto; }
.rte table {
  table-layout: fixed; }
.rte ul,
.rte ol {
  margin: 15px 0 15px 30px;
  padding: 0; }
.rte li {
  list-style: inherit; }
.rte ul {
  list-style: disc outside; }
  .rte ul ul {
    list-style: circle outside; }
    .rte ul ul ul {
      list-style: square outside; }
.rte cite {
  font-size: 1rem; }
.rte input,
.rte textarea,
.rte select {
  margin: 5px 5px 5px 0; }

.text-center.rte ul,
.text-center.rte ol,
.text-center .rte ul,
.text-center .rte ol,
.center.rte ul,
.center.rte ol,
.center .rte ul,
.center .rte ol {
  margin-left: 0;
  list-style-position: inside; }

.expanded-width {
  margin-left: -30px;
  margin-right: -30px; }

@media only screen and (max-width: 767px) {
  .expanded-width {
    margin-left: -20px;
    margin-right: -20px; } }
.rte .embed-container {
  overflow: initial;
  max-width: initial;
  padding-bottom: 0;
  height: auto; }

.rte-table {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

.rte__video-wrapper {
  position: relative;
  height: 0;
  margin-left: -30px;
  margin-right: -30px;
  overflow: hidden;
  padding-bottom: calc(56.25% + ((30px * 2) * 0.5625));
  border-radius: 0px; }
  .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; }

@media only screen and (max-width: 767px) {
  .rte__video-wrapper {
    margin-left: -20px;
    margin-right: -20px; } }
@media only screen and (max-width: 479px) {
  .rte .expanded-width img {
    border-radius: 0; }

  .rte__video-wrapper {
    border-radius: 0; } }
/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
@media only screen and (max-width: 479px) {
  .responsive-table {
    width: 100%; }
    .responsive-table thead {
      display: none; }
    .responsive-table tr {
      display: block; }
    .responsive-table th,
    .responsive-table td {
      display: block;
      text-align: right !important;
      padding: 15px;
      margin: 0; }
    .responsive-table td::before {
      content: attr(data-label);
      float: left;
      text-align: center;
      padding-right: 10px; }
    .responsive-table td:empty::after {
      content: '-';
      opacity: 0; }

  .responsive-table-row + .responsive-table-row,
  tfoot > .responsive-table-row:first-child {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; }
    .responsive-table-row + .responsive-table-row::after,
    tfoot > .responsive-table-row:first-child::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      border-bottom: 1px solid #e8e8e8; } }
/*============================================================================
  Form scaffolding
    - Selectors setup for you to style form elements how you want
    - Focus, error, and disabled states are set to be extended
==============================================================================*/
input,
textarea,
select {
  background-color: transparent;
  color: inherit;
  border: 1px solid #c7c7c7;
  border-radius: 0px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4em;
  max-width: 100%;
  padding: 12px 15px;
  margin: 5px 5px 5px 0; }
  input[disabled],
  textarea[disabled],
  select[disabled] {
    cursor: default;
    background-color: black;
    border-color: black; }

textarea {
  min-height: 100px; }

/*================ Custom select style ================*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke='rgba(31, 31, 31, 0.999)' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-color: transparent;
  background-size: 18px;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer; }

select::-ms-expand {
  display: none; }

/*================ Error styles ================*/
input.input-error,
select.input-error,
textarea.input-error {
  border-color: black;
  background-color: transparent;
  color: black; }

.errors {
  background-color: #fce1e1;
  color: #f05c5d;
  padding: 5px 10px; }

.error-message {
  background-color: #fce1e1;
  color: #f05c5d;
  padding: 5px 10px 0; }

.form-success {
  background-color: #dfefdf;
  color: #5ead60;
  padding: 5px 10px; }

/*================ Wrapper for input style ================*/
.input-wrapper {
  position: relative;
  border: 1px solid #c7c7c7;
  border-radius: 0px; }
  .input-wrapper label {
    position: absolute;
    left: 15px;
    top: 1.05em;
    margin-top: -0.7em;
    font-size: 0.75rem;
    line-height: 1.4em;
    color: #787878;
    transition: all 100ms;
    cursor: text;
    pointer-events: none; }
  .input-wrapper input,
  .input-wrapper textarea,
  .input-wrapper select {
    margin: 0;
    border: 0;
    padding-top: calc(12px * 1.6 - 1px);
    padding-bottom: calc(12px * 0.4 - 1px);
    width: 100%;
    color: inherit; }
  .input-wrapper textarea {
    width: calc(100% - 5px); }
  .input-wrapper.is-empty:not(.in-focus) label, .input-wrapper:empty:not(.in-focus) label {
    top: calc((24px + 1.4em) / 2);
    font-size: 1rem; }

.input-wrapper--overlay-link {
  display: flex; }
  .input-wrapper--overlay-link a {
    white-space: nowrap;
    align-self: center;
    margin-right: 15px; }

.form-row {
  margin: 15px 0; }

.input-wrapper input:-webkit-autofill {
  animation-name: onAutoFillStart;
  transition: background-color 50000s ease-in-out 0s; }
.input-wrapper input:not(:-webkit-autofill) {
  animation-name: onAutoFillCancel; }

.placeholder-svg {
  display: block;
  fill: #c8cbcd;
  background-color: #e5eaea;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%; }

.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; }

.placeholder-landscape-container {
  position: relative;
  overflow: hidden;
  height: 0;
  padding: 66.6% 0 0 0; }
  .placeholder-landscape-container .placeholder-svg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .placeholder-svg {
    width: 100%;
    height: 500px; }
    .one-quarter .placeholder-svg {
      height: 275px; } }
html,
body {
  background-color: white;
  color: #1f1f1f; }

body::after {
  content: ' ';
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms; }

body.search-bar-in-focus::after,
body.search-bar-open::after {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer; }

main {
  padding-bottom: 30px;
  background-color: white;
  position: relative;
  z-index: 1; }
  main::before {
    content: ' ';
    display: table; }
  main .accent-background {
    position: absolute;
    content: '';
    width: 100%;
    left: 0;
    top: 0;
    background-color: white; }
  main .accent-background + .shopify-section {
    position: relative;
    margin-top: 60px; }
  main .accent-background + .shopify-section--with-padding {
    margin-top: 30px; }
  @media only screen and (max-width: 767px) {
    main .accent-background {
      max-height: 25vh; } }
  @media only screen and (max-width: 480px) {
    main .accent-background {
      display: none; }
    main .accent-background + .shopify-section {
      margin-top: 0; }
      main .accent-background + .shopify-section .large-row {
        margin-top: 0; } }

.template-index main {
  padding-bottom: 0; }

.template-blog main,
.template-article main {
  padding-bottom: 0; }

.template-password main {
  background-color: transparent; }

.page-width {
  max-width: 1440px;
  position: relative;
  margin: 0 auto; }

.template-index .shopify-section:first-child .featured-blog {
  margin-top: 0; }

.section {
  padding-bottom: 15px;
  padding-top: 15px;
  width: 100%; }

.small-section {
  padding-bottom: 15px;
  padding-top: 15px; }

.large-section {
  padding-bottom: 60px;
  padding-top: 60px; }

.container {
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%; }

.reading-width {
  margin: 0 auto;
  max-width: 960px;
  padding-left: 30px;
  padding-right: 30px; }

.row {
  margin-top: 15px;
  margin-bottom: 15px; }

.large-row {
  margin-top: 30px;
  margin-bottom: 30px; }

.large-row-over {
  margin-top: 30px; }

.large-row-under {
  margin-bottom: 30px; }

.very-large-row-under {
  margin-bottom: 60px; }

.full-width {
  min-width: 100%; }
  .full-width .rimage-outer-wrapper {
    min-width: 100%; }

.full-height {
  min-height: 100vh; }

.global-border-radius, .rte img, .cart-item .image, .cart-mobile-image img, .full-width-slideshow .slick-list, .blog-articles-list__image .rimage-outer-wrapper, .collection-list-plain .product-block__image .rimage-outer-wrapper, .article-page .single-column-layout .article-featured-image.mobile-only .rimage-outer-wrapper, .article-overlay, .article__heading-image .rimage-outer-wrapper, .image-two .rimage-background {
  border-radius: 0px;
  overflow: hidden; }

.global-border-radius-small {
  border-radius: 0px;
  overflow: hidden; }

.global-border-radius-overlays {
  border-radius: 0px;
  overflow: hidden; }

.relative {
  position: relative; }

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.mobile-menu-open {
  max-height: 100vh;
  overflow: hidden; }

@media only screen and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px; }

  .large-row {
    margin-top: 20px;
    margin-bottom: 20px; }

  .large-row-over {
    margin-top: 20px; }

  .large-row-under {
    margin-bottom: 20px; }

  .very-large-row-under {
    margin-bottom: 40px; }

  .large-section {
    padding-bottom: 45px;
    padding-top: 45px; }

  .full-height {
    min-height: initial; }

  .reading-width {
    padding-left: 20px;
    padding-right: 20px; }

  .reading-width--no-mobile-padding {
    padding-left: 0;
    padding-right: 0; } }
@media only screen and (max-width: 479px) {
  .container--no-mobile-padding {
    padding-left: 0;
    padding-right: 0; } }
html,
body {
  font-size: 15px; }
  @media only screen and (min-width: 2560px) {
    html,
    body {
      /*   	font-size: $body-font-size * 1.3; */ } }
  @media only screen and (max-width: 1023px) {
    html,
    body {
      font-size: 12px; } }

body {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6; }

h1, h2, h3, h4, h5, h6, .title, blockquote {
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4; }
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .title a, blockquote a {
    color: inherit;
    text-decoration: none; }
    h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, .title a:hover, blockquote a:hover {
      color: inherit;
      text-decoration: none; }

.large-title, .rte h1, .subscribe-form__side-heading, .article-page .single-column-layout.with-image .article-overlay h1, .product-detail__title {
  font-size: 2.25rem;
  line-height: 1.3; }

.giant-title {
  font-size: 3rem;
  line-height: 1.3; }

.small-title, .theme-product-reviews .spr-header-title, .theme-product-reviews .spr-form-title {
  font-size: 1.5rem;
  line-height: 1.4; }

.small-text, small, th, .willstagram__overlay, .jdgm-prev-badge__stars, .jdgm-prev-badge__text {
  font-size: 0.875rem;
  line-height: 1.4; }

.tiny-text, .product-detail__adjacent-label,
.product-detail__sku,
.product-detail__type, .theme-product-reviews-summary, .theme-product-reviews .spr-review-header-byline, .theme-product-reviews .spr-review-reportreview, .breadcrumbs, .article__meta, .styled-dropdown--label-small label, .styled-dropdown--label-inside label, .cart-summary__quantity {
  font-size: 0.75rem;
  line-height: 1.5; }

blockquote {
  margin: 30px 30px 30px 0;
  padding: 0 0 0 30px;
  border-left: 4px solid #e8e8e8; }

hr {
  margin: 30px 0;
  padding: 0;
  border: 0;
  height: 0;
  border-bottom: 1px solid #e8e8e8; }

p {
  margin: 15px 0; }

a {
  text-decoration: underline;
  color: #1f1f1f;
  transition: color 150ms;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip: ink; }
  a:hover {
    color: black; }

button.standard-link, button.add-to-wishl, .star button.collection-shop-now, .planet-top button.collection-shop-now, .planet-bottom button.collection-shop-now,
.standard-link,
.add-to-wishl,
.star .collection-shop-now,
.planet-top .collection-shop-now,
.planet-bottom .collection-shop-now {
  color: #1f1f1f;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip: ink; }
  button.standard-link.standard-link--inherit-color, button.add-to-wishl, .star button.standard-link--inherit-color.collection-shop-now, .star button.collection-shop-now.add-to-wishl, .planet-top button.standard-link--inherit-color.collection-shop-now, .planet-top button.collection-shop-now.add-to-wishl, .planet-bottom button.standard-link--inherit-color.collection-shop-now, .planet-bottom button.collection-shop-now.add-to-wishl,
  .standard-link.standard-link--inherit-color,
  .add-to-wishl,
  .star .standard-link--inherit-color.collection-shop-now,
  .star .collection-shop-now.add-to-wishl,
  .planet-top .standard-link--inherit-color.collection-shop-now,
  .planet-top .collection-shop-now.add-to-wishl,
  .planet-bottom .standard-link--inherit-color.collection-shop-now,
  .planet-bottom .collection-shop-now.add-to-wishl {
    color: inherit; }

.plain-link, .theme-product-reviews-summary, .breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: opacity 150ms; }
  .plain-link:hover, .theme-product-reviews-summary:hover, .breadcrumbs a:hover {
    color: inherit;
    text-decoration: none;
    opacity: 0.8; }

.text-left {
  text-align: center; }

.center, .text-center {
  text-align: center; }

.text-right {
  text-align: right; }

@media only screen and (max-width: 767px) {
  h1, h2, h3, h4, h5, h6, .title, blockquote {
    font-size: 1.25rem; }

  .giant-title {
    font-size: 2.25rem; }

  .large-title, .rte h1, .subscribe-form__side-heading, .promotional-row .promotional-row__content .promotional-row__title, .article-page .single-column-layout.with-image .article-overlay h1, .product-detail__title {
    font-size: 1.5rem; }

  .small-title, .theme-product-reviews .spr-header-title, .theme-product-reviews .spr-form-title {
    font-size: 1.25rem; } }
.tag {
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
  padding: 0.5em 1em;
  background: #f3f3f3;
  color: inherit;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.5; }
  .tag:hover {
    background: #ededed;
    color: inherit; }

table {
  margin: 30px auto;
  width: 100%;
  border-collapse: collapse; }

tr {
  border: none; }

th,
td {
  padding: 15px;
  text-align: left;
  border-top: 1px solid #e8e8e8; }

th {
  font-weight: normal; }

/*================ TEMPLATES ================*/
.collection-header .product-block {
  width: 50%;
  margin: 120px auto; }

.standout-collection-bg {
  background-color: #ffede5;
  color: #000; }

.collection-header--split .collection-header__content-container {
  padding-left: 20px;
  padding-right: 20px; }

@media only screen and (min-width: 768px) {
  .collection-header--split {
    display: flex;
    align-items: center;
    width: 100%; }
    .collection-header--split .collection-header__container {
      width: 50%; }
      .collection-header--split .collection-header__container .overlay {
        width: calc(100% - 120px); }
    .collection-header--split .collection-header__image-container {
      width: 40%;
      height: auto; }
      .collection-header--split .collection-header__image-container .rimage-outer-wrapper {
        margin-left: 0;
        width: 100%; }
    .collection-header--split .collection-header__content-container {
      padding-left: 45px;
      padding-right: 45px;
      width: 60%; }
    .collection-header--split.collection-header--with-product {
      align-items: initial; } }
.collection-header__content-container {
  padding-top: 30px;
  padding-bottom: 30px; }
  .collection-header__content-container .large-title, .collection-header__content-container .rte h1, .rte .collection-header__content-container h1, .collection-header__content-container .subscribe-form__side-heading, .collection-header__content-container .article-page .single-column-layout.with-image .article-overlay h1, .article-page .single-column-layout.with-image .article-overlay .collection-header__content-container h1, .collection-header__content-container .product-detail__title {
    margin-top: 0; }
    @media only screen and (min-width: 768px) {
      .collection-header__content-container .large-title, .collection-header__content-container .rte h1, .rte .collection-header__content-container h1, .collection-header__content-container .subscribe-form__side-heading, .collection-header__content-container .article-page .single-column-layout.with-image .article-overlay h1, .article-page .single-column-layout.with-image .article-overlay .collection-header__content-container h1, .collection-header__content-container .product-detail__title {
        font-size: 2.5rem; } }
  .collection-header__content-container .collection-header__description {
    margin-top: 15px; }
    @media only screen and (min-width: 768px) {
      .collection-header__content-container .collection-header__description {
        font-size: 120%; } }

.collection-header__image-container .rimage-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }
  @media only screen and (max-width: 767px) {
    .collection-header__image-container .rimage-background {
      position: static; } }

.collection-header__image-container .mobile-only {
  display: none; }

@media only screen and (max-width: 767px) {
  .collection-header__image-container .desktop-only {
    display: none; }

  .collection-header__image-container .mobile-only {
    display: block; } }
@media only screen and (max-width: 767px) {
  .collection-header__product-container {
    display: none; } }

.collection-filters-container {
  /* background-color: $color-filter-bar; */
  background-color: transparent;
  border-bottom: 4px solid #f5ebe1;
  border-top: none !important;
  color: #333333;
  position: relative;
  z-index: 1;
  margin: 0 0px 60px;
  padding: 30px 0px;
  width: 100%; }
  .collection-filters-container select {
    width: 100%; }
  .collection-filters-container .select2-container {
    display: block;
    width: auto !important; }
  .collection-filters-container .collection-filters .styled-dropdown .select2-selection,
  .collection-filters-container .collection-sort .styled-dropdown .select2-selection {
    border-color: rgba(0, 0, 0, 0.2); }
    .collection-filters-container .collection-filters .styled-dropdown .select2-selection .select2-selection__arrow b,
    .collection-filters-container .collection-sort .styled-dropdown .select2-selection .select2-selection__arrow b {
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke='%23373737' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); }
  .collection-filters-container .collection-filters-container__close {
    display: none; }
  @media only screen and (min-width: 931px) {
    .collection-filters-container.collection-filters-container--overlap {
      top: -60px;
      margin: 0 60px -60px 60px; } }
  @media only screen and (max-width: 930px) {
    .collection-filters-container {
      display: block;
      position: absolute;
      left: 0;
      bottom: 100%;
      width: 100%;
      margin: 0;
      padding: 45px 30px 0;
      border-radius: 0;
      border-top: 1px solid #e8e8e8;
      transform: translate3d(0, 100%, 0);
      transition: transform cubic-bezier(0.4, 0, 0.2, 1) 500ms; }
      .collection-filters-container .grid {
        margin-left: 0; }
      .collection-filters-container .grid__item {
        float: none;
        width: auto;
        margin: 0 0 30px;
        padding: 0; }
      .collection-filters-container .collection-filters-container__close {
        display: none;
        position: absolute;
        top: 10px;
        right: 10px; }
      .collection-filters-container.show-filters .collection-sort {
        display: none; }
      .collection-filters-container.show-sort .collection-filters {
        display: none; }
      .collection-filters-container .collection-filters {
        margin-bottom: 0; }
        .collection-filters-container .collection-filters > .grid {
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between; }
          .collection-filters-container .collection-filters > .grid > .grid__item {
            width: calc(50% - 15px); }
      .collection-filters-container .collection-sort .styled-dropdown {
        margin-bottom: 15px;
        width: calc(50% - 15px); } }
  @media only screen and (max-width: 767px) {
    .collection-filters-container .collection-sort.grid__item {
      width: 85%; } }
  @media only screen and (max-width: 479px) {
    .collection-filters-container .collection-filters > .grid > .grid__item {
      width: 100%; }
    .collection-filters-container .styled-dropdown,
    .collection-filters-container .collection-sort .styled-dropdown {
      width: 100%; } }

.collection-filter-control {
  display: none;
  position: relative;
  z-index: 2; }
  .collection-filter-control button {
    float: left;
    width: 50%;
    padding: 18px;
    background: white; }
    .collection-filter-control button:nth-child(2) {
      border-left: 1px solid #e8e8e8; }
    .collection-filter-control button:hover {
      background: white; }
  @media only screen and (min-width: 931px) {
    .collection-filter-control {
      display: none; } }

.collection-product-list {
  transition: opacity 0.2s; }

@media only screen and (max-width: 930px) {
  .collection-filters-row {
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white; }
    .collection-filters-row .collection-filter-control {
      border-top: 1px solid #e8e8e8; }
      .collection-filters-row .collection-filter-control .btn--plain, .collection-filters-row .collection-filter-control .payment-buttons .shopify-payment-button__more-options, .payment-buttons .collection-filters-row .collection-filter-control .shopify-payment-button__more-options {
        border-radius: 0; } }
@media only screen and (max-width: 479px) {
  .collection-header {
    border-radius: 0; }

  .collection-product-list {
    padding-left: 20px;
    padding-right: 20px; } }
.cart-item {
  border-bottom: 1px solid #e8e8e8;
  padding-top: 30px;
  padding-bottom: 15px;
  margin-top: 30px;
  flex-wrap: nowrap; }
  .cart-item.cart-item--titles {
    border-top: 1px solid #e8e8e8;
    font-size: 0.875rem;
    padding-bottom: 15px;
    padding-top: 0; }
    .cart-item.cart-item--titles .description,
    .cart-item.cart-item--titles .price,
    .cart-item.cart-item--titles .quantity,
    .cart-item.cart-item--titles .total {
      padding-top: 15px;
      padding-left: 0; }
  .cart-item .image {
    width: 200px;
    display: block;
    flex: 0 0 auto; }
    @media only screen and (max-width: 1023px) {
      .cart-item .image {
        width: 150px; } }
    .cart-item .image img {
      display: block; }
  .cart-item .description {
    flex-grow: 1;
    padding-left: 30px;
    padding-top: 15px; }
  .cart-item .description__title {
    text-decoration: none;
    color: inherit;
    font-size: 1rem; }
  .cart-item .description__variant,
  .cart-item .description__vendor {
    color: rgba(31, 31, 31, 0.7);
    margin: 0; }
  .cart-item .description__variant {
    font-size: 0.875rem; }
  .cart-item .price,
  .cart-item .quantity,
  .cart-item .total {
    width: calc(100% / 6);
    min-width: 145px;
    flex: 0 0 auto; }
  .cart-item .price {
    font-size: 1rem; }
  .cart-item .original-price {
    margin-left: 0.5em;
    text-decoration: line-through;
    opacity: 0.5; }
  @media only screen and (max-width: 1023px) {
    .cart-item .price {
      width: 120px;
      min-width: 120px; }
    .cart-item .total {
      width: 100px;
      min-width: 100px; } }
  .cart-item .quantity {
    padding-top: 5px; }
  .cart-item .quantity__change {
    justify-content: center; }
  .cart-item .quantity__plus,
  .cart-item .quantity__minus,
  .cart-item .quantity__number {
    height: 38px;
    width: 38px; }
  .cart-item .quantity__plus,
  .cart-item .quantity__minus {
    border-radius: 0px;
    border: 1px solid #e8e8e8;
    padding: 3px;
    margin: 0 5px;
    position: relative; }
    .cart-item .quantity__plus .icon,
    .cart-item .quantity__minus .icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    .cart-item .quantity__plus:hover,
    .cart-item .quantity__minus:hover {
      border: 1px solid #e8e8e8; }
  .cart-item .quantity__number {
    border: 0;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    color: inherit; }
  .cart-item .quantity__remove {
    color: inherit;
    text-decoration: none; }
  .cart-item .quantity__remove-x {
    height: 14px;
    width: 14px;
    vertical-align: sub; }
    .cart-item .quantity__remove-x svg {
      height: 100%;
      width: 100%; }
  .cart-item .price,
  .cart-item .total {
    padding-top: 15px; }
  .cart-item .total {
    text-align: right; }

.quantity__unusable {
  visibility: hidden;
  pointer-events: none; }

.cart-mobile-image {
  display: none;
  max-width: 200px; }
  .cart-mobile-image img {
    display: block; }

.total__title {
  display: inline-block;
  margin-right: 2em; }
  @media only screen and (max-width: 767px) {
    .total__title {
      display: block;
      width: 100%;
      margin: 0; } }

.total__amount {
  display: inline-block; }
  @media only screen and (max-width: 767px) {
    .total__amount {
      display: block;
      width: 100%; } }

@media only screen and (max-width: 767px) {
  .subtotal-row {
    display: flex;
    flex-direction: column-reverse; }

  .total {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; } }
.shipping-title {
  padding-top: 1.2em; }
  @media only screen and (max-width: 767px) {
    .shipping-title {
      padding-top: 0;
      text-align: center; } }

.cart-terms__checkbox {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  user-select: none;
  line-height: 24px; }
  .cart-terms__checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    left: 0;
    top: 0; }
    .cart-terms__checkbox input:checked ~ .cart-terms__check svg {
      opacity: 1; }

.cart-terms__check {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border: 1px solid #e8e8e8; }
  .cart-terms__check svg {
    opacity: 0;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.25s; }

.cart-submit {
  margin-right: 0; }

.cart-finish {
  text-align: center; }
  .cart-finish .cart-submit {
    width: 100%; }

.cart-continue {
  margin-bottom: 30px; }

.cart-continue-shopping {
  text-align: center;
  width: 100%;
  display: block;
  margin: 30px 0 0 auto; }

.cart-notes {
  margin-top: 15px;
  width: 50%; }

.shipping-calculator,
.cart-notes {
  display: none; }

.cart-trigger,
.shipping-calculator,
.cart-notes {
  margin-bottom: 15px; }

.shipping-calculator-form .field {
  width: 30%;
  margin: 15px 30px 15px 0; }
  .shipping-calculator-form .field:nth-child(3) {
    margin-right: 0; }
  .shipping-calculator-form .field.calculator-submit {
    margin-right: 0;
    margin-left: auto; }
  .shipping-calculator-form .field .get-rates {
    margin: 0;
    width: 100%; }

.shipping-calculator .success {
  margin-bottom: 60px; }

@media only screen and (max-width: 767px) {
  .cart-items {
    margin-top: 30px; }

  .cart-item-container {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 20px;
    margin-bottom: 30px;
    display: flex; }

  .cart-item {
    padding: 0;
    margin-top: 0;
    flex-direction: column;
    width: 70%;
    border: 0;
    height: 100%; }
    .cart-item .image,
    .cart-item .total {
      display: none; }
    .cart-item .description__title,
    .cart-item .price,
    .cart-item .quantity {
      font-size: 1.15rem; }
    .cart-item .description__variant,
    .cart-item .quantity__remove .tiny-text,
    .cart-item .quantity__remove .product-detail__adjacent-label,
    .cart-item .quantity__remove .product-detail__sku,
    .cart-item .quantity__remove .product-detail__type,
    .cart-item .quantity__remove .theme-product-reviews-summary,
    .cart-item .quantity__remove .theme-product-reviews .spr-review-header-byline,
    .theme-product-reviews .cart-item .quantity__remove .spr-review-header-byline,
    .cart-item .quantity__remove .theme-product-reviews .spr-review-reportreview,
    .theme-product-reviews .cart-item .quantity__remove .spr-review-reportreview,
    .cart-item .quantity__remove .breadcrumbs,
    .cart-item .quantity__remove .article__meta,
    .cart-item .quantity__remove .styled-dropdown--label-small label,
    .styled-dropdown--label-small .cart-item .quantity__remove label,
    .cart-item .quantity__remove .styled-dropdown--label-inside label,
    .styled-dropdown--label-inside .cart-item .quantity__remove label,
    .cart-item .quantity__remove .cart-summary__quantity {
      font-size: 1rem; }
    .cart-item .description,
    .cart-item .price,
    .cart-item .quantity {
      padding-left: 60px; }
    .cart-item .price,
    .cart-item .quantity {
      text-align: left;
      width: auto; }
    .cart-item .description {
      padding-top: 0; }
    .cart-item .price {
      padding-bottom: 20px; }
    .cart-item .quantity__change {
      justify-content: flex-start; }
    .cart-item .quantity__minus,
    .cart-item .quantity__plus {
      margin: 0; }
    .cart-item .quantity__remove {
      display: block;
      padding-top: 20px; }

  .cart-mobile-image {
    display: block;
    width: 30%; }

  .cart-item--titles {
    display: none; }

  .cart-checks .cart-checks__titles {
    display: block;
    text-align: center; }

  .cart-terms__checkbox {
    display: inline-block;
    margin-bottom: 20px; }

  .cart-trigger {
    margin: 0 auto 20px; }

  .shipping-calculator-container,
  .cart-notes-container {
    text-align: center; }

  .cart-finish .cart-submit,
  .cart-continue-shopping {
    text-align: center;
    width: 100%; }

  .cart-continue {
    margin-bottom: 40px; }

  .cart-notes {
    width: 100%; }

  .shipping-calculator-form {
    flex-direction: column; }
    .shipping-calculator-form .field {
      width: 100%;
      margin: 15px 0; }

  .shipping-calculator .success {
    margin-bottom: 40px; } }
@media only screen and (max-width: 479px) {
  .cart-item .description,
  .cart-item .price,
  .cart-item .quantity {
    padding-left: 20px; } }
/*================ SECTIONS ================*/
.site-header {
  position: relative; }

.page-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 15px 0; }
  .page-header .burger-icon {
    display: none; }

.header-content {
  background-color: white;
  color: #1f1f1f;
  position: relative;
  z-index: 101; }

.site-logo {
  color: #1f1f1f;
  display: block;
  font-family: "Avenir Next", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  margin-right: 15px;
  position: relative;
  text-decoration: none;
  z-index: 5; }
  .site-logo img {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
  .site-logo.mobile-logo {
    display: none; }

.site-header__logo-image {
  max-width: 100%; }

.docked-mobile-navigation-container {
  flex-grow: 1; }

.utils {
  align-items: center;
  display: flex;
  flex-grow: 1;
  justify-content: space-between; }
  .utils a {
    color: inherit;
    text-decoration: none; }

.utils__item {
  color: inherit;
  margin: 0 6px;
  opacity: 1;
  position: relative;
  transition: opacity 0.25s; }
  .utils__item:last-child {
    margin-right: 10px; }
    @media only screen and (min-width: 768px) {
      .utils__item:last-child {
        margin-right: 0; } }

.utils__item--hidden {
  opacity: 0;
  pointer-events: none; }

.mobile-menu-utils {
  display: none;
  margin-bottom: 0;
  padding: 0 20px;
  flex-wrap: no-wrap;
  justify-content: space-between;
  border-bottom: 1px solid #eee; }

.no-js .utils__item--currency {
  display: none; }

.header-cart {
  position: relative; }
  .header-cart .icon {
    height: 34px; }
  .header-cart .cart-summary {
    display: none;
    position: absolute;
    z-index: 3;
    top: 100%;
    right: 0;
    width: 412px;
    padding: 15px 30px 30px;
    background-color: white;
    border-bottom: 3px solid #1f1f1f;
    border-left: 1px solid rgba(31, 31, 31, 0.1);
    border-right: 1px solid rgba(31, 31, 31, 0.1);
    border-top: 1px solid rgba(31, 31, 31, 0.1);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15); }

.header-cart__count {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  margin-top: -0.5em;
  font-size: 14px;
  line-height: 1em;
  text-align: center; }

.header-social-icons {
  display: none;
  margin: 0 20px 20px; }
  .header-social-icons .social-link {
    margin: 0 15px 15px 0;
    color: black; }

.docking-header__utils {
  display: none;
  margin-top: -12px;
  color: #1f1f1f; }
  .docking-header__utils .search-bar__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px; }
  .docking-header__utils .search-form__input {
    margin: 2px 0;
    color: inherit; }
    .docking-header__utils .search-form__input::placeholder {
      color: transparent !important; }
  .docking-header__utils .search-bar__results {
    color: #212b36;
    background: white; }

@media only screen and (max-width: 767px) {
  .docked-header--dock .docked-mobile-navigation-container__inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 101; } }
@media only screen and (min-width: 768px) {
  .docked-header--dock .docked-navigation-container__inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 101; }
  .docked-header--dock .page-header .search-bar {
    /*       display: none; */ }
  .docked-header--dock .docked-navigation-container .docking-header__utils {
    display: flex;
    flex-wrap: nowrap; }
  .search-bar-open .docked-header--dock .docked-navigation-container .site-nav {
    opacity: 0;
    pointer-events: none; }
  .search-bar-open .docked-header--dock .docked-navigation-container .header-navigation {
    z-index: 101; } }

@media only screen and (max-width: 767px) {
  .header-content {
    padding: 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15); }

  .page-header {
    display: block;
    padding: 0; }
    .page-header .burger-icon {
      display: block;
      z-index: 2;
      margin-left: 2px;
      margin-right: 14px; }
    .page-header .site-header__logo-image {
      max-width: 165px;
      padding: 0;
      margin: 8px 0 8px 40px; }
    .page-header .feather-icon .feather-menu {
      stroke-width: 1px !important;
      height: 30px;
      width: 30px; }
    .page-header .utils__item:last-child {
      margin-right: 0px; }
      .page-header .utils__item:last-child .icon--header .icon {
        height: 26px;
        width: 26px;
        margin: 5px 5px 3px 5px; }

  .store-logo,
  .utils {
    padding: 0; }

  .store-logo {
    text-align: center; }

  .site-logo.mobile-logo {
    display: block;
    margin: 0 auto; }
    .site-logo.mobile-logo img {
      width: auto;
      max-height: 80px; }
  .site-logo.desktop-logo {
    display: none; }

  .utils {
    background-color: white;
    color: #1f1f1f;
    position: relative;
    width: 100%; }

  .social-link {
    margin: 0 10px; }

  .mobile-menu-utils {
    align-items: center;
    display: flex; }
    .mobile-menu-utils .utils__item {
      min-width: 50px; }

  .header-social-icons {
    display: block;
    margin-bottom: 60px; }

  .header-content .utils__item--currency {
    display: none; }

  .mobile-menu-search-bar .search-form__input {
    color: black; }
    .mobile-menu-search-bar .search-form__input::placeholder {
      color: black; } }
.page-footer__inner {
  padding-bottom: 45px;
  background-color: white;
  color: #1f1f1f; }
  @media only screen and (max-width: 767px) {
    .page-footer__inner .small-down--grid--rev {
      display: flex;
      flex-direction: column-reverse;
      flex-wrap: wrap; } }

@media only screen and (min-width: 1024px) {
  .sticky-footer-partly-visible main,
  .sticky-footer-fully-visible main {
    border-bottom: 0; }

  .sticky-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%; }
    .no-js .sticky-footer {
      position: static; }

  .sticky-footer-taller-than-page .sticky-footer {
    top: 0;
    bottom: auto; }

  .sticky-footer-scrolled-into.sticky-footer-taller-than-page .sticky-footer,
  .sticky-footer-partly-visible .sticky-footer {
    position: static; } }
.subscribe-form {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative; }
  .subscribe-form:after {
    background-color: rgba(31, 31, 31, 0.3);
    position: absolute;
    content: '';
    bottom: 0;
    left: 0px;
    width: 100%;
    height: 1px;
    opacity: 0.5; }
  .subscribe-form a {
    color: inherit; }

.subscribe-form__inputs .input-wrapper {
  border-top-color: transparent;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid rgba(31, 31, 31, 0.3);
  border-radius: 0;
  padding-left: 0; }
  .subscribe-form__inputs .input-wrapper label {
    color: rgba(31, 31, 31, 0.7);
    left: 0;
    top: 0; }
.subscribe-form__inputs .subscribe-form__email {
  border: 0;
  border-radius: 0;
  color: #1f1f1f;
  margin: 0;
  padding-left: 0;
  transition: background-color 0.25s; }
  .subscribe-form__inputs .subscribe-form__email:focus {
    outline: 0; }
  .subscribe-form__inputs .subscribe-form__email::placeholder {
    color: #1f1f1f;
    opacity: .75; }

.subscribe-form__side-heading {
  font-weight: 500;
  line-height: 1.2;
  padding-top: 15px; }

.subscribe-form__response {
  display: flex;
  justify-content: center; }

.footer-navigation {
  padding-top: 30px; }

footer {
  align-items: center;
  text-align: center;
  justify-content: space-between;
  margin-top: 10px; }
  footer li.payment-icon svg {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%); }

.payment-icons {
  margin-top: 8px; }

.payment-icon {
  display: inline-block;
  margin-right: 2px;
  margin-bottom: 6px; }

.payment-icon-svg {
  height: 24px;
  width: 38px;
  vertical-align: top; }

.copyright-text {
  display: block;
  font-size: 11.25px;
  margin-top: 8px; }
  .copyright-text a {
    color: #1f1f1f;
    fill: #1f1f1f;
    text-decoration: none; }

@media only screen and (max-width: 767px) {
  form.kl-private-reset-css-Xuajs1 {
    max-width: 100% !important; }

  footer {
    margin-top: 30px; }

  .subscribe-form {
    padding-bottom: 30px; }
    .subscribe-form:after {
      left: -20px;
      width: calc(100% + (20px * 2)); }
    .subscribe-form .input-wrapper {
      margin-bottom: 15px; }

  .subscribe-form__side-heading {
    font-size: 15px;
    padding-bottom: 15px; }

  .subscribe-form__inputs.grid {
    margin-left: 0; }
    .subscribe-form__inputs.grid .grid__item {
      padding-left: 0; }

  .subscribe-form__inputs .subscribe-form__submit {
    margin-left: 0; } }
@media only screen and (max-width: 479px) {
  .subscribe-form::after {
    left: 0;
    width: 100%; }

  .subscribe-form__email {
    margin-bottom: 15px;
    width: 100%; }

  .subscribe-form__submit {
    margin-left: 0; } }
[data-product-single-thumbnail] {
  display: block;
  margin: 0 0 15px;
  transition: opacity 250ms;
  position: relative; }
  @media only screen and (max-width: 767px) {
    [data-product-single-thumbnail] {
      margin-bottom: 0; } }

.variant-dim {
  opacity: 0.5; }

.product-detail .grid__item {
  padding-top: 0; }
  @media only screen and (max-width: 767px) {
    .product-detail .grid__item:not(:first-of-type) {
      padding-top: 30px; }
    .product-detail .grid__item:nth-of-type(3) {
      padding-top: 0; } }

.product-detail__title-area {
  margin-bottom: 15px; }
  @media only screen and (max-width: 767px) {
    .product-detail__title-area {
      margin: 0 0 30px; } }

.product-description__no-expand .rte__video-wrapper,
.product-description__no-expand .expanded-width {
  margin-left: 0;
  margin-right: 0; }

.product-detail__adjacent {
  margin-bottom: 30px; }
  .product-detail__adjacent:first-child {
    padding-top: 15px; }
  .product-detail__adjacent a {
    display: block;
    color: inherit;
    text-decoration: none; }
  .product-detail__adjacent .product-price {
    margin-top: 0.75em; }

.product-detail__adjacent-label {
  margin-bottom: 15px; }

.product-detail__type + .product-detail__sku {
  margin-top: 5px; }

.product-detail__price {
  font-size: 1.15rem; }

.product-detail__quantity-row {
  display: flex;
  width: 100%; }
  .product-detail__quantity-row.with-payment-buttons {
    flex-wrap: wrap; }
  .product-detail__quantity-row .quantity-wrapper {
    margin-right: 15px;
    flex-shrink: 0; }
  .product-detail__quantity-row button {
    flex-grow: 1;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 0 !important;
    margin-right: 0 !important; }
  .product-detail__quantity-row .payment-buttons {
    margin-top: 30px;
    width: 100%; }

.quantity-wrapper .quantity-actual {
  display: none; }
.quantity-wrapper.hide-proxy .quantity-actual {
  display: inline-block; }
.quantity-wrapper.hide-proxy .quantity-proxy {
  display: none; }

.no-js .quantity-wrapper .quantity-actual {
  display: inline-block; }
.no-js .quantity-wrapper .quantity-proxy {
  display: none; }

.product-form .select2-container {
  display: block;
  width: 100% !important; }

.variant-option-title::before {
  content: '- '; }

.payment-buttons .btn, .payment-buttons .theme-product-reviews .spr-summary-actions-newreview, .theme-product-reviews .payment-buttons .spr-summary-actions-newreview, .payment-buttons .bandita-modal-registration #customer_register_link, .bandita-modal-registration .payment-buttons #customer_register_link, .payment-buttons .bandita-modal-registration #customer_login_link, .bandita-modal-registration .payment-buttons #customer_login_link, .payment-buttons .galaxy .collection-shop-now, .galaxy .payment-buttons .collection-shop-now {
  width: calc(100% - 2px);
  min-height: 44px; }
.payment-buttons .shopify-payment-button__button {
  margin: 1px;
  border: 0;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: normal;
  overflow: hidden;
  border-radius: 0px;
  min-height: 44px; }
.payment-buttons .shopify-payment-button {
  margin-top: 15px;
  transition: opacity 0.25s; }
  .payment-buttons .shopify-payment-button .shopify-payment-button__button {
    width: 100%; }
  .payment-buttons .shopify-payment-button .shopify-payment-button__button--unbranded {
    padding: 11px 39px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #1f1f1f;
    border: 0;
    box-shadow: 0 0 0 1px #1f1f1f;
    color: white;
    transition: background-color 0.25s, border-color 0.25s, box-shadow 0.25s, color 0.25s, opacity 0.25s; }
    .payment-buttons .shopify-payment-button .shopify-payment-button__button--unbranded:hover {
      background-color: #050505;
      box-shadow: 0 0 0 1px #050505;
      color: white; }
  .payment-buttons .shopify-payment-button .shopify-payment-button__more-options {
    margin-top: 16px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    line-height: 1.4;
    transition: opacity 0.25s; }
    .payment-buttons .shopify-payment-button .shopify-payment-button__more-options.shopify-payment-button__button--hidden {
      display: none; }

.variant--unavailable .shopify-payment-button {
  opacity: 0; }

.product-detail__detail .tabs li {
  margin: 0 3px -1px; }
  .product-detail__detail .tabs li:first-child {
    margin-left: 0; }
  .product-detail__detail .tabs li:last-child {
    margin-right: 0; }

.spr-icon {
  margin-right: 0.1em;
  color: #f6c347; }

.spr-icon-star-empty {
  color: #888888; }

.theme-product-reviews-summary {
  display: block;
  margin-top: 0.5em; }
  .theme-product-reviews-summary .spr-badge[data-rating="0.0"] {
    visibility: hidden; }
  .theme-product-reviews-summary a {
    text-decoration: none; }
    .theme-product-reviews-summary a .spr-badge-caption {
      text-decoration: underline; }
  .theme-product-reviews-summary .spr-badge-caption {
    margin-left: 0.5em; }

.product-detail .theme-product-reviews-summary .spr-badge[data-rating="0.0"] {
  display: none; }

.theme-product-reviews #shopify-product-reviews {
  margin: 1em 0 2em; }
.theme-product-reviews .spr-container {
  padding: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0; }
.theme-product-reviews .spr-header {
  padding: 30px 0; }
.theme-product-reviews .spr-summary-actions-newreview {
  margin-top: 1em; }
.theme-product-reviews .spr-form-title {
  margin: 0 0 0.5em; }
.theme-product-reviews .spr-form {
  margin: 0;
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }
.theme-product-reviews .spr-reviews {
  margin: 0;
  padding: 0 0 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }
.theme-product-reviews .spr-review {
  margin: 0;
  padding: 30px 0 0;
  border: 0; }
.theme-product-reviews .spr-review .spr-review-header-starratings {
  margin-bottom: 0.9em; }
.theme-product-reviews .spr-review .spr-icon {
  font-size: 100%; }
.theme-product-reviews .spr-review:first-child {
  margin-top: 0; }
.theme-product-reviews .spr-review-header-title {
  font-size: 15px;
  line-height: 1.6; }
.theme-product-reviews .spr-review-header-byline {
  display: block;
  margin: 0.3em 0 1em;
  font-style: normal;
  opacity: 0.6; }
.theme-product-reviews .spr-review-header-byline strong {
  font-weight: normal; }
.theme-product-reviews .spr-review-content {
  margin: 0 0 15px; }
.theme-product-reviews .spr-pagination-page {
  margin: 0 2px; }
  .theme-product-reviews .spr-pagination-page.is-active {
    font-weight: normal; }
.theme-product-reviews .spr-review-content-body {
  font-size: 0.875rem;
  line-height: 1.4; }
.theme-product-reviews .spr-review-reportreview {
  float: none; }
.theme-product-reviews .spr-pagination {
  margin-top: 15px;
  width: 100%; }
@media (min-width: 800px) {
  .theme-product-reviews .spr-reviews {
    display: flex;
    flex-wrap: wrap; }
  .theme-product-reviews .spr-reviews .spr-review {
    width: 50%; }
  .theme-product-reviews .spr-review:nth-child(2n) {
    padding-left: 15px; }
  .theme-product-reviews .spr-review:nth-child(2n-1) {
    padding-right: 15px; } }
@media (min-width: 481px) {
  .theme-product-reviews .spr-summary-actions-newreview {
    margin-top: -1.5em; } }
@media (max-width: 480px) {
  .theme-product-reviews .spr-summary-actions {
    display: block; } }

.full-width-slideshow .slick-dots {
  position: static;
  width: calc(100% - 100px);
  margin: 0 auto; }

.full-width-slideshow-controls {
  position: absolute;
  bottom: -5px; }
  .full-width-slideshow-controls .icon {
    transition: opacity 0.25s; }
    .full-width-slideshow-controls .icon:hover {
      opacity: .7; }

.full-width-slideshow-controls--prev {
  left: 0; }

.full-width-slideshow-controls--next {
  right: 0; }

.full-width-slideshow .slide {
  display: none; }
  .full-width-slideshow .slide:first-child {
    display: block; }
.full-width-slideshow .slick-initialized .slide {
  display: block; }

@media only screen and (min-width: 1280px) {
  .full-width-slideshow .overlay .large-title, .full-width-slideshow .overlay .rte h1, .rte .full-width-slideshow .overlay h1, .full-width-slideshow .overlay .subscribe-form__side-heading, .full-width-slideshow .overlay .article-page .single-column-layout.with-image .article-overlay h1, .article-page .single-column-layout.with-image .article-overlay .full-width-slideshow .overlay h1, .full-width-slideshow .overlay .product-detail__title {
    font-size: 3rem;
    line-height: 1.3; } }
@media only screen and (max-width: 767px) {
  .full-width-slideshow {
    margin-bottom: 20px;
    margin-top: 20px; }
    .full-width-slideshow .slide .overlay {
      margin-bottom: -30px; }
    .full-width-slideshow .slide .rimage-outer-wrapper,
    .full-width-slideshow .slide .placeholder-svg {
      border-radius: 0px;
      overflow: hidden; }
    .full-width-slideshow .overlay, .full-width-slideshow .overlay-2 {
      padding: 45px 30px; }
    .full-width-slideshow .overlay--bg-matches-page-bg,
    .full-width-slideshow .overlay--use-body-colours-mobile {
      padding-bottom: 20px; }

  .full-width-slideshow-controls--prev {
    left: 20px; }

  .full-width-slideshow-controls--next {
    right: 20px; } }
@media only screen and (max-width: 479px) {
  .full-width-slideshow {
    padding-top: 0; }
    .full-width-slideshow .slide .rimage-outer-wrapper,
    .full-width-slideshow .slide .placeholder-svg {
      border-radius: 0; }
    .full-width-slideshow .slick-list {
      border-radius: 0; } }
.rich-text-section {
  padding-left: 30px;
  padding-right: 30px; }
  .rich-text-section .rte {
    margin-top: 15px; }

.rich-text-section__btn-row {
  margin-top: 15px; }

@media only screen and (max-width: 479px) {
  .rich-text-section,
  .rich-text {
    border-radius: 0; } }
.split-image-section {
  overflow: hidden; }

.split-image {
  width: 100%; }

.split-image--portrait {
  padding-bottom: 150%; }

.split-image--square {
  padding-bottom: 100%; }

@media only screen and (max-width: 767px) {
  .split-image-section .split-image {
    border-radius: 0px;
    overflow: hidden; }
  .split-image-section .split-image__content-container {
    border-radius: 0; }
  .split-image-section .block-2 .overlay {
    margin-bottom: -20px; } }
@media only screen and (max-width: 479px) {
  .split-image-section .split-image {
    border-radius: 0; } }
.featured-product-section {
  align-items: center; }
  .featured-product-section .btn, .featured-product-section .theme-product-reviews .spr-summary-actions-newreview, .theme-product-reviews .featured-product-section .spr-summary-actions-newreview, .featured-product-section .bandita-modal-registration #customer_register_link, .bandita-modal-registration .featured-product-section #customer_register_link, .featured-product-section .bandita-modal-registration #customer_login_link, .bandita-modal-registration .featured-product-section #customer_login_link, .featured-product-section .galaxy .collection-shop-now, .galaxy .featured-product-section .collection-shop-now {
    margin-top: 10px; }

.featured-product-section--reverse {
  flex-direction: row-reverse; }

.featured-product-image {
  position: relative; }

.featured-product-image-link {
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  display: block; }

@media only screen and (min-width: 768px) {
  .featured-product-image--inset {
    padding-left: 30px; }

  .featured-product-section--reverse .featured-product-image--inset {
    padding-left: 0;
    padding-right: 30px; } }
.featured-product-content-container {
  height: 100%;
  min-height: 100%; }

.featured-product-content {
  padding: 60px; }
  .featured-product-content .featured-product-link-mobile-only {
    display: none; }
  .featured-product-content .featured-product__price-from {
    font-size: 50%; }

@media only screen and (max-width: 767px) {
  .featured-product-content {
    padding: 45px 30px; }
    .featured-product-content .featured-product-link-mobile-only {
      display: inline-block; }
    .featured-product-content .featured-product-link-desktop-only {
      display: none; }

  .featured-product-image-link {
    background-color: initial; } }
.featured-blog {
  margin-top: -30px; }

.accent-background + .shopify-section .featured-blog {
  margin-top: 0; }

.featured-blog .article__title {
  margin-top: 30px; }

.featured-blog__header {
  padding-top: 30px; }

.featured-blog__header-image {
  height: calc(100vh - 60px); }

.featured-blog__article {
  margin-top: 30px;
  background-color: white; }

@media only screen and (min-width: 768px) {
  .featured-blog__article-content {
    padding: 0 30px; } }

.featured-blog__article-image {
  display: block; }

@media only screen and (max-width: 767px) {
  .featured-blog {
    margin-top: 0; }
    .featured-blog .featured-blog__header {
      margin-top: -30px; }
    .featured-blog .article {
      padding-bottom: 20px; }
    .featured-blog .article__title {
      margin-top: 20px; }
    .featured-blog .article__tags,
    .featured-blog .article__meta {
      display: none; }
    .featured-blog .featured-blog__article {
      margin-top: 0;
      margin-bottom: 20px;
      padding-top: 20px; }

  .featured-blog__header-image {
    height: 55vh;
    min-height: 340px; } }
@media only screen and (max-width: 479px) {
  .featured-blog__article {
    padding-left: 20px;
    padding-right: 20px; }
    .featured-blog__article .content-products {
      margin-left: -20px;
      margin-right: -20px;
      padding-left: 40px;
      padding-right: 20px; }

  .featured-blog__header-image {
    border-radius: 0; } }
.featured-collection--product .product-block {
  padding: 0;
  width: 100%; }
@media only screen and (max-width: 767px) {
  .featured-collection--product {
    font-size: 75% !important; }
    .featured-collection--product .product-price {
      font-size: 0.875em !important; } }

.standout-collection-section .slider-container {
  height: 100%; }

.standout-collection-flex {
  display: flex;
  flex-wrap: wrap; }
  .standout-collection-flex .rimage-background {
    min-height: 100%; }
  .standout-collection-flex .slider-container {
    align-self: center; }
  .standout-collection-flex .desktop-background-image,
  .standout-collection-flex .standout-collection__image--svg-placeholder {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }

@media only screen and (min-width: 768px) {
  .standout-collection-flex--reverse > *:first-child {
    order: 1; } }
.standout-collection__overlay-container {
  position: relative;
  width: 100%; }

.standout-collection__image {
  display: none; }

.standout-collection-slider {
  width: 280px;
  height: auto;
  margin: 180px auto;
  z-index: 1; }
  .standout-collection-slider .standout-collection__image-placeholder {
    display: block; }

.standout-collection__price-placeholder {
  text-align: center; }

.standout-collection-slider__controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 380px;
  top: calc(50% - 40px);
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 0; }
  .standout-collection-slider__controls .icon {
    transition: opacity 0.25s; }
    .standout-collection-slider__controls .icon:hover {
      color: inherit;
      opacity: .7; }

@media only screen and (max-width: 1180px) {
  .standout-collection-slider__controls {
    width: 360px; } }
@media only screen and (max-width: 1080px) {
  .standout-collection-slider {
    width: 220px; }

  .standout-collection-slider__controls {
    width: 280px; } }
@media only screen and (max-width: 880px) {
  .standout-collection-slider {
    margin-top: 60px;
    margin-bottom: 60px; } }
@media only screen and (max-width: 767px) {
  .standout-collection-section .slider-container {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden; }
    .standout-collection-section .slider-container .btn--quicklook {
      display: none; }
  .standout-collection-section .slick-track {
    display: block; }
  .standout-collection-section .desktop-background-image {
    display: none; }
  .standout-collection-section .standout-collection__image--svg-placeholder {
    position: static; }

  .standout-collection-slider {
    width: auto;
    margin-top: 30px;
    margin-bottom: 30px; }

  .standout-collection-slider__controls {
    display: none; }

  .standout-collection-flex .rimage-background {
    margin-bottom: 120px; }

  .standout-collection__image {
    display: block; } }
@media only screen and (max-width: 479px) {
  .standout-collection-flex {
    border-radius: 0; } }
.get-the-look__product {
  margin: 0 18%;
  height: 100%;
  display: block;
  padding-bottom: 90px; }
  .get-the-look__product:first-child {
    padding-top: 18%; }
  .get-the-look__product:last-child {
    padding-bottom: 18%; }

@media only screen and (min-width: 768px) {
  .get-the-look__image-container .rimage-wrapper {
    padding: 0 !important;
    height: 100%; }
    .get-the-look__image-container .rimage-wrapper .rimage__image {
      object-fit: cover; } }
@media only screen and (max-width: 767px) {
  .get-the-look {
    border-radius: 0px;
    margin-left: 0; }
    .get-the-look .grid__item {
      padding-left: 0; }
    .get-the-look .get-the-look__products-container,
    .get-the-look .get-the-look__image-container {
      border-radius: 0; }

  .get-the-look__products-container--margin-top {
    padding-top: 20px; }

  .get-the-look__product {
    padding-bottom: 20px;
    width: auto;
    margin-left: 0;
    margin-right: 0; }
    .get-the-look__product:last-child {
      padding-bottom: 0; }
    .get-the-look__product:first-child {
      padding-top: 0; } }
@media only screen and (max-width: 479px) {
  .get-the-look {
    border-radius: 0; } }
.image-with-text {
  align-items: center; }
  .image-with-text .image-with-text__content {
    padding: 30px; }
  .image-with-text .image-with-text__text {
    margin-top: 15px; }
  .image-with-text .image-with-text__link {
    margin-top: 25px;
    display: inline-block; }

.image-with-text--reverse {
  flex-direction: row-reverse; }

@media only screen and (min-width: 768px) {
  .image-with-text__image--inset {
    padding-left: 30px; }

  .image-with-text--reverse .image-with-text__image--inset {
    padding-left: 0;
    padding-right: 30px; } }
@media only screen and (max-width: 767px) {
  .image-with-text__content {
    padding: 45px 30px; } }
@media only screen and (max-width: 479px) {
  .image-with-text {
    border-radius: 0; } }
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%; }
  .video-container iframe, .video-container object, .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

@media only screen and (max-width: 479px) {
  .video-container {
    border-radius: 0; } }
.subscribe-section {
  padding-left: 30px;
  padding-right: 30px;
  text-align: center; }
  .subscribe-section .subscribe-form::after {
    display: none; }
  .subscribe-section .subscribe-form__inputs {
    display: flex;
    justify-content: space-between; }
  .subscribe-section .subscribe-form__email {
    color: currentColor;
    margin: 0;
    padding-left: 0;
    transition: background-color 0.25s; }
  .subscribe-section a {
    color: inherit; }

.subscribe-form-lightbox-response {
  width: 500px;
  max-width: 90vw;
  padding: 30px;
  text-align: center; }

@media only screen and (max-width: 767px) {
  .subscribe-section {
    padding: 45px 30px; }
    .subscribe-section .subscribe-form {
      padding-bottom: 0; } }
@media only screen and (max-width: 479px) {
  .subscribe-section {
    border-radius: 0; }
    .subscribe-section .subscribe-form__inputs {
      flex-direction: column; }
    .subscribe-section .subscribe-form__submit {
      margin: 20px 0 0 0; } }
.blog-featured-image {
  border-radius: 0 0px 0 0;
  overflow: hidden;
  transition: border-radius 3s; }

.blog-image {
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh; }

.blog-tags {
  margin-top: 15px; }

.blog-rsslink {
  color: currentColor;
  display: block;
  margin-bottom: 15px;
  margin-top: -10px; }

.blog-articles-list {
  max-width: calc((1440px / 2) + (30px * 2));
  margin: 0 auto;
  padding: 0 30px; }

.blog-articles-list__image {
  display: block;
  margin: 0 0 30px; }
  .blog-articles-list__image .rimage-outer-wrapper .rimage-wrapper {
    transform: scale(1);
    transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .blog-articles-list__image:hover .rimage-outer-wrapper .rimage-wrapper {
    transform: scale(1.05); }

.blog .overlay {
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  min-width: 340px; }

.blog .single-column-layout {
  display: flex;
  justify-content: center; }
  .blog .single-column-layout .one-half {
    max-width: calc(100% - (30px * 2));
    width: 960px; }
  .blog .single-column-layout .blog-articles-list {
    max-width: initial;
    width: 100%;
    padding: 60px 0 0;
    margin: 0; }
  .blog .single-column-layout .blog-rsslink {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 30px; }

.is_stuck .blog-featured-image {
  animation: radius-corners .3s ease-in-out 1 forwards; }

@media only screen and (max-width: 767px) {
  .blog-image {
    height: 55vh; }

  .blog-featured-image {
    border-radius: 0;
    margin-bottom: -30px; }

  .blog-articles-list__image {
    margin: 20px 0; }

  .blog .blog-articles-list {
    padding: 20px 0 0; }

  .blog .article-block .content-products {
    margin-left: 0;
    margin-right: 0;
    padding: 0 20px; }

  .blog .single-column-layout .one-half {
    max-width: 100%; }
  .blog .single-column-layout .blog-rsslink {
    top: 0;
    right: 20px; }

  .blog-rsslink {
    top: -15px; }

  .blog .overlay {
    bottom: 30px;
    transform: translate(-50%, 0);
    min-width: 0; } }
@media only screen and (max-width: 479px) {
  .blog-featured-image {
    border-radius: 0; }

  .single-column-layout .blog-articles-list__image {
    border-radius: 0; } }
.promotional-row .image_before,
.promotional-row .image_after {
  flex-direction: column;
  flex-wrap: nowrap; }
.promotional-row .image_before .promotional-row__container {
  border-radius: 0 0 0px 0px;
  overflow: hidden; }
.promotional-row .image_before .promotional-image {
  border-radius: 0px 0px 0 0;
  overflow: hidden; }
.promotional-row .image_after .promotional-row__container {
  border-radius: 0px 0px 0 0;
  overflow: hidden; }
.promotional-row .image_after .promotional-image {
  border-radius: 0 0 0px 0px;
  overflow: hidden; }
.promotional-row .text_over_image .promotional-row__content {
  width: calc(100% - (150px));
  left: calc(50% + 15px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%); }
.promotional-row .text_over_image .promotional-row__container {
  min-height: initial; }
.promotional-row .text_over_image .promotional-image {
  border-radius: 0px; }
.promotional-row .promotional-image.desktop-only {
  position: absolute;
  left: 30px;
  top: 0;
  right: 0;
  height: 100%;
  width: auto; }
.promotional-row .single-block {
  flex-direction: row;
  width: 100%; }
  .promotional-row .single-block .promotional-image {
    width: 50%; }
.promotional-row .single-block.text_over_image {
  width: 50%; }
  .promotional-row .single-block.text_over_image .promotional-image {
    width: 100%; }
.promotional-row .promotional-image {
  width: 100%; }
  @media only screen and (max-width: 767px) {
    .promotional-row .promotional-image {
      width: 100%; } }
  .promotional-row .promotional-image img {
    display: block; }
  .promotional-row .promotional-image .rimage-background {
    height: 100%; }
  .promotional-row .promotional-image .placeholder-svg {
    width: auto; }
.promotional-row .promotional-image.mobile-only {
  display: none; }
.promotional-row .promotional-row__container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; }
.promotional-row .promotional-row__content {
  padding: 15px; }
.promotional-row .promotional-row__text {
  margin-bottom: 15px; }
.promotional-row .promotional-row__content--link {
  display: inline-block;
  margin-top: 1rem;
  border-bottom: 3px solid #e59d8a;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.0666666666666667rem; }
  @media only screen and (min-width: 480px) {
    .promotional-row .promotional-row__content--link {
      margin-top: 15px; } }

@media only screen and (max-width: 1080px) and (min-width: 767px) {
  .promotional-row .promotional-row__content {
    padding: 40px 20px; }
  .promotional-row .promotional-row__title {
    font-size: 1.75rem; }
  .promotional-row .promotional-row__text {
    font-size: 1.2rem; }
  .promotional-row .text_over_image .promotional-row__content {
    width: calc(100% - (15px * 7)); } }
@media only screen and (max-width: 767px) {
  .promotional-row {
    flex-direction: column; }
    .promotional-row .extra-container {
      width: 100%; }
    .promotional-row .single-block {
      flex-direction: column; }
      .promotional-row .single-block .promotional-image {
        width: 100%; }
    .promotional-row .single-block.text_over_image {
      width: 100%; }
    .promotional-row .promotional-row__container {
      min-height: initial; }
    .promotional-row .promotional-row__content {
      position: static;
      transform: translate(0, 0);
      padding: 45px 30px;
      width: 100%;
      left: 50%; }
    .promotional-row .text_over_image .promotional-row__content--transparent-bg .standard-link, .promotional-row .text_over_image .promotional-row__content--transparent-bg .add-to-wishl, .promotional-row .text_over_image .promotional-row__content--transparent-bg .star .collection-shop-now, .star .promotional-row .text_over_image .promotional-row__content--transparent-bg .collection-shop-now, .promotional-row .text_over_image .promotional-row__content--transparent-bg .planet-top .collection-shop-now, .planet-top .promotional-row .text_over_image .promotional-row__content--transparent-bg .collection-shop-now, .promotional-row .text_over_image .promotional-row__content--transparent-bg .planet-bottom .collection-shop-now, .planet-bottom .promotional-row .text_over_image .promotional-row__content--transparent-bg .collection-shop-now {
      color: #1f1f1f; }
      .promotional-row .text_over_image .promotional-row__content--transparent-bg .standard-link:hover, .promotional-row .text_over_image .promotional-row__content--transparent-bg .add-to-wishl:hover, .promotional-row .text_over_image .promotional-row__content--transparent-bg .star .collection-shop-now:hover, .star .promotional-row .text_over_image .promotional-row__content--transparent-bg .collection-shop-now:hover, .promotional-row .text_over_image .promotional-row__content--transparent-bg .planet-top .collection-shop-now:hover, .planet-top .promotional-row .text_over_image .promotional-row__content--transparent-bg .collection-shop-now:hover, .promotional-row .text_over_image .promotional-row__content--transparent-bg .planet-bottom .collection-shop-now:hover, .planet-bottom .promotional-row .text_over_image .promotional-row__content--transparent-bg .collection-shop-now:hover {
        color: black; }
    .promotional-row .text_over_image {
      margin-bottom: 0; }
      .promotional-row .text_over_image .promotional-row__container {
        height: auto;
        min-height: initial;
        max-height: initial;
        margin-bottom: 20px; }
      .promotional-row .text_over_image .promotional-row__content {
        left: 0;
        position: static;
        transform: translate(0, 0);
        width: calc(100% - (30px * 2));
        margin: 0 auto; }
    .promotional-row .promotional-image.mobile-only {
      display: block; }
    .promotional-row .promotional-image.desktop-only {
      display: none; }
    .promotional-row .promotional-images-section .promotional-row .text_over_image .promotional-row__container {
      background-color: transparent; }

  .promotional-images-section .promotional-row .text_over_image .promotional-row__container {
    background-color: transparent; }
  .promotional-images-section .grid {
    margin-left: 0; }
  .promotional-images-section .grid__item {
    margin-bottom: 20px;
    padding-left: 0; }
    .promotional-images-section .grid__item.text_over_image {
      margin-bottom: 0; }
  .promotional-images-section.large-row {
    margin-top: 0;
    margin-bottom: 0; } }
@media only screen and (max-width: 479px) {
  .promotional-row .text_over_image .promotional-row__content {
    left: 0;
    position: static;
    transform: translate(0, 0);
    width: calc(100% - (20px * 2)); }
  .promotional-row .promotional-row__content {
    padding: 10px; } }
.map-section--load-error {
  height: auto; }

.map-section__error {
  position: relative;
  z-index: 3; }

.map-section__content-wrapper {
  margin: -50px auto 0; }

.map-section__content {
  position: relative;
  background-color: white;
  padding: 30px;
  text-align: center;
  z-index: 3; }

.map-section__link {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  max-width: none;
  width: 100%;
  height: 100%;
  z-index: 2;
  transform: translateX(-50%); }

.map-section__container {
  position: relative;
  height: 440px;
  width: 100%; }

.map_section__directions-btn > span {
  vertical-align: middle; }
.map_section__directions-btn .feather-icon {
  display: inline-block;
  margin-right: 0.3em; }

.map-section__background-wrapper {
  height: 350px;
  overflow: hidden;
  position: relative; }
  .map-section__background-wrapper .placeholder-background {
    height: 100%; }
  .no-js .map-section__background-wrapper .js {
    visibility: hidden; }

.map-section__image {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }
  .map-section__image .rimage-background {
    width: 100%;
    height: 100%; }
  .map-section--display-map .map-section__image {
    display: none !important; }
  .map-section--load-error .map-section__image {
    display: block !important; }

.gm-style-cc,
.gm-style-cc + div {
  visibility: hidden; }

@media only screen and (max-width: 479px) {
  .map-section__background-wrapper {
    border-radius: 0; } }
.willstagram {
  position: relative;
  height: 0;
  padding-top: 32%; }
  .willstagram .willstagram__item {
    position: absolute;
    top: 0;
    overflow: hidden;
    background: #f4f4f4;
    transform: rotateX(0); }
    .willstagram .willstagram__item > .placeholder-image,
    .willstagram .willstagram__item > a {
      display: block;
      padding-top: 100%;
      height: 0; }
    .willstagram .willstagram__item .placeholder-svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .willstagram .willstagram__item a {
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat; }
    .willstagram .willstagram__item .willstagram__img {
      display: none; }
  .willstagram .item--1,
  .willstagram .item--4 {
    width: 32%; }
  .willstagram .item--2,
  .willstagram .item--3,
  .willstagram .item--5,
  .willstagram .item--6 {
    width: 15%; }
  .willstagram .item--2,
  .willstagram .item--3 {
    left: 34%; }
  .willstagram .item--3,
  .willstagram .item--6 {
    top: 53.16%; }
  .willstagram .item--1 {
    left: 0; }
  .willstagram .item--4 {
    right: 17%; }
  .willstagram .item--5,
  .willstagram .item--6 {
    right: 0; }
  @media (max-width: 700px) {
    .willstagram {
      padding-top: 134.6%; }
      .willstagram .item--1,
      .willstagram .item--2 {
        width: 65.3%; }
      .willstagram .item--1,
      .willstagram .item--3 {
        top: 0; }
      .willstagram .item--2,
      .willstagram .item--3,
      .willstagram .item--4 {
        left: auto;
        right: 0; }
      .willstagram .item--1,
      .willstagram .item--5,
      .willstagram .item--6 {
        left: 0;
        right: auto; }
      .willstagram .item--2,
      .willstagram .item--6 {
        top: auto;
        bottom: 0; }
      .willstagram .item--3,
      .willstagram .item--4,
      .willstagram .item--5,
      .willstagram .item--6 {
        width: 31%; }
      .willstagram .item--4 {
        top: 25.5%; }
      .willstagram .item--5 {
        top: auto;
        bottom: 25.5%; } }
  .willstagram .willstagram__error {
    font-style: italic;
    text-align: center; }

.willstagram__link {
  transform: scale3d(1, 1, 1);
  transition: transform 0.25s; }

.willstagram__item:hover .willstagram__link {
  transform: scale3d(1.03, 1.03, 1); }

.willstagram__overlay {
  display: none;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s;
  flex-direction: column;
  padding: 15px;
  text-align: center; }
  .willstagram__overlay .willstagram__desc {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    overflow: hidden; }
    .willstagram__overlay .willstagram__desc svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
      .item--1 .willstagram__overlay .willstagram__desc svg rect, .item--1 .willstagram__overlay .willstagram__desc svg foreignObject, .item--4 .willstagram__overlay .willstagram__desc svg rect, .item--4 .willstagram__overlay .willstagram__desc svg foreignObject {
        height: 12em; }
      .item--2 .willstagram__overlay .willstagram__desc svg rect, .item--2 .willstagram__overlay .willstagram__desc svg foreignObject, .item--3 .willstagram__overlay .willstagram__desc svg rect, .item--3 .willstagram__overlay .willstagram__desc svg foreignObject, .item--5 .willstagram__overlay .willstagram__desc svg rect, .item--5 .willstagram__overlay .willstagram__desc svg foreignObject, .item--6 .willstagram__overlay .willstagram__desc svg rect, .item--6 .willstagram__overlay .willstagram__desc svg foreignObject {
        height: 4.4em; }
      @media (min-width: 1120px) {
        .item--2 .willstagram__overlay .willstagram__desc svg rect, .item--2 .willstagram__overlay .willstagram__desc svg foreignObject, .item--3 .willstagram__overlay .willstagram__desc svg rect, .item--3 .willstagram__overlay .willstagram__desc svg foreignObject, .item--5 .willstagram__overlay .willstagram__desc svg rect, .item--5 .willstagram__overlay .willstagram__desc svg foreignObject, .item--6 .willstagram__overlay .willstagram__desc svg rect, .item--6 .willstagram__overlay .willstagram__desc svg foreignObject {
          height: 5.6em; } }
      @media (min-width: 1300px) {
        .item--2 .willstagram__overlay .willstagram__desc svg rect, .item--2 .willstagram__overlay .willstagram__desc svg foreignObject, .item--3 .willstagram__overlay .willstagram__desc svg rect, .item--3 .willstagram__overlay .willstagram__desc svg foreignObject, .item--5 .willstagram__overlay .willstagram__desc svg rect, .item--5 .willstagram__overlay .willstagram__desc svg foreignObject, .item--6 .willstagram__overlay .willstagram__desc svg rect, .item--6 .willstagram__overlay .willstagram__desc svg foreignObject {
          height: 7.6em; } }
      @media (min-width: 1400px) {
        .item--2 .willstagram__overlay .willstagram__desc svg rect, .item--2 .willstagram__overlay .willstagram__desc svg foreignObject, .item--3 .willstagram__overlay .willstagram__desc svg rect, .item--3 .willstagram__overlay .willstagram__desc svg foreignObject, .item--5 .willstagram__overlay .willstagram__desc svg rect, .item--5 .willstagram__overlay .willstagram__desc svg foreignObject, .item--6 .willstagram__overlay .willstagram__desc svg rect, .item--6 .willstagram__overlay .willstagram__desc svg foreignObject {
          height: 8.6em; } }
  .willstagram__overlay .willstagram__likes {
    padding-top: 15px; }
  @media only screen and (min-width: 1024px) {
    .willstagram__overlay {
      display: flex; }
      .willstagram__item:hover .willstagram__overlay {
        opacity: 1; } }

.shopify-challenge__container {
  padding: 30px; }

#shopify-section-password-template {
  min-height: 100vh;
  position: relative; }

.template-password {
  text-align: center; }
  .template-password #cboxContent {
    background-color: white; }

.password-page-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
  height: 100%;
  padding-bottom: 90px; }

.password-background-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0; }
  .password-background-image::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
  .password-background-image .rimage-background {
    height: 100%; }

.password-login-link {
  color: inherit;
  text-align: right;
  position: absolute;
  padding: 30px;
  top: 0;
  right: 0;
  z-index: 3; }

.password-page-content {
  padding-bottom: 15px;
  position: relative; }
  .password-page-content::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    height: 1px;
    width: 30%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); }

.password-form-title {
  margin-bottom: 15px; }

.password-form-subtitle a,
.password-form-subtitle a:hover {
  color: inherit; }

.password-form-container {
  display: flex;
  justify-content: center; }
  .password-form-container .password-form-label {
    color: inherit; }
  .password-form-container .password-form-submit {
    margin-left: 15px; }

.password-social-icons .social-links {
  justify-content: center; }
.password-social-icons .social-link {
  color: inherit;
  opacity: .7; }

.password-social-icons-title {
  margin-bottom: 10px; }

.password-footer {
  display: block;
  line-height: 1.5; }

.password-shopify-link {
  color: inherit;
  display: inline-block;
  vertical-align: bottom; }

#password-login {
  max-width: 500px;
  padding: 30px; }

@media only screen and (max-width: 767px) {
  .password-page-container {
    padding: 60px 20px 20px;
    height: auto; }
    .password-page-container main {
      width: 100%; }
    .password-page-container .contact-form {
      max-width: 100%; }

  .password-login-link {
    padding: 20px; }

  .password-form-container .password-form-submit {
    padding-left: 20px;
    padding-right: 20px;
    min-width: auto;
    width: 150px; }

  #password-login {
    max-width: 300px; } }
/*================ COMPONENTS ================*/
/*================ Icons ================*/
.icon {
  display: inline-block;
  fill: currentColor;
  height: 24px;
  vertical-align: text-top;
  width: 24px; }
  .no-svg .icon {
    display: none; }

.icon--header .icon {
  height: 30px;
  width: 30px;
  margin: 5px;
  vertical-align: top; }

.feather-icon .icon {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1px; }
.feather-icon .feather-menu {
  stroke-width: 2px !important; }

.icon--wide {
  width: 40px; }

.icon-beside-text {
  display: inline-block;
  vertical-align: middle; }

.text-beside-icon {
  vertical-align: middle; }

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;
  stroke-linecap: round; }

/*============================================================================
  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: 77.14286px;
  height: 22.5px; }

/*================ Links & Buttons ================*/
button,
input[type="submit"],
.btn,
.theme-product-reviews .spr-summary-actions-newreview,
.bandita-modal-registration #customer_register_link,
.bandita-modal-registration #customer_login_link,
.galaxy .collection-shop-now,
.btn--primary {
  -moz-user-select: "none";
  -ms-user-select: "none";
  -webkit-user-select: "none";
  user-select: "none";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 1px;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4em;
  min-width: 148px;
  padding: 11px 39px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  width: auto;
  border-radius: 0px;
  border: 0;
  box-shadow: 0 0 0 1px #1f1f1f;
  background-color: #1f1f1f;
  color: white;
  transition: background-color 0.25s, color 0.25s, box-shadow 0.25s; }
  button:hover,
  input[type="submit"]:hover,
  .btn:hover,
  .theme-product-reviews .spr-summary-actions-newreview:hover,
  .bandita-modal-registration #customer_register_link:hover,
  .bandita-modal-registration #customer_login_link:hover,
  .galaxy .collection-shop-now:hover,
  .btn--primary:hover {
    background-color: #d5a092;
    box-shadow: 0 0 0 1px #d5a092;
    color: #1f1f1f; }
  button[disabled],
  input[type="submit"][disabled],
  .btn[disabled],
  .theme-product-reviews [disabled].spr-summary-actions-newreview,
  .bandita-modal-registration [disabled]#customer_register_link,
  .bandita-modal-registration [disabled]#customer_login_link,
  .galaxy [disabled].collection-shop-now,
  .btn--primary[disabled] {
    opacity: 0.5; }

button.btn--secondary, .theme-product-reviews button.spr-summary-actions-newreview, button.btn--quicklook,
input[type="submit"].btn--secondary,
.theme-product-reviews input[type="submit"].spr-summary-actions-newreview,
input[type="submit"].btn--quicklook,
.btn.btn--secondary,
.theme-product-reviews .spr-summary-actions-newreview,
.btn.btn--quicklook,
.bandita-modal-registration .btn--quicklook#customer_register_link,
.bandita-modal-registration .btn--quicklook#customer_login_link,
.galaxy .btn--quicklook.collection-shop-now,
.bandita-modal-registration .btn--secondary#customer_register_link,
.bandita-modal-registration .theme-product-reviews #customer_register_link.spr-summary-actions-newreview,
.theme-product-reviews .bandita-modal-registration #customer_register_link.spr-summary-actions-newreview,
.bandita-modal-registration .btn--secondary#customer_login_link,
.bandita-modal-registration .theme-product-reviews #customer_login_link.spr-summary-actions-newreview,
.theme-product-reviews .bandita-modal-registration #customer_login_link.spr-summary-actions-newreview,
.galaxy .btn--secondary.collection-shop-now {
  box-shadow: 0 0 0 1px #d5a092;
  background-color: #d5a092;
  color: #1f1f1f; }
  button.btn--secondary:hover, .theme-product-reviews button.spr-summary-actions-newreview:hover, button.btn--quicklook:hover,
  input[type="submit"].btn--secondary:hover,
  .theme-product-reviews input[type="submit"].spr-summary-actions-newreview:hover,
  input[type="submit"].btn--quicklook:hover,
  .btn.btn--secondary:hover,
  .theme-product-reviews .spr-summary-actions-newreview:hover,
  .btn.btn--quicklook:hover,
  .bandita-modal-registration .btn--quicklook#customer_register_link:hover,
  .bandita-modal-registration .btn--quicklook#customer_login_link:hover,
  .galaxy .btn--quicklook.collection-shop-now:hover,
  .bandita-modal-registration .btn--secondary#customer_register_link:hover,
  .bandita-modal-registration .theme-product-reviews #customer_register_link.spr-summary-actions-newreview:hover,
  .theme-product-reviews .bandita-modal-registration #customer_register_link.spr-summary-actions-newreview:hover,
  .bandita-modal-registration .btn--secondary#customer_login_link:hover,
  .bandita-modal-registration .theme-product-reviews #customer_login_link.spr-summary-actions-newreview:hover,
  .theme-product-reviews .bandita-modal-registration #customer_login_link.spr-summary-actions-newreview:hover,
  .galaxy .btn--secondary.collection-shop-now:hover {
    box-shadow: 0 0 0 1px #1f1f1f;
    background-color: #1f1f1f;
    color: white; }
button.btn--tertiary, .bandita-modal-registration button#customer_register_link,
input[type="submit"].btn--tertiary,
.bandita-modal-registration input[type="submit"]#customer_register_link,
.btn.btn--tertiary,
.theme-product-reviews .btn--tertiary.spr-summary-actions-newreview,
.bandita-modal-registration #customer_register_link,
.bandita-modal-registration .btn--tertiary#customer_login_link,
.galaxy .btn--tertiary.collection-shop-now {
  box-shadow: 0 0 0 1px #1f1f1f;
  background-color: #1f1f1f;
  color: white; }
  button.btn--tertiary:hover, .bandita-modal-registration button#customer_register_link:hover,
  input[type="submit"].btn--tertiary:hover,
  .bandita-modal-registration input[type="submit"]#customer_register_link:hover,
  .btn.btn--tertiary:hover,
  .theme-product-reviews .btn--tertiary.spr-summary-actions-newreview:hover,
  .bandita-modal-registration #customer_register_link:hover,
  .bandita-modal-registration .btn--tertiary#customer_login_link:hover,
  .galaxy .btn--tertiary.collection-shop-now:hover {
    box-shadow: 0 0 0 1px #1f1f1f;
    background-color: #1f1f1f;
    color: white; }
button.btn--accent,
input[type="submit"].btn--accent,
.btn.btn--accent,
.theme-product-reviews .btn--accent.spr-summary-actions-newreview,
.bandita-modal-registration .btn--accent#customer_register_link,
.bandita-modal-registration .btn--accent#customer_login_link,
.galaxy .btn--accent.collection-shop-now {
  box-shadow: 0 0 0 1px #e8bfae;
  background-color: #e8bfae;
  color: white; }
  button.btn--accent:hover,
  input[type="submit"].btn--accent:hover,
  .btn.btn--accent:hover,
  .theme-product-reviews .btn--accent.spr-summary-actions-newreview:hover,
  .bandita-modal-registration .btn--accent#customer_register_link:hover,
  .bandita-modal-registration .btn--accent#customer_login_link:hover,
  .galaxy .btn--accent.collection-shop-now:hover {
    box-shadow: 0 0 0 1px transparent;
    background-color: #1f1f1f;
    color: #ffffff; }
button.btn--outline, .bandita-modal-registration button#customer_login_link,
input[type="submit"].btn--outline,
.bandita-modal-registration input[type="submit"]#customer_login_link,
.btn.btn--outline,
.theme-product-reviews .btn--outline.spr-summary-actions-newreview,
.bandita-modal-registration .btn--outline#customer_register_link,
.bandita-modal-registration #customer_login_link,
.galaxy .btn--outline.collection-shop-now {
  box-shadow: 0 0 0 1px #d5a092;
  background-color: transparent;
  color: #1f1f1f; }
  button.btn--outline:hover, .bandita-modal-registration button#customer_login_link:hover,
  input[type="submit"].btn--outline:hover,
  .bandita-modal-registration input[type="submit"]#customer_login_link:hover,
  .btn.btn--outline:hover,
  .theme-product-reviews .btn--outline.spr-summary-actions-newreview:hover,
  .bandita-modal-registration .btn--outline#customer_register_link:hover,
  .bandita-modal-registration #customer_login_link:hover,
  .galaxy .btn--outline.collection-shop-now:hover {
    box-shadow: 0 0 0 1px #d5a092;
    background-color: #d5a092;
    color: #1f1f1f; }
button.btn--subtle-hover:hover,
input[type="submit"].btn--subtle-hover:hover,
.btn.btn--subtle-hover:hover,
.theme-product-reviews .btn--subtle-hover.spr-summary-actions-newreview:hover,
.bandita-modal-registration .btn--subtle-hover#customer_register_link:hover,
.bandita-modal-registration .btn--subtle-hover#customer_login_link:hover,
.galaxy .btn--subtle-hover.collection-shop-now:hover {
  box-shadow: 0 0 0 1px #050505;
  background-color: #050505;
  color: white; }

.btn--wide {
  min-width: 204px; }

.btn.btn--fullwidth, .theme-product-reviews .btn--fullwidth.spr-summary-actions-newreview, .bandita-modal-registration .btn--fullwidth#customer_register_link, .bandita-modal-registration .btn--fullwidth#customer_login_link, .galaxy .btn--fullwidth.collection-shop-now {
  width: calc(100% - 2px); }

.btn--plain, .payment-buttons .shopify-payment-button__more-options {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  color: inherit;
  min-width: 0; }
  .btn--plain:hover, .payment-buttons .shopify-payment-button__more-options:hover {
    background-color: transparent;
    border: 0;
    box-shadow: none;
    color: inherit; }

.btn--quicklook {
  margin-top: 30px; }

.pswp__button {
  min-width: 0;
  box-shadow: none; }
  .pswp__button:hover {
    background-color: transparent;
    border: 0;
    box-shadow: none; }

@media only screen and (min-width: 768px) {
  .btn--true-small {
    padding: 8px 14px;
    min-width: 118px; } }
@media only screen and (max-width: 767px) {
  .btn.btn--true-small, .theme-product-reviews .btn--true-small.spr-summary-actions-newreview, .bandita-modal-registration .btn--true-small#customer_register_link, .bandita-modal-registration .btn--true-small#customer_login_link, .galaxy .btn--true-small.collection-shop-now {
    font-size: 0.7rem;
    padding: 8px;
    min-width: auto; } }
@media only screen and (max-width: 767px) {
  .btn, .theme-product-reviews .spr-summary-actions-newreview, .bandita-modal-registration #customer_register_link, .bandita-modal-registration #customer_login_link, .galaxy .collection-shop-now {
    font-size: 0.875rem; } }
.announcement-bar {
  position: relative;
  z-index: 1; }

.announcement-bar__content {
  display: block;
  text-decoration: none;
  padding-bottom: 4px;
  padding-top: 4px;
  font-size: 0.875rem;
  text-align: center;
  transition: background-color 0.25s; }

.club-banner {
  position: relative;
  z-index: 1; }

.club-banner__content {
  display: block;
  text-decoration: none;
  padding-bottom: 4px;
  padding-top: 4px;
  font-size: 0.875rem;
  text-align: center;
  transition: background-color 0.25s;
  color: #1f1f1f;
  background-color: #ffede5; }

a.club-banner__content:hover {
  color: #1f1f1f;
  background-color: #ffe2d6; }

.social-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center; }

.social-link {
  display: block;
  margin: 0 6px 0 0;
  padding: 0 4px 0 0; }

.footer-social-icons .icon {
  color: #1f1f1f;
  fill: #1f1f1f; }

.footer-social-icons__title {
  font-size: 15px;
  font-weight: 400;
  margin-top: 0; }

.sharing-link {
  text-decoration: none;
  color: inherit;
  margin: 0 10px 0 0; }

.social-sharing {
  margin: 30px 0; }

@media only screen and (min-width: 768px) {
  .social-link svg,
  .sharing-link svg {
    transition: transform 0.25s; }
  .social-link:hover svg,
  .sharing-link:hover svg {
    transform: scale(1.1); } }
@media only screen and (max-width: 767px) {
  .footer-social-icons {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 30px; }

  .footer-social-icons__title {
    display: none; } }
.navigation__container {
  align-items: center;
  display: flex;
  justify-content: space-between; }

.nav {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal; }

.nav__link {
  display: block;
  text-decoration: none;
  transition: color 0.25s; }

.header-navigation {
  background-color: white;
  padding-top: 12px;
  position: relative;
  z-index: 3; }

.site-nav {
  margin: 0 0 0 -12px;
  padding: 0;
  width: 100%;
  white-space: nowrap;
  overflow-x: hidden; }
  .site-nav .nav-title {
    font-size: 17px;
    font-weight: 700;
    margin-right: 20px; }
  .site-nav > .site-nav__item {
    display: inline-block;
    font-size: 18px; }
    @media only screen and (min-width: 2560px) {
      .site-nav > .site-nav__item {
        font-size: 18px; } }
  .site-nav .site-nav__link {
    display: block;
    text-decoration: none; }
  .site-nav > .site-nav__item > .site-nav__link {
    position: relative;
    padding: 0 15px 12px 15px;
    color: #1f1f1f; }
    .site-nav > .site-nav__item > .site-nav__link:hover {
      color: #1f1f1f; }
  .site-nav .site-nav__invisible {
    right: 0; }

.site-nav > .site-nav__item > .site-nav__link::after {
  background-color: #d5a092;
  bottom: 0;
  content: '';
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleY(0);
  transition: transform 0.25s;
  transform-origin: bottom;
  width: 100%;
  top: 25px; }

.site-nav__item:hover .site-nav__link:after {
  transform: scaleY(1); }

.site-nav__item.site-nav--active .site-nav__link:after {
  transform: scaleY(1); }

.site-nav__icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-left: 0.1em;
  height: 1em;
  width: 18px; }
  .site-nav__icon .icon {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
    height: 18px;
    width: 18px; }

.site-nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 6;
  background-color: white;
  font-size: 15.75px;
  color: rgba(31, 31, 31, 0.7);
  white-space: normal;
  width: 240px;
  border: 1px solid #a7acb7;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15); }

.site-nav__dropdown--with-promo {
  width: 480px; }

.site-nav__item--has-dropdown.open > .site-nav__dropdown,
.no-js .site-nav__item--has-dropdown:hover > .site-nav__dropdown {
  display: block; }

.site-nav .site-nav__dropdown-heading,
.site-nav .site-nav__dropdown-link[href="#"] {
  margin: 0 0 0.25em;
  font-size: 18px;
  color: #1f1f1f; }
  .site-nav .site-nav__dropdown-heading:hover,
  .site-nav .site-nav__dropdown-link[href="#"]:hover {
    color: #1f1f1f; }

.mega-dropdown__subitem:not(:first-child) .site-nav__dropdown-link[href="#"],
.small-dropdown__item:not(:first-child) .site-nav__dropdown-link[href="#"],
.site-nav__promo .site-nav__dropdown-heading {
  margin-top: 0.5em; }

.site-nav__dropdown-link {
  margin: 0.25em 0;
  color: rgba(31, 31, 31, 0.7); }
  .site-nav__dropdown-link:hover {
    color: #1f1f1f; }

.small-dropdown {
  padding: 15px; }
  .small-dropdown .small-dropdown__item:not(:first-child) .site-nav__dropdown-heading {
    margin-top: 15px; }
  .small-dropdown .small-dropdown__item:not(:last-child) .site-nav__submenu {
    margin-bottom: 15px; }

.mega-dropdown {
  left: 0;
  width: 100%;
  padding-bottom: 15px;
  padding-top: 15px; }

.mega-dropdown__item {
  padding-bottom: 15px; }

.site-nav__more-links > .site-nav__dropdown > .small-dropdown__container > .site-nav__item > .site-nav__link {
  margin: 0.25em 0;
  color: rgba(31, 31, 31, 0.7); }
  .site-nav__more-links > .site-nav__dropdown > .small-dropdown__container > .site-nav__item > .site-nav__link:hover {
    color: #1f1f1f; }

.site-nav__invisible {
  position: absolute !important;
  pointer-events: none !important;
  opacity: 0 !important; }

.more-links--with-dropdown > .site-nav__dropdown {
  left: 0;
  width: 100%;
  padding: 15px 30px; }
  .more-links--with-dropdown > .site-nav__dropdown > .page-width > .small-dropdown__container {
    width: 25%; }
    .more-links--with-dropdown > .site-nav__dropdown > .page-width > .small-dropdown__container > .site-nav__item {
      border-bottom: 1px solid rgba(31, 31, 31, 0.25); }
      .more-links--with-dropdown > .site-nav__dropdown > .page-width > .small-dropdown__container > .site-nav__item > .site-nav__link {
        position: relative;
        margin: 0;
        padding: 15px 33px 15px 0;
        font-size: 18px;
        color: #1f1f1f; }
        .more-links--with-dropdown > .site-nav__dropdown > .page-width > .small-dropdown__container > .site-nav__item > .site-nav__link > .site-nav__icon {
          position: absolute;
          top: 50%;
          right: 10px;
          margin-top: -9px;
          transform: rotate(-90deg); }
      .more-links--with-dropdown > .site-nav__dropdown > .page-width > .small-dropdown__container > .site-nav__item:last-child {
        border-bottom: none; }
      .more-links--with-dropdown > .site-nav__dropdown > .page-width > .small-dropdown__container > .site-nav__item.open > .site-nav__dropdown, .more-links--with-dropdown > .site-nav__dropdown > .page-width > .small-dropdown__container > .site-nav__item:hover > .site-nav__dropdown {
        display: none; }

.more-links__dropdown-container {
  position: absolute;
  left: 25%;
  right: 0;
  top: 0;
  padding-top: 15px;
  padding-left: 30px; }
  .more-links__dropdown-container .site-nav__dropdown {
    position: static;
    display: block !important;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0; }
  .more-links__dropdown-container .site-nav__link::after {
    display: none; }
  .more-links__dropdown-container .page-width {
    max-width: auto; }

.more-links__parent--inactive > .site-nav__link {
  opacity: 0.5; }

.grid_upsell {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #000;
  margin-bottom: -20px;
  width: 100%; }
  .grid_upsell .grid_one--third {
    flex: 0 0 30%;
    padding: 20px 10px; }
    .grid_upsell .grid_one--third a {
      width: 100%;
      display: block; }
  .grid_upsell .grid_two--thirds {
    flex: 0 0 70%;
    padding: 20px 10px; }
    .grid_upsell .grid_two--thirds .catc-btn-cart {
      margin-top: 15px;
      display: inline-block !important;
      width: auto !important;
      padding: 10px; }
  .grid_upsell .related_product-title {
    font-weight: bold;
    text-transform: uppercase; }
  .grid_upsell .related_product-price {
    font-weight: bold; }
  .grid_upsell .related_product_byline {
    font-size: 13px; }
  @media screen and (max-width: 768px) {
    .grid_upsell {
      margin-bottom: 0; }
      .grid_upsell .grid_one--third {
        flex: 0 0 15%; }
      .grid_upsell .grid_two--thirds {
        flex: 0 0 85%; } }

.footer-nav--inline .footer-nav__item {
  display: inline-block;
  margin-right: 15px; }

.footer-nav__link {
  color: #1f1f1f;
  fill: #1f1f1f;
  font-size: 15px;
  padding: 3px 20px 3px 0; }
  @media only screen and (min-width: 2560px) {
    .footer-nav__link {
      font-size: 19.5px; } }
  @media only screen and (max-width: 767px) {
    .footer-nav__link {
      padding: 3px 0; } }

.footer-nav__submenu {
  font-size: 13.125px;
  font-weight: 400;
  margin-bottom: 15px; }
  .footer-nav__submenu .footer-nav__link {
    color: rgba(31, 31, 31, 0.8); }

.footer-nav__link--top {
  margin-bottom: 7.5px;
  padding-top: 0;
  font-weight: 500; }

.small-nav {
  display: flex;
  font-size: 0.75rem;
  flex-wrap: wrap; }

.small-nav__link {
  color: #1f1f1f;
  fill: #1f1f1f;
  position: relative;
  padding-right: 15px;
  text-decoration: none; }

.small-nav__item:not(:last-child) .small-nav__link:after {
  background-color: rgba(31, 31, 31, 0.3);
  content: '';
  height: 100%;
  position: absolute;
  right: 7.5px;
  top: 0;
  width: 1px; }

@media only screen and (min-width: 768px) {
  .footer-nav__link,
  .small-nav__link {
    transition: opacity 0.25s; }
    .footer-nav__link:hover,
    .small-nav__link:hover {
      color: #1f1f1f;
      opacity: 0.7; } }
.mobile-site-nav {
  display: none;
  margin: 0; }

.mobile-site-nav__item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #d2d6df;
  background-color: #fff; }
  .mobile-site-nav__item:first-child {
    border-top: 2px solid #d2d6df; }

.mobile-site-nav__link {
  position: relative;
  display: block;
  flex-grow: 1;
  padding: 12px 14px;
  font-size: 1.13rem;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1f1f1f; }
  .mobile-site-nav__link:hover {
    color: black; }
  .mobile-site-nav__link.nav-title {
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem; }

.mobile-site-nav .mobile-site-nav__icon {
  padding: 0 25px;
  margin: 0;
  border-radius: 0; }
  .mobile-site-nav .mobile-site-nav__icon .icon {
    width: 36px;
    height: 36px;
    vertical-align: top;
    transition: transform 0.25s; }
  .mobile-site-nav .mobile-site-nav__icon.submenu-open .icon {
    transform: rotate(180deg); }

.mobile-site-nav__menu {
  display: none;
  width: 100%;
  padding-left: 0; }
  .mobile-site-nav__menu .mobile-site-nav__item {
    border-bottom: 0;
    background-color: transparent; }
    .mobile-site-nav__menu .mobile-site-nav__item .mobile-site-nav__link {
      padding-left: 0;
      text-transform: initial; }
  .mobile-site-nav__menu .mobile-site-nav__menu .mobile-site-nav__item .mobile-site-nav__link {
    padding-left: 75px; }

@media only screen and (max-width: 767px) {
  .mobile-site-nav {
    display: block; }

  .site-nav {
    display: none; }

  .header-navigation {
    display: block;
    padding: 0;
    position: static;
    pointer-events: none; }
    .header-navigation .navigation__container {
      opacity: 0;
      transition: all 150ms cubic-bezier(0.46, 0.03, 0, 1);
      display: block;
      position: fixed;
      left: 0;
      top: 0;
      height: 100vh;
      width: 100%;
      padding: 0 0 20px;
      background-color: #f3ebe2;
      color: black;
      z-index: 999;
      overflow: scroll; }
      .header-navigation .navigation__container .site-nav__item:first-child .site-nav__link {
        padding-left: 20px; }
    .header-navigation .mobile-menu-utils,
    .header-navigation .mobile-menu-search-bar,
    .header-navigation .mobile-site-nav,
    .header-navigation .header-social-icons {
      opacity: 0;
      transform: translate3d(0, -10px, 0);
      transition: all 350ms cubic-bezier(0.46, 0.03, 0, 1); }
    .header-navigation .mobile-menu-utils {
      transition-delay: 100ms;
      background: #FFF;
      min-height: 50px;
      display: block; }
      .header-navigation .mobile-menu-utils button {
        padding-top: 5px;
        float: right; }
      .header-navigation .mobile-menu-utils .mobile-logo {
        max-width: 169px;
        float: left;
        padding-top: 4px;
        margin-left: 40px; }
    .header-navigation .mobile-menu-search-bar {
      transition-delay: 200ms;
      margin: 0;
      background: #FFF; }
    .header-navigation .mobile-site-nav {
      transition-delay: 300ms; }
    .header-navigation .header-social-icons {
      transition-delay: 400ms;
      margin-top: 30px;
      text-align: center; }
    .header-navigation .mobile-menu-search-bar .mobile-menu-search {
      pointer-events: none;
      background: #FFF;
      padding: 5px 10px; }

  .header-navigation--open {
    pointer-events: auto; }
    .header-navigation--open .navigation__container {
      opacity: 1; }
    .header-navigation--open .mobile-menu-utils,
    .header-navigation--open .mobile-menu-search-bar,
    .header-navigation--open .mobile-site-nav,
    .header-navigation--open .header-social-icons {
      opacity: 1;
      transform: translate3d(0, 0, 0); }
    .header-navigation--open .header-social-icons {
      text-align: left; }
    .header-navigation--open .mobile-menu-search-bar .mobile-menu-search {
      pointer-events: auto; }

  .footer-navigation {
    padding-top: 15px; }

  .footer-nav.grid {
    margin-left: 0; }

  .footer-nav--inline .footer-nav__item {
    display: block; }

  .footer-nav--dropdowns .footer-nav__item {
    padding-left: 0;
    padding-top: 15px;
    text-align: center; } }
.template-blog .store-messages-bar {
  margin-bottom: 0; }

.store-messages-bar {
  background-color: #f4f4f4;
  color: black;
  position: relative;
  z-index: 1; }

.store-messages {
  align-items: center;
  display: flex;
  justify-content: space-between;
  text-align: center; }

.store-message {
  font-size: 0.875rem;
  flex: 1 0 33%;
  padding: 8px;
  position: relative; }

.store-message--static:not(:first-child)::before {
  position: absolute;
  content: '';
  height: 15px;
  width: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.7); }

.store-message-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s; }
  .store-message-link:hover {
    color: inherit;
    opacity: .7; }

@media only screen and (max-width: 767px) {
  .store-message--static::before {
    display: none; } }
.customer-account {
  position: relative; }

.customer-account__menu {
  background-color: white;
  border-bottom: 3px solid #1f1f1f;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  display: none;
  left: 50%;
  padding: 15px;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  min-width: 160px;
  width: max-content; }

.customer-account__link {
  color: #1f1f1f; }

.customer-account__link a {
  color: #1f1f1f;
  font-weight: 500;
  transition: opacity 0.25s; }
  .customer-account__link a:hover {
    opacity: .6; }

@media only screen and (min-width: 768px) {
  .customer-account:hover .customer-account__menu {
    display: none; } }
.search-bar {
  background-color: transparent;
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  position: relative;
  z-index: 1;
  transition: opacity 0.25s;
  width: 70%; }

.search-bar-open .search-bar,
.search-bar--open {
  opacity: 1;
  pointer-events: auto; }
  .search-bar-open .search-bar .search-form__icon,
  .search-bar--open .search-form__icon {
    opacity: 1; }

.search-bar__container {
  position: relative;
  display: flex; }

.search-form__icon {
  opacity: 0;
  transition: opacity 0.25s; }

.search-form {
  padding: 0;
  width: 100%; }

.search-form__input {
  color: #1f1f1f;
  margin: 0;
  padding: 10px 15px;
  width: 83%;
  border: 0;
  border-radius: 0; }
  .search-form__input:focus {
    outline: none;
    background-color: #fff; }
  .search-form__input::placeholder {
    color: #1f1f1f;
    opacity: .75; }

.search-form__button {
  display: none; }

@media only screen and (max-width: 767px) {
  .search-form__button {
    display: inline-block;
    float: right;
    position: absolute;
    right: 6px;
    font-family: "Work Sans",sans-serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.4em;
    padding: 10px 0 5px;
    font-size: 14px;
    background: transparent;
    border-bottom: 4px solid #cca194; } }
.search-bar__results {
  display: none;
  position: absolute;
  left: -30px;
  top: 100%;
  width: calc(100% + 60px);
  color: #212b36;
  background: white;
  padding: 15px 0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15); }
  .search-bar--has-results .search-bar__results {
    display: block; }
  .search-bar--loading-results .search-bar__results {
    display: block; }

.hide-for-search {
  z-index: 1; }

.hide-for-search.header-cart {
  z-index: 2; }

.search-bar-open .hide-for-search {
  opacity: 0;
  pointer-events: none; }

.mobile-search,
.mobile-menu-search-bar {
  display: none; }

.mobile-menu-search-bar {
  margin: 0 20px; }

.mobile-menu-search {
  padding-bottom: 5px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  opacity: 1;
  width: auto; }
  .mobile-menu-search .search-form__icon {
    opacity: 1; }

.mobile-menu-search-bar .mobile-menu-search {
  margin: 0;
  padding: 5px; }

.settings-open-bar.desktop-only {
  opacity: 1; }
  .settings-open-bar.desktop-only .search-form__icon {
    opacity: 1;
    position: absolute;
    left: 0; }
  .settings-open-bar.desktop-only .search-form__input {
    padding-left: 50px; }

@media only screen and (min-width: 768px) {
  .search-bar--fadein {
    left: 15%;
    position: absolute;
    z-index: 0; }
    .search-bar--fadein.search-bar--open {
      z-index: 2; } }
@media only screen and (max-width: 767px) {
  .mobile-menu-search-bar {
    display: block; }

  .mobile-search {
    display: block;
    z-index: 2; }

  .search-bar.mobile-search {
    display: block;
    left: 0;
    margin: 0 20px;
    position: absolute;
    opacity: 0;
    transition: opacity 0.25s;
    width: calc(100% - (20px * 2));
    z-index: 0; }
    .search-bar-open .search-bar.mobile-search {
      opacity: 1;
      transition: opacity 0.25s;
      z-index: 3; }
      .search-bar-open .search-bar.mobile-search .search-form__icon {
        opacity: 1; }

  .search-form__input {
    color: #1f1f1f; }

  .search-bar--fadein {
    padding: 0; }

  .desktop-only {
    display: none; } }
.breadcrumbs {
  position: relative;
  z-index: 2;
  background-color: white; }
  .breadcrumbs ul {
    margin: 15px 0; }
  .breadcrumbs li {
    list-style: none;
    display: inline; }
  .breadcrumbs .icon {
    opacity: 0.5;
    width: 1.2em;
    height: 1.2em; }
  .breadcrumbs::before, .breadcrumbs::after {
    content: " ";
    display: table; }

/* To make up for extra padding at top of sticky columns */
.template-product .breadcrumbs ul {
  margin-bottom: -15px; }

.rimage-outer-wrapper {
  margin-left: auto;
  margin-right: auto; }

.rimage-wrapper {
  position: relative;
  transition: background 500ms; }
  .rimage-wrapper.lazyload--placeholder {
    background: #f4f4f4; }
  .rimage-wrapper .rimage__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .rimage-wrapper .rimage__image.blur-in {
      -webkit-filter: blur(10px);
      filter: blur(10px);
      transition: filter 400ms, -webkit-filter 400ms; }
    .rimage-wrapper .rimage__image.blur-in.lazyloaded {
      -webkit-filter: blur(0);
      filter: blur(0); }
    .rimage-wrapper .rimage__image.fade-in {
      opacity: 0;
      transition: opacity 500ms; }
    .rimage-wrapper .rimage__image.fade-in.lazyloaded {
      opacity: 1; }
    .rimage-wrapper .rimage__image.cover {
      object-fit: cover; }

.rimage-background {
  background-size: cover;
  background-position: center center; }
  .rimage-background.fade-in {
    opacity: 0;
    transition: all 0.25s; }
  .rimage-background.fade-in.lazyloaded {
    opacity: 1; }

.search-result {
  display: flex;
  align-items: center;
  padding: 7.5px 30px;
  color: inherit; }
  .search-result .search-result__image {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    text-align: center;
    flex-shrink: 0; }
    .search-result .search-result__image img {
      vertical-align: top; }
    .search-result .search-result__image .search-result__char {
      font-size: 27px;
      line-height: 40px;
      opacity: 0.3; }
  .search-result:hover {
    background: rgba(0, 0, 0, 0.05); }

.search-result--empty,
.search-result--loading,
.search-result--more {
  padding: 15px 30px 15px 85px; }

.search-page-form {
  display: flex;
  justify-content: center; }

.search-page-button {
  margin: 6px; }

@media only screen and (max-width: 479px) {
  .search-page-form {
    flex-wrap: wrap; }
    .search-page-form #Search,
    .search-page-form .search-page-button {
      width: 100%;
      margin: 10px 0; } }
.tabs {
  margin: 0 0 22.5px;
  padding: 0;
  text-align: center;
  border-bottom: 1px solid rgba(31, 31, 31, 0.2);
  display: flex;
  justify-content: flex-start;
  align-items: flex-end; }
  .tabs li {
    padding: 0;
    display: inline-block;
    min-width: min-content;
    margin: 0 20px -1px; }
    @media only screen and (max-width: 767px) {
      .tabs li {
        margin: 0 10px -1px; } }
    .tabs li:first-child {
      margin-left: 0; }
    .tabs li:last-child {
      margin-right: 0; }
  .tabs a {
    display: block;
    padding: 6px;
    color: #1f1f1f;
    text-decoration: none;
    position: relative;
    line-height: normal; }
    .tabs a:after {
      position: absolute;
      content: '';
      background-color: #1f1f1f;
      height: 3px;
      width: 100%;
      left: 0;
      transform-origin: bottom;
      transition: transform 0.25s;
      transform: scaleY(0);
      bottom: 0; }
  .tabs .tab--active:after {
    transform: scaleY(1); }

.tab-content {
  display: none; }

.tab-content--active,
.no-js .tab-content {
  display: block; }

@media only screen and (min-width: 768px) {
  .tabs a:hover:after {
    transform: scaleY(1); } }
.product-price__reduced {
  color: #d0615f; }

.product-price__compare,
.product-price__compare-large {
  font-size: 70%;
  opacity: 0.5;
  text-decoration: line-through; }

.product-price__compare {
  font-size: 70%; }

.product-price__compare-large {
  font-size: 50%; }

.product-block {
  position: relative;
  text-align: center; }
  .product-block .product-price {
    font-size: 1.25rem;
    line-height: 1.5; }
  .product-block .product-price__from,
  .product-block .product-price__compare {
    font-size: 1rem; }

.product-block__image {
  display: block;
  position: relative; }

.product-block__title {
  margin-top: 0.5em; }

.product-block__title-link {
  text-decoration: none;
  color: inherit; }

.product-label {
  font-size: 0.875rem;
  line-height: 1.4;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.25em 0.75em; }
  @media only screen and (max-width: 1023px) {
    .product-label {
      font-size: 0.75rem;
      line-height: 1.5; } }

.product-label--on-sale {
  color: white;
  background: #d0615f; }

.product-label--sold-out {
  color: white;
  background: #444649; }

.product-block__quicklook-btn {
  width: 100; }

.product-swatch-inline[data-swatch-count="1"] {
  display: none; }

.product-swatch-inline__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  margin: 6px 1px 0;
  box-shadow: inset 0 3px 3px -2px rgba(0, 0, 0, 0.25); }
  .product-swatch-inline__dot.bg-white {
    box-shadow: inset 0 3px 3px -2px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(0, 0, 0, 0.2); }

.bg-aliceblue {
  background-color: aliceblue; }

.bg-antiquewhite {
  background-color: antiquewhite; }

.bg-aqua {
  background-color: aqua; }

.bg-aquamarine {
  background-color: aquamarine; }

.bg-azure {
  background-color: azure; }

.bg-beige {
  background-color: beige; }

.bg-bisque {
  background-color: bisque; }

.bg-black {
  background-color: black; }

.bg-blanchedalmond {
  background-color: blanchedalmond; }

.bg-blue {
  background-color: blue; }

.bg-blueviolet {
  background-color: blueviolet; }

.bg-brown {
  background-color: brown; }

.bg-burlywood {
  background-color: burlywood; }

.bg-cadetblue {
  background-color: cadetblue; }

.bg-chartreuse {
  background-color: chartreuse; }

.bg-chocolate {
  background-color: chocolate; }

.bg-coral {
  background-color: coral; }

.bg-cornflowerblue {
  background-color: cornflowerblue; }

.bg-cornsilk {
  background-color: cornsilk; }

.bg-crimson {
  background-color: crimson; }

.bg-cyan {
  background-color: cyan; }

.bg-darkblue {
  background-color: darkblue; }

.bg-darkcyan {
  background-color: darkcyan; }

.bg-darkgoldenrod {
  background-color: darkgoldenrod; }

.bg-darkgray {
  background-color: darkgray; }

.bg-darkgrey {
  background-color: darkgrey; }

.bg-darkgreen {
  background-color: darkgreen; }

.bg-darkkhaki {
  background-color: darkkhaki; }

.bg-darkmagenta {
  background-color: darkmagenta; }

.bg-darkolivegreen {
  background-color: darkolivegreen; }

.bg-darkorange {
  background-color: darkorange; }

.bg-darkorchid {
  background-color: darkorchid; }

.bg-darkred {
  background-color: darkred; }

.bg-darksalmon {
  background-color: darksalmon; }

.bg-darkseagreen {
  background-color: darkseagreen; }

.bg-darkslateblue {
  background-color: darkslateblue; }

.bg-darkslategray {
  background-color: darkslategray; }

.bg-darkslategrey {
  background-color: darkslategrey; }

.bg-darkturquoise {
  background-color: darkturquoise; }

.bg-darkviolet {
  background-color: darkviolet; }

.bg-deeppink {
  background-color: deeppink; }

.bg-deepskyblue {
  background-color: deepskyblue; }

.bg-dimgray {
  background-color: dimgray; }

.bg-dimgrey {
  background-color: dimgrey; }

.bg-dodgerblue {
  background-color: dodgerblue; }

.bg-firebrick {
  background-color: firebrick; }

.bg-floralwhite {
  background-color: floralwhite; }

.bg-forestgreen {
  background-color: forestgreen; }

.bg-fuchsia {
  background-color: fuchsia; }

.bg-gainsboro {
  background-color: gainsboro; }

.bg-ghostwhite {
  background-color: ghostwhite; }

.bg-gold {
  background-color: gold; }

.bg-goldenrod {
  background-color: goldenrod; }

.bg-gray {
  background-color: gray; }

.bg-grey {
  background-color: grey; }

.bg-green {
  background-color: green; }

.bg-greenyellow {
  background-color: greenyellow; }

.bg-honeydew {
  background-color: honeydew; }

.bg-hotpink {
  background-color: hotpink; }

.bg-indianred {
  background-color: indianred; }

.bg-indigo {
  background-color: indigo; }

.bg-ivory {
  background-color: ivory; }

.bg-khaki {
  background-color: khaki; }

.bg-lavender {
  background-color: lavender; }

.bg-lavenderblush {
  background-color: lavenderblush; }

.bg-lawngreen {
  background-color: lawngreen; }

.bg-lemonchiffon {
  background-color: lemonchiffon; }

.bg-lightblue {
  background-color: lightblue; }

.bg-lightcoral {
  background-color: lightcoral; }

.bg-lightcyan {
  background-color: lightcyan; }

.bg-lightgoldenrodyellow {
  background-color: lightgoldenrodyellow; }

.bg-lightgray {
  background-color: lightgray; }

.bg-lightgrey {
  background-color: lightgrey; }

.bg-lightgreen {
  background-color: lightgreen; }

.bg-lightpink {
  background-color: lightpink; }

.bg-lightsalmon {
  background-color: lightsalmon; }

.bg-lightseagreen {
  background-color: lightseagreen; }

.bg-lightskyblue {
  background-color: lightskyblue; }

.bg-lightslategray {
  background-color: lightslategray; }

.bg-lightslategrey {
  background-color: lightslategrey; }

.bg-lightsteelblue {
  background-color: lightsteelblue; }

.bg-lightyellow {
  background-color: lightyellow; }

.bg-lime {
  background-color: lime; }

.bg-limegreen {
  background-color: limegreen; }

.bg-linen {
  background-color: linen; }

.bg-magenta {
  background-color: magenta; }

.bg-maroon {
  background-color: maroon; }

.bg-mediumaquamarine {
  background-color: mediumaquamarine; }

.bg-mediumblue {
  background-color: mediumblue; }

.bg-mediumorchid {
  background-color: mediumorchid; }

.bg-mediumpurple {
  background-color: mediumpurple; }

.bg-mediumseagreen {
  background-color: mediumseagreen; }

.bg-mediumslateblue {
  background-color: mediumslateblue; }

.bg-mediumspringgreen {
  background-color: mediumspringgreen; }

.bg-mediumturquoise {
  background-color: mediumturquoise; }

.bg-mediumvioletred {
  background-color: mediumvioletred; }

.bg-midnightblue {
  background-color: midnightblue; }

.bg-mintcream {
  background-color: mintcream; }

.bg-mistyrose {
  background-color: mistyrose; }

.bg-moccasin {
  background-color: moccasin; }

.bg-navajowhite {
  background-color: navajowhite; }

.bg-navy {
  background-color: navy; }

.bg-oldlace {
  background-color: oldlace; }

.bg-olive {
  background-color: olive; }

.bg-olivedrab {
  background-color: olivedrab; }

.bg-orange {
  background-color: orange; }

.bg-orangered {
  background-color: orangered; }

.bg-orchid {
  background-color: orchid; }

.bg-palegoldenrod {
  background-color: palegoldenrod; }

.bg-palegreen {
  background-color: palegreen; }

.bg-paleturquoise {
  background-color: paleturquoise; }

.bg-palevioletred {
  background-color: palevioletred; }

.bg-papayawhip {
  background-color: papayawhip; }

.bg-peachpuff {
  background-color: peachpuff; }

.bg-peru {
  background-color: peru; }

.bg-pink {
  background-color: pink; }

.bg-plum {
  background-color: plum; }

.bg-powderblue {
  background-color: powderblue; }

.bg-purple {
  background-color: purple; }

.bg-rebeccapurple {
  background-color: rebeccapurple; }

.bg-red {
  background-color: red; }

.bg-rosybrown {
  background-color: rosybrown; }

.bg-royalblue {
  background-color: royalblue; }

.bg-saddlebrown {
  background-color: saddlebrown; }

.bg-salmon {
  background-color: salmon; }

.bg-sandybrown {
  background-color: sandybrown; }

.bg-seagreen {
  background-color: seagreen; }

.bg-seashell {
  background-color: seashell; }

.bg-sienna {
  background-color: sienna; }

.bg-silver {
  background-color: silver; }

.bg-skyblue {
  background-color: skyblue; }

.bg-slateblue {
  background-color: slateblue; }

.bg-slategray {
  background-color: slategray; }

.bg-slategrey {
  background-color: slategrey; }

.bg-snow {
  background-color: snow; }

.bg-springgreen {
  background-color: springgreen; }

.bg-steelblue {
  background-color: steelblue; }

.bg-tan {
  background-color: tan; }

.bg-teal {
  background-color: teal; }

.bg-thistle {
  background-color: thistle; }

.bg-tomato {
  background-color: tomato; }

.bg-turquoise {
  background-color: turquoise; }

.bg-violet {
  background-color: violet; }

.bg-wheat {
  background-color: wheat; }

.bg-white {
  background-color: white; }

.bg-whitesmoke {
  background-color: whitesmoke; }

.bg-yellow {
  background-color: yellow; }

.bg-yellowgreen {
  background-color: yellowgreen; }

.bg-heather-grey {
  background-color: heather-grey; }

.bg-heather-grey-white {
  background-color: heather-grey-white; }

.bg-heather-dove-white {
  background-color: heather-dove-white; }

.bg-dove-white {
  background-color: dove-white; }

.bg-charcoal {
  background-color: charcoal; }

.bg-pink {
  background-color: pink; }

.bg-blush {
  background-color: blush; }

.bg-navy {
  background-color: navy; }

.bg-nude {
  background-color: nude; }

.bg-sand {
  background-color: sand; }

.bg-heather-navy {
  background-color: heather-navy; }

.bg-heather-blue {
  background-color: heather-blue; }

.bg-heather-black {
  background-color: heather-black; }

.bg-charcoal-black {
  background-color: charcoal-black; }

.bg-cream {
  background-color: cream; }

.bg-natural {
  background-color: natural; }

.bg-brown {
  background-color: brown; }

.bg-black-lace-print {
  background-color: black-lace-print; }

.bg-lace {
  background-color: lace; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes a {
  position: relative;
  padding: 18px;
  width: 32px;
  height: 32px;
  border: 1px solid #aaa;
  border-radius: 100%;
  overflow: hidden;
  text-indent: 40px;
  min-width: 0;
  background: transparent; }
  select[data-listed][data-colour-swatch="true"] + .clickyboxes a.active {
    border-color: #1f1f1f;
    background: transparent; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes a::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 32px;
  height: 32px;
  border-radius: 100%; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--aliceblue::after {
  background-color: aliceblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--antiquewhite::after {
  background-color: antiquewhite; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--aqua::after {
  background-color: aqua; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--aquamarine::after {
  background-color: aquamarine; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--azure::after {
  background-color: azure; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--beige::after {
  background-color: beige; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--bisque::after {
  background-color: bisque; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--black::after {
  background-color: black; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--blanchedalmond::after {
  background-color: blanchedalmond; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--blue::after {
  background-color: blue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--blueviolet::after {
  background-color: blueviolet; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--brown::after {
  background-color: brown; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--burlywood::after {
  background-color: burlywood; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--cadetblue::after {
  background-color: cadetblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--chartreuse::after {
  background-color: chartreuse; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--chocolate::after {
  background-color: chocolate; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--coral::after {
  background-color: coral; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--cornflowerblue::after {
  background-color: cornflowerblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--cornsilk::after {
  background-color: cornsilk; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--crimson::after {
  background-color: crimson; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--cyan::after {
  background-color: cyan; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkblue::after {
  background-color: darkblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkcyan::after {
  background-color: darkcyan; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkgoldenrod::after {
  background-color: darkgoldenrod; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkgray::after {
  background-color: darkgray; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkgrey::after {
  background-color: darkgrey; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkgreen::after {
  background-color: darkgreen; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkkhaki::after {
  background-color: darkkhaki; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkmagenta::after {
  background-color: darkmagenta; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkolivegreen::after {
  background-color: darkolivegreen; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkorange::after {
  background-color: darkorange; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkorchid::after {
  background-color: darkorchid; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkred::after {
  background-color: darkred; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darksalmon::after {
  background-color: darksalmon; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkseagreen::after {
  background-color: darkseagreen; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkslateblue::after {
  background-color: darkslateblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkslategray::after {
  background-color: darkslategray; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkslategrey::after {
  background-color: darkslategrey; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkturquoise::after {
  background-color: darkturquoise; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkviolet::after {
  background-color: darkviolet; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--deeppink::after {
  background-color: deeppink; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--deepskyblue::after {
  background-color: deepskyblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--dimgray::after {
  background-color: dimgray; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--dimgrey::after {
  background-color: dimgrey; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--dodgerblue::after {
  background-color: dodgerblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--firebrick::after {
  background-color: firebrick; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--floralwhite::after {
  background-color: floralwhite; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--forestgreen::after {
  background-color: forestgreen; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--fuchsia::after {
  background-color: fuchsia; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--gainsboro::after {
  background-color: gainsboro; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--ghostwhite::after {
  background-color: ghostwhite; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--gold::after {
  background-color: gold; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--goldenrod::after {
  background-color: goldenrod; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--gray::after {
  background-color: gray; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--grey::after {
  background-color: grey; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--green::after {
  background-color: green; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--greenyellow::after {
  background-color: greenyellow; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--honeydew::after {
  background-color: honeydew; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--hotpink::after {
  background-color: hotpink; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--indianred::after {
  background-color: indianred; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--indigo::after {
  background-color: indigo; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--ivory::after {
  background-color: ivory; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--khaki::after {
  background-color: khaki; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lavender::after {
  background-color: lavender; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lavenderblush::after {
  background-color: lavenderblush; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lawngreen::after {
  background-color: lawngreen; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lemonchiffon::after {
  background-color: lemonchiffon; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightblue::after {
  background-color: lightblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightcoral::after {
  background-color: lightcoral; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightcyan::after {
  background-color: lightcyan; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightgoldenrodyellow::after {
  background-color: lightgoldenrodyellow; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightgray::after {
  background-color: lightgray; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightgrey::after {
  background-color: lightgrey; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightgreen::after {
  background-color: lightgreen; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightpink::after {
  background-color: lightpink; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightsalmon::after {
  background-color: lightsalmon; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightseagreen::after {
  background-color: lightseagreen; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightskyblue::after {
  background-color: lightskyblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightslategray::after {
  background-color: lightslategray; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightslategrey::after {
  background-color: lightslategrey; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightsteelblue::after {
  background-color: lightsteelblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightyellow::after {
  background-color: lightyellow; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lime::after {
  background-color: lime; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--limegreen::after {
  background-color: limegreen; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--linen::after {
  background-color: linen; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--magenta::after {
  background-color: magenta; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--maroon::after {
  background-color: maroon; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--mediumaquamarine::after {
  background-color: mediumaquamarine; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--mediumblue::after {
  background-color: mediumblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--mediumorchid::after {
  background-color: mediumorchid; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--mediumpurple::after {
  background-color: mediumpurple; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--mediumseagreen::after {
  background-color: mediumseagreen; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--mediumslateblue::after {
  background-color: mediumslateblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--mediumspringgreen::after {
  background-color: mediumspringgreen; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--mediumturquoise::after {
  background-color: mediumturquoise; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--mediumvioletred::after {
  background-color: mediumvioletred; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--midnightblue::after {
  background-color: midnightblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--mintcream::after {
  background-color: mintcream; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--mistyrose::after {
  background-color: mistyrose; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--moccasin::after {
  background-color: moccasin; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--navajowhite::after {
  background-color: navajowhite; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--navy::after {
  background-color: navy; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--oldlace::after {
  background-color: oldlace; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--olive::after {
  background-color: olive; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--olivedrab::after {
  background-color: olivedrab; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--orange::after {
  background-color: orange; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--orangered::after {
  background-color: orangered; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--orchid::after {
  background-color: orchid; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--palegoldenrod::after {
  background-color: palegoldenrod; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--palegreen::after {
  background-color: palegreen; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--paleturquoise::after {
  background-color: paleturquoise; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--palevioletred::after {
  background-color: palevioletred; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--papayawhip::after {
  background-color: papayawhip; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--peachpuff::after {
  background-color: peachpuff; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--peru::after {
  background-color: peru; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--pink::after {
  background-color: pink; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--plum::after {
  background-color: plum; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--powderblue::after {
  background-color: powderblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--purple::after {
  background-color: purple; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--rebeccapurple::after {
  background-color: rebeccapurple; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--red::after {
  background-color: red; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--rosybrown::after {
  background-color: rosybrown; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--royalblue::after {
  background-color: royalblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--saddlebrown::after {
  background-color: saddlebrown; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--salmon::after {
  background-color: salmon; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--sandybrown::after {
  background-color: sandybrown; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--seagreen::after {
  background-color: seagreen; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--seashell::after {
  background-color: seashell; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--sienna::after {
  background-color: sienna; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--silver::after {
  background-color: silver; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--skyblue::after {
  background-color: skyblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--slateblue::after {
  background-color: slateblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--slategray::after {
  background-color: slategray; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--slategrey::after {
  background-color: slategrey; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--snow::after {
  background-color: snow; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--springgreen::after {
  background-color: springgreen; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--steelblue::after {
  background-color: steelblue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--tan::after {
  background-color: tan; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--teal::after {
  background-color: teal; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--thistle::after {
  background-color: thistle; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--tomato::after {
  background-color: tomato; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--turquoise::after {
  background-color: turquoise; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--violet::after {
  background-color: violet; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--wheat::after {
  background-color: wheat; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--white::after {
  background-color: white; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--whitesmoke::after {
  background-color: whitesmoke; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--yellow::after {
  background-color: yellow; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--yellowgreen::after {
  background-color: yellowgreen; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heather-grey::after {
  background-color: heather-grey; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heather-grey-white::after {
  background-color: heather-grey-white; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heather-dove-white::after {
  background-color: heather-dove-white; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--dove-white::after {
  background-color: dove-white; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--charcoal::after {
  background-color: charcoal; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--pink::after {
  background-color: pink; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--blush::after {
  background-color: blush; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--navy::after {
  background-color: navy; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--nude::after {
  background-color: nude; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--sand::after {
  background-color: sand; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heather-navy::after {
  background-color: heather-navy; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heather-blue::after {
  background-color: heather-blue; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heather-black::after {
  background-color: heather-black; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--charcoal-black::after {
  background-color: charcoal-black; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--cream::after {
  background-color: cream; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--natural::after {
  background-color: natural; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--brown::after {
  background-color: brown; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--black-lace-print::after {
  background-color: black-lace-print; }
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lace::after {
  background-color: lace; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heather-grey::after {
  background-color: #8f8989; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heathergrey::after {
  background-color: #8f8989; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heather-grey-white::after {
  background-color: #cfd4db; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heathergreywhite::after {
  background-color: #cfd4db; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heather-dove::after {
  background-color: #cbc5bc; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heatherdove::after {
  background-color: #cbc5bc; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heather-dove-white::after {
  background-color: #f4f4f4; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heatherdovewhite::after {
  background-color: #f4f4f4; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--dove-white::after {
  background-color: #ebeaef; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--dovewhite::after {
  background-color: #ebeaef; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--charcoal::after {
  background-color: #494852; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--pink::after {
  background-color: #fbc9ca; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--blush::after {
  background-color: #e2c5ca; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--navy::after {
  background-color: #31425a; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--nude::after {
  background-color: #e8d3c2; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--almond::after {
  background-color: #e8d3c2; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--pebble::after {
  background-color: #865d5d; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--sand::after {
  background-color: #e8d3c2; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heather-navy::after {
  background-color: #413e51; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heathernavy::after {
  background-color: #413e51; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heather-blue::after {
  background-color: #156bb4; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heatherblue::after {
  background-color: #156bb4; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heather-black::after {
  background-color: #373737; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heatherblack::after {
  background-color: #373737; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--charcoal-black::after {
  background-color: #373737; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--charcoalblack::after {
  background-color: #373737; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--cream::after {
  background-color: #fef9f3; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--natural::after {
  background-color: #f4f4f4; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--brown::after {
  background-color: #432604; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--black-lace-print::after {
  background-color: #9d7a66; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--blackcamo::after {
  background-color: #2b2b2b; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--blacklaceprint::after {
  background-color: #9d7a66; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lace::after {
  background-color: #1f1f1f; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkheathergrey::after {
  background-color: #9e9c9d; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--dark-heather-grey::after {
  background-color: #9e9c9d; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--steel::after {
  background-color: #43464b; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--cocoa::after {
  background-color: #a8533e; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--storm::after {
  background-color: #333438; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--twilight::after {
  background-color: #7e86a6; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--taupe::after {
  background-color: #e8d3c2; }

/* PAIGE LAUREN COLOR SWATCHES */
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--storm::after {
  background-color: #333438; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--olive::after {
  background-color: #38392b; }

.bg-heathergrey {
  background-color: #8f8989; }

.bg-heathergreywhite {
  background-color: #8f8989; }

.bg-heatherdove {
  background-color: #cbc5bc; }

.bg-heatherdovewhite {
  background-color: #f4f4f4; }

.bg-charcoal {
  background-color: #494852; }

.bg-pink {
  background-color: #fbc9ca; }

.bg-blush {
  background-color: #e2c5ca; }

.bg-navy {
  background-color: #31425a; }

.bg-nude {
  background-color: #e8d3c2; }

.bg-almond {
  background-color: #e8d3c2; }

.bg-pebble {
  background-color: #865d5d; }

.bg-sand {
  background-color: #e8d3c2; }

.bg-heathernavy {
  background-color: #413e51; }

.bg-heatherblue {
  background-color: #156bb4; }

.bg-heatherblack {
  background-color: #373737; }

.bg-charcoalblack {
  background-color: #373737; }

.bg-cream {
  background-color: #fef9f3; }

.bg-natural {
  background-color: #f4f4f4; }

.bg-brown {
  background-color: #432604; }

.bg-blacklaceprint {
  background-color: #9d7a66; }

.bg-blackcamo {
  background-color: #2b2b2b; }

.bg-lace {
  background-color: #1f1f1f; }

.bg-darkheathergrey {
  background-color: #9e9c9d; }

.bg-steel {
  background-color: #43464B; }

.bg-cocoa {
  background-color: #a8533e; }

.bg-storm {
  background-color: #333438; }

.bg-olive {
  background-color: #38392b; }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--blackcamo::after {
  background-image: url(/cdn/shop/files/blackcamo.jpg?v=4974751115988872086); }

.bg-blackcamo {
  background-image: url(/cdn/shop/files/blackcamo.jpg?v=4974751115988872086); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--olivecamo::after {
  background-image: url(/cdn/shop/files/olivecamo.jpg?v=3483015389935443031); }

.bg-olivecamo {
  background-image: url(/cdn/shop/files/olivecamo.jpg?v=3483015389935443031); }

/* PAIGE LAUREN COLOR SWATCHES */
select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--cloudtiedye::after {
  background-image: url(/cdn/shop/files/cloudtiedye.jpg?v=17339709124856706087); }

.bg-cloudtiedye {
  background-image: url(/cdn/shop/files/cloudtiedye.jpg?v=17339709124856706087); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--pinktiedye::after {
  background-image: url(/cdn/shop/files/pinktiedye.jpg?v=2664371488904203535); }

.bg-pinktiedye {
  background-image: url(/cdn/shop/files/pinktiedye.jpg?v=2664371488904203535); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--bluetiedye::after {
  background-image: url(/cdn/shop/files/bluetiedye.jpg?v=7361892068333902832); }

.bg-bluetiedye {
  background-image: url(/cdn/shop/files/bluetiedye.jpg?v=7361892068333902832); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lavendertiedye::after {
  background-image: url(/cdn/shop/files/lavendertiedye.jpg?v=14594950183657225668); }

.bg-lavendertiedye {
  background-image: url(/cdn/shop/files/lavendertiedye.jpg?v=14594950183657225668); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--splashlavender::after {
  background-image: url(/cdn/shop/files/splashlavender.jpg?v=5275226856565366659); }

.bg-splashlavender {
  background-image: url(/cdn/shop/files/splashlavender.jpg?v=5275226856565366659); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--splashpink::after {
  background-image: url(/cdn/shop/files/splashlavender.jpg?v=5275226856565366659); }

.bg-splashpink {
  background-image: url(/cdn/shop/files/splashlavender.jpg?v=5275226856565366659); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--splashnavy::after {
  background-image: url(/cdn/shop/files/splashnavy.jpg?v=1575389590778555202); }

.bg-splashnavy {
  background-image: url(/cdn/shop/files/splashnavy.jpg?v=1575389590778555202); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--blue::after {
  background-image: url(/cdn/shop/files/blue.jpg?v=16352172019866795496); }

.bg-blue {
  background-image: url(/cdn/shop/files/blue.jpg?v=16352172019866795496); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--babyblue::after {
  background-image: url(/cdn/shop/files/babyblue.jpg?v=3521638809243591487); }

.bg-babyblue {
  background-image: url(/cdn/shop/files/babyblue.jpg?v=3521638809243591487); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--babywhite::after {
  background-image: url(/cdn/shop/files/babywhite.jpg?v=78167105730255997); }

.bg-babywhite {
  background-image: url(/cdn/shop/files/babywhite.jpg?v=78167105730255997); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--babygray::after {
  background-image: url(/cdn/shop/files/babygray.jpg?v=4759105491850207605); }

.bg-babygray {
  background-image: url(/cdn/shop/files/babygray.jpg?v=4759105491850207605); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--babypink::after {
  background-image: url(/cdn/shop/files/babypink.jpg?v=14079288868850795874); }

.bg-babypink {
  background-image: url(/cdn/shop/files/babypink.jpg?v=14079288868850795874); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--babybluetiedye::after {
  background-image: url(/cdn/shop/files/babybluetiedye.jpg?v=4471725951119421853); }

.bg-babybluetiedye {
  background-image: url(/cdn/shop/files/babybluetiedye.jpg?v=4471725951119421853); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--babygreytiedye::after {
  background-image: url(/cdn/shop/files/babygreytiedye.jpg?v=341118702869482013); }

.bg-babygreytiedye {
  background-image: url(/cdn/shop/files/babygreytiedye.jpg?v=341118702869482013); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--babypinktiedye::after {
  background-image: url(/cdn/shop/files/babypinktiedye.jpg?v=5013877500929785044); }

.bg-babypinktiedye {
  background-image: url(/cdn/shop/files/babypinktiedye.jpg?v=5013877500929785044); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightpink::after {
  background-image: url(/cdn/shop/files/lightpink.jpg?v=8050557687633120319); }

.bg-lightpink {
  background-image: url(/cdn/shop/files/lightpink.jpg?v=8050557687633120319); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--darkblue::after {
  background-image: url(/cdn/shop/files/darkblue.jpg?v=17768143971009471796); }

.bg-darkblue {
  background-image: url(/cdn/shop/files/darkblue.jpg?v=17768143971009471796); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--heatheredstripe::after {
  background-image: url(/cdn/shop/files/heatheredstripe.jpg?v=15844056488834709518); }

.bg-heatheredstripe {
  background-image: url(/cdn/shop/files/heatheredstripe.jpg?v=15844056488834709518); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lightbluemarble::after {
  background-image: url(/cdn/shop/files/lightbluemarble.jpg?v=10404969279920180760); }

.bg-lightbluemarble {
  background-image: url(/cdn/shop/files/lightbluemarble.jpg?v=10404969279920180760); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--lilacmarble::after {
  background-image: url(/cdn/shop/files/lilacmarble.jpg?v=6901807611513389182); }

.bg-lilacmarble {
  background-image: url(/cdn/shop/files/lilacmarble.jpg?v=6901807611513389182); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--marblecloudgrey::after {
  background-image: url(/cdn/shop/files/marblecloudgrey.jpg?v=1433588802542492375); }

.bg-marblecloudgrey {
  background-image: url(/cdn/shop/files/marblecloudgrey.jpg?v=1433588802542492375); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--marblecrystallightgrey::after {
  background-image: url(/cdn/shop/files/marblecrystallightgrey.jpg?v=2622502696611937120); }

.bg-marblecrystallightgrey {
  background-image: url(/cdn/shop/files/marblecrystallightgrey.jpg?v=2622502696611937120); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--marbleoceanblue::after {
  background-image: url(/cdn/shop/files/marbleoceanblue.jpg?v=5860903592094730968); }

.bg-marbleoceanblue {
  background-image: url(/cdn/shop/files/marbleoceanblue.jpg?v=5860903592094730968); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--marblesplashlightblue::after {
  background-image: url(/cdn/shop/files/marblesplashlightblue.jpg?v=1945627919220690698); }

.bg-marblesplashlightblue {
  background-image: url(/cdn/shop/files/marblesplashlightblue.jpg?v=1945627919220690698); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--mintmarble::after {
  background-image: url(/cdn/shop/files/mintmarble.jpg?v=6879733700633684775); }

.bg-mintmarble {
  background-image: url(/cdn/shop/files/mintmarble.jpg?v=6879733700633684775); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--pinkmarble::after {
  background-image: url(/cdn/shop/files/pinkmarble.jpg?v=10480192538299247031); }

.bg-pinkmarble {
  background-image: url(/cdn/shop/files/pinkmarble.jpg?v=10480192538299247031); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--navystripe::after {
  background-image: url(/cdn/shop/files/navystripe.jpg?v=6719538655118624268); }

.bg-navystripe {
  background-image: url(/cdn/shop/files/navystripe.jpg?v=6719538655118624268); }

select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--pinkstripe::after {
  background-image: url(/cdn/shop/files/pinkstripe.jpg?v=11548576753728231778); }

.bg-pinkstripe {
  background-image: url(/cdn/shop/files/pinkstripe.jpg?v=11548576753728231778); }

/**
* For use in cart, order, ajax-added notification
*/
.product-summary {
  display: flex; }

.product-summary__image {
  width: 25%;
  margin-right: 15px; }

.product-summary__content {
  margin: 15px 0; }

.product-summary__variants {
  color: #787878;
  font-size: 0.875rem; }

.size-chart-link {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px; }

.size-video-link {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px; }

.size-chart-container {
  background: white;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  overflow: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s; }

.size-luxe-height-container {
  background: white;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  overflow: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s; }

.size-video-container {
  background: white;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5000;
  overflow: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s; }

.size-chart-is-open .header-content,
.size-chart-is-open .header-navigation,
.size-chart-is-open .breadcrumbs,
.size-chart-is-open .docked-header--dock .docked-navigation-container__inner {
  z-index: 0; }
.size-chart-is-open .size-chart-container {
  pointer-events: auto;
  opacity: 1; }

.size-luxe-is-open .header-content,
.size-luxe-is-open .header-navigation,
.size-luxe-is-open .breadcrumbs,
.size-luxe-is-open .docked-header--dock .docked-navigation-container__inner {
  z-index: 0; }
.size-luxe-is-open .size-luxe-height-container {
  pointer-events: auto;
  opacity: 1; }

.size-video-is-open .header-content,
.size-video-is-open .header-navigation,
.size-video-is-open .breadcrumbs,
.size-video-is-open .docked-header--dock .docked-navigation-container__inner {
  z-index: 0; }
.size-video-is-open .size-video-container {
  pointer-events: auto;
  opacity: 1; }

.size-chart-content {
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  max-width: 100%;
  width: 1140px; }
  .size-chart-content table {
    white-space: nowrap;
    display: flex;
    overflow: scroll;
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
    -webkit-overflow-scrolling: touch; }

.size-video-content {
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  max-width: 100%;
  width: 960px; }
  .size-video-content table {
    white-space: nowrap;
    display: flex;
    overflow: auto; }

.size-chart-close {
  position: absolute;
  right: 30px;
  top: 30px; }

.size-video-close {
  position: absolute;
  right: 30px;
  top: 30px; }

.bandita-club-close {
  position: absolute;
  right: 30px;
  top: 30px; }

@media only screen and (max-width: 767px) {
  .size-chart-close {
    right: 20px;
    top: 20px; }

  .size-video-close {
    right: 20px;
    top: 20px; } }
.overlay, .overlay-2 {
  padding: 30px;
  position: absolute;
  width: calc(50% - (30px * 4)); }
  .overlay .large-title, .overlay .rte h1, .rte .overlay h1, .overlay .subscribe-form__side-heading, .overlay .article-page .single-column-layout.with-image .article-overlay h1, .article-page .single-column-layout.with-image .article-overlay .overlay h1, .overlay .product-detail__title, .overlay-2 .large-title, .overlay-2 .rte h1, .rte .overlay-2 h1, .overlay-2 .subscribe-form__side-heading, .overlay-2 .article-page .single-column-layout.with-image .article-overlay h1, .article-page .single-column-layout.with-image .article-overlay .overlay-2 h1, .overlay-2 .product-detail__title {
    margin-bottom: 15px; }
  .overlay a, .overlay-2 a {
    margin: 10px 10px 0; }

.overlay__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1; }
  @media only screen and (max-width: 767px) {
    .overlay__bg {
      opacity: 1; } }

.overlay__content {
  position: relative;
  z-index: 1; }
  .overlay__content > .large-title:last-child, .rte .overlay__content > h1:last-child, .overlay__content > .subscribe-form__side-heading:last-child, .article-page .single-column-layout.with-image .article-overlay .overlay__content > h1:last-child, .overlay__content > .product-detail__title:last-child {
    margin-bottom: 0; }

.overlay--center {
  text-align: center; }

.overlay--bottom-wide {
  bottom: 30px;
  left: 50% !important;
  min-width: auto;
  top: auto !important;
  transform: translateX(-50%);
  width: calc(100% - (30px * 4)); }

.overlay--low-wide {
  bottom: 90px;
  left: 50% !important;
  min-width: auto;
  top: auto !important;
  transform: translateX(-50%);
  width: calc(100% - (30px * 4));
  max-width: 516px; }

.split-image-section .overlay {
  min-width: 0;
  width: calc(100% - (30px * 4)); }

.overlay--has-link .overlay-title {
  margin-bottom: 15px; }

.overlay-text {
  margin: 15px 0; }
  .overlay-text:last-child {
    margin-bottom: 0; }

.overlay-footer {
  font-size: 0.875rem; }

.overlay-tag {
  display: inline-block;
  margin: 0 6px;
  opacity: 0.8; }
  .overlay-tag.overlay-tag--inherit-color {
    opacity: 1; }
    .overlay-tag.overlay-tag--inherit-color a {
      color: inherit; }

@media only screen and (max-width: 1080px) {
  .overlay, .overlay-2 {
    padding: 20px;
    min-width: 0;
    width: calc(50% - (20px * 2)); }
    .overlay .large-title, .overlay .rte h1, .rte .overlay h1, .overlay .subscribe-form__side-heading, .overlay .article-page .single-column-layout.with-image .article-overlay h1, .article-page .single-column-layout.with-image .article-overlay .overlay h1, .overlay .product-detail__title, .overlay-2 .large-title, .overlay-2 .rte h1, .rte .overlay-2 h1, .overlay-2 .subscribe-form__side-heading, .overlay-2 .article-page .single-column-layout.with-image .article-overlay h1, .article-page .single-column-layout.with-image .article-overlay .overlay-2 h1, .overlay-2 .product-detail__title {
      font-size: 1.75rem; }
    .overlay.overlay--bottom-wide, .overlay-2.overlay--bottom-wide {
      min-width: 0;
      width: calc(100% - (20px * 2)); }

  .split-image-section .overlay {
    width: calc(100% - (20px * 2)); } }
@media only screen and (max-width: 767px) {
  .overlay {
    left: 50% !important;
    min-width: auto;
    position: relative;
    top: auto !important;
    transform: translateX(-50%);
    width: calc(100% - (20px * 2));
    padding: 45px 30px 0; }

  #shopify-section-full-width-image-v3 .overlay {
    display: block;
    left: 50% !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    max-width: 532px;
    position: absolute;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: calc(100% - (20px * 2));
    padding: 30px !important; }
  #shopify-section-full-width-image-v3 .overlay--use-body-colours-mobile .overlay__bg {
    background-color: transparent !important; }
  #shopify-section-full-width-image-v3 .overlay__content h2.large-title, #shopify-section-full-width-image-v3 .overlay__content h2.subscribe-form__side-heading, #shopify-section-full-width-image-v3 .overlay__content .promotional-row .promotional-row__content h2.promotional-row__title, .promotional-row .promotional-row__content #shopify-section-full-width-image-v3 .overlay__content h2.promotional-row__title, #shopify-section-full-width-image-v3 .overlay__content h2.product-detail__title {
    color: #fff !important; }

  .split-image-section .overlay,
  .standout-collection-section .overlay {
    padding: 45px 30px; }

  .overlay--use-body-colours-mobile .overlay__bg {
    background-color: transparent !important; }
  .overlay--use-body-colours-mobile .overlay__content {
    color: #1f1f1f; }
    .overlay--use-body-colours-mobile .overlay__content .standard-link, .overlay--use-body-colours-mobile .overlay__content .add-to-wishl, .overlay--use-body-colours-mobile .overlay__content .star .collection-shop-now, .star .overlay--use-body-colours-mobile .overlay__content .collection-shop-now, .overlay--use-body-colours-mobile .overlay__content .planet-top .collection-shop-now, .planet-top .overlay--use-body-colours-mobile .overlay__content .collection-shop-now, .overlay--use-body-colours-mobile .overlay__content .planet-bottom .collection-shop-now, .planet-bottom .overlay--use-body-colours-mobile .overlay__content .collection-shop-now {
      color: #1f1f1f !important; }
      .overlay--use-body-colours-mobile .overlay__content .standard-link:hover, .overlay--use-body-colours-mobile .overlay__content .add-to-wishl:hover, .overlay--use-body-colours-mobile .overlay__content .star .collection-shop-now:hover, .star .overlay--use-body-colours-mobile .overlay__content .collection-shop-now:hover, .overlay--use-body-colours-mobile .overlay__content .planet-top .collection-shop-now:hover, .planet-top .overlay--use-body-colours-mobile .overlay__content .collection-shop-now:hover, .overlay--use-body-colours-mobile .overlay__content .planet-bottom .collection-shop-now:hover, .planet-bottom .overlay--use-body-colours-mobile .overlay__content .collection-shop-now:hover {
        color: black !important; } }
@media only screen and (max-width: 479px) {
  .overlay, .overlay-2 {
    min-width: 0;
    width: calc(100% - (40px)); } }
.image-product-label {
  position: absolute;
  text-decoration: none; }
  .image-product-label.chevron-left .image-product-label__content {
    padding-left: 36px; }
    .image-product-label.chevron-left .image-product-label__content .icon--image-product-label {
      left: 10px; }
      .image-product-label.chevron-left .image-product-label__content .icon--image-product-label .icon {
        transform: translate(-50%, -50%) rotate(180deg); }
  .image-product-label.chevron-right .image-product-label__content {
    padding-right: 36px; }
    .image-product-label.chevron-right .image-product-label__content .icon--image-product-label {
      right: 10px; }
  .image-product-label.is-overlapping {
    visibility: hidden;
    pointer-events: none; }

.image-product-label-title {
  font-size: 0.75rem;
  line-height: 1.2;
  margin-bottom: 3px;
  max-width: 200px; }

.image-product-label-price {
  font-size: 1.25rem;
  line-height: 1;
  white-space: nowrap; }

.image-product-label-price__from {
  font-size: 0.875rem; }

.image-product-label-price__compare {
  font-size: 0.875rem; }

.icon--image-product-label {
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px; }
  .icon--image-product-label .icon {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%); }

.image-product-label__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8; }

.image-product-label__content {
  position: relative;
  z-index: 1;
  padding: 10px; }

@media only screen and (max-width: 767px) {
  .image-product-label-title {
    font-size: 0.75rem; }

  .image-product-label-price {
    font-size: 1rem; }

  .image-product-label__content {
    padding: 8px; }

  .image-product-label.chevron-left .image-product-label__content {
    padding-left: 30px; }
    .image-product-label.chevron-left .image-product-label__content .icon--image-product-label {
      left: 8px; }
  .image-product-label.chevron-right .image-product-label__content {
    padding-right: 30px; }
    .image-product-label.chevron-right .image-product-label__content .icon--image-product-label {
      right: 8px; }

  .icon--image-product-label {
    height: 8px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px; }
    .icon--image-product-label .icon {
      width: 18px;
      height: 18px; }

  .image-product-label__background--dark-mobile {
    background: #000;
    opacity: 0.5; }

  .image-product-label__background--light-mobile {
    background: #fff;
    opacity: 0.5; } }
.article {
  border-top: 1px solid rgba(31, 31, 31, 0.2);
  padding-top: 30px;
  padding-bottom: 37.5px; }
  .article:first-child {
    border-top: 0;
    padding-top: 0; }
    .article:first-child .article__heading-image {
      margin-top: 0; }

.article-page .split-column-layout .article-container {
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 30px; }

.article-page .single-column-layout {
  display: flex;
  justify-content: center;
  max-width: 960px; }
  .article-page .single-column-layout .one-half {
    width: 100%; }
  .article-page .single-column-layout .article-container {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px; }
  .article-page .single-column-layout .article-featured-image {
    display: none; }
    .article-page .single-column-layout .article-featured-image.mobile-only {
      display: block; }
  .article-page .single-column-layout .blog-articles-list {
    max-width: initial;
    width: 100%;
    padding: 60px 0 0;
    margin: 0; }
  .article-page .single-column-layout .blog-rsslink {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 30px; }
  .article-page .single-column-layout.with-image {
    flex-wrap: wrap; }
    .article-page .single-column-layout.with-image .article-overlay {
      display: block;
      bottom: 30px;
      left: 50% !important;
      min-width: auto;
      position: relative;
      top: auto !important;
      transform: translateX(-50%);
      width: calc(100% - (30px * 2));
      padding: 45px 30px 0 30px; }
      .article-page .single-column-layout.with-image .article-overlay .article__authordate {
        margin-top: 15px;
        justify-content: center; }
    .article-page .single-column-layout.with-image .article__title {
      display: none; }
    .article-page .single-column-layout.with-image .article-container {
      padding-top: 0; }

.article-content {
  padding: 0 30px; }

.article-container .content-products {
  margin-left: -30px; }
  @media (max-width: 960px) {
    .article-container .content-products {
      margin-right: -60px;
      padding-right: 60px; } }
  @media only screen and (max-width: 767px) {
    .article-container .content-products {
      margin-left: -20px;
      margin-right: -20px;
      padding-right: 20px; } }

.article-overlay {
  background-color: white;
  display: none; }

.template-article .article {
  border-top: 0;
  padding-bottom: 0; }

.article__heading-image {
  display: block;
  margin: 30px 0; }

.article-featured-image {
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  border-radius: 0 0px 0 0;
  overflow: hidden;
  transition: border-radius 3s; }
  .article-featured-image.mobile-only {
    display: none;
    height: auto; }

.is_stuck .article-featured-image {
  animation: radius-corners .3s ease-in-out 1 forwards; }

.article__title--no-image {
  padding-top: 30px; }

.article__tags {
  margin: 30px 0 15px; }

.article__read-more {
  margin: 15px 0; }

.article__meta {
  display: flex; }
  .article__meta .article__authordate {
    flex-grow: 1; }

.article__authordate {
  display: flex;
  align-items: center; }
  .article__authordate .article__avatar {
    margin: 0 15px 0 0;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 100%; }
    .article__authordate .article__avatar .rimage-background {
      width: 100%;
      height: 100%; }
  .article__authordate .article__date {
    color: #787878; }

.article__comments-count {
  color: #787878; }

.article-pagination {
  margin-top: 30px;
  padding: 30px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8; }
  .article-pagination .prev,
  .article-pagination .next {
    color: inherit;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.25s; }
    .article-pagination .prev:hover,
    .article-pagination .next:hover {
      opacity: .7; }

.article__comments-summary {
  color: #787878; }
  .article__comments-summary a {
    color: inherit;
    text-decoration: none; }

.article__comments-title {
  margin: 60px 0 30px; }

.article__comment {
  padding: 7.5px 0; }
  .article__comment p {
    margin-top: 0; }
  .article__comment .rte {
    margin-bottom: 5px; }
    .article__comment .rte p {
      margin-bottom: 5px; }

.article__comment--author {
  font-size: 75%; }
  .article__comment--author time {
    color: #787878; }

.article__comment-form-required {
  color: #787878;
  margin-bottom: 15px; }

@media only screen and (max-width: 767px) {
  .article {
    padding-bottom: 40px; }
    .article .product-block.small-down--one-half {
      clear: none; }

  .article-page .single-column-layout.with-image .article-overlay {
    padding-bottom: 20px; }

  .article-overlay--no-image {
    bottom: auto; }

  .article-content {
    padding: 0 20px; }

  .article-block .content-products {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 40px;
    padding-right: 20px; }

  .article-page .split-column-layout {
    padding-left: 20px;
    padding-right: 20px; }
    .article-page .split-column-layout .article-container {
      margin-top: -40px;
      padding-top: 0;
      padding-left: 20px;
      padding-right: 20px; }
  .article-page .single-column-layout {
    display: block; }
    .article-page .single-column-layout .article-container {
      margin-top: -20px;
      padding-top: 0;
      padding-left: 20px;
      padding-right: 20px; }

  .article-container {
    overflow: hidden;
    padding: 0 20px; }
    .article-container .product-block.small-down--one-half {
      clear: none; }

  .article__heading-image {
    margin: 0 0 20px; }
    .article__heading-image .rimage-outer-wrapper {
      border-radius: 0; }

  .article__title.desktop-only {
    display: none; }

  .article-featured-image {
    display: none;
    border-radius: 0px;
    height: auto; }
    .article-featured-image.mobile-only {
      display: block; }

  .article__comments-title {
    margin: 40px 0 20px; }

  .article__meta {
    display: none; }

  .mobile-only {
    display: block; }
    .mobile-only .article__authordate {
      display: block; }
      .mobile-only .article__authordate .article__avatar {
        margin: 10px auto; } }
@media only screen and (max-width: 479px) {
  .article-page .split-column-layout {
    padding-left: 0;
    padding-right: 0; }
  .article-page .article-featured-image {
    border-radius: 0; }
    .article-page .article-featured-image .rimage-outer-wrapper {
      border-radius: 0; }
  .article-page .single-column-layout .article-featured-image.mobile-only .rimage-outer-wrapper {
    border-radius: 0; } }
.content-products {
  margin-top: 30px;
  overflow: hidden; }
  .content-products .grid {
    margin-left: 0; }
  .content-products .product-block.grid__item {
    clear: none; }
  .content-products .slick-track {
    margin: 0; }
  .content-products .product-block .product-block__title,
  .content-products .product-block .product-price,
  .content-products .product-block .product-price__from,
  .content-products .product-block .product-price__compare {
    font-size: 0.875rem; }
  .content-products .product-block .product-label {
    font-size: 0.75rem;
    line-height: 1.5; }

.content-products__title {
  margin: 0 0 15px;
  font-size: 0.75rem;
  line-height: 1.4em;
  color: #787878; }

.content-products__title {
  padding: 0 30px; }

.content-products-controls .prev,
.content-products-controls .next {
  transition: opacity 0.25s; }
  .content-products-controls .prev:hover,
  .content-products-controls .next:hover {
    opacity: .7; }

@media (max-width: 960px) {
  .content-products {
    margin-right: -30px;
    padding-right: 30px; } }
@media only screen and (max-width: 767px) {
  .content-products {
    margin-right: -20px;
    padding-right: 20px;
    padding-left: 20px; }

  .content-products-controls {
    display: none; }

  .content-products__title {
    padding: 0; }

  .content-products__products {
    margin-left: -20px; }

  .content-products__products .grid {
    margin-left: 0; } }
@media only screen and (max-width: 479px) {
  .content-products {
    margin-right: 0; } }
#colorbox {
  margin-top: 5px;
  border-radius: 0px;
  box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.15); }

#colorbox,
#cboxWrapper {
  overflow: visible !important; }

#cboxOverlay {
  background: rgba(0, 0, 0, 0.4); }

#cboxContent {
  background-color: white;
  border-radius: 0px; }

@media only screen and (max-width: 767px) {
  #colorbox {
    border-radius: 0; } }
#cboxClose {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke='%23989898' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: center center;
  overflow: hidden;
  text-indent: -100px; }
  #cboxClose:hover {
    background-color: transparent;
    border: none; }

.lightbox-content {
  width: 600px; }
  @media (max-width: 680px) {
    .lightbox-content {
      width: 90vw;
      padding-left: 20px;
      padding-right: 20px; }
      .lightbox-content .container {
        padding-left: 0;
        padding-right: 0; } }

.clickyboxes li {
  vertical-align: top; }
  .clickyboxes li a {
    padding: 8px 11px;
    min-width: 30px;
    text-align: center;
    vertical-align: top;
    border-radius: 0px;
    overflow: hidden; }
    .clickyboxes li a.active, .clickyboxes li a.active:hover {
      background-color: #1f1f1f;
      border-color: #1f1f1f;
      color: white; }

.quickbuy {
  background-color: white;
  border-radius: 0px;
  color: #1f1f1f;
  padding-top: 20px;
  position: relative;
  width: 720px; }
  .quickbuy a {
    color: inherit;
    transition: opacity 0.25s; }
    .quickbuy a:hover {
      opacity: .6; }
  .quickbuy .styled-dropdown .select2-container {
    display: block;
    width: 100% !important; }

.quickbuy-form.placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; }

.quickbuy__product-images,
.quickbuy__toolbar,
.quickbuy__titlebar {
  display: flex;
  justify-content: space-between; }

.quickbuy__toolbar {
  padding-bottom: 5px; }
  .quickbuy__toolbar .feather-icon {
    vertical-align: text-bottom; }

.quickbuy__more {
  text-decoration: none; }
  .quickbuy__more .feather-icon {
    padding-left: 15px; }

.quickbuy__product-images .rimage-outer-wrapper {
  max-height: 100%;
  max-width: initial; }
.quickbuy__product-images .rimage-wrapper {
  height: 100%;
  width: auto;
  padding: 0; }
.quickbuy__product-images .image {
  max-height: 100%; }
.quickbuy__product-images.global-border-radius .slick-slide:last-child, .rte img.quickbuy__product-images .slick-slide:last-child, .cart-item .quickbuy__product-images.image .slick-slide:last-child, .cart-mobile-image img.quickbuy__product-images .slick-slide:last-child, .full-width-slideshow .quickbuy__product-images.slick-list .slick-slide:last-child, .blog-articles-list__image .quickbuy__product-images.rimage-outer-wrapper .slick-slide:last-child, .collection-list-plain .product-block__image .quickbuy__product-images.rimage-outer-wrapper .slick-slide:last-child, .article-page .single-column-layout .article-featured-image.mobile-only .quickbuy__product-images.rimage-outer-wrapper .slick-slide:last-child, .quickbuy__product-images.article-overlay .slick-slide:last-child, .article__heading-image .quickbuy__product-images.rimage-outer-wrapper .slick-slide:last-child, .image-two .quickbuy__product-images.rimage-background .slick-slide:last-child {
  overflow: hidden;
  border-radius: 0 0px 0px 0; }

.quickbuy__product-images,
.quickbuy__titlebar {
  margin-top: 15px; }

.quickbuy__titlebar {
  position: relative;
  padding-bottom: 15px; }

.quickbuy__images-container .product-label {
  left: 0;
  bottom: 0;
  right: auto;
  top: auto;
  z-index: 1; }

.quickbuy__title {
  font-size: 0.875rem; }

.quickbuy__price {
  font-size: 1.25rem; }

.quickbuy__form {
  background-color: #f4f4f4;
  padding-bottom: 30px;
  padding-top: 30px;
  border-radius: 0 0 0px 0px; }
  .quickbuy__form .input-wrapper {
    background-color: #f4f4f4; }
  .quickbuy__form .select2-selection.select2-selection--single {
    border: 0; }
  .quickbuy__form.has-dynamic-buttons {
    margin-bottom: 0; }
    .quickbuy__form.has-dynamic-buttons .payment-buttons {
      margin-bottom: -15px; }

.quickbuy__variant .select2 {
  margin-bottom: 1em; }

.row.quickbuy__product-form--confirmation {
  margin-bottom: 0;
  display: flex; }

.quickbuy__submit {
  width: 100%; }

.quickbuy .quickbuy__product-images,
.quickbuy .slick-list,
.quickbuy .slick-track {
  height: 360px; }
.quickbuy .slick-list {
  width: 100%; }
.quickbuy .prev,
.quickbuy .next {
  transition: opacity 0.25s; }
  .quickbuy .prev:hover,
  .quickbuy .next:hover {
    opacity: .6; }
@media (max-height: 750px) {
  .quickbuy .quickbuy__product-images,
  .quickbuy .slick-list,
  .quickbuy .slick-track {
    height: 280px; } }
@media (max-height: 650px) {
  .quickbuy .quickbuy__product-images,
  .quickbuy .slick-list,
  .quickbuy .slick-track {
    height: 230px; } }

.quickbuy .payment-buttons {
  display: flex;
  align-items: flex-start; }
  .quickbuy .payment-buttons > .btn, .quickbuy .theme-product-reviews .payment-buttons > .spr-summary-actions-newreview, .theme-product-reviews .quickbuy .payment-buttons > .spr-summary-actions-newreview, .quickbuy .bandita-modal-registration .payment-buttons > #customer_register_link, .bandita-modal-registration .quickbuy .payment-buttons > #customer_register_link, .quickbuy .bandita-modal-registration .payment-buttons > #customer_login_link, .bandita-modal-registration .quickbuy .payment-buttons > #customer_login_link, .quickbuy .galaxy .payment-buttons > .collection-shop-now, .galaxy .quickbuy .payment-buttons > .collection-shop-now,
  .quickbuy .payment-buttons > .shopify-payment-button {
    width: 50%; }
  .quickbuy .payment-buttons > .btn, .quickbuy .theme-product-reviews .payment-buttons > .spr-summary-actions-newreview, .theme-product-reviews .quickbuy .payment-buttons > .spr-summary-actions-newreview, .quickbuy .bandita-modal-registration .payment-buttons > #customer_register_link, .bandita-modal-registration .quickbuy .payment-buttons > #customer_register_link, .quickbuy .bandita-modal-registration .payment-buttons > #customer_login_link, .bandita-modal-registration .quickbuy .payment-buttons > #customer_login_link, .quickbuy .galaxy .payment-buttons > .collection-shop-now, .galaxy .quickbuy .payment-buttons > .collection-shop-now {
    margin-right: 15px; }
  .quickbuy .payment-buttons > .shopify-payment-button {
    margin-left: 15px;
    margin-top: 0; }

@media only screen and (min-width: 480px) {
  .product-block .btn--quicklook {
    position: absolute;
    bottom: 10px;
    width: calc(100% - 20px);
    min-width: auto;
    left: 10px;
    box-shadow: 0 0 0 1px rgba(31, 31, 31, 0.25);
    opacity: 0;
    transition: opacity 0.25s; }
  .product-block:hover .btn--quicklook {
    opacity: 0.8;
    /*
    &:hover {
      background-color: $secondary-btn-background;
      box-shadow: 0 0 0 1px $quicklook-btn-border;
      color: $secondary-btn-text;
    }
    */ } }
@media only screen and (max-width: 768px) {
  .product-block .btn--quicklook {
    display: none; } }
.slick-dots li button {
  background-color: #ccc;
  border: 1px solid transparent;
  min-width: 0;
  height: 9px;
  width: 9px;
  box-shadow: none; }

.slick-dots li.slick-active button {
  background-color: #444;
  border: 1px solid transparent;
  box-shadow: none;
  height: 9px;
  width: 9px; }

.slick-dotted.slick-slider {
  margin-bottom: 0; }
  @media only screen and (min-width: 480px) {
    .slick-dotted.slick-slider {
      margin-bottom: 30px; } }

.slick-disabled {
  opacity: 0.2; }

.styled-dropdown > select {
  margin: 0;
  height: 48px;
  padding-top: 15px;
  padding-bottom: 0px; }
.styled-dropdown .select2-container .select2-selection {
  border: 0px solid #c7c7c7;
  background-color: transparent;
  border-radius: 0px;
  height: 48px; }
.styled-dropdown .select2-container .select2-selection__arrow {
  top: 10px; }
  .styled-dropdown .select2-container .select2-selection__arrow b {
    border: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke='rgba(31, 31, 31, 0.999)' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    width: 30px;
    height: 30px;
    margin-top: -5px;
    margin-left: -16px; }
.styled-dropdown .select2-container .select2-selection__rendered {
  color: inherit;
  padding-top: 8px; }
.styled-dropdown .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.styled-dropdown .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-radius: 3px; }

.styled-dropdown--label-small label {
  display: block; }

.styled-dropdown--label-inside {
  position: relative;
  max-width: 20%;
  margin: 0 0 0 80%; }
  .styled-dropdown--label-inside label {
    position: relative;
    top: 9px;
    left: 14px;
    z-index: 0;
    font-size: 16px;
    line-height: 1;
    opacity: 1;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px; }
  .styled-dropdown--label-inside .select2-container .select2-selection__rendered {
    padding-top: 17px;
    padding-left: 13px;
    font-size: 16px;
    line-height: 21px; }
  @media only screen and (max-width: 767px) {
    .styled-dropdown--label-inside {
      max-width: 100%;
      margin: 15px; } }

.collection-new-sort .styled-dropdown--label-inside {
  max-width: 40%;
  margin-left: 60%; }
  @media only screen and (max-width: 767px) {
    .collection-new-sort .styled-dropdown--label-inside {
      max-width: 100%;
      margin: 15px; } }

.select2-dropdown {
  border: 0;
  background: transparent; }
  .select2-dropdown::before, .select2-dropdown::after {
    content: '';
    position: absolute;
    right: 18px;
    width: 0;
    height: 0;
    border-style: solid; }

.select2-dropdown.select2-dropdown--below {
  padding-top: 17px; }
  .select2-dropdown.select2-dropdown--below::before {
    top: 9px;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent; }
  .select2-dropdown.select2-dropdown--below::after {
    top: 10px;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #fff transparent; }

.select2-dropdown.select2-dropdown--above {
  padding-bottom: 17px; }
  .select2-dropdown.select2-dropdown--above::before {
    bottom: 9px;
    border-width: 8px 8px 0 8px;
    border-color: rgba(0, 0, 0, 0.1) transparent transparent transparent; }
  .select2-dropdown.select2-dropdown--above::after {
    bottom: 10px;
    border-width: 8px 8px 0 8px;
    border-color: #fff transparent transparent transparent; }

.select2-results {
  background: #fff;
  border: 1px solid #dde0e4;
  border-radius: 3px;
  color: #393939; }

.select2-results__option {
  padding: 6px 13px; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background: transparent; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #f2f2f2;
  color: #393939; }

.select2-results__option:not(:last-child) {
  border-bottom: 1px solid #f6f6f6; }

.swatch-option {
  position: relative;
  margin-left: 25px; }

.swatch-option__nugget {
  position: absolute;
  top: 50%;
  left: -18px;
  margin: -7px;
  width: 13px;
  height: 13px;
  border-radius: 13px;
  border: 1px solid rgba(0, 0, 0, 0.1); }

.select2-selection .swatch-option--all {
  margin-left: 0; }

.pagination {
  margin: 30px 0;
  text-align: center; }
  .pagination span {
    margin: 0 10px; }
  .pagination a {
    text-decoration: none; }

.added-notice {
  position: fixed;
  z-index: 1000;
  top: 65px;
  right: 30px;
  width: 412px;
  padding: 15px 30px 30px;
  background: white;
  color: #1f1f1f;
  border-bottom: 3px solid #1f1f1f;
  border-left: 1px solid rgba(31, 31, 31, 0.1);
  border-right: 1px solid rgba(31, 31, 31, 0.1);
  border-top: 1px solid rgba(31, 31, 31, 0.1);
  transition: all 150ms; }
  @media (max-width: 560px) {
    .added-notice {
      top: 10px;
      right: 10px;
      left: 10px;
      width: auto;
      padding: 15px 20px 20px; } }

.added-notice--pre-reveal {
  opacity: 0;
  transform: scale(0.95); }

.added-notice--pre-destroy {
  transition: all 250ms;
  opacity: 0;
  transform: scale(0.95); }

.added-notice__header {
  position: relative; }

.added-notice__close {
  position: absolute;
  top: 0;
  right: 0;
  color: #1f1f1f; }

.added-notice__checkout .btn, .added-notice__checkout .theme-product-reviews .spr-summary-actions-newreview, .theme-product-reviews .added-notice__checkout .spr-summary-actions-newreview, .added-notice__checkout .bandita-modal-registration #customer_register_link, .bandita-modal-registration .added-notice__checkout #customer_register_link, .added-notice__checkout .bandita-modal-registration #customer_login_link, .bandita-modal-registration .added-notice__checkout #customer_login_link, .added-notice__checkout .galaxy .collection-shop-now, .galaxy .added-notice__checkout .collection-shop-now {
  width: calc(100% - 2px); }

.cart-summary .cart-summary__checkout {
  text-decoration: underline;
  color: #1f1f1f; }
  .cart-summary .cart-summary__checkout:hover {
    color: black; }

.cart-summary__product {
  display: flex;
  padding-top: 15px; }

.cart-summary__product-image {
  padding-right: 15px;
  width: 74px;
  flex-shrink: 0; }
  .cart-summary__product-image img {
    vertical-align: top; }

.cart-summary__product__variants {
  color: #787878;
  font-size: 0.875rem; }

.cart-summary__price-reduced {
  padding-right: 5px; }

.cart-summary__quantity {
  color: #787878; }
  .cart-summary__quantity::before {
    content: 'x';
    margin-left: 0.5em; }

.currency-converter {
  position: relative; }

.currency-converter__selected {
  pointer-events: none;
  padding-right: 24px; }

.currency-converter__icon {
  position: absolute;
  top: 50%;
  margin-top: -9px;
  right: 0;
  pointer-events: none; }
  .currency-converter__icon .icon {
    width: 18px;
    height: 18px;
    vertical-align: top; }

.currency-converter__dropdown select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; }

.account-form {
  margin: 60px auto;
  max-width: 420px;
  text-align: center; }
  .account-form .checkbox-wrapper {
    text-align: left; }

.address-card {
  background-color: #f1f1f1;
  padding: 30px; }
  .address-card p {
    margin: 0; }

.address-card__controls {
  float: right;
  margin: 0 0 10px 10px; }

.address__name {
  font-weight: bold;
  margin-bottom: 0.75em; }

.address__phone {
  margin-top: 0.75em; }

.order-table tbody td {
  vertical-align: top;
  padding: 30px 15px; }

.order-table .product-summary {
  margin: -15px 0; }

@media only screen and (max-width: 767px) {
  .order-table td[data-label="Product"]::before {
    display: none; }

  .order-table td[data-label="Product"] .product-summary {
    text-align: left; } }
.image-one,
.image-two {
  backface-visibility: hidden;
  display: block;
  transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.image-one {
  height: auto;
  width: 100%; }

.image-two {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: calc(100% + 1.5px);
  height: calc(100% + 1.5px);
  opacity: 0; }
  .image-two .rimage-background {
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%; }

@media only screen and (min-width: 768px) {
  .hover-images {
    overflow: hidden; }
    .hover-images .image-one,
    .hover-images .image-two {
      transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    .hover-images:hover .image-one {
      transform: scale(1.05); }

  .hover-images--two .image-two {
    transform: scale(1.05); }
  .hover-images--two:hover .image-one {
    opacity: 0;
    transform: scale(1); }
  .hover-images--two:hover .image-two {
    opacity: 1;
    transform: scale(1); }

  .hover-images--two.same-aspect-ratio .image-one {
    transition: opacity 0ms 0ms; }

  .hover-images--two.same-aspect-ratio:hover .image-one {
    transition: opacity 50ms 400ms; }

  .promotional-image.global-border-radius.fade-in, .rte img.promotional-image.fade-in, .cart-item .promotional-image.fade-in.image, .cart-mobile-image img.promotional-image.fade-in, .full-width-slideshow .promotional-image.fade-in.slick-list, .blog-articles-list__image .promotional-image.fade-in.rimage-outer-wrapper, .collection-list-plain .product-block__image .promotional-image.fade-in.rimage-outer-wrapper, .article-page .single-column-layout .article-featured-image.mobile-only .promotional-image.fade-in.rimage-outer-wrapper, .promotional-image.fade-in.article-overlay, .article__heading-image .promotional-image.fade-in.rimage-outer-wrapper, .image-two .promotional-image.fade-in.rimage-background {
    transition: opacity 50ms 500ms; }

  .promotional-image.global-border-radius.fade-in.active, .rte img.promotional-image.fade-in.active, .cart-item .promotional-image.fade-in.active.image, .cart-mobile-image img.promotional-image.fade-in.active, .full-width-slideshow .promotional-image.fade-in.active.slick-list, .blog-articles-list__image .promotional-image.fade-in.active.rimage-outer-wrapper, .collection-list-plain .product-block__image .promotional-image.fade-in.active.rimage-outer-wrapper, .article-page .single-column-layout .article-featured-image.mobile-only .promotional-image.fade-in.active.rimage-outer-wrapper, .promotional-image.fade-in.active.article-overlay, .article__heading-image .promotional-image.fade-in.active.rimage-outer-wrapper, .image-two .promotional-image.fade-in.active.rimage-background {
    transition: transform 1000ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1000ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } }
.avoid-overlaps .avoid-overlaps__item {
  opacity: 0;
  transition: opacity ease-in 0.25s; }

html:not(.no-js) .avoid-overlaps:not(.avoid-overlaps--processed) .avoid-overlaps__item {
  margin-left: -200px !important; }

.no-js .avoid-overlaps__item,
.avoid-overlaps--processed .avoid-overlaps__item {
  opacity: 1; }

@media only screen and (max-width: 767px) {
  .avoid-overlaps__mobile-container {
    position: relative; } }
.no-js .avoid-overlaps .overlay {
  transform: translate(-50%, -50%); }

.recently-viewed-product {
  text-align: center; }
  .recently-viewed-product .product-title {
    margin-top: 15px; }
  .recently-viewed-product .product-price {
    margin-top: 0.3em;
    font-size: 15px;
    line-height: 1.6; }
  .recently-viewed-product .image-two {
    background-position: center center;
    background-size: cover; }
  .recently-viewed-product a {
    color: inherit;
    text-decoration: none; }
  .recently-viewed-product img {
    vertical-align: top; }

.simple-popup {
  position: absolute;
  z-index: 100000;
  width: 160px;
  padding: 10px 15px;
  border: 1px solid #c7c7c7;
  color: #1f1f1f;
  background: white;
  border-radius: 0px;
  box-shadow: 0 0 3px -1px #c7c7c7;
  text-align: center; }
  .simple-popup:before {
    position: absolute;
    top: 100%;
    left: 50%;
    margin: 0 0 0 -10px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #c7c7c7 transparent transparent transparent; }
  .simple-popup:after {
    position: absolute;
    top: 100%;
    left: 50%;
    margin: -2px 0 0 -10px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: white transparent transparent transparent; }

@media only screen and (min-width: 768px) and (max-width: 960px) {
  .split-column-layout .product-carousel-peek {
    overflow: hidden; }
    .split-column-layout .product-carousel-peek .slick-list {
      padding-right: 30%;
      overflow: visible; } }
.product-carousel-peek {
  position: relative; }

.product-carousel-peek__advice {
  display: none;
  cursor: pointer;
  text-align: right;
  position: absolute;
  z-index: 2;
  right: 15px;
  top: 110px;
  color: black;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  padding: 5px;
  height: 36px;
  width: 36px;
  transition: all 300ms ease-in; }
  .product-carousel-peek__advice .feather-icon {
    display: block; }
  .product-carousel-peek__advice .icon {
    display: inline-block;
    vertical-align: top;
    width: 24px;
    height: 24px; }

@media only screen and (max-width: 767px) {
  .container:not(.container--no-mobile-padding) .product-carousel-peek {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px; }
    .container:not(.container--no-mobile-padding) .product-carousel-peek .product-carousel-peek__advice {
      margin-right: 20px; }

  .product-carousel-peek {
    overflow: hidden; }
    .product-carousel-peek .slick-list {
      padding-right: 30%;
      overflow: visible; }
      .product-carousel-peek .slick-list .slick-slide .product-block {
        width: auto; }
      .product-carousel-peek .slick-list .slick-slide .grid__item {
        width: auto;
        float: none; }
      .product-carousel-peek .slick-list .product-block {
        margin: 0 0 0 20px; }
      .product-carousel-peek .slick-list .grid__item {
        clear: none;
        padding: 0; }

  .product-carousel-peek--show-advice .product-carousel-peek__advice {
    display: block; }

  .product-carousel-peek--dismiss-advice .product-carousel-peek__advice {
    opacity: 0;
    transform: translateX(-15px); }

  .no-js .product-carousel-peek__advice,
  .product-carousel-peek--empty .product-carousel-peek__advice,
  .product-carousel-peek--single .product-carousel-peek__advice {
    display: none; } }
.sticky-element::after {
  content: ' ';
  display: table; }

.grid__item > .sticky-spacer {
  width: 100% !important; }

/*************    ---                   ---                   ---   *************/
/*************    |     ENTER YOUR CUSTOM CODE BELOW HERE       |   *************/
/*************    ---                   ---                   ---   *************/
/*====== FLEX UTILITIES ======*/
.flex--direction-column {
  flex-direction: column; }

.flex--direction-row {
  flex-direction: row; }

.flex--direction-reverse {
  flex-direction: row-reverse; }

.flex--align-start {
  align-items: flex-start; }

.flex--align-center {
  align-items: center; }

.flex--align-end {
  align-items: flex-end; }

.flex--align-between {
  align-items: space-between; }

.flex--align-around {
  align-items: space-around; }

.flex--align-stretch {
  align-items: stretch; }

.flex--justify-start {
  justify-content: flex-start; }

.flex--justify-center {
  justify-content: center; }

.flex--justify-end {
  justify-content: flex-end; }

.flex--justify-between {
  justify-content: space-between; }

.flex--justify-around {
  justify-content: space-around; }

/*================ Build Grid Push Classes ================*/
@media only screen and (min-width: 2560px) {
  .extra-large-up--flex--direction-column {
    flex-direction: column; }

  .extra-large-up--flex--direction-row {
    flex-direction: row; }

  .extra-large-up--flex--direction-reverse {
    flex-direction: row-reverse; }

  .extra-large-up--flex--align-start {
    align-items: flex-start; }

  .extra-large-up--flex--align-center {
    align-items: center; }

  .extra-large-up--flex--align-end {
    align-items: flex-end; }

  .extra-large-up--flex--align-between {
    align-items: space-between; }

  .extra-large-up--flex--align-around {
    align-items: space-around; }

  .extra-large-up--flex--align-stretch {
    align-items: stretch; }

  .extra-large-up--flex--justify-start {
    justify-content: flex-start; }

  .extra-large-up--flex--justify-center {
    justify-content: center; }

  .extra-large-up--flex--justify-end {
    justify-content: flex-end; }

  .extra-large-up--flex--justify-between {
    justify-content: space-between; }

  .extra-large-up--flex--justify-around {
    justify-content: space-around; } }
@media only screen and (min-width: 1280px) {
  .extra-large--flex--direction-column {
    flex-direction: column; }

  .extra-large--flex--direction-row {
    flex-direction: row; }

  .extra-large--flex--direction-reverse {
    flex-direction: row-reverse; }

  .extra-large--flex--align-start {
    align-items: flex-start; }

  .extra-large--flex--align-center {
    align-items: center; }

  .extra-large--flex--align-end {
    align-items: flex-end; }

  .extra-large--flex--align-between {
    align-items: space-between; }

  .extra-large--flex--align-around {
    align-items: space-around; }

  .extra-large--flex--align-stretch {
    align-items: stretch; }

  .extra-large--flex--justify-start {
    justify-content: flex-start; }

  .extra-large--flex--justify-center {
    justify-content: center; }

  .extra-large--flex--justify-end {
    justify-content: flex-end; }

  .extra-large--flex--justify-between {
    justify-content: space-between; }

  .extra-large--flex--justify-around {
    justify-content: space-around; } }
@media only screen and (min-width: 1024px) {
  .large-up--flex--direction-column {
    flex-direction: column; }

  .large-up--flex--direction-row {
    flex-direction: row; }

  .large-up--flex--direction-reverse {
    flex-direction: row-reverse; }

  .large-up--flex--align-start {
    align-items: flex-start; }

  .large-up--flex--align-center {
    align-items: center; }

  .large-up--flex--align-end {
    align-items: flex-end; }

  .large-up--flex--align-between {
    align-items: space-between; }

  .large-up--flex--align-around {
    align-items: space-around; }

  .large-up--flex--align-stretch {
    align-items: stretch; }

  .large-up--flex--justify-start {
    justify-content: flex-start; }

  .large-up--flex--justify-center {
    justify-content: center; }

  .large-up--flex--justify-end {
    justify-content: flex-end; }

  .large-up--flex--justify-between {
    justify-content: space-between; }

  .large-up--flex--justify-around {
    justify-content: space-around; } }
@media only screen and (max-width: 1279px) {
  .large-down--flex--direction-column {
    flex-direction: column; }

  .large-down--flex--direction-row {
    flex-direction: row; }

  .large-down--flex--direction-reverse {
    flex-direction: row-reverse; }

  .large-down--flex--align-start {
    align-items: flex-start; }

  .large-down--flex--align-center {
    align-items: center; }

  .large-down--flex--align-end {
    align-items: flex-end; }

  .large-down--flex--align-between {
    align-items: space-between; }

  .large-down--flex--align-around {
    align-items: space-around; }

  .large-down--flex--align-stretch {
    align-items: stretch; }

  .large-down--flex--justify-start {
    justify-content: flex-start; }

  .large-down--flex--justify-center {
    justify-content: center; }

  .large-down--flex--justify-end {
    justify-content: flex-end; }

  .large-down--flex--justify-between {
    justify-content: space-between; }

  .large-down--flex--justify-around {
    justify-content: space-around; } }
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .large--flex--direction-column {
    flex-direction: column; }

  .large--flex--direction-row {
    flex-direction: row; }

  .large--flex--direction-reverse {
    flex-direction: row-reverse; }

  .large--flex--align-start {
    align-items: flex-start; }

  .large--flex--align-center {
    align-items: center; }

  .large--flex--align-end {
    align-items: flex-end; }

  .large--flex--align-between {
    align-items: space-between; }

  .large--flex--align-around {
    align-items: space-around; }

  .large--flex--align-stretch {
    align-items: stretch; }

  .large--flex--justify-start {
    justify-content: flex-start; }

  .large--flex--justify-center {
    justify-content: center; }

  .large--flex--justify-end {
    justify-content: flex-end; }

  .large--flex--justify-between {
    justify-content: space-between; }

  .large--flex--justify-around {
    justify-content: space-around; } }
@media only screen and (min-width: 768px) {
  .medium-up--flex--direction-column {
    flex-direction: column; }

  .medium-up--flex--direction-row {
    flex-direction: row; }

  .medium-up--flex--direction-reverse {
    flex-direction: row-reverse; }

  .medium-up--flex--align-start {
    align-items: flex-start; }

  .medium-up--flex--align-center {
    align-items: center; }

  .medium-up--flex--align-end {
    align-items: flex-end; }

  .medium-up--flex--align-between {
    align-items: space-between; }

  .medium-up--flex--align-around {
    align-items: space-around; }

  .medium-up--flex--align-stretch {
    align-items: stretch; }

  .medium-up--flex--justify-start {
    justify-content: flex-start; }

  .medium-up--flex--justify-center {
    justify-content: center; }

  .medium-up--flex--justify-end {
    justify-content: flex-end; }

  .medium-up--flex--justify-between {
    justify-content: space-between; }

  .medium-up--flex--justify-around {
    justify-content: space-around; } }
@media only screen and (max-width: 1023px) {
  .medium-down--flex--direction-column {
    flex-direction: column; }

  .medium-down--flex--direction-row {
    flex-direction: row; }

  .medium-down--flex--direction-reverse {
    flex-direction: row-reverse; }

  .medium-down--flex--align-start {
    align-items: flex-start; }

  .medium-down--flex--align-center {
    align-items: center; }

  .medium-down--flex--align-end {
    align-items: flex-end; }

  .medium-down--flex--align-between {
    align-items: space-between; }

  .medium-down--flex--align-around {
    align-items: space-around; }

  .medium-down--flex--align-stretch {
    align-items: stretch; }

  .medium-down--flex--justify-start {
    justify-content: flex-start; }

  .medium-down--flex--justify-center {
    justify-content: center; }

  .medium-down--flex--justify-end {
    justify-content: flex-end; }

  .medium-down--flex--justify-between {
    justify-content: space-between; }

  .medium-down--flex--justify-around {
    justify-content: space-around; } }
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .medium--flex--direction-column {
    flex-direction: column; }

  .medium--flex--direction-row {
    flex-direction: row; }

  .medium--flex--direction-reverse {
    flex-direction: row-reverse; }

  .medium--flex--align-start {
    align-items: flex-start; }

  .medium--flex--align-center {
    align-items: center; }

  .medium--flex--align-end {
    align-items: flex-end; }

  .medium--flex--align-between {
    align-items: space-between; }

  .medium--flex--align-around {
    align-items: space-around; }

  .medium--flex--align-stretch {
    align-items: stretch; }

  .medium--flex--justify-start {
    justify-content: flex-start; }

  .medium--flex--justify-center {
    justify-content: center; }

  .medium--flex--justify-end {
    justify-content: flex-end; }

  .medium--flex--justify-between {
    justify-content: space-between; }

  .medium--flex--justify-around {
    justify-content: space-around; } }
@media only screen and (min-width: 480px) {
  .small-up--flex--direction-column {
    flex-direction: column; }

  .small-up--flex--direction-row {
    flex-direction: row; }

  .small-up--flex--direction-reverse {
    flex-direction: row-reverse; }

  .small-up--flex--align-start {
    align-items: flex-start; }

  .small-up--flex--align-center {
    align-items: center; }

  .small-up--flex--align-end {
    align-items: flex-end; }

  .small-up--flex--align-between {
    align-items: space-between; }

  .small-up--flex--align-around {
    align-items: space-around; }

  .small-up--flex--align-stretch {
    align-items: stretch; }

  .small-up--flex--justify-start {
    justify-content: flex-start; }

  .small-up--flex--justify-center {
    justify-content: center; }

  .small-up--flex--justify-end {
    justify-content: flex-end; }

  .small-up--flex--justify-between {
    justify-content: space-between; }

  .small-up--flex--justify-around {
    justify-content: space-around; } }
@media only screen and (max-width: 767px) {
  .small-down--flex--direction-column {
    flex-direction: column; }

  .small-down--flex--direction-row {
    flex-direction: row; }

  .small-down--flex--direction-reverse {
    flex-direction: row-reverse; }

  .small-down--flex--align-start {
    align-items: flex-start; }

  .small-down--flex--align-center {
    align-items: center; }

  .small-down--flex--align-end {
    align-items: flex-end; }

  .small-down--flex--align-between {
    align-items: space-between; }

  .small-down--flex--align-around {
    align-items: space-around; }

  .small-down--flex--align-stretch {
    align-items: stretch; }

  .small-down--flex--justify-start {
    justify-content: flex-start; }

  .small-down--flex--justify-center {
    justify-content: center; }

  .small-down--flex--justify-end {
    justify-content: flex-end; }

  .small-down--flex--justify-between {
    justify-content: space-between; }

  .small-down--flex--justify-around {
    justify-content: space-around; } }
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .small--flex--direction-column {
    flex-direction: column; }

  .small--flex--direction-row {
    flex-direction: row; }

  .small--flex--direction-reverse {
    flex-direction: row-reverse; }

  .small--flex--align-start {
    align-items: flex-start; }

  .small--flex--align-center {
    align-items: center; }

  .small--flex--align-end {
    align-items: flex-end; }

  .small--flex--align-between {
    align-items: space-between; }

  .small--flex--align-around {
    align-items: space-around; }

  .small--flex--align-stretch {
    align-items: stretch; }

  .small--flex--justify-start {
    justify-content: flex-start; }

  .small--flex--justify-center {
    justify-content: center; }

  .small--flex--justify-end {
    justify-content: flex-end; }

  .small--flex--justify-between {
    justify-content: space-between; }

  .small--flex--justify-around {
    justify-content: space-around; } }
@media only screen and (max-width: 479px) {
  .extra-small--flex--direction-column {
    flex-direction: column; }

  .extra-small--flex--direction-row {
    flex-direction: row; }

  .extra-small--flex--direction-reverse {
    flex-direction: row-reverse; }

  .extra-small--flex--align-start {
    align-items: flex-start; }

  .extra-small--flex--align-center {
    align-items: center; }

  .extra-small--flex--align-end {
    align-items: flex-end; }

  .extra-small--flex--align-between {
    align-items: space-between; }

  .extra-small--flex--align-around {
    align-items: space-around; }

  .extra-small--flex--align-stretch {
    align-items: stretch; }

  .extra-small--flex--justify-start {
    justify-content: flex-start; }

  .extra-small--flex--justify-center {
    justify-content: center; }

  .extra-small--flex--justify-end {
    justify-content: flex-end; }

  .extra-small--flex--justify-between {
    justify-content: space-between; }

  .extra-small--flex--justify-around {
    justify-content: space-around; } }
/*====== MARGINS & PADDING ======*/
.pt-0 {
  padding-top: 0 !important; }

.pt-1 {
  padding-top: 9.9px !important; }

.pt-2 {
  padding-top: 19.8px !important; }

.pt-3 {
  padding-top: 30px !important; }

.pt-4 {
  padding-top: 45px !important; }

.pt-5 {
  padding-top: 60px !important; }

.pb-0 {
  padding-bottom: 0 !important; }

.pb-1 {
  padding-bottom: 9.9px !important; }

.pb-2 {
  padding-bottom: 19.8px !important; }

.pb-3 {
  padding-bottom: 30px !important; }

.pb-4 {
  padding-bottom: 45px !important; }

.pb-5 {
  padding-bottom: 60px !important; }

.pl-0 {
  padding-left: 0 !important; }

.pl-1 {
  padding-left: 9.9px !important; }

.pl-2 {
  padding-left: 19.8px !important; }

.pl-3 {
  padding-left: 30px !important; }

.pl-4 {
  padding-left: 45px !important; }

.pl-5 {
  padding-left: 60px !important; }

.pr-0 {
  padding-right: 0 !important; }

.pr-1 {
  padding-right: 9.9px !important; }

.pr-2 {
  padding-right: 19.8px !important; }

.pr-3 {
  padding-right: 30px !important; }

.pr-4 {
  padding-right: 45px !important; }

.pr-5 {
  padding-right: 60px !important; }

.mt-0 {
  margin-top: 0 !important; }

.mt-1 {
  margin-top: 9.9px !important; }

.mt-2 {
  margin-top: 19.8px !important; }

.mt-3 {
  margin-top: 30px !important; }

.mt-4 {
  margin-top: 45px !important; }

.mt-5 {
  margin-top: 60px !important; }

.mb-0 {
  margin-bottom: 0 !important; }

.mb-1 {
  margin-bottom: 9.9px !important; }

.mb-2 {
  margin-bottom: 19.8px !important; }

.mb-3 {
  margin-bottom: 30px !important; }

.mb-4 {
  margin-bottom: 45px !important; }

.mb-5 {
  margin-bottom: 60px !important; }

.ml-0 {
  margin-left: 0 !important; }

.ml-1 {
  margin-left: 9.9px !important; }

.ml-2 {
  margin-left: 19.8px !important; }

.ml-3 {
  margin-left: 30px !important; }

.ml-4 {
  margin-left: 45px !important; }

.ml-5 {
  margin-left: 60px !important; }

.mr-0 {
  margin-left: 0 !important; }

.mr-1 {
  margin-right: 9.9px !important; }

.mr-2 {
  margin-right: 19.8px !important; }

.mr-3 {
  margin-right: 30px !important; }

.mr-4 {
  margin-right: 45px !important; }

.mr-5 {
  margin-right: 60px !important; }

/*================ Build Spacing Utility Classes ================*/
@media only screen and (min-width: 2560px) {
  .extra-large-up--pt-0 {
    padding-top: 0 !important; }

  .extra-large-up--pt-1 {
    padding-top: 9.9px !important; }

  .extra-large-up--pt-2 {
    padding-top: 19.8px !important; }

  .extra-large-up--pt-3 {
    padding-top: 30px !important; }

  .extra-large-up--pt-4 {
    padding-top: 45px !important; }

  .extra-large-up--pt-5 {
    padding-top: 60px !important; }

  .extra-large-up--pb-0 {
    padding-bottom: 0 !important; }

  .extra-large-up--pb-1 {
    padding-bottom: 9.9px !important; }

  .extra-large-up--pb-2 {
    padding-bottom: 19.8px !important; }

  .extra-large-up--pb-3 {
    padding-bottom: 30px !important; }

  .extra-large-up--pb-4 {
    padding-bottom: 45px !important; }

  .extra-large-up--pb-5 {
    padding-bottom: 60px !important; }

  .extra-large-up--pl-0 {
    padding-left: 0 !important; }

  .extra-large-up--pl-1 {
    padding-left: 9.9px !important; }

  .extra-large-up--pl-2 {
    padding-left: 19.8px !important; }

  .extra-large-up--pl-3 {
    padding-left: 30px !important; }

  .extra-large-up--pl-4 {
    padding-left: 45px !important; }

  .extra-large-up--pl-5 {
    padding-left: 60px !important; }

  .extra-large-up--pr-0 {
    padding-right: 0 !important; }

  .extra-large-up--pr-1 {
    padding-right: 9.9px !important; }

  .extra-large-up--pr-2 {
    padding-right: 19.8px !important; }

  .extra-large-up--pr-3 {
    padding-right: 30px !important; }

  .extra-large-up--pr-4 {
    padding-right: 45px !important; }

  .extra-large-up--pr-5 {
    padding-right: 60px !important; }

  .extra-large-up--mt-0 {
    margin-top: 0 !important; }

  .extra-large-up--mt-1 {
    margin-top: 9.9px !important; }

  .extra-large-up--mt-2 {
    margin-top: 19.8px !important; }

  .extra-large-up--mt-3 {
    margin-top: 30px !important; }

  .extra-large-up--mt-4 {
    margin-top: 45px !important; }

  .extra-large-up--mt-5 {
    margin-top: 60px !important; }

  .extra-large-up--mb-0 {
    margin-bottom: 0 !important; }

  .extra-large-up--mb-1 {
    margin-bottom: 9.9px !important; }

  .extra-large-up--mb-2 {
    margin-bottom: 19.8px !important; }

  .extra-large-up--mb-3 {
    margin-bottom: 30px !important; }

  .extra-large-up--mb-4 {
    margin-bottom: 45px !important; }

  .extra-large-up--mb-5 {
    margin-bottom: 60px !important; }

  .extra-large-up--ml-0 {
    margin-left: 0 !important; }

  .extra-large-up--ml-1 {
    margin-left: 9.9px !important; }

  .extra-large-up--ml-2 {
    margin-left: 19.8px !important; }

  .extra-large-up--ml-3 {
    margin-left: 30px !important; }

  .extra-large-up--ml-4 {
    margin-left: 45px !important; }

  .extra-large-up--ml-5 {
    margin-left: 60px !important; }

  .extra-large-up--mr-0 {
    margin-left: 0 !important; }

  .extra-large-up--mr-1 {
    margin-right: 9.9px !important; }

  .extra-large-up--mr-2 {
    margin-right: 19.8px !important; }

  .extra-large-up--mr-3 {
    margin-right: 30px !important; }

  .extra-large-up--mr-4 {
    margin-right: 45px !important; }

  .extra-large-up--mr-5 {
    margin-right: 60px !important; } }
@media only screen and (min-width: 1280px) {
  .extra-large--pt-0 {
    padding-top: 0 !important; }

  .extra-large--pt-1 {
    padding-top: 9.9px !important; }

  .extra-large--pt-2 {
    padding-top: 19.8px !important; }

  .extra-large--pt-3 {
    padding-top: 30px !important; }

  .extra-large--pt-4 {
    padding-top: 45px !important; }

  .extra-large--pt-5 {
    padding-top: 60px !important; }

  .extra-large--pb-0 {
    padding-bottom: 0 !important; }

  .extra-large--pb-1 {
    padding-bottom: 9.9px !important; }

  .extra-large--pb-2 {
    padding-bottom: 19.8px !important; }

  .extra-large--pb-3 {
    padding-bottom: 30px !important; }

  .extra-large--pb-4 {
    padding-bottom: 45px !important; }

  .extra-large--pb-5 {
    padding-bottom: 60px !important; }

  .extra-large--pl-0 {
    padding-left: 0 !important; }

  .extra-large--pl-1 {
    padding-left: 9.9px !important; }

  .extra-large--pl-2 {
    padding-left: 19.8px !important; }

  .extra-large--pl-3 {
    padding-left: 30px !important; }

  .extra-large--pl-4 {
    padding-left: 45px !important; }

  .extra-large--pl-5 {
    padding-left: 60px !important; }

  .extra-large--pr-0 {
    padding-right: 0 !important; }

  .extra-large--pr-1 {
    padding-right: 9.9px !important; }

  .extra-large--pr-2 {
    padding-right: 19.8px !important; }

  .extra-large--pr-3 {
    padding-right: 30px !important; }

  .extra-large--pr-4 {
    padding-right: 45px !important; }

  .extra-large--pr-5 {
    padding-right: 60px !important; }

  .extra-large--mt-0 {
    margin-top: 0 !important; }

  .extra-large--mt-1 {
    margin-top: 9.9px !important; }

  .extra-large--mt-2 {
    margin-top: 19.8px !important; }

  .extra-large--mt-3 {
    margin-top: 30px !important; }

  .extra-large--mt-4 {
    margin-top: 45px !important; }

  .extra-large--mt-5 {
    margin-top: 60px !important; }

  .extra-large--mb-0 {
    margin-bottom: 0 !important; }

  .extra-large--mb-1 {
    margin-bottom: 9.9px !important; }

  .extra-large--mb-2 {
    margin-bottom: 19.8px !important; }

  .extra-large--mb-3 {
    margin-bottom: 30px !important; }

  .extra-large--mb-4 {
    margin-bottom: 45px !important; }

  .extra-large--mb-5 {
    margin-bottom: 60px !important; }

  .extra-large--ml-0 {
    margin-left: 0 !important; }

  .extra-large--ml-1 {
    margin-left: 9.9px !important; }

  .extra-large--ml-2 {
    margin-left: 19.8px !important; }

  .extra-large--ml-3 {
    margin-left: 30px !important; }

  .extra-large--ml-4 {
    margin-left: 45px !important; }

  .extra-large--ml-5 {
    margin-left: 60px !important; }

  .extra-large--mr-0 {
    margin-left: 0 !important; }

  .extra-large--mr-1 {
    margin-right: 9.9px !important; }

  .extra-large--mr-2 {
    margin-right: 19.8px !important; }

  .extra-large--mr-3 {
    margin-right: 30px !important; }

  .extra-large--mr-4 {
    margin-right: 45px !important; }

  .extra-large--mr-5 {
    margin-right: 60px !important; } }
@media only screen and (min-width: 1024px) {
  .large-up--pt-0 {
    padding-top: 0 !important; }

  .large-up--pt-1 {
    padding-top: 9.9px !important; }

  .large-up--pt-2 {
    padding-top: 19.8px !important; }

  .large-up--pt-3 {
    padding-top: 30px !important; }

  .large-up--pt-4 {
    padding-top: 45px !important; }

  .large-up--pt-5 {
    padding-top: 60px !important; }

  .large-up--pb-0 {
    padding-bottom: 0 !important; }

  .large-up--pb-1 {
    padding-bottom: 9.9px !important; }

  .large-up--pb-2 {
    padding-bottom: 19.8px !important; }

  .large-up--pb-3 {
    padding-bottom: 30px !important; }

  .large-up--pb-4 {
    padding-bottom: 45px !important; }

  .large-up--pb-5 {
    padding-bottom: 60px !important; }

  .large-up--pl-0 {
    padding-left: 0 !important; }

  .large-up--pl-1 {
    padding-left: 9.9px !important; }

  .large-up--pl-2 {
    padding-left: 19.8px !important; }

  .large-up--pl-3 {
    padding-left: 30px !important; }

  .large-up--pl-4 {
    padding-left: 45px !important; }

  .large-up--pl-5 {
    padding-left: 60px !important; }

  .large-up--pr-0 {
    padding-right: 0 !important; }

  .large-up--pr-1 {
    padding-right: 9.9px !important; }

  .large-up--pr-2 {
    padding-right: 19.8px !important; }

  .large-up--pr-3 {
    padding-right: 30px !important; }

  .large-up--pr-4 {
    padding-right: 45px !important; }

  .large-up--pr-5 {
    padding-right: 60px !important; }

  .large-up--mt-0 {
    margin-top: 0 !important; }

  .large-up--mt-1 {
    margin-top: 9.9px !important; }

  .large-up--mt-2 {
    margin-top: 19.8px !important; }

  .large-up--mt-3 {
    margin-top: 30px !important; }

  .large-up--mt-4 {
    margin-top: 45px !important; }

  .large-up--mt-5 {
    margin-top: 60px !important; }

  .large-up--mb-0 {
    margin-bottom: 0 !important; }

  .large-up--mb-1 {
    margin-bottom: 9.9px !important; }

  .large-up--mb-2 {
    margin-bottom: 19.8px !important; }

  .large-up--mb-3 {
    margin-bottom: 30px !important; }

  .large-up--mb-4 {
    margin-bottom: 45px !important; }

  .large-up--mb-5 {
    margin-bottom: 60px !important; }

  .large-up--ml-0 {
    margin-left: 0 !important; }

  .large-up--ml-1 {
    margin-left: 9.9px !important; }

  .large-up--ml-2 {
    margin-left: 19.8px !important; }

  .large-up--ml-3 {
    margin-left: 30px !important; }

  .large-up--ml-4 {
    margin-left: 45px !important; }

  .large-up--ml-5 {
    margin-left: 60px !important; }

  .large-up--mr-0 {
    margin-left: 0 !important; }

  .large-up--mr-1 {
    margin-right: 9.9px !important; }

  .large-up--mr-2 {
    margin-right: 19.8px !important; }

  .large-up--mr-3 {
    margin-right: 30px !important; }

  .large-up--mr-4 {
    margin-right: 45px !important; }

  .large-up--mr-5 {
    margin-right: 60px !important; } }
@media only screen and (max-width: 1279px) {
  .large-down--pt-0 {
    padding-top: 0 !important; }

  .large-down--pt-1 {
    padding-top: 9.9px !important; }

  .large-down--pt-2 {
    padding-top: 19.8px !important; }

  .large-down--pt-3 {
    padding-top: 30px !important; }

  .large-down--pt-4 {
    padding-top: 45px !important; }

  .large-down--pt-5 {
    padding-top: 60px !important; }

  .large-down--pb-0 {
    padding-bottom: 0 !important; }

  .large-down--pb-1 {
    padding-bottom: 9.9px !important; }

  .large-down--pb-2 {
    padding-bottom: 19.8px !important; }

  .large-down--pb-3 {
    padding-bottom: 30px !important; }

  .large-down--pb-4 {
    padding-bottom: 45px !important; }

  .large-down--pb-5 {
    padding-bottom: 60px !important; }

  .large-down--pl-0 {
    padding-left: 0 !important; }

  .large-down--pl-1 {
    padding-left: 9.9px !important; }

  .large-down--pl-2 {
    padding-left: 19.8px !important; }

  .large-down--pl-3 {
    padding-left: 30px !important; }

  .large-down--pl-4 {
    padding-left: 45px !important; }

  .large-down--pl-5 {
    padding-left: 60px !important; }

  .large-down--pr-0 {
    padding-right: 0 !important; }

  .large-down--pr-1 {
    padding-right: 9.9px !important; }

  .large-down--pr-2 {
    padding-right: 19.8px !important; }

  .large-down--pr-3 {
    padding-right: 30px !important; }

  .large-down--pr-4 {
    padding-right: 45px !important; }

  .large-down--pr-5 {
    padding-right: 60px !important; }

  .large-down--mt-0 {
    margin-top: 0 !important; }

  .large-down--mt-1 {
    margin-top: 9.9px !important; }

  .large-down--mt-2 {
    margin-top: 19.8px !important; }

  .large-down--mt-3 {
    margin-top: 30px !important; }

  .large-down--mt-4 {
    margin-top: 45px !important; }

  .large-down--mt-5 {
    margin-top: 60px !important; }

  .large-down--mb-0 {
    margin-bottom: 0 !important; }

  .large-down--mb-1 {
    margin-bottom: 9.9px !important; }

  .large-down--mb-2 {
    margin-bottom: 19.8px !important; }

  .large-down--mb-3 {
    margin-bottom: 30px !important; }

  .large-down--mb-4 {
    margin-bottom: 45px !important; }

  .large-down--mb-5 {
    margin-bottom: 60px !important; }

  .large-down--ml-0 {
    margin-left: 0 !important; }

  .large-down--ml-1 {
    margin-left: 9.9px !important; }

  .large-down--ml-2 {
    margin-left: 19.8px !important; }

  .large-down--ml-3 {
    margin-left: 30px !important; }

  .large-down--ml-4 {
    margin-left: 45px !important; }

  .large-down--ml-5 {
    margin-left: 60px !important; }

  .large-down--mr-0 {
    margin-left: 0 !important; }

  .large-down--mr-1 {
    margin-right: 9.9px !important; }

  .large-down--mr-2 {
    margin-right: 19.8px !important; }

  .large-down--mr-3 {
    margin-right: 30px !important; }

  .large-down--mr-4 {
    margin-right: 45px !important; }

  .large-down--mr-5 {
    margin-right: 60px !important; } }
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .large--pt-0 {
    padding-top: 0 !important; }

  .large--pt-1 {
    padding-top: 9.9px !important; }

  .large--pt-2 {
    padding-top: 19.8px !important; }

  .large--pt-3 {
    padding-top: 30px !important; }

  .large--pt-4 {
    padding-top: 45px !important; }

  .large--pt-5 {
    padding-top: 60px !important; }

  .large--pb-0 {
    padding-bottom: 0 !important; }

  .large--pb-1 {
    padding-bottom: 9.9px !important; }

  .large--pb-2 {
    padding-bottom: 19.8px !important; }

  .large--pb-3 {
    padding-bottom: 30px !important; }

  .large--pb-4 {
    padding-bottom: 45px !important; }

  .large--pb-5 {
    padding-bottom: 60px !important; }

  .large--pl-0 {
    padding-left: 0 !important; }

  .large--pl-1 {
    padding-left: 9.9px !important; }

  .large--pl-2 {
    padding-left: 19.8px !important; }

  .large--pl-3 {
    padding-left: 30px !important; }

  .large--pl-4 {
    padding-left: 45px !important; }

  .large--pl-5 {
    padding-left: 60px !important; }

  .large--pr-0 {
    padding-right: 0 !important; }

  .large--pr-1 {
    padding-right: 9.9px !important; }

  .large--pr-2 {
    padding-right: 19.8px !important; }

  .large--pr-3 {
    padding-right: 30px !important; }

  .large--pr-4 {
    padding-right: 45px !important; }

  .large--pr-5 {
    padding-right: 60px !important; }

  .large--mt-0 {
    margin-top: 0 !important; }

  .large--mt-1 {
    margin-top: 9.9px !important; }

  .large--mt-2 {
    margin-top: 19.8px !important; }

  .large--mt-3 {
    margin-top: 30px !important; }

  .large--mt-4 {
    margin-top: 45px !important; }

  .large--mt-5 {
    margin-top: 60px !important; }

  .large--mb-0 {
    margin-bottom: 0 !important; }

  .large--mb-1 {
    margin-bottom: 9.9px !important; }

  .large--mb-2 {
    margin-bottom: 19.8px !important; }

  .large--mb-3 {
    margin-bottom: 30px !important; }

  .large--mb-4 {
    margin-bottom: 45px !important; }

  .large--mb-5 {
    margin-bottom: 60px !important; }

  .large--ml-0 {
    margin-left: 0 !important; }

  .large--ml-1 {
    margin-left: 9.9px !important; }

  .large--ml-2 {
    margin-left: 19.8px !important; }

  .large--ml-3 {
    margin-left: 30px !important; }

  .large--ml-4 {
    margin-left: 45px !important; }

  .large--ml-5 {
    margin-left: 60px !important; }

  .large--mr-0 {
    margin-left: 0 !important; }

  .large--mr-1 {
    margin-right: 9.9px !important; }

  .large--mr-2 {
    margin-right: 19.8px !important; }

  .large--mr-3 {
    margin-right: 30px !important; }

  .large--mr-4 {
    margin-right: 45px !important; }

  .large--mr-5 {
    margin-right: 60px !important; } }
@media only screen and (min-width: 768px) {
  .medium-up--pt-0 {
    padding-top: 0 !important; }

  .medium-up--pt-1 {
    padding-top: 9.9px !important; }

  .medium-up--pt-2 {
    padding-top: 19.8px !important; }

  .medium-up--pt-3 {
    padding-top: 30px !important; }

  .medium-up--pt-4 {
    padding-top: 45px !important; }

  .medium-up--pt-5 {
    padding-top: 60px !important; }

  .medium-up--pb-0 {
    padding-bottom: 0 !important; }

  .medium-up--pb-1 {
    padding-bottom: 9.9px !important; }

  .medium-up--pb-2 {
    padding-bottom: 19.8px !important; }

  .medium-up--pb-3 {
    padding-bottom: 30px !important; }

  .medium-up--pb-4 {
    padding-bottom: 45px !important; }

  .medium-up--pb-5 {
    padding-bottom: 60px !important; }

  .medium-up--pl-0 {
    padding-left: 0 !important; }

  .medium-up--pl-1 {
    padding-left: 9.9px !important; }

  .medium-up--pl-2 {
    padding-left: 19.8px !important; }

  .medium-up--pl-3 {
    padding-left: 30px !important; }

  .medium-up--pl-4 {
    padding-left: 45px !important; }

  .medium-up--pl-5 {
    padding-left: 60px !important; }

  .medium-up--pr-0 {
    padding-right: 0 !important; }

  .medium-up--pr-1 {
    padding-right: 9.9px !important; }

  .medium-up--pr-2 {
    padding-right: 19.8px !important; }

  .medium-up--pr-3 {
    padding-right: 30px !important; }

  .medium-up--pr-4 {
    padding-right: 45px !important; }

  .medium-up--pr-5 {
    padding-right: 60px !important; }

  .medium-up--mt-0 {
    margin-top: 0 !important; }

  .medium-up--mt-1 {
    margin-top: 9.9px !important; }

  .medium-up--mt-2 {
    margin-top: 19.8px !important; }

  .medium-up--mt-3 {
    margin-top: 30px !important; }

  .medium-up--mt-4 {
    margin-top: 45px !important; }

  .medium-up--mt-5 {
    margin-top: 60px !important; }

  .medium-up--mb-0 {
    margin-bottom: 0 !important; }

  .medium-up--mb-1 {
    margin-bottom: 9.9px !important; }

  .medium-up--mb-2 {
    margin-bottom: 19.8px !important; }

  .medium-up--mb-3 {
    margin-bottom: 30px !important; }

  .medium-up--mb-4 {
    margin-bottom: 45px !important; }

  .medium-up--mb-5 {
    margin-bottom: 60px !important; }

  .medium-up--ml-0 {
    margin-left: 0 !important; }

  .medium-up--ml-1 {
    margin-left: 9.9px !important; }

  .medium-up--ml-2 {
    margin-left: 19.8px !important; }

  .medium-up--ml-3 {
    margin-left: 30px !important; }

  .medium-up--ml-4 {
    margin-left: 45px !important; }

  .medium-up--ml-5 {
    margin-left: 60px !important; }

  .medium-up--mr-0 {
    margin-left: 0 !important; }

  .medium-up--mr-1 {
    margin-right: 9.9px !important; }

  .medium-up--mr-2 {
    margin-right: 19.8px !important; }

  .medium-up--mr-3 {
    margin-right: 30px !important; }

  .medium-up--mr-4 {
    margin-right: 45px !important; }

  .medium-up--mr-5 {
    margin-right: 60px !important; } }
@media only screen and (max-width: 1023px) {
  .medium-down--pt-0 {
    padding-top: 0 !important; }

  .medium-down--pt-1 {
    padding-top: 9.9px !important; }

  .medium-down--pt-2 {
    padding-top: 19.8px !important; }

  .medium-down--pt-3 {
    padding-top: 30px !important; }

  .medium-down--pt-4 {
    padding-top: 45px !important; }

  .medium-down--pt-5 {
    padding-top: 60px !important; }

  .medium-down--pb-0 {
    padding-bottom: 0 !important; }

  .medium-down--pb-1 {
    padding-bottom: 9.9px !important; }

  .medium-down--pb-2 {
    padding-bottom: 19.8px !important; }

  .medium-down--pb-3 {
    padding-bottom: 30px !important; }

  .medium-down--pb-4 {
    padding-bottom: 45px !important; }

  .medium-down--pb-5 {
    padding-bottom: 60px !important; }

  .medium-down--pl-0 {
    padding-left: 0 !important; }

  .medium-down--pl-1 {
    padding-left: 9.9px !important; }

  .medium-down--pl-2 {
    padding-left: 19.8px !important; }

  .medium-down--pl-3 {
    padding-left: 30px !important; }

  .medium-down--pl-4 {
    padding-left: 45px !important; }

  .medium-down--pl-5 {
    padding-left: 60px !important; }

  .medium-down--pr-0 {
    padding-right: 0 !important; }

  .medium-down--pr-1 {
    padding-right: 9.9px !important; }

  .medium-down--pr-2 {
    padding-right: 19.8px !important; }

  .medium-down--pr-3 {
    padding-right: 30px !important; }

  .medium-down--pr-4 {
    padding-right: 45px !important; }

  .medium-down--pr-5 {
    padding-right: 60px !important; }

  .medium-down--mt-0 {
    margin-top: 0 !important; }

  .medium-down--mt-1 {
    margin-top: 9.9px !important; }

  .medium-down--mt-2 {
    margin-top: 19.8px !important; }

  .medium-down--mt-3 {
    margin-top: 30px !important; }

  .medium-down--mt-4 {
    margin-top: 45px !important; }

  .medium-down--mt-5 {
    margin-top: 60px !important; }

  .medium-down--mb-0 {
    margin-bottom: 0 !important; }

  .medium-down--mb-1 {
    margin-bottom: 9.9px !important; }

  .medium-down--mb-2 {
    margin-bottom: 19.8px !important; }

  .medium-down--mb-3 {
    margin-bottom: 30px !important; }

  .medium-down--mb-4 {
    margin-bottom: 45px !important; }

  .medium-down--mb-5 {
    margin-bottom: 60px !important; }

  .medium-down--ml-0 {
    margin-left: 0 !important; }

  .medium-down--ml-1 {
    margin-left: 9.9px !important; }

  .medium-down--ml-2 {
    margin-left: 19.8px !important; }

  .medium-down--ml-3 {
    margin-left: 30px !important; }

  .medium-down--ml-4 {
    margin-left: 45px !important; }

  .medium-down--ml-5 {
    margin-left: 60px !important; }

  .medium-down--mr-0 {
    margin-left: 0 !important; }

  .medium-down--mr-1 {
    margin-right: 9.9px !important; }

  .medium-down--mr-2 {
    margin-right: 19.8px !important; }

  .medium-down--mr-3 {
    margin-right: 30px !important; }

  .medium-down--mr-4 {
    margin-right: 45px !important; }

  .medium-down--mr-5 {
    margin-right: 60px !important; } }
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .medium--pt-0 {
    padding-top: 0 !important; }

  .medium--pt-1 {
    padding-top: 9.9px !important; }

  .medium--pt-2 {
    padding-top: 19.8px !important; }

  .medium--pt-3 {
    padding-top: 30px !important; }

  .medium--pt-4 {
    padding-top: 45px !important; }

  .medium--pt-5 {
    padding-top: 60px !important; }

  .medium--pb-0 {
    padding-bottom: 0 !important; }

  .medium--pb-1 {
    padding-bottom: 9.9px !important; }

  .medium--pb-2 {
    padding-bottom: 19.8px !important; }

  .medium--pb-3 {
    padding-bottom: 30px !important; }

  .medium--pb-4 {
    padding-bottom: 45px !important; }

  .medium--pb-5 {
    padding-bottom: 60px !important; }

  .medium--pl-0 {
    padding-left: 0 !important; }

  .medium--pl-1 {
    padding-left: 9.9px !important; }

  .medium--pl-2 {
    padding-left: 19.8px !important; }

  .medium--pl-3 {
    padding-left: 30px !important; }

  .medium--pl-4 {
    padding-left: 45px !important; }

  .medium--pl-5 {
    padding-left: 60px !important; }

  .medium--pr-0 {
    padding-right: 0 !important; }

  .medium--pr-1 {
    padding-right: 9.9px !important; }

  .medium--pr-2 {
    padding-right: 19.8px !important; }

  .medium--pr-3 {
    padding-right: 30px !important; }

  .medium--pr-4 {
    padding-right: 45px !important; }

  .medium--pr-5 {
    padding-right: 60px !important; }

  .medium--mt-0 {
    margin-top: 0 !important; }

  .medium--mt-1 {
    margin-top: 9.9px !important; }

  .medium--mt-2 {
    margin-top: 19.8px !important; }

  .medium--mt-3 {
    margin-top: 30px !important; }

  .medium--mt-4 {
    margin-top: 45px !important; }

  .medium--mt-5 {
    margin-top: 60px !important; }

  .medium--mb-0 {
    margin-bottom: 0 !important; }

  .medium--mb-1 {
    margin-bottom: 9.9px !important; }

  .medium--mb-2 {
    margin-bottom: 19.8px !important; }

  .medium--mb-3 {
    margin-bottom: 30px !important; }

  .medium--mb-4 {
    margin-bottom: 45px !important; }

  .medium--mb-5 {
    margin-bottom: 60px !important; }

  .medium--ml-0 {
    margin-left: 0 !important; }

  .medium--ml-1 {
    margin-left: 9.9px !important; }

  .medium--ml-2 {
    margin-left: 19.8px !important; }

  .medium--ml-3 {
    margin-left: 30px !important; }

  .medium--ml-4 {
    margin-left: 45px !important; }

  .medium--ml-5 {
    margin-left: 60px !important; }

  .medium--mr-0 {
    margin-left: 0 !important; }

  .medium--mr-1 {
    margin-right: 9.9px !important; }

  .medium--mr-2 {
    margin-right: 19.8px !important; }

  .medium--mr-3 {
    margin-right: 30px !important; }

  .medium--mr-4 {
    margin-right: 45px !important; }

  .medium--mr-5 {
    margin-right: 60px !important; } }
@media only screen and (min-width: 480px) {
  .small-up--pt-0 {
    padding-top: 0 !important; }

  .small-up--pt-1 {
    padding-top: 9.9px !important; }

  .small-up--pt-2 {
    padding-top: 19.8px !important; }

  .small-up--pt-3 {
    padding-top: 30px !important; }

  .small-up--pt-4 {
    padding-top: 45px !important; }

  .small-up--pt-5 {
    padding-top: 60px !important; }

  .small-up--pb-0 {
    padding-bottom: 0 !important; }

  .small-up--pb-1 {
    padding-bottom: 9.9px !important; }

  .small-up--pb-2 {
    padding-bottom: 19.8px !important; }

  .small-up--pb-3 {
    padding-bottom: 30px !important; }

  .small-up--pb-4 {
    padding-bottom: 45px !important; }

  .small-up--pb-5 {
    padding-bottom: 60px !important; }

  .small-up--pl-0 {
    padding-left: 0 !important; }

  .small-up--pl-1 {
    padding-left: 9.9px !important; }

  .small-up--pl-2 {
    padding-left: 19.8px !important; }

  .small-up--pl-3 {
    padding-left: 30px !important; }

  .small-up--pl-4 {
    padding-left: 45px !important; }

  .small-up--pl-5 {
    padding-left: 60px !important; }

  .small-up--pr-0 {
    padding-right: 0 !important; }

  .small-up--pr-1 {
    padding-right: 9.9px !important; }

  .small-up--pr-2 {
    padding-right: 19.8px !important; }

  .small-up--pr-3 {
    padding-right: 30px !important; }

  .small-up--pr-4 {
    padding-right: 45px !important; }

  .small-up--pr-5 {
    padding-right: 60px !important; }

  .small-up--mt-0 {
    margin-top: 0 !important; }

  .small-up--mt-1 {
    margin-top: 9.9px !important; }

  .small-up--mt-2 {
    margin-top: 19.8px !important; }

  .small-up--mt-3 {
    margin-top: 30px !important; }

  .small-up--mt-4 {
    margin-top: 45px !important; }

  .small-up--mt-5 {
    margin-top: 60px !important; }

  .small-up--mb-0 {
    margin-bottom: 0 !important; }

  .small-up--mb-1 {
    margin-bottom: 9.9px !important; }

  .small-up--mb-2 {
    margin-bottom: 19.8px !important; }

  .small-up--mb-3 {
    margin-bottom: 30px !important; }

  .small-up--mb-4 {
    margin-bottom: 45px !important; }

  .small-up--mb-5 {
    margin-bottom: 60px !important; }

  .small-up--ml-0 {
    margin-left: 0 !important; }

  .small-up--ml-1 {
    margin-left: 9.9px !important; }

  .small-up--ml-2 {
    margin-left: 19.8px !important; }

  .small-up--ml-3 {
    margin-left: 30px !important; }

  .small-up--ml-4 {
    margin-left: 45px !important; }

  .small-up--ml-5 {
    margin-left: 60px !important; }

  .small-up--mr-0 {
    margin-left: 0 !important; }

  .small-up--mr-1 {
    margin-right: 9.9px !important; }

  .small-up--mr-2 {
    margin-right: 19.8px !important; }

  .small-up--mr-3 {
    margin-right: 30px !important; }

  .small-up--mr-4 {
    margin-right: 45px !important; }

  .small-up--mr-5 {
    margin-right: 60px !important; } }
@media only screen and (max-width: 767px) {
  .small-down--pt-0 {
    padding-top: 0 !important; }

  .small-down--pt-1 {
    padding-top: 9.9px !important; }

  .small-down--pt-2 {
    padding-top: 19.8px !important; }

  .small-down--pt-3 {
    padding-top: 30px !important; }

  .small-down--pt-4 {
    padding-top: 45px !important; }

  .small-down--pt-5 {
    padding-top: 60px !important; }

  .small-down--pb-0 {
    padding-bottom: 0 !important; }

  .small-down--pb-1 {
    padding-bottom: 9.9px !important; }

  .small-down--pb-2 {
    padding-bottom: 19.8px !important; }

  .small-down--pb-3 {
    padding-bottom: 30px !important; }

  .small-down--pb-4 {
    padding-bottom: 45px !important; }

  .small-down--pb-5 {
    padding-bottom: 60px !important; }

  .small-down--pl-0 {
    padding-left: 0 !important; }

  .small-down--pl-1 {
    padding-left: 9.9px !important; }

  .small-down--pl-2 {
    padding-left: 19.8px !important; }

  .small-down--pl-3 {
    padding-left: 30px !important; }

  .small-down--pl-4 {
    padding-left: 45px !important; }

  .small-down--pl-5 {
    padding-left: 60px !important; }

  .small-down--pr-0 {
    padding-right: 0 !important; }

  .small-down--pr-1 {
    padding-right: 9.9px !important; }

  .small-down--pr-2 {
    padding-right: 19.8px !important; }

  .small-down--pr-3 {
    padding-right: 30px !important; }

  .small-down--pr-4 {
    padding-right: 45px !important; }

  .small-down--pr-5 {
    padding-right: 60px !important; }

  .small-down--mt-0 {
    margin-top: 0 !important; }

  .small-down--mt-1 {
    margin-top: 9.9px !important; }

  .small-down--mt-2 {
    margin-top: 19.8px !important; }

  .small-down--mt-3 {
    margin-top: 30px !important; }

  .small-down--mt-4 {
    margin-top: 45px !important; }

  .small-down--mt-5 {
    margin-top: 60px !important; }

  .small-down--mb-0 {
    margin-bottom: 0 !important; }

  .small-down--mb-1 {
    margin-bottom: 9.9px !important; }

  .small-down--mb-2 {
    margin-bottom: 19.8px !important; }

  .small-down--mb-3 {
    margin-bottom: 30px !important; }

  .small-down--mb-4 {
    margin-bottom: 45px !important; }

  .small-down--mb-5 {
    margin-bottom: 60px !important; }

  .small-down--ml-0 {
    margin-left: 0 !important; }

  .small-down--ml-1 {
    margin-left: 9.9px !important; }

  .small-down--ml-2 {
    margin-left: 19.8px !important; }

  .small-down--ml-3 {
    margin-left: 30px !important; }

  .small-down--ml-4 {
    margin-left: 45px !important; }

  .small-down--ml-5 {
    margin-left: 60px !important; }

  .small-down--mr-0 {
    margin-left: 0 !important; }

  .small-down--mr-1 {
    margin-right: 9.9px !important; }

  .small-down--mr-2 {
    margin-right: 19.8px !important; }

  .small-down--mr-3 {
    margin-right: 30px !important; }

  .small-down--mr-4 {
    margin-right: 45px !important; }

  .small-down--mr-5 {
    margin-right: 60px !important; } }
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .small--pt-0 {
    padding-top: 0 !important; }

  .small--pt-1 {
    padding-top: 9.9px !important; }

  .small--pt-2 {
    padding-top: 19.8px !important; }

  .small--pt-3 {
    padding-top: 30px !important; }

  .small--pt-4 {
    padding-top: 45px !important; }

  .small--pt-5 {
    padding-top: 60px !important; }

  .small--pb-0 {
    padding-bottom: 0 !important; }

  .small--pb-1 {
    padding-bottom: 9.9px !important; }

  .small--pb-2 {
    padding-bottom: 19.8px !important; }

  .small--pb-3 {
    padding-bottom: 30px !important; }

  .small--pb-4 {
    padding-bottom: 45px !important; }

  .small--pb-5 {
    padding-bottom: 60px !important; }

  .small--pl-0 {
    padding-left: 0 !important; }

  .small--pl-1 {
    padding-left: 9.9px !important; }

  .small--pl-2 {
    padding-left: 19.8px !important; }

  .small--pl-3 {
    padding-left: 30px !important; }

  .small--pl-4 {
    padding-left: 45px !important; }

  .small--pl-5 {
    padding-left: 60px !important; }

  .small--pr-0 {
    padding-right: 0 !important; }

  .small--pr-1 {
    padding-right: 9.9px !important; }

  .small--pr-2 {
    padding-right: 19.8px !important; }

  .small--pr-3 {
    padding-right: 30px !important; }

  .small--pr-4 {
    padding-right: 45px !important; }

  .small--pr-5 {
    padding-right: 60px !important; }

  .small--mt-0 {
    margin-top: 0 !important; }

  .small--mt-1 {
    margin-top: 9.9px !important; }

  .small--mt-2 {
    margin-top: 19.8px !important; }

  .small--mt-3 {
    margin-top: 30px !important; }

  .small--mt-4 {
    margin-top: 45px !important; }

  .small--mt-5 {
    margin-top: 60px !important; }

  .small--mb-0 {
    margin-bottom: 0 !important; }

  .small--mb-1 {
    margin-bottom: 9.9px !important; }

  .small--mb-2 {
    margin-bottom: 19.8px !important; }

  .small--mb-3 {
    margin-bottom: 30px !important; }

  .small--mb-4 {
    margin-bottom: 45px !important; }

  .small--mb-5 {
    margin-bottom: 60px !important; }

  .small--ml-0 {
    margin-left: 0 !important; }

  .small--ml-1 {
    margin-left: 9.9px !important; }

  .small--ml-2 {
    margin-left: 19.8px !important; }

  .small--ml-3 {
    margin-left: 30px !important; }

  .small--ml-4 {
    margin-left: 45px !important; }

  .small--ml-5 {
    margin-left: 60px !important; }

  .small--mr-0 {
    margin-left: 0 !important; }

  .small--mr-1 {
    margin-right: 9.9px !important; }

  .small--mr-2 {
    margin-right: 19.8px !important; }

  .small--mr-3 {
    margin-right: 30px !important; }

  .small--mr-4 {
    margin-right: 45px !important; }

  .small--mr-5 {
    margin-right: 60px !important; } }
@media only screen and (max-width: 479px) {
  .extra-small--pt-0 {
    padding-top: 0 !important; }

  .extra-small--pt-1 {
    padding-top: 9.9px !important; }

  .extra-small--pt-2 {
    padding-top: 19.8px !important; }

  .extra-small--pt-3 {
    padding-top: 30px !important; }

  .extra-small--pt-4 {
    padding-top: 45px !important; }

  .extra-small--pt-5 {
    padding-top: 60px !important; }

  .extra-small--pb-0 {
    padding-bottom: 0 !important; }

  .extra-small--pb-1 {
    padding-bottom: 9.9px !important; }

  .extra-small--pb-2 {
    padding-bottom: 19.8px !important; }

  .extra-small--pb-3 {
    padding-bottom: 30px !important; }

  .extra-small--pb-4 {
    padding-bottom: 45px !important; }

  .extra-small--pb-5 {
    padding-bottom: 60px !important; }

  .extra-small--pl-0 {
    padding-left: 0 !important; }

  .extra-small--pl-1 {
    padding-left: 9.9px !important; }

  .extra-small--pl-2 {
    padding-left: 19.8px !important; }

  .extra-small--pl-3 {
    padding-left: 30px !important; }

  .extra-small--pl-4 {
    padding-left: 45px !important; }

  .extra-small--pl-5 {
    padding-left: 60px !important; }

  .extra-small--pr-0 {
    padding-right: 0 !important; }

  .extra-small--pr-1 {
    padding-right: 9.9px !important; }

  .extra-small--pr-2 {
    padding-right: 19.8px !important; }

  .extra-small--pr-3 {
    padding-right: 30px !important; }

  .extra-small--pr-4 {
    padding-right: 45px !important; }

  .extra-small--pr-5 {
    padding-right: 60px !important; }

  .extra-small--mt-0 {
    margin-top: 0 !important; }

  .extra-small--mt-1 {
    margin-top: 9.9px !important; }

  .extra-small--mt-2 {
    margin-top: 19.8px !important; }

  .extra-small--mt-3 {
    margin-top: 30px !important; }

  .extra-small--mt-4 {
    margin-top: 45px !important; }

  .extra-small--mt-5 {
    margin-top: 60px !important; }

  .extra-small--mb-0 {
    margin-bottom: 0 !important; }

  .extra-small--mb-1 {
    margin-bottom: 9.9px !important; }

  .extra-small--mb-2 {
    margin-bottom: 19.8px !important; }

  .extra-small--mb-3 {
    margin-bottom: 30px !important; }

  .extra-small--mb-4 {
    margin-bottom: 45px !important; }

  .extra-small--mb-5 {
    margin-bottom: 60px !important; }

  .extra-small--ml-0 {
    margin-left: 0 !important; }

  .extra-small--ml-1 {
    margin-left: 9.9px !important; }

  .extra-small--ml-2 {
    margin-left: 19.8px !important; }

  .extra-small--ml-3 {
    margin-left: 30px !important; }

  .extra-small--ml-4 {
    margin-left: 45px !important; }

  .extra-small--ml-5 {
    margin-left: 60px !important; }

  .extra-small--mr-0 {
    margin-left: 0 !important; }

  .extra-small--mr-1 {
    margin-right: 9.9px !important; }

  .extra-small--mr-2 {
    margin-right: 19.8px !important; }

  .extra-small--mr-3 {
    margin-right: 30px !important; }

  .extra-small--mr-4 {
    margin-right: 45px !important; }

  .extra-small--mr-5 {
    margin-right: 60px !important; } }
@media only screen and (max-width: 767px) {
  .pb-3, .pb-4, .pb-5 {
    padding-bottom: 20px !important; } }
/*====== UTILITIES ======*/
/* #preview-bar-iframe {
  display: none !important;
} */
.debug {
  outline: thin solid red !important; }

.hidden-gallery {
  visibility: hidden; }

@media only screen and (max-width: 767px) {
  .small-down--no-padding {
    padding-left: 0; } }

.text-uppercase {
  text-transform: uppercase; }

.text-bold {
  font-weight: 700; }

.no-underline {
  text-decoration: none !important; }

.lead {
  font-size: 1.25rem; }

.footer-social-icons {
  display: flex;
  align-items: center;
  justify-content: center; }
  .footer-social-icons > div:not(:last-of-type) {
    margin-right: 6px; }
  .footer-social-icons img {
    vertical-align: middle; }

#igFlag {
  display: inline-flex;
  height: 20px;
  align-items: center;
  vertical-align: middle;
  width: 30px; }

@media only screen and (max-width: 767px) {
  .promotional-row > div:not(.triple-block):last-of-type .promotional-row__content {
    padding-bottom: 0; } }
/*====== PRODUCT PAGE ======*/
@media only screen and (min-width: 480px) {
  .slick-dots {
    bottom: 30px; } }

.product-detail__images .youtube-player {
  margin-top: -43.77%; }

.product-thumbnails__images .slick-list {
  min-height: 880px;
  max-height: 880px; }
  @media screen and (max-width: 1451px) {
    .product-thumbnails__images .slick-list {
      min-height: 770px;
      max-height: 770px; } }
  @media screen and (max-width: 1320px) {
    .product-thumbnails__images .slick-list {
      min-height: 850px;
      max-height: 850px; } }
  @media screen and (max-width: 1100px) {
    .product-thumbnails__images .slick-list {
      min-height: 735px;
      max-height: 735px; } }

#digital-belly-bandit-gift-card .product-thumbnails__images .slick-list {
  min-height: auto !important; }

#digital-belly-bandit-gift-card .product-pairs-container {
  padding-top: 0; }

.product-thumbnails__images .slick-slide:active {
  outline: 0; }

.product-thumbnails__images .slick-current {
  border-color: rgba(0, 0, 0, 0.1) !important;
  outline: 0; }

.product-thumbnails__images .slick-next {
  top: 101%;
  right: 0;
  width: 30px;
  height: 30px;
  left: -40px; }
.product-thumbnails__images .slick-prev {
  left: -40px;
  right: 0;
  top: -25px;
  width: 30px;
  height: 30px; }
.product-thumbnails__images .slick-arrow {
  box-shadow: none;
  min-width: 30px; }
  .product-thumbnails__images .slick-arrow img {
    max-width: 35px; }
.product-thumbnails__images > .product-thumbnail__container:not(:first-child) {
  display: none; }

/*
.product-detail__header {
  // background: #dbf3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  
  > * {
    // outline: thin solid red;
  }
}
*/
@media only screen and (max-width: 767px) {
  .product-detail__vendor {
    font-size: 1rem; } }

.product-detail__title {
  margin-bottom: 15px; }

.product-detail__price {
  display: inline-block; }

.jdgm-preview-badge {
  margin-left: 15px;
  padding-left: 15px; }

.bandita-club-save {
  text-transform: uppercase;
  font-size: 85%; }

.bandita-club-link:hover {
  cursor: pointer; }

.color__wrap {
  background-color: white; }

.add-to-wishl, .gwbutton {
  text-decoration: none !important; }

.gwbutton:hover {
  cursor: pointer; }

#wishl-add-wrapper, .wishl-add-wrapper {
  display: inline-block !important;
  margin: 0 10px 0 0 !important; }

.product-detail__images-thumbs .slick-list {
  height: auto !important; }
.product-detail__images-thumbs .slick-track {
  transform: none !important; }
.product-detail__images-thumbs .slick-current {
  border-color: rgba(0, 0, 0, 0.1) !important; }

@media only screen and (max-width: 767px) {
  .product-detail__images .slick-slide {
    margin: 0 5px; } }
.styled-dropdown--label-small label {
  font-weight: 700;
  text-transform: uppercase; }

.styled-dropdown--label-small label span {
  font-weight: 400;
  text-transform: lowercase; }

.input-wrapper.quantity-wrapper label {
  font-weight: 700; }

/*====== Bandita Club Modal =====*/
/*====== JUDGE.ME ======*/
.jdgm-widget.jdgm-widget {
  display: inline-block !important;
  min-width: 100%; }

.jdgm-rev__timestamp, .jdgm-rev__thumb-count {
  font-family: "Playfair Display", serif; }

.jdgm-rev__body > p {
  color: #1f1f1f; }

.jdgm-rev-widg__header a, .jdgm-paginate a {
  text-decoration: none; }

.jdgm-prev-badge__text {
  color: #999;
  text-transform: uppercase; }

.jdgm-prev-badge__text:before {
  content: '('; }

.jdgm-prev-badge__text:after {
  content: ')'; }

/*====== ULTIMATE SPECIAL OFFERS ======*/
.saso-wrapper {
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: #ffede5; }

.saso-cross-sell-popup, .saso-bundle-popup {
  border: thin solid #ffede5; }

.saso-bundle,
.saso-volumes {
  margin-top: 0 !important; }

.saso-volumes {
  margin-bottom: 1em; }

.saso-notification-x {
  display: none !important; }

.saso-bundle--footer {
  background-color: #ffede5;
  padding: 10px 0 13px; }

body.template-cart .saso-notification {
  display: none !important; }

.saso-notification > p {
  font-size: 1.2em !important;
  /*  text-transform: uppercase; */
  /*  font-family: 'bodoni-urw', 'brandon-grotesque', serif; */
  font-family: "Work Sans",sans-serif;
  letter-spacing: 1px; }

.saso-notification > p small {
  font-size: 0.5em;
  vertical-align: middle;
  display: block;
  margin: 5px 0;
  color: #1f1f1f; }

.saso-notification hr:after {
  content: "or";
  display: inline-block;
  position: relative;
  top: -0.8em;
  background: #ffede5;
  padding: 0 1em; }

.saso-notification p {
  font-size: 180%; }

/*====== PRODUCT ACCORDION ======*/
.accordion {
  margin: 0 auto;
  border-radius: 5px; }

.accordion-header,
.accordion-body {
  background: white; }

.accordion-header {
  padding: 1em;
  background: #fff;
  text-transform: uppercase;
  color: 1f1f1f;
  cursor: pointer;
  transition: all .3s; }

.accordion-header:hover {
  background: #f4f4f4;
  position: relative; }

.accordion-body {
  background: #fff;
  color: #1f1f1f;
  display: none;
  border: thin solid #f4f4f4; }

.accordion-body__contents {
  padding: 1em; }

.accordion__item.active:last-child .accordion-header {
  border-radius: none; }

.accordion:first-child > .accordion__item > .accordion-header {
  border-bottom: 1px solid #f4f4f4; }

.accordion__item > .accordion-header:after {
  content: "+";
  float: right;
  position: relative;
  top: -2px;
  transition: .3s all;
  transform: rotate(0deg); }

.accordion__item.active > .accordion-header:after {
  content: "-"; }

.accordion__item.active .accordion-header {
  background: #f4f4f4; }
  .accordion__item.active .accordion-header span {
    border-bottom: 4px solid #cca194;
    padding-bottom: 5px; }

.accordion__item .accordion__item .accordion-header {
  background: #fff;
  color: #1f1f1f; }

@media screen and (max-width: 768px) {
  .accordion {
    width: 100%; } }
/*====== SIZE GUIDES ======*/
.sizing-on-page {
  padding: 30px; }
  @media only screen and (max-width: 767px) {
    .sizing-on-page {
      padding: 10px;
      margin-left: 10px;
      margin-bottom: 20px; }
      .sizing-on-page th, .sizing-on-page td {
        padding: 5px; } }

.size-table {
  width: 100%;
  display: flex;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.7em; }
  @media only screen and (min-width: 480px) {
    .size-table {
      font-size: 0.875em; } }
  .size-table ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    flex-grow: 1; }
    .size-table ul:first-of-type {
      margin-right: 1em;
      font-weight: 500; }
      .size-table ul:first-of-type li:nth-child(odd):not(:first-of-type) {
        background: #f4f4f4; }
    .size-table ul li {
      padding: 0.5em 1.5em; }
      .size-table ul li:nth-child(odd):not(:first-of-type) {
        background: #f4f4f4; }
      .size-table ul li:first-of-type {
        font-weight: 700; }

/*====== EMBED CONTAINER ======*/
.show-size-video {
  list-style-image: none;
  cursor: pointer; }

::-webkit-details-marker {
  display: none; }

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%; }

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.modal {
  display: none;
  position: fixed;
  z-index: 5001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.5); }

.modal-content {
  background-color: #ffede5;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 475px;
  z-index: 5002;
  position: relative; }

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: inherit !important;
  padding: 0 !important; }

.close-modal:hover,
.close-modal:focus {
  text-decoration: none;
  cursor: pointer; }

/*====== YOUTUBE EMBED ======*/
.youtube-player {
  position: relative;
  padding-bottom: 56.23%;
  /* Use 75% for 4:3 videos */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 5px; }
  .youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent; }
  .youtube-player img {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all; }
    .youtube-player img:hover {
      -webkit-filter: brightness(75%); }
  .youtube-player .play {
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    margin-left: -36px;
    margin-top: -36px;
    position: absolute;
    background: url("/cdn/shop/files/play-button-28243.png?v=1680641139") no-repeat;
    cursor: pointer;
    background-size: contain; }

/*====== Vertical tabs ======*/
.tabs-vertical.tabs {
  display: block !important;
  margin: 0;
  padding: 0;
  border-bottom: 0; }
  @media only screen and (max-width: 767px) {
    .tabs-vertical.tabs {
      display: flex; } }
  .tabs-vertical.tabs a:after {
    display: none; }
.tabs-vertical li {
  display: block;
  width: 100%;
  text-align: left;
  margin-left: 0; }
  @media only screen and (max-width: 767px) {
    .tabs-vertical li {
      display: inline-block;
      width: 50% !important;
      float: left;
      margin: 0; } }

/*====== ACCOUNT PAGE ======*/
.address-card .row {
  padding: 5px;
  background: #ccc;
  color: #fff;
  display: inline-block; }
  .address-card .row input {
    display: none; }

@media only screen and (max-width: 767px) {
  .cycle-left {
    text-align: left !important; }

  .cycle-right {
    text-align: right !important; } }
/*====== CART PAGE ======*/
.email-coupon-check-submit {
  background-color: transparent !important;
  padding: 5px 10px !important;
  margin: 0 !important;
  min-width: 0 !important;
  box-shadow: 0 0 0 1px #ccc !important; }

#discountcode {
  padding-top: 0; }

.saso-cart-original-total {
  font-size: 1rem; }

.saso-use-discount-instead-container {
  display: none; }

/*====== FOOTER NEWSLETTER ======*/
@media only screen and (max-width: 767px) {
  .footer-newsletter .overlay {
    max-width: 94% !important;
    padding: 0 !important; } }
.listrak-footer {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .listrak-footer {
      flex-direction: column;
      min-height: 220px; } }
  .listrak-footer input[type="number"]::-webkit-inner-spin-button, .listrak-footer input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .listrak-footer input {
    border: none;
    background-image: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-bottom: 2px solid #fff; }
    .listrak-footer input::placeholder {
      color: #fff; }
    .listrak-footer input:not([type="submit"]) {
      margin: 0;
      padding: 0;
      line-height: 0; }
  .listrak-footer input[type="number"] {
    border-bottom: 2px solid #fff; }
  .listrak-footer input:focus {
    outline: none;
    border-bottom-color: #fff;
    color: #fff; }
  .listrak-footer input[type="submit"] {
    border: 2px solid white;
    background: white;
    color: black; }
  .listrak-footer input[type="submit"]:hover, .listrak-footer input[type="submit"]:active, .listrak-footer input[type="submit"]:focus {
    border: 2px solid black;
    background: black;
    color: white;
    box-shadow: 0 0 0 1px black; }
  .listrak-footer .reveal-if-active {
    display: none;
    opacity: 0;
    transition: 0.8s;
    background: #000;
    padding: 5px; }
  .listrak-footer input[type="radio"]:checked ~ .reveal-if-active,
  .listrak-footer input[type="checkbox"]:checked ~ .reveal-if-active {
    opacity: 1;
    display: inline; }
  .listrak-footer .pregnantWrapper,
  .listrak-footer .notPregnantWrapper {
    display: inline; }
  .listrak-footer .pregnantFooter {
    margin-right: 7px; }
  .listrak-footer input#pregnant:checked ~ .notPregnantWrapper {
    display: none; }

/*====== SEARCHANISE ======*/
div.snize-ac-results.snize-ac-results-mobile {
  background-color: #ffffff !important; }

div.snize-ac-results.snize-ac-results-mobile li.snize-close-area {
  margin-top: 0 !important; }

div.snize-ac-results.snize-ac-results-mobile li.snize-mobile-top-panel .snize-close-button {
  background-color: #f7f7f7 !important;
  border-right: thin solid #5d5d5d; }

.snize-close-button-arrow {
  box-shadow: none !important; }

/*====== FAQ =====*/
.FaqSummary__Item {
  padding-bottom: 10px; }

.Faq__ItemWrapper details[open] summary {
  background: #1f1f1f;
  outline: thin solid #1f1f1f;
  color: white; }

.Faq__AnswerQuestion {
  padding: 10px; }

.Faq__AnswerWrapper {
  padding: 10px;
  outline: thin solid #1f1f1f; }

.space-container {
  display: grid;
  grid-template-areas: "galaxy galaxy star planet-top" "galaxy galaxy star planet-bottom";
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  margin: 2em 0; }

.galaxy {
  grid-area: galaxy;
  padding: 1em 1em 0;
  background: #EDCEC6; }

.star {
  grid-area: star;
  text-align: center;
  padding: 1em 1em 0;
  background: #FFEDE5; }

.star > div > div {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 1em; }
  .star > div > div:first-of-type {
    max-width: 60%; }

.planet-top {
  grid-area: planet-top; }
  .planet-top p {
    font-size: 80%; }

.planet-bottom {
  grid-area: planet-bottom; }
  .planet-bottom p {
    font-size: 80%; }

/* ================= QFX ================= */
#MainContent div:first-of-type section {
  margin-top: 0 !important; }

@media only screen and (min-width: 768px) {
  .masonry {
    margin-top: 15em;
    margin-bottom: -15em; } }
.desktop-secondary-test {
  display: none; }

.mobile-secondary-test {
  display: none; }

/* ================= Testimonial Slider ================= */
.testimonial_slider {
  padding: 55px 0 100px; }
  @media only screen and (max-width: 767px) {
    .testimonial_slider {
      padding: 25px 0 50px; } }
  .testimonial_slider .nh-section-header .sub-head {
    font-weight: 500; }
  .testimonial_slider .testimonial_slider_inner .testimonial_text_image {
    margin-bottom: 40px; }
    .testimonial_slider .testimonial_slider_inner .testimonial_text_image .slick-arrow {
      position: absolute;
      top: 30%;
      z-index: 99;
      cursor: pointer; }
      .testimonial_slider .testimonial_slider_inner .testimonial_text_image .slick-arrow img {
        max-width: 70%; }
    .testimonial_slider .testimonial_slider_inner .testimonial_text_image .ail-prev {
      left: 0;
      right: auto; }
    .testimonial_slider .testimonial_slider_inner .testimonial_text_image .ail-next {
      right: 0;
      left: auto; }
    .testimonial_slider .testimonial_slider_inner .testimonial_text_image .testimonial_text {
      outline: none; }
      .testimonial_slider .testimonial_slider_inner .testimonial_text_image .testimonial_text p {
        max-width: 80%;
        margin: 0 auto;
        font-size: 20px;
        font-family: 'Playfair Display', serif;
        text-align: center;
        color: #1f1f1f; }
        @media only screen and (max-width: 767px) {
          .testimonial_slider .testimonial_slider_inner .testimonial_text_image .testimonial_text p {
            font-size: 16px;
            max-width: 70%; } }
  .testimonial_slider .testimonial_slider_inner .testimonial_image_main .testimonial_image {
    outline: none; }
    .testimonial_slider .testimonial_slider_inner .testimonial_image_main .testimonial_image.slick-current img {
      opacity: 1; }
    .testimonial_slider .testimonial_slider_inner .testimonial_image_main .testimonial_image img {
      max-width: 70%;
      margin: 0 auto;
      opacity: 0.3; }
      .testimonial_slider .testimonial_slider_inner .testimonial_image_main .testimonial_image img:hover {
        cursor: pointer; }
      @media screen and (max-width: 767px) {
        .testimonial_slider .testimonial_slider_inner .testimonial_image_main .testimonial_image img {
          max-width: 40%; } }
  @media screen and (min-width: 768px) {
    .testimonial_slider .testimonial_slider_inner .testimonial_image_main .slick-track {
      -webkit-transform: translate3d(0, 0, 0) !important;
      -moz-transform: translate3d(0, 0, 0) !important;
      -ms-transform: translate3d(0, 0, 0) !important;
      -o-transform: translate3d(0, 0, 0) !important;
      transform: translate3d(0, 0, 0) !important; } }
  .testimonial_slider .testimonial_slider_inner .testimonial_image_main ul.slick-dots {
    bottom: -35px; }
    .testimonial_slider .testimonial_slider_inner .testimonial_image_main ul.slick-dots li button {
      background-color: transparent;
      border: 1px solid #000; }
    .testimonial_slider .testimonial_slider_inner .testimonial_image_main ul.slick-dots li.slick-active button {
      background-color: #e59d8a;
      border: 1px solid #e59d8a; }

@media screen and (max-width: 1280px) {
  .testimonial_slider .testimonial_slider_inner .testimonial_text_image .ail-prev {
    left: 20px; }
  .testimonial_slider .testimonial_slider_inner .testimonial_text_image .ail-next {
    right: 20px; } }
@media screen and (max-width: 767px) {
  .testimonial_slider .testimonial_slider_inner .testimonial_text_image .ail-prev {
    left: 5px; }
  .testimonial_slider .testimonial_slider_inner .testimonial_text_image .ail-next {
    right: 0; }

  #shopify-section-slideshow-section .slick-dots, #shopify-section-slideshow-section .full-width-slideshow-controls {
    display: none !important; }

  #shopify-section-1602538630694 .page-width {
    padding-right: 0 !important; } }
@media screen and (max-width: 767px) and (max-width: 767px) {
  #shopify-section-1602538630694 .slick-slide .rimage-outer-wrapper {
    min-height: 215px !important; } }

@media screen and (max-width: 767px) {
  .bandita-exclusives .slick-dots {
    left: 0;
    text-align: left; }
    .bandita-exclusives .slick-dots li button {
      background-color: transparent;
      border: 1px solid #1f1f1f; }
    .bandita-exclusives .slick-dots .slick-active button {
      background-color: #e59d8a;
      border: 1px solid #e59d8a; } }

@media screen and (max-width: 767px) {
  .bandita-exclusives-2 .slick-dots {
    left: 0;
    text-align: left; }
    .bandita-exclusives-2 .slick-dots li button {
      background-color: transparent;
      border: 1px solid #1f1f1f; }
    .bandita-exclusives-2 .slick-dots .slick-active button {
      background-color: #e59d8a;
      border: 1px solid #e59d8a; } }

.template-page .section-1574208819083 {
  margin-top: -30px; }
.template-page #shopify-section-slideshow-section .large-row {
  margin-bottom: 0; }
.template-page #shopify-section-slideshow-section .full-width-slideshow .slick-dots {
  position: absolute;
  width: 100%; }
.template-page #shopify-section-slideshow-section .full-width-slideshow-controls {
  display: none; }
.template-page #MainContent {
  padding-bottom: 0; }

/* new ailment section */
.ailment-grid__item {
  padding-left: 0;
  padding-right: 2rem;
  margin-bottom: 1rem; }
  @media screen and (max-width: 767px) {
    .ailment-grid__item {
      padding-right: 0; } }
  .ailment-grid__item .shop-by-ailment {
    padding-bottom: 0.25rem;
    text-transform: uppercase; }
    .ailment-grid__item .shop-by-ailment:after {
      position: absolute;
      right: 0;
      top: 0;
      content: ">"; }

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .shop-ailment--contain {
    min-height: auto !important; } }

.promotional-image.global-border-radius.fade-in, .rte img.promotional-image.fade-in, .cart-item .promotional-image.fade-in.image, .cart-mobile-image img.promotional-image.fade-in, .full-width-slideshow .promotional-image.fade-in.slick-list, .blog-articles-list__image .promotional-image.fade-in.rimage-outer-wrapper, .collection-list-plain .product-block__image .promotional-image.fade-in.rimage-outer-wrapper, .article-page .single-column-layout .article-featured-image.mobile-only .promotional-image.fade-in.rimage-outer-wrapper, .promotional-image.fade-in.article-overlay, .article__heading-image .promotional-image.fade-in.rimage-outer-wrapper, .image-two .promotional-image.fade-in.rimage-background {
  opacity: 0;
  height: 0px !important;
  min-height: 0px !important; }

.promotional-image.global-border-radius.fade-in.active, .rte img.promotional-image.fade-in.active, .cart-item .promotional-image.fade-in.active.image, .cart-mobile-image img.promotional-image.fade-in.active, .full-width-slideshow .promotional-image.fade-in.active.slick-list, .blog-articles-list__image .promotional-image.fade-in.active.rimage-outer-wrapper, .collection-list-plain .product-block__image .promotional-image.fade-in.active.rimage-outer-wrapper, .article-page .single-column-layout .article-featured-image.mobile-only .promotional-image.fade-in.active.rimage-outer-wrapper, .promotional-image.fade-in.active.article-overlay, .article__heading-image .promotional-image.fade-in.active.rimage-outer-wrapper, .image-two .promotional-image.fade-in.active.rimage-background {
  opacity: 1;
  height: inherit !important;
  min-height: inherit !important; }

/*================== custom-css =================*/
/*============= img-with-text ==============*/
.bg-img-with-text {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 730px;
  position: relative; }

.text-with-button p.main-title {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  color: #1f1f1f;
  text-transform: uppercase; }

.text-with-button h2.sub-title {
  margin: 1rem auto;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1f1f1f; }

.text-with-button p.desc-tt {
  margin: 10px 0 30px;
  font-size: 1rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #1f1f1f; }

.side-description {
  width: 100%;
  max-width: 30rem;
  position: absolute;
  left: 56%;
  top: 50%;
  transform: translateY(-50%); }

.side-left__description {
  width: 100%;
  max-width: 30rem;
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%); }

#shopify-section-luxe-bg-img-with-text .side-description {
  left: 10%; }

.button-shop-now a.btn, .button-shop-now .theme-product-reviews a.spr-summary-actions-newreview, .theme-product-reviews .button-shop-now a.spr-summary-actions-newreview, .button-shop-now .bandita-modal-registration a#customer_register_link, .bandita-modal-registration .button-shop-now a#customer_register_link, .button-shop-now .bandita-modal-registration a#customer_login_link, .bandita-modal-registration .button-shop-now a#customer_login_link, .button-shop-now .galaxy a.collection-shop-now, .galaxy .button-shop-now a.collection-shop-now {
  font-size: 18px;
  font-weight: 500; }

/*=================== logobar-with-text ================*/
.bg-color {
  padding: 60px 0;
  background-color: #f5ebe1; }
  .bg-color.custom-lp {
    background-color: #e0bfb0; }

.logogbar-with-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.logo-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  justify-content: center; }

.logo-text p {
  margin: 6px 0 7px 30px;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  color: #1f1f1f;
  text-transform: uppercase;
  max-width: 225px; }

.logo-text img {
  width: 100%;
  max-width: 80px; }

.logogbar-with-text .logo-text img {
  width: initial;
  max-width: 100%;
  max-height: 70px; }
  @media screen and (max-width: 767px) {
    .logogbar-with-text .logo-text img {
      max-width: 70px;
      max-height: auto; } }

/*=================== product-with-description ================*/
.product-with-description {
  padding: 70px 0;
  position: relative;
  background-color: #f9f9f9; }
  .product-with-description.custom-lp {
    background-color: #fff; }

.title-of-product h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #1f1f1f; }

.title-of-product p {
  font-size: 1rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  text-align: center;
  color: #1f1f1f;
  text-transform: uppercase; }

.detailed-description-product {
  text-align: center;
  padding: 5rem 0; }

.detailed-description-product img {
  width: 100%;
  max-width: 600px; }

.detailed-1-product, .detailed-2-product {
  max-width: 250px;
  text-align: right; }

.detailed-3-product, .detailed-4-product {
  max-width: 250px;
  text-align: left; }

.button-shop-now {
  text-align: center; }

.detailed-1-product {
  position: absolute;
  top: 38%;
  left: -50px; }

.detailed-2-product {
  position: absolute;
  top: 66%;
  left: -50px; }

.detailed-3-product {
  position: absolute;
  top: 36%;
  right: -25px; }

.detailed-4-product {
  position: absolute;
  top: 53%;
  right: -75px; }

span.btn-dot-1, span.btn-dot-2, span.btn-dot-3, span.btn-dot-3, span.btn-dot-4 {
  width: 14px;
  height: 14px;
  background-color: #000;
  position: absolute;
  border-radius: 50px; }

span.btn-dot-border-1, span.btn-dot-border-2, span.btn-dot-border-3, span.btn-dot-border-4 {
  padding: 15px;
  border: 1px dashed #000;
  position: absolute;
  border-radius: 50px; }

span.btn-line-1, span.btn-line-2, span.btn-line-3, span.btn-line-4 {
  height: 1px;
  border: 1px dashed #000;
  position: absolute; }

span.btn-dot-1 {
  top: 19px;
  right: -85%; }

span.btn-dot-border-1 {
  top: 11px;
  right: -221px; }

span.btn-line-1 {
  top: 27px;
  right: -190px;
  width: 170px; }

span.btn-dot-2 {
  top: 17px;
  right: -121px; }

span.btn-dot-border-2 {
  top: 9px;
  right: -130px; }

span.btn-line-2 {
  width: 74px;
  right: -98px;
  top: 25px; }

span.btn-dot-border-3 {
  left: -142px;
  top: 11px; }

span.btn-dot-3 {
  left: -132px;
  top: 20px; }

span.btn-line-3 {
  left: -109px;
  top: 26px;
  width: 92px; }

span.btn-dot-border-4 {
  left: -219px;
  top: 11px; }

span.btn-dot-4 {
  left: -210px;
  top: 20px; }

span.btn-line-4 {
  left: -187px;
  top: 26px;
  width: 172px; }

.detailed-1-product p.title-of-desc, .detailed-2-product p.title-of-desc, .detailed-3-product p.title-of-desc, .detailed-4-product p.title-of-desc {
  font-size: 1rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  color: #1f1f1f;
  text-transform: uppercase;
  margin: 5px auto; }

.detailed-1-product p.desc-in-detailed, .detailed-2-product p.desc-in-detailed, .detailed-3-product p.desc-in-detailed, .detailed-4-product p.desc-in-detailed {
  font-size: 1rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1f1f1f;
  margin: 5px auto; }

.detailed-1-product.detailed-vsling {
  left: -60px; }
  .detailed-1-product.detailed-vsling span.btn-line-1 {
    right: -77px;
    width: 64px; }
  .detailed-1-product.detailed-vsling span.btn-dot-border-1 {
    right: -111px; }
  .detailed-1-product.detailed-vsling span.btn-dot-1 {
    right: -41%; }
  @media screen and (max-width: 1366px) {
    .detailed-1-product.detailed-vsling {
      left: 40px;
      top: 33%; } }
  @media screen and (max-width: 1200px) {
    .detailed-1-product.detailed-vsling {
      left: 4%; } }
  @media screen and (max-width: 1100px) {
    .detailed-1-product.detailed-vsling {
      left: 4%; }
      .detailed-1-product.detailed-vsling span.btn-dot-1 {
        right: -51%; } }
  @media screen and (max-width: 992px) {
    .detailed-1-product.detailed-vsling {
      left: 1%;
      max-width: 140px; }
      .detailed-1-product.detailed-vsling span.btn-dot-1 {
        right: -72%; } }
  @media screen and (max-width: 767px) {
    .detailed-1-product.detailed-vsling {
      position: relative;
      top: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      text-align: left;
      padding: 20px 0;
      max-width: 350px; }
      .detailed-1-product.detailed-vsling span.btn-dot-border-1 {
        right: auto; } }
.detailed-1-product.detailed-sl {
  left: -10px; }
  @media screen and (max-width: 1366px) {
    .detailed-1-product.detailed-sl {
      left: 110px; } }
  @media screen and (max-width: 1200px) {
    .detailed-1-product.detailed-sl {
      left: 160px;
      top: 41%; } }
  @media screen and (max-width: 1100px) {
    .detailed-1-product.detailed-sl {
      left: 130px; } }
  @media screen and (max-width: 992px) {
    .detailed-1-product.detailed-sl {
      left: 30px; } }
  @media screen and (max-width: 767px) {
    .detailed-1-product.detailed-sl {
      left: 0; } }

.detailed-2-product.detailed-vsling {
  left: 60px; }
  @media screen and (max-width: 1366px) {
    .detailed-2-product.detailed-vsling {
      left: 150px; } }
  @media screen and (max-width: 1200px) {
    .detailed-2-product.detailed-vsling {
      left: 14%; } }
  @media screen and (max-width: 992px) {
    .detailed-2-product.detailed-vsling {
      max-width: 140px; } }
  @media screen and (max-width: 767px) {
    .detailed-2-product.detailed-vsling {
      position: relative;
      top: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      text-align: left;
      padding: 20px 0;
      max-width: 350px; } }
.detailed-2-product.detailed-sl {
  left: 26px; }
  @media screen and (max-width: 1366px) {
    .detailed-2-product.detailed-sl {
      left: 135px; } }
  @media screen and (max-width: 1200px) {
    .detailed-2-product.detailed-sl {
      left: 140px; } }
  @media screen and (max-width: 1100px) {
    .detailed-2-product.detailed-sl {
      left: 130px; } }
  @media screen and (max-width: 992px) {
    .detailed-2-product.detailed-sl {
      left: 30px; } }
  @media screen and (max-width: 767px) {
    .detailed-2-product.detailed-sl {
      left: 0; } }

.detailed-3-product.detailed-vsling {
  right: -90px; }
  @media screen and (max-width: 1366px) {
    .detailed-3-product.detailed-vsling {
      right: 33px; } }
  @media screen and (max-width: 1200px) {
    .detailed-3-product.detailed-vsling {
      right: 7%; } }
  @media screen and (max-width: 992px) {
    .detailed-3-product.detailed-vsling {
      right: 3%;
      max-width: 140px; } }
  @media screen and (max-width: 767px) {
    .detailed-3-product.detailed-vsling {
      position: relative;
      top: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      text-align: left;
      padding: 20px 0;
      max-width: 350px; } }
.detailed-3-product.detailed-sl {
  right: 45px; }
  @media screen and (max-width: 1366px) {
    .detailed-3-product.detailed-sl {
      right: 138px;
      top: 33%; } }
  @media screen and (max-width: 1200px) {
    .detailed-3-product.detailed-sl {
      right: 140px;
      top: 33%; } }
  @media screen and (max-width: 1100px) {
    .detailed-3-product.detailed-sl {
      right: 120px; } }
  @media screen and (max-width: 992px) {
    .detailed-3-product.detailed-sl {
      right: 50px; } }

.detailed-4-product {
  top: 63%;
  right: -35px;
  max-width: 275px; }
  @media screen and (max-width: 1366px) {
    .detailed-4-product.detailed-sl {
      top: 63%; } }
  @media screen and (max-width: 1200px) {
    .detailed-4-product.detailed-sl {
      top: 63%; } }
  @media screen and (max-width: 1100px) {
    .detailed-4-product.detailed-sl {
      right: 120px; } }
  @media screen and (max-width: 992px) {
    .detailed-4-product.detailed-sl {
      right: 25px; } }

/*============= custom-review-section ================*/
.meet-main-section.custom-lp {
  background-color: #f3ebe2; }

.custom-review-section {
  margin: 70px 0;
  position: relative; }
  .custom-review-section.custom-lp {
    margin: 0;
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #f3ebe2; }

.review-with-image {
  display: flex;
  flex-wrap: wrap; }

.custom-review-text-all {
  flex: 0 0 50%;
  max-width: 50%;
  padding-top: 200px; }

.custom-review-img {
  flex: 0 0 50%;
  max-width: 50%;
  padding-bottom: 200px; }

.customer-review-img {
  flex: 0 0 50%;
  max-width: 50%;
  padding-bottom: 120px; }

.custom-review-star-icon i.fa {
  font-size: 25px;
  padding-right: 7px;
  color: #e59d8a; }

.custom-review-text-all h5 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1f1f1f;
  width: 550px;
  margin: 25px 0; }

.review-anchortag-with-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.review-anchortag-with-btn p {
  padding-right: 40px;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  color: #1f1f1f;
  text-transform: uppercase; }

.review-anchortag-with-btn a.underline-btn {
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  text-align: center;
  color: #1f1f1f;
  text-transform: uppercase;
  border-bottom: 3px solid #e59d8a;
  text-decoration: none; }

.image-pillow-take img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 300px;
  width: 100%; }

/*============ video-section =============*/
.video-with-text {
  margin: 50px 0; }

.video-with-text-p {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.video-url-tag {
  flex: 0 0 50%;
  max-width: 50%; }

.text-with-btn-video {
  flex: 0 0 50%;
  max-width: 50%;
  background-color: #f5ebe1;
  padding: 40px 0;
  padding-left: 75px; }

.video-url-tag iframe {
  width: 100%;
  height: 330px; }

.text-with-btn-video h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1f1f1f;
  margin-bottom: 15px; }

.text-with-btn-video a {
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  color: #1f1f1f;
  text-transform: uppercase;
  border-bottom: 3px solid #e59d8a;
  text-decoration: none; }

/*============== custom-blog-section ===============*/
.custom-blog-section {
  margin: 50px 0 0;
  background-color: #F9F9F9;
  padding-top: 4rem;
  padding-bottom: 2rem; }
  @media screen and (max-width: 768px) {
    .custom-blog-section.container .page-width {
      padding-right: 0; } }
  .custom-blog-section.custom-lp {
    background-color: #ffffff; }
    @media screen and (max-width: 768px) {
      .custom-blog-section.custom-lp.container .page-width {
        padding-right: 15px; } }

.custom-blog-section .main-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1f1f1f;
  text-transform: capitalize; }

.custom-blog-section p.sub-title {
  font-size: 1rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1f1f1f; }

.custom-blog-title-img {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px; }
  .custom-blog-title-img li {
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    outline: none; }
  .custom-blog-title-img img {
    max-width: 100%;
    width: 100%; }
  .custom-blog-title-img h3 {
    font-size: 1rem;
    font-weight: 500 !important;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 2px;
    color: #1f1f1f;
    text-decoration: none;
    font-family: "Work Sans",sans-serif !important;
    text-transform: uppercase;
    margin: 1.5rem 0 1rem;
    min-height: 2.15rem; }
  .custom-blog-title-img a {
    text-decoration: none; }
  .custom-blog-title-img p {
    font-family: "Work Sans",sans-serif;
    font-size: 1rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 22px;
    letter-spacing: normal;
    color: #1f1f1f;
    min-height: 6rem; }
  .custom-blog-title-img a.read-more-btn {
    font-size: 1rem;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 2px;
    text-align: center;
    color: #1f1f1f;
    border-bottom: 3px solid #e59d8a; }
  .custom-blog-title-img .slick-prev:before, .custom-blog-title-img .slick-next:before {
    font-size: 25px;
    line-height: 0;
    opacity: 1;
    color: #ffffff;
    border-radius: 50px; }
  .custom-blog-title-img button.slick-prev, .custom-blog-title-img button.slick-next {
    background-color: #000000;
    border-radius: 50px;
    padding: 10px 0 5px;
    height: 50px;
    width: 50px; }
  .custom-blog-title-img .slick-next {
    right: -25px;
    box-shadow: none;
    z-index: 9;
    min-width: 0; }
  .custom-blog-title-img .slick-prev {
    left: -55px;
    box-shadow: none;
    z-index: 9;
    min-width: 0; }

.custom-blog-title-img.custom-lp li {
  flex: 0 0 33%;
  max-width: 33%;
  padding-left: 15px;
  padding-right: 15px; }
  .custom-blog-title-img.custom-lp li p a {
    font-family: "Work Sans" !important;
    font-size: 15px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 2px;
    color: #1f1f1f;
    padding-bottom: 4px;
    border-bottom: 4px solid #cca194;
    text-transform: uppercase; }
  @media screen and (max-width: 767px) {
    .custom-blog-title-img.custom-lp li {
      flex: 0 0 100%;
      max-width: 100%;
      padding: 0; } }

/*================== faqs-css =================*/
.faqs-section {
  margin: 0 0 50px;
  background-color: #f9f9f9;
  padding-bottom: 3rem;
  padding-top: 3rem; }
  .faqs-section.top-faqs-main-section {
    margin: 50px auto; }
  .faqs-section.custom-lp {
    background-color: #ffffff; }

.cus-tab-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  vertical-align: middle;
  cursor: pointer;
  border-bottom: solid 1px #a7acb7;
  padding-bottom: 15px;
  margin-bottom: 20px; }

.cus-tab-title h5 {
  text-transform: uppercase;
  font-weight: 500 !important;
  font-family: "Work Sans", sans-serif !important;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: 2px;
  color: #1f1f1f;
  font-size: 1rem; }

.cus-tab-item-title .cus-tab-content {
  display: none; }

.cus-tab-item-title .cus-tab-content p {
  margin-bottom: 2.5rem; }

.cus-tab-item-title.open-active .cus-tab-content {
  display: block; }

.cus-tab-item-title .cus-tab-title span.cus-minus-icon {
  display: none; }

.cus-tab-item-title.open-active .cus-tab-title span.cus-plus-icon {
  display: none; }

.cus-tab-item-title.open-active .cus-tab-title span.cus-minus-icon {
  display: block; }

.cus-plus-icon i.fa, .cus-minus-icon i.fa {
  font-size: 27px;
  font-weight: 100; }

.cus-tabs-list h2.title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: normal !important;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1f1f1f;
  margin-bottom: 40px; }

/*============== product-featured-page ==========*/
.product-image-page-t img {
  margin: 0 auto; }

.featured-product-t {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  margin-bottom: 5rem; }

.product-img-page {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 50px;
  position: relative; }

.detailed-of-product {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 50px; }

.product-img-page .product-prev {
  position: absolute;
  top: 50%;
  z-index: 9;
  left: 0;
  transform: translateY(-50%);
  cursor: pointer; }

.product-img-page .product-next {
  position: absolute;
  top: 50%;
  z-index: 9;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer; }

.product-title-t h5 {
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1f1f1f;
  max-width: 20rem; }

.product-price-t p {
  font-size: 1rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  color: #1f1f1f;
  text-align: left;
  margin-top: 1rem; }

.product-description-t p {
  text-align: left;
  font-size: 1rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1f1f1f;
  margin: 1.5rem 0; }

.product-atc-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.custom-featured-product-section a {
  text-decoration: none; }

.product-atc-btn .atc-btn-product-page {
  font-size: 16px;
  font-weight: 500;
  margin-right: 50px;
  padding: 8px 50px;
  background-color: #1f1f1f;
  color: #fff;
  text-decoration: none; }

.product-atc-btn .atc-btn-product-page {
  margin-right: 50px; }

.product-atc-btn a.btn-learn-more {
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  text-align: center;
  color: #1f1f1f;
  text-decoration: none;
  border-bottom: 3px solid #e59d8a; }

.custom-featured-product-section h2.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  max-width: 30rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1f1f1f; }

.bg-img-with-text .button-shop-now {
  text-align: left;
  max-width: inherit; }

/*=========== responsive-css ==================*/
@media (max-width: 1440px) {
  .bg-img-with-text {
    height: 550px; }

  .text-with-button p.main-title {
    font-size: 16px; }

  .text-with-button h2.sub-title {
    font-size: 2.5rem; }

  .button-shop-now a.btn, .button-shop-now .theme-product-reviews a.spr-summary-actions-newreview, .theme-product-reviews .button-shop-now a.spr-summary-actions-newreview, .button-shop-now .bandita-modal-registration a#customer_register_link, .bandita-modal-registration .button-shop-now a#customer_register_link, .button-shop-now .bandita-modal-registration a#customer_login_link, .bandita-modal-registration .button-shop-now a#customer_login_link, .button-shop-now .galaxy a.collection-shop-now, .galaxy .button-shop-now a.collection-shop-now {
    font-size: 16px; }

  .custom-review-text-all h5 {
    font-size: 2.5rem; }

  .image-pillow-take img {
    max-width: 260px; }

  .review-with-image {
    padding: 0 125px; }

  .custom-blog-title-img li {
    padding: 0 15px 0 0; } }
@media (max-width: 1366px) {
  .bg-img-with-text {
    height: 500px; }

  .detailed-description-product img {
    max-width: 400px; }

  span.btn-line-1 {
    right: -110px;
    width: 100px; }

  span.btn-dot-border-1 {
    right: -142px; }

  span.btn-dot-1 {
    right: -53%; }

  .detailed-1-product {
    top: 43%;
    left: 85px; }

  span.btn-line-2 {
    width: 50px;
    right: -61px; }

  span.btn-dot-border-2 {
    right: -92px; }

  span.btn-dot-2 {
    right: -83px; }

  .detailed-2-product {
    top: 63%;
    left: 85px; }

  span.btn-line-3 {
    left: -78px;
    width: 62px; }

  span.btn-dot-border-3 {
    left: -110px; }

  span.btn-dot-3 {
    left: -100px; }

  .detailed-3-product {
    top: 39%;
    right: 77px; }

  .detailed-4-product {
    top: 53%;
    right: 77px; }

  span.btn-dot-4 {
    left: -145px;
    top: 20px; }

  span.btn-dot-border-4 {
    left: -154px;
    top: 11px; }

  span.btn-line-4 {
    left: -121px;
    top: 26px;
    width: 100px; }

  .custom-review-text-all h5 {
    font-size: 2.5rem;
    padding-right: 100px; }

  .custom-review-star-icon i.fa {
    font-size: 20px; }

  .image-pillow-take img {
    max-width: 215px; }

  .custom-blog-title-img .slick-next {
    right: -10px; }

  .custom-blog-title-img .slick-prev {
    left: -10px; } }
@media (max-width: 1200px) {
  .bg-img-with-text {
    height: 460px; }

  .custom-review-text-all {
    padding-top: 60px; }

  .custom-review-img {
    padding-bottom: 120px; }

  .custom-review-text-all h5 {
    font-size: 32px;
    padding-right: 20px;
    width: auto; }

  .review-with-image {
    padding: 0 80px; }

  .detailed-1-product p.title-of-desc, .detailed-2-product p.title-of-desc, .detailed-3-product p.title-of-desc, .detailed-4-product p.title-of-desc {
    font-size: 12px;
    margin: 0; }

  .detailed-1-product p.desc-in-detailed, .detailed-2-product p.desc-in-detailed, .detailed-3-product p.desc-in-detailed, .detailed-4-product p.desc-in-detailed {
    font-size: 12px;
    margin: 0;
    margin-top: 10px; }

  .detailed-description-product img {
    max-width: 300px; }

  .detailed-1-product {
    top: 47%;
    left: 165px; }

  span.btn-dot-1 {
    right: -80px; }

  span.btn-dot-border-1 {
    right: -88px; }

  span.btn-line-1 {
    right: -55px;
    width: 44px; }

  .detailed-2-product {
    top: 63%;
    left: 165px; }

  span.btn-line-2 {
    width: 22px;
    right: -27px;
    top: 10px; }

  span.btn-dot-border-2 {
    right: -59px;
    top: -6px; }

  span.btn-dot-2 {
    right: -51px;
    top: 4px; }

  .detailed-3-product {
    top: 47%;
    right: 146px; }

  .detailed-3-product {
    top: 43%;
    right: 158px; }

  span.btn-dot-3 {
    left: -62px;
    top: 4px; }

  span.btn-dot-border-3 {
    left: -72px;
    top: -4px; }

  span.btn-line-3 {
    left: -41px;
    width: 30px;
    top: 10px; }

  .detailed-4-product {
    top: 53%;
    right: 159px; }

  span.btn-dot-4 {
    left: -74px;
    top: 6px; }

  span.btn-dot-border-4 {
    left: -83px;
    top: -3px; }

  span.btn-line-4 {
    left: -51px;
    top: 12px;
    width: 41px; }

  .title-of-product h2 {
    font-size: 2.5rem; } }
@media (max-width: 1100px) {
  .bg-img-with-text {
    height: 420px; }

  .side-description {
    width: 300px;
    left: 56%; }

  .text-with-button p.main-title {
    font-size: 14px;
    width: auto;
    margin: 0; }

  .text-with-button h2.sub-title {
    font-size: 2rem;
    margin: 10px 0;
    width: auto; }

  .text-with-button p.desc-tt {
    font-size: 1rem;
    margin: 0;
    margin-bottom: 24px;
    width: auto;
    line-height: 1.4; }

  .button-shop-now a.btn, .button-shop-now .theme-product-reviews a.spr-summary-actions-newreview, .theme-product-reviews .button-shop-now a.spr-summary-actions-newreview, .button-shop-now .bandita-modal-registration a#customer_register_link, .bandita-modal-registration .button-shop-now a#customer_register_link, .button-shop-now .bandita-modal-registration a#customer_login_link, .bandita-modal-registration .button-shop-now a#customer_login_link, .button-shop-now .galaxy a.collection-shop-now, .galaxy .button-shop-now a.collection-shop-now {
    font-size: 12px; }

  .logo-text img {
    width: 100%;
    max-width: 50px; }

  .logo-text p {
    font-size: 14px;
    max-width: 225px; }

  .detailed-1-product, .detailed-2-product {
    max-width: 200px;
    text-align: right; }

  .detailed-3-product, .detailed-4-product {
    max-width: 200px;
    text-align: left; }

  .image-pillow-take img {
    max-width: 160px; }

  .text-with-btn-video h2 {
    font-size: 2.25rem; }

  .text-with-btn-video a {
    font-size: 14px; } }
@media (max-width: 1024px) {
  .title-of-product h2 {
    font-size: 32px; }

  .title-of-product p {
    font-size: 1rem; }

  .detailed-description-product {
    text-align: center;
    padding: 70px 0; }

  .detailed-1-product {
    top: 39%;
    left: 137px; }

  .detailed-2-product {
    top: 66%;
    left: 126px; }

  .detailed-3-product {
    top: 37%;
    right: 130px; }

  .detailed-4-product {
    top: 53%;
    right: 123px; }

  .detailed-description-product {
    padding: 70px 0; }

  .custom-review-text-all h5 {
    font-size: 20px; } }
@media (max-width: 991px) {
  .detailed-1-product {
    top: 39%;
    left: 120px; }

  .detailed-2-product {
    top: 66%;
    left: 109px; }

  .detailed-3-product {
    top: 37%;
    right: 113px; }

  .detailed-4-product {
    top: 54%;
    right: 115px; } }
@media (max-width: 767px) {
  .top-faqs-accordion-section .cus-tab-title-main {
    max-width: 88%;
    padding-top: 12px;
    padding-bottom: 12px; }
  .top-faqs-accordion-section .cus-tab-title {
    margin-bottom: 5px; }
  .top-faqs-accordion-section .cus-tab-content p {
    margin-bottom: 0.5rem; }

  .button-shop-now {
    margin-bottom: 2rem; }

  .product-title-t h2 {
    max-width: 100%;
    margin-top: 1.5rem; }

  .logo-text {
    flex: 0 0 100%;
    padding: 10px 0px; }

  .bg-img-with-text {
    margin-top: 300px; }

  .bg-img-with-text {
    height: 600px; }

  .side-description {
    left: 0;
    position: relative;
    top: -150px;
    right: 0;
    padding: 0 15px;
    width: 100%;
    max-width: 100%; }

  .detailed-1-product, .detailed-2-product, .detailed-3-product, .detailed-4-product {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: left;
    padding: 20px 0; }

  span.btn-dot-1, span.btn-dot-2, span.btn-dot-3, span.btn-dot-4 {
    right: 0;
    left: -40px;
    top: 20px; }

  span.btn-dot-border-1, span.btn-dot-border-2, span.btn-dot-border-3, span.btn-dot-border-4 {
    right: auto;
    left: -48px;
    top: 11px; }

  span.btn-line-1, span.btn-line-2, span.btn-line-3, span.btn-line-4 {
    display: none; }

  .detailed-description-product {
    position: relative; }

  span.dot-black-1, span.dot-black-2, span.dot-black-3, span.dot-black-4 {
    width: 10px;
    height: 10px;
    background-color: #000;
    position: absolute;
    border-radius: 50px; }

  span.dot-border-black-1, span.dot-border-black-2, span.dot-border-black-3, span.dot-border-black-4 {
    padding: 12px;
    border: 1px dashed #000;
    position: absolute;
    border-radius: 50px; }

  span.dot-black-1 {
    top: 35%;
    left: 35%; }

  span.dot-border-black-1 {
    top: 94px;
    left: 249px; }

  span.dot-border-black-2 {
    top: 187px;
    left: 214px; }

  span.dot-black-2 {
    top: 194px;
    left: 222px; }

  span.dot-black-3 {
    right: 216px;
    top: 92px; }

  span.dot-border-black-3 {
    right: 208px;
    top: 85px; }

  span.dot-black-4 {
    right: 234px;
    top: 138px; }

  span.dot-border-black-4 {
    right: 226px;
    top: 130px; }

  .custom-review-img {
    padding-bottom: 0; }

  .custom-review-text-all {
    padding-top: 0; }

  .review-with-image {
    padding: 0; }

  .custom-review-section {
    margin: 40px 0; }

  .custom-review-text-all {
    flex: 0 0 100%;
    max-width: 100%; }

  .custom-review-img {
    flex: 0 0 85%;
    max-width: 85%; }

  .review-with-image {
    flex-direction: column-reverse; }

  .custom-review-img {
    padding-bottom: 100px; }

  .customer-review-img {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 20px;
    margin-left: 0; }

  .image-pillow-take img {
    max-width: 220px;
    top: 195px; }

  .video-url-tag {
    flex: 0 0 100%;
    max-width: 100%; }

  .text-with-btn-video {
    padding-left: 0;
    margin: -10px auto;
    text-align: center; }

  .custom-blog-section h2.main-title {
    font-size: 1.75rem; }

  .custom-blog-section p.sub-title {
    font-size: 1rem; }

  .custom-blog-title-img li {
    flex: 0 0 100%;
    max-width: 100%; }

  .cus-tab-title h1, .cus-tab-title h5 {
    max-width: 91%;
    margin-bottom: 0.5rem; }

  .cus-tabs-list h2.title {
    font-size: 28px;
    margin-bottom: 25px; }

  .cus-tab-title {
    padding-bottom: 5px;
    margin-bottom: 25px; }

  .custom-blog-section {
    padding: 25px 0;
    margin: 0;
    background-color: #f9f9f9; }

  .faqs-section {
    padding: 0;
    margin: 0;
    background-color: #f9f9f9; }

  .custom-featured-product-section {
    margin: 25px 0px; }

  .product-img-page {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 30px; }

  .detailed-of-product {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0px; }
    .detailed-of-product .product-title-t {
      margin-top: 20px; }

  .product-img-page .product-next img, .product-img-page .product-prev img {
    max-width: 20px; }

  .product-atc-btn .atc-btn-product-page {
    margin-right: 25px; }

  .custom-review-img {
    margin-left: -15px; }

  .custom-featured-product-section h2.main-title {
    font-size: 28px;
    text-align: center; }

  .featured-product-t {
    margin-top: 25px; } }
@media (max-width: 480px) {
  .bg-img-with-text {
    height: 450px; }

  .title-of-product h2 {
    font-size: 28px; }

  span.dot-black-1 {
    top: 31%;
    left: 27%; }

  span.dot-border-black-1 {
    top: 81px;
    left: 113px; }

  span.dot-black-2 {
    top: 194px;
    left: 78px; }

  span.dot-border-black-2 {
    top: 187px;
    left: 69px; }

  span.dot-black-3 {
    right: 76px;
    top: 92px; }

  span.dot-border-black-3 {
    right: 69px;
    top: 85px; }

  span.dot-black-4 {
    right: 97px;
    top: 142px; }

  span.dot-border-black-4 {
    right: 89px;
    top: 134px; }

  span.btn-dot-border-1, span.btn-dot-border-2, span.btn-dot-border-3, span.btn-dot-border-4 {
    padding: 12px;
    top: 14px; }

  span.btn-dot-1, span.btn-dot-2, span.btn-dot-3, span.btn-dot-4 {
    width: 10px;
    height: 10px;
    top: 22px; }

  .custom-review-img {
    padding-bottom: 150px; }

  .image-pillow-take img {
    max-width: 140px;
    top: 195px; }

  .custom-review-text-all h5 {
    font-size: 24px;
    margin: 10px 0; }

  .custom-review-star-icon i.fa {
    font-size: 15px; }

  .review-anchortag-with-btn p {
    font-size: 14px; }

  .review-anchortag-with-btn a.underline-btn {
    font-size: 14px; }

  .detailed-of-product {
    padding: 0 30px; }

  .text-with-btn-video h2 {
    font-size: 1.75rem; }

  .text-with-btn-video a {
    font-size: 14px; }

  .logo-text {
    justify-content: center; }

  .bg-color {
    padding: 30px 0; }

  .button-shop-now {
    text-align: left;
    max-width: 250px;
    margin: 0 0 2rem 0; }

  .text-with-btn-video {
    flex: 0 0 70%;
    max-width: 70%; }

  .detailed-1-product p.title-of-desc, .detailed-2-product p.title-of-desc, .detailed-3-product p.title-of-desc, .detailed-4-product p.title-of-desc {
    font-size: 14px;
    margin: 0; }

  .detailed-1-product p.desc-in-detailed, .detailed-2-product p.desc-in-detailed, .detailed-3-product p.desc-in-detailed, .detailed-4-product p.desc-in-detailed {
    font-size: 1rem;
    margin: 5px auto; }

  .detailed-1-product, .detailed-2-product, .detailed-3-product, .detailed-4-product {
    max-width: 100%;
    margin-left: 4rem; }

  .custom-blog-title-img .slick-dots {
    bottom: -15px; }

  .custom-blog-title-img .slick-dots li {
    padding: 0; }

  .custom-blog-title-img button.slick-prev, .custom-blog-title-img button.slick-next {
    padding: 7px 0 5px;
    height: 35px;
    width: 35px; } }
@media (max-width: 420px) {
  span.dot-black-1 {
    left: 24%; }

  span.dot-border-black-1 {
    left: 82px; }

  .bg-img-with-text {
    height: 380px; }

  .bg-img-with-text {
    margin-top: 360px; }

  .side-description {
    top: -170px; }

  span.dot-border-black-2 {
    left: 41px; }

  span.dot-black-2 {
    left: 49px; }

  span.dot-border-black-3 {
    right: 36px; }

  span.dot-black-3 {
    right: 44px; }

  span.dot-black-4 {
    right: 70px;
    top: 142px; }

  span.dot-border-black-4 {
    right: 62px;
    top: 134px; }

  .image-pillow-take img {
    top: 150px; }

  .video-url-tag iframe {
    height: 220px; }

  .product-title-t h2 {
    font-size: 28px; }

  .product-price-t p {
    font-size: 14px;
    margin-top: 15px; }

  .product-description-t p {
    font-size: 14px;
    margin: 15px 0;
    margin-bottom: 25px; }

  .product-atc-btn .atc-btn-product-page {
    font-size: 14px; }

  .product-atc-btn a.btn-learn-more {
    font-size: 14px; }

  .product-atc-btn .atc-btn-product-page {
    margin-right: 20px;
    padding: 8px 16px; }

  .cus-tab-title h1, .cus-tab-title h5 {
    max-width: 91%;
    margin-bottom: 0.5rem; } }
@media (max-width: 380px) {
  .side-description {
    width: 100%; }

  span.dot-black-1 {
    left: 21%; }

  span.dot-border-black-1 {
    left: 66px; }

  span.dot-black-2 {
    left: 29px; }

  span.dot-border-black-2 {
    left: 21px; }

  span.dot-black-3 {
    right: 24px; }

  span.dot-border-black-3 {
    right: 17px; }

  span.dot-black-4 {
    right: 48px; }

  span.dot-border-black-4 {
    right: 41px; }

  .bg-img-with-text {
    height: 350px; }

  .logo-text img {
    width: 100%;
    height: auto;
    max-width: 65px; }

  .logo-text p {
    max-width: 200px; }

  .image-pillow-take img {
    top: 120px; }

  .text-with-btn-video {
    flex: 0 0 80%;
    max-width: 80%; }

  .text-with-btn-video h2 {
    padding: 0 15px; } }
@media (max-width: 350px) {
  span.dot-black-1 {
    left: 18%; }

  span.dot-border-black-1 {
    left: 49px; }

  span.btn-dot-1, span.btn-dot-2, span.btn-dot-3, span.btn-dot-4 {
    top: 22px;
    left: -26px; }

  span.btn-dot-border-1, span.btn-dot-border-2, span.btn-dot-border-3, span.btn-dot-border-4 {
    top: 14px;
    left: -34px; }

  span.dot-border-black-2 {
    left: 4px; }

  span.dot-black-2 {
    left: 12px; }

  span.dot-black-3 {
    right: 10px; }

  span.dot-border-black-3 {
    right: 3px; }

  span.dot-black-4 {
    right: 27px; }

  span.dot-border-black-4 {
    right: 20px; }

  .image-pillow-take img {
    top: 95px; } }
@media (max-width: 320px) {
  .bg-img-with-text {
    height: 295px; }

  span.dot-black-1 {
    left: 17%; }

  span.dot-border-black-1 {
    left: 40px; }

  span.dot-black-2 {
    left: 0;
    top: 189px; }

  span.dot-border-black-2 {
    left: -8px;
    top: 182px; }

  span.dot-black-3 {
    right: 0; }

  span.dot-border-black-3 {
    right: -8px; }

  .image-pillow-take img {
    top: 100px;
    max-width: 120px; } }
.detailed-of-product .accordion {
  border-top: solid 1px #a7acb7;
  border-radius: 0;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto; }
  .detailed-of-product .accordion .accordion-header {
    padding-left: 0;
    text-transform: none;
    font-weight: bold;
    border-bottom: 1px solid #a7acb7; }
    .detailed-of-product .accordion .accordion-header:after {
      content: "\f107";
      font-weight: 300;
      font-family: "Font Awesome 5 Pro";
      font-size: 2rem;
      color: #a7acb7;
      line-height: 1; }

.pt-pic img {
  max-width: 150px; }

.pt-name h3 {
  margin-top: 0.5rem;
  margin-bottom: 0; }
.pt-name h4 {
  margin-top: 0; }

#pro-testimonials {
  display: flex;
  flex-wrap: wrap; }
  #pro-testimonials .testimonial {
    width: calc(50% - 2rem);
    margin: 1rem;
    border: 1px solid #DDD;
    padding: 1.5rem; }
    @media screen and (max-width: 768px) {
      #pro-testimonials .testimonial {
        width: 100%;
        padding: 15px;
        margin: 0;
        border: none; } }
    #pro-testimonials .testimonial .pt-details {
      text-align: center; }

@media (min-width: 768px) {
  .site-header.docking-header.docked-header--dock header.header-content.container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15); }

  .secondary-menu.desktop-only,
  .docked-mobile-navigation-container {
    flex: 0 0 30%;
    max-width: 30%; }

  .utils {
    justify-content: flex-end; }

  .main-top-space {
    padding-top: 187px; } }
ul.nav.site-nav li.site-nav__item:first-child {
  /*     padding-right: 30px; */ }

.header-content .secondary-menu ul li:first-child {
  border-right: 0;
  margin-top: -3px; }

.collection-filter-sub-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  vertical-align: middle; }

.collection-filter-sub-section .collection-filter {
  flex: 0 0 50%;
  max-width: 50%; }

.collection-filter-sub-section .collection-breadcrumbs {
  flex: 0 0 50%;
  max-width: 50%; }

.styled-dropdown--label-inside .select2-container .select2-selection__rendered:focus {
  outline: none !important; }

span.select2-selection.select2-selection--single:focus {
  outline: none; }

.collection-filters-container .select2-container:focus {
  outline: none; }

div#shopify-section-collection-review .collection-review-section .collection-review-slider {
  text-align: center; }

div#shopify-section-collection-review {
  background-color: #f5ebe1; }

.c-review-text {
  width: 45%;
  margin: 0 auto; }

p.review-text-content {
  color: #1f1f1f;
  font-size: 27px;
  line-height: 32px;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
  margin-bottom: 25px; }

.collection-review-slider {
  padding: 90px 0px; }

.c-review-star {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  vertical-align: middle; }

.c-review-name {
  margin-bottom: 30px; }

h5.review-write-name,
a.cr-readmore-link {
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 1rem;
  line-height: 23px;
  color: #1f1f1f; }

a.cr-readmore-link {
  text-decoration: none;
  border-bottom: 3px solid #e59d8a; }

.breadcrumbs .page-width {
  padding: 0px !important; }

.about-category-details-section {
  flex: 0 0 45%;
  max-width: 45%;
  padding: 0px 70px; }

.about-category-main-img-sec {
  flex: 0 0 55%;
  max-width: 55%; }

.about-category-content-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  vertical-align: middle;
  margin: 70px 0px; }

.about-category-content-section:nth-child(even) {
  flex-direction: row-reverse; }

.about-category-main-img-sec img.about-category-img {
  width: 100%; }

h5.about-category-title {
  margin: 0 0 10px;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  color: #1f1f1f;
  text-transform: uppercase; }

p.about-category-content {
  margin: 10px 0 30px;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1f1f1f; }

a.about-category-textlink {
  margin: 0 0 4px;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  color: #1f1f1f;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 3px solid #e59d8a; }

.about-category-main-title-section {
  margin-top: 100px; }

.about-category-main-title-section h2.ac-main-title {
  margin: 0 auto;
  font-family: "Playfair Display", serif;
  font-size: 35px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #1f1f1f; }

div#shopify-section-collection-faq {
  background-color: #f9f9f9;
  padding: 25px; }
  @media screen and (max-width: 768px) {
    div#shopify-section-collection-faq {
      padding-left: 15px;
      padding-right: 15px; } }

a.text-link {
  margin: 0 0 4px;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  color: #1f1f1f;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 3px solid #e59d8a; }

.page-width.top-faqs-main-section .about-category-main-title-section {
  margin-top: 0px;
  margin-bottom: 22px; }

.about-category-main-title-section h3.ac-main-title {
  text-align: center;
  font-size: 2.25rem; }

.top-faqs-main-title {
  font-size: 2.25rem;
  margin-bottom: 2rem; }

.top-faqs-title-section {
  padding: 30px 0px 15px;
  border-bottom: 1px solid #1f1f1f;
  position: relative;
  cursor: pointer; }

.top-faqs-title-section h4.top-faqs-title {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  color: #1f1f1f;
  text-transform: uppercase;
  padding-right: 45px; }

.top-faqs-text-link.text-link {
  margin-top: 50px; }

.top-faqs-content-section {
  opacity: 0;
  height: 0; }

.top-faqs-title-section:after {
  position: absolute;
  content: '';
  width: 14px;
  height: 38px;
  background-image: url(https://cdn.shopify.com/s/files/1/0509/1947/3308/files/icon-right-arrow.svg?v=1612731161);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  right: 8px;
  top: 25%; }

.top-faqs-content-section p {
  margin: 0; }

.top-faqs-list-item.faq-open .top-faqs-content-section {
  opacity: 1;
  height: inherit; }

.top-faqs-list-item.faq-open .top-faqs-content-section p {
  margin: 15px 0; }

.top-faqs-list-item.faq-open .top-faqs-title-section:after {
  transform: rotate(90deg); }

.cus-main-title {
  margin: 100px auto 70px;
  font-family: "Playfair Display", serif;
  font-size: 35px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #1f1f1f; }

.look-for-more-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  vertical-align: middle; }
  .look-for-more-section .look-for-more-content-section {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0px 15px; }

.look-for-more-main-section {
  overflow: hidden; }

p.look-for-more-textlink a,
a.look-for-more-textlink {
  margin: 0 0 4px;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  color: #1f1f1f;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 3px solid #e59d8a;
  padding: 0px 15px; }

.look-for-more-details {
  text-align: center; }

img.look-for-more-img {
  display: block; }

.look-for-more-details-section {
  margin-top: 20px;
  margin-bottom: 50px; }

a.meet-collection-item-link {
  margin: 0 0 4px;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  color: #1f1f1f;
  text-transform: uppercase;
  text-decoration: none;
  padding: 25px 0px 9px;
  display: block;
  position: relative;
  cursor: pointer; }

.meet-collection-item {
  border-bottom: 3px solid #e59d8a;
  max-width: 795px;
  margin: 0px auto; }

.meet-collection-list {
  margin-top: 5px; }

a.meet-collection-item-link:after {
  position: absolute;
  content: '';
  width: 9px;
  height: 15px;
  background-image: url(https://cdn.shopify.com/s/files/1/0509/1947/3308/files/icon-arrow.svg?v=1612764771);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  right: 0px;
  top: 50%; }

.meet-info-img-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  vertical-align: middle; }
  .meet-info-img-text .meet-info-img-item {
    flex: 0 0 50%;
    max-width: 50%; }
  .meet-info-img-text .meet-info-text {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 39px 60px;
    background-color: #f5ebe1; }

.meet-info-section {
  margin: 100px 0px; }

.meet-main-section.custom-lp .meet-info-section {
  margin: 0;
  padding-top: 70px;
  padding-bottom: 70px; }
  @media screen and (max-width: 767px) {
    .meet-main-section.custom-lp .meet-info-section {
      padding-top: 10px;
      padding-bottom: 10px; }
      .meet-main-section.custom-lp .meet-info-section .meet-info-slider {
        padding: 0; } }

h2.meet-info-text-title {
  font-size: 40px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1f1f1f;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px; }

.meet-info-img-item video {
  display: block;
  width: 100%; }
  .meet-info-img-item video:focus {
    outline: none; }

.flex-listsmain {
  display: flex;
  flex-wrap: wrap; }

.list-image-text {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  text-align: center;
  padding: 0px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #000; }
  .list-image-text:last-child {
    border-right: none; }

.categoryheading h2 {
  margin: 0 0 10px;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #1f1f1f; }
.categoryheading p {
  margin: 0 0 10px;
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #1f1f1f; }

.iconlist-title {
  padding-left: 20px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #1f1f1f; }

.list-icon-image img {
  display: block; }

p.meet-info-subtitle {
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  text-align: center;
  color: #1f1f1f;
  font-family: "Work Sans", sans-serif;
  margin-top: 0;
  text-transform: uppercase; }

.iconlist-readmore {
  text-align: center;
  padding-top: 30px; }

.collection-sub-main {
  padding: 30px 10px; }

.collection-main-iconlist {
  background-color: #f5ebe1;
  display: block;
  /*   margin-top: -1rem; */ }

#postpartum-belly-wraps-amp-belly-bands .collection-main-iconlist {
  background-color: transparent; }

.mobile-show {
  display: none; }

.desktop-show {
  display: block; }

.mobile-inline-show {
  display: none; }

.desktop-inline-show {
  display: inline-block; }

@media only screen and (max-width: 1024px) {
  h2.meet-info-text-title {
    font-size: 28px; } }
@media only screen and (max-width: 991px) {
  .about-category-details-section {
    padding: 0px 40px; } }
@media only screen and (max-width: 930px) {
  .collection-filters-container {
    position: relative;
    transform: translate3d(0, 0, 0);
    padding: 30px 0px 0; }

  .collection-filters-row {
    position: relative; }

  .collection-filter-sub-section .collection-breadcrumbs {
    display: none; }

  .collection-filter-sub-section .collection-filter {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap; }

  .collection-filters-container .grid__item {
    width: 50%;
    margin: 0px 0 0px; }

  .collection-filters-container .collection-sort .styled-dropdown {
    width: 100%; } }
@media only screen and (max-width: 767px) {
  .collection-review-slider {
    padding: 40px 15px; }

  .c-review-text {
    width: 75%; }

  .slick-prev {
    left: 13px; }

  .slick-next {
    right: 13px; }

  p.review-text-content {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 25px; }

  h5.review-write-name, a.cr-readmore-link {
    font-size: 1rem;
    line-height: 19px; }

  .c-review-name {
    margin-bottom: 0; }

  .about-category-main-img-sec {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1; }

  .about-category-details-section {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 30px 0px;
    order: 2; }

  .about-category-content-section {
    margin: 35px 0px; }

  .about-category-main-title-section h2.ac-main-title {
    font-size: 28px; }

  .top-faqs-title-section h2.top-faqs-title {
    font-size: 14px; }

  .top-faqs-title-section:after {
    width: 14px;
    height: 26px; }

  div#shopify-section-top-faqs {
    padding: 40px 0px; }

  .about-category-main-title-section {
    margin-top: 50px; }

  .look-for-more-section .look-for-more-content-section {
    padding: 0px 5px; }

  .look-for-more-section {
    margin: 0px -20px; }

  a.look-for-more-textlink {
    font-size: 14px; }

  a.meet-collection-item-link {
    font-size: 14px; }

  .meet-info-img-text .meet-info-img-item {
    flex: 0 0 100%;
    max-width: 100%; }

  .meet-info-img-text .meet-info-text {
    flex: unset;
    max-width: 100%;
    padding: 39px 60px;
    background-color: #f5ebe1;
    margin: 0px 20px;
    width: 100%;
    text-align: center; }

  .meet-info-section {
    margin: 50px 0px; }

  .styled-dropdown--label-inside .select2-container .select2-selection__rendered {
    font-size: 14px;
    line-height: 19px; }

  .styled-dropdown--label-inside label {
    position: relative;
    top: 9px;
    left: 14px;
    z-index: 0;
    font-size: 14px;
    line-height: 1;
    opacity: 1;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px; }

  .collection-main-iconlist {
    display: block; }

  .mobile-show {
    display: block; }

  .desktop-show {
    display: none; }

  .mobile-inline-show {
    display: inline-block; }

  .desktop-inline-show {
    display: none; }

  .docked-header--dock .utils {
    padding: 0px 30px 0px 15px; } }
@media only screen and (max-width: 480px) {
  h5.about-category-title {
    font-size: 14px; }

  p.about-category-content {
    margin: 10px 0 30px;
    font-size: 14px; }

  .about-category-main-title-section h2.ac-main-title {
    font-size: 28px; }

  .about-category-content-section {
    margin: 25px 0px; }

  .look-for-more-details {
    border-bottom: 3px solid #e59d8a; }

  a.look-for-more-textlink {
    border-bottom: none;
    padding: 0px 0px; }

  .cus-main-title {
    margin: 50px auto 35px;
    font-size: 28px; }

  a.text-link {
    font-size: 14px; }

  h2.meet-info-text-title {
    font-size: 20px; }

  .meet-info-section {
    margin: 30px 0px; }

  .meet-info-img-text .meet-info-text {
    padding: 39px 25px; }

  .look-for-more-details-section {
    margin-top: 15px;
    margin-bottom: 30px; }

  .collection-filters-container {
    padding: 15px 0px 0; }

  .collection-filters-container .grid__item {
    padding-right: 15px; }

  .collection-filters-container .collection-sort {
    padding-right: 0; } }
/*======== 02/11/2021 new collection template hero variations =============*/
.mobile-view-banner {
  display: none; }

@media (max-width: 768px) {
  .mobile-view-banner {
    display: block; }

  .desktop-view-banner {
    display: none; } }
/* hero title description bullets section  */
.hero-title-description .collection-sub-main {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  padding-right: 10px; }
.hero-title-description .categoryheading {
  flex: 0 0 65%;
  max-width: 65%; }
.hero-title-description .side-collection-info {
  flex: 0 0 35%;
  max-width: 35%; }
.hero-title-description.bestsellers .collection-sub-main {
  padding: 0; }
.hero-title-description.bestsellers .categoryheading {
  flex: 0 0 100%;
  max-width: 100%; }
.hero-title-description.bestsellers .side-collection-info {
  display: none; }
.hero-title-description .collection-image, .hero-title-description .collection-image h1 {
  margin: 0; }
.hero-title-description .collection-image h1, .hero-title-description .collection-image p {
  text-align: left; }
.hero-title-description .desktop-view-banner {
  margin-bottom: -7px; }
  .hero-title-description .desktop-view-banner img {
    /*     height: 100%;
        object-fit: cover;
        object-position: left;
        max-height: 520px; */
    object-fit: fill;
    object-position: center; }
.hero-title-description .side-collection-info {
  padding: 50px 65px; }
.hero-title-description .flex-listsmain {
  display: block; }
.hero-title-description .list-image-text {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 15px 0 0 0;
  justify-content: flex-start;
  border-right: none; }
.hero-title-description .learnmore-brn {
  margin-top: 40px; }

/* hero title tagline bullets section  */
.hero-title-with-tagline .categoryheading {
  position: relative; }
.hero-title-with-tagline .collection-image {
  position: absolute;
  top: 50%;
  bottom: 0;
  transform: translate(0, -50%);
  left: 300px;
  margin: 0; }
.hero-title-with-tagline .collection-image h1, .hero-title-with-tagline .collection-image p {
  text-align: left; }
.hero-title-with-tagline .flex-listsmain.below-icon-list {
  padding-top: 25px;
  max-width: 1366px;
  margin: 0 auto; }
.hero-title-with-tagline .list-icon-image {
  flex: 0 0 20%;
  max-width: 20%; }
.hero-title-with-tagline .iconlist-title {
  flex: 0 0 80%;
  max-width: 80%; }

/*title tagline bullets section  */
.only-title-with-tagline .collection-image {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0px 40px; }
.only-title-with-tagline .collection-image h1, .only-title-with-tagline .collection-image p {
  text-align: left; }
.only-title-with-tagline .flex-listsmain.below-icon-list {
  padding-top: 25px;
  max-width: 1366px;
  margin: 0 auto; }
.only-title-with-tagline .list-icon-image {
  flex: 0 0 20%;
  max-width: 20%; }
.only-title-with-tagline .iconlist-title {
  flex: 0 0 80%;
  max-width: 80%; }

/* slick carousel subcategory hero section  */
.carousel-section .flex-listsmain.below-icon-list {
  padding-top: 25px;
  max-width: 1366px;
  margin: 0 auto; }
.carousel-section .list-icon-image {
  flex: 0 0 20%;
  max-width: 20%; }
.carousel-section .iconlist-title {
  flex: 0 0 80%;
  max-width: 80%; }
.carousel-section .subcategory-collection {
  max-width: 1366px;
  margin: 0 auto; }
.carousel-section .subcategory-col-info {
  margin-right: 12px; }
.carousel-section .subcategory-collection img.carousel-prev {
  left: -25px; }
.carousel-section .subcategory-collection img.carousel-next {
  right: -25px; }
.carousel-section .subcategory-col-info-title h3 {
  text-align: left;
  margin-top: 1rem;
  font-size: 1rem;
  font-family: "Work Sans",sans-serif;
  text-transform: uppercase; }
.carousel-section .subcategory-col-info-title p {
  text-align: left; }
.carousel-section .subcategory-col-img {
  animation: fadeIn ease 2.5s;
  -webkit-animation: fadeIn ease 2.5s;
  -moz-animation: fadeIn ease 2.5s;
  -o-animation: fadeIn ease 2.5s;
  -ms-animation: fadeIn ease 2.5s; }
  .carousel-section .subcategory-col-img img {
    height: 450px;
    width: 100%;
    max-width: 350px;
    object-fit: cover; }

@keyframes fadeIn {
  0% {
    opacity: 0; }

  50% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-moz-keyframes fadeIn {
  0% {
    opacity: 0; }

  50% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }

  50% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-o-keyframes fadeIn {
  0% {
    opacity: 0; }

  50% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-ms-keyframes fadeIn {
  0% {
    opacity: 0; }

  50% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@media (max-width: 1440px) {
  .carousel-section .collection-sub-main {
    padding: 30px 40px; }
  .carousel-section .subcategory-collection img.carousel-next, .carousel-section .subcategory-collection img.carousel-prev {
    width: 20px;
    height: 39px; }

  .hero-title-description .side-collection-info {
    padding: 40px 40px; }
  .hero-title-description .collection-sub-main {
    align-items: center; }

  .hero-title-with-tagline .collection-image {
    left: 150px; } }
@media (max-width: 767px) {
  .carousel-section .subcategory-col-img img {
    height: 220px; }

  .breadcrumbs {
    background: transparent; } }
@media (max-width: 767px) {
  .flex-listsmain.below-icon-list {
    margin-left: -15px; }

  .flex-listsmain {
    padding: 20px 0; }

  .carousel-section .subcategory-col-info {
    border-bottom: 3px solid #e59d8a; }
  .carousel-section .collection-sub-main {
    padding: 30px 0 30px 15px; }
  .carousel-section .collection-image h3 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 0; }
  .carousel-section .collection-image p {
    text-align: left; }
  .carousel-section .list-icon-image img {
    display: none; }
  .carousel-section .iconlist-title {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px 0;
    text-align: center; }
  .carousel-section .list-image-text {
    display: block;
    padding: 0px 20px; }

  .hero-title-description .categoryheading, .hero-title-description .side-collection-info {
    flex: 0 0 100%;
    max-width: 100%; }
  .hero-title-description .side-collection-info {
    padding: 20px 0; }
  .hero-title-description .flex-listsmain {
    display: flex;
    flex-wrap: wrap; }
  .hero-title-description .list-image-text {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    text-align: center;
    padding: 0px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    border-right: 1px solid #000; }
  .hero-title-description .iconlist-title {
    padding-left: 0;
    padding: 10px 0;
    text-align: center; }
  .hero-title-description .list-image-text:last-child {
    border-right: none; }
  .hero-title-description .list-icon-image, .hero-title-description .iconlist-title {
    flex: 0 0 100%;
    max-width: 100%; }
  .hero-title-description .list-icon-image img {
    margin: 0 auto; }
  .hero-title-description .learnmore-brn {
    margin-top: 0; }
  .hero-title-description .collection-sub-main {
    padding: 0; }
  .hero-title-description .side-collection-info {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 35px; }
  .hero-title-description .list-icon-image {
    display: none; }
  .hero-title-description .collection-description {
    margin: 0; }
  .hero-title-description .collection-title {
    font-size: 2rem;
    margin-bottom: 0.5rem; }
  .hero-title-description .breadcrumbs {
    text-align: left;
    font-size: 1rem; }

  .only-title-with-tagline .list-icon-image img {
    margin: 0 auto; }
  .only-title-with-tagline .list-icon-image {
    display: none; }
  .only-title-with-tagline .iconlist-title {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px 0;
    text-align: center; }
  .only-title-with-tagline .list-image-text {
    display: block;
    padding: 0px 20px; }
  .only-title-with-tagline .collection-image {
    padding: 0; }
  .only-title-with-tagline .breadcrumbs {
    text-align: left;
    font-size: 1rem; }
  .only-title-with-tagline .collection-title {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 0.5rem; }

  .hero-title-with-tagline .breadcrumbs {
    text-align: left;
    font-size: 1rem; }
  .hero-title-with-tagline .collection-title {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 0.5rem; }
  .hero-title-with-tagline .collection-sub-main {
    padding: 0; }
  .hero-title-with-tagline .collection-image {
    position: relative;
    top: 0;
    transform: none;
    left: 0;
    padding-left: 15px;
    padding-right: 15px; }
  .hero-title-with-tagline .list-icon-image img {
    margin: 0 auto; }
  .hero-title-with-tagline .list-icon-image {
    display: none; }
  .hero-title-with-tagline .iconlist-title {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px 0;
    text-align: center; }
  .hero-title-with-tagline .list-image-text {
    display: block;
    padding: 0px 20px; } }
@media (max-width: 420px) {
  .list-icon-image img {
    max-width: 50px; }

  .carousel-section .list-image-text,
  .hero-title-description .list-image-text,
  .only-title-with-tagline .list-image-text,
  .hero-title-with-tagline .list-image-text {
    padding: 0px 10px; } }
.hero-title-description .collection-title {
  text-align: left; }

.collection-main .collection-title {
  text-align: left; }
.collection-main .center .collection-title {
  text-align: center; }

.carousel-section .collection-title {
  text-align: center; }

.article-page .article-cusfiled {
  font-size: 2.25rem;
  line-height: 1.3; }

.customer-account-login {
  text-align: center;
  margin-top: 30px; }

a.account-login {
  text-decoration: none;
  font-size: 15px; }

/* new sizing guide block */
.pink-bg {
  background-color: #F5EBE1;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 30px;
  padding-bottom: 30px; }

/* 
   Swatches Styles
*/
.swatch {
  margin: 1em 0; }

/* Label */
.swatch .header {
  margin: 0.5em 0; }

/* Hide radio buttons.*/
.swatch input {
  display: none; }

.swatch label {
  /* Rounded corners */
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  /* To give width and height */
  float: left;
  min-width: 25px !important;
  height: 25px !important;
  margin: 0;
  border: #ccc 1px solid;
  background-color: #ddd;
  font-size: 13px;
  text-align: center;
  line-height: 35px;
  white-space: nowrap;
  text-transform: uppercase;
  border-radius: 50px; }

.swatch-element label {
  padding: 0 10px; }

.color.swatch-element label {
  padding: 0; }

/* Styling selected swatch */
/* Slightly raised */
.swatch input:checked + label {
  /*   -webkit-box-shadow:0px 1px 2px rgba(0,0,0,0.8);
    -moz-box-shadow:0px 1px 2px rgba(0,0,0,0.8);
    box-shadow:0px 1px 2px rgba(0,0,0,0.8);
    border-color:transparent;
    position: relative; */ }

.swatch .swatch-element {
  float: left;
  -webkit-transform: translateZ(0);
  /* webkit flicker fix */
  -webkit-font-smoothing: antialiased;
  /* webkit text rendering fix */
  /* Spacing between buttons */
  margin: 0px 10px 10px 0;
  /* To position the sold out graphic and tooltip */
  position: relative; }

/* Image with the cross in it */
.crossed-out {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0; }

.swatch .swatch-element .crossed-out {
  display: none; }

.swatch .swatch-element.soldout .crossed-out {
  display: block; }

.swatch .swatch-element.soldout label {
  filter: alpha(opacity=60);
  /* internet explorer */
  -khtml-opacity: 0.6;
  /* khtml, old safari */
  -moz-opacity: 0.6;
  /* mozilla, netscape */
  opacity: 0.6;
  /* fx, safari, opera */ }

/* Tooltips */
.swatch .tooltip {
  text-align: center;
  background: gray;
  color: #fff;
  bottom: 100%;
  padding: 10px;
  display: block;
  position: absolute;
  width: 100px;
  left: -23px;
  margin-bottom: 15px;
  /* Make it invisible by default */
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  visibility: hidden;
  /* Animations */
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  z-index: 10000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.swatch .tooltip:before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%; }

/* CSS triangle */
.swatch .tooltip:after {
  border-left: solid transparent 10px;
  border-right: solid transparent 10px;
  border-top: solid gray 10px;
  bottom: -10px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -13px;
  position: absolute;
  width: 0; }

.swatch .swatch-element:hover .tooltip {
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px); }

.swatch.error {
  background-color: #e8d2d2 !important;
  color: #333333 !important;
  padding: 1em;
  border-radius: 5px; }

.swatch.error p {
  margin: 0.7em 0; }

.swatch.error p:first-child {
  margin-top: 0; }

.swatch.error p:last-child {
  margin-bottom: 0; }

.swatch.error code {
  font-family: monospace; }

.swatch input:checked + label {
  box-shadow: none; }

.swatch-element label.active:after {
  content: '';
  height: 35px;
  width: 35px;
  position: absolute;
  top: -5px;
  left: -5px;
  border-radius: 50px;
  border: 2px solid #1f1f1f; }

.mobile-menu-search .search-form__icon {
  display: none; }

@media screen and (min-width: 767px) {
  .announcement-bar-open-navigation {
    display: none; } }

/* custom scss */
.related-custom .product-block__title {
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 2px;
  color: #1f1f1f;
  text-transform: uppercase;
  line-height: 18px;
  margin-bottom: 5px;
  margin-top: 10px; }

.related-custom .product-swatch-inline {
  text-align: left;
  margin: 10px 0px; }

.related-custom .product-swatch-inline__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 8px; }

.related-custom .product-block .product-price {
  font-size: 15px !important;
  text-align: left; }

.related-custom .review-related-part .jdgm-prev-badge__text {
  display: none; }

.related-custom .review-related-part {
  text-align: left; }

.related-head a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none; }

.related-head {
  position: relative;
  margin-top: 90px; }

.main-product-sticky {
  display: none;
  background-color: #fff; }

.main-product-sticky.stick-product {
  position: fixed;
  width: 100%;
  top: 0;
  display: block;
  box-shadow: 0px 13px 28px 0px rgba(0, 0, 0, 0.15);
  z-index: 10000; }

.related-head a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 4px solid #cca194;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%); }
  .related-head a:hover {
    border-bottom-color: transparent; }

.related-head h4 {
  font-size: 35px !important;
  margin-bottom: 50px; }

.sticky-product-details h5.vendor-title {
  font-family: 'Work Sans';
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.13px;
  color: #1f1f1f;
  text-transform: uppercase; }

.sticky-product-details p {
  font-size: 20px;
  font-family: 'Playfair Display';
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  font-style: italic;
  margin: 0; }

.main-product-sticky .content-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 83.33%;
  margin: 0 auto;
  align-items: center;
  padding: 10px; }

.stickpart-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.stickpart-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.sticky-product-details {
  padding-left: 20px; }

.stick-option-selector .select-wrap-stick select {
  width: 100%; }

.stick-option-selector .select-wrap-stick {
  width: 150px;
  margin-right: 15px; }

.stick-option-selector {
  display: flex; }

.stick-addtocart .addcart-ad {
  padding: 12px 20px;
  font-size: 15px;
  font-weight: normal;
  font-family: 'Work Sans';
  box-shadow: none;
  border: 1px solid #1f1f1f; }
  .stick-addtocart .addcart-ad:hover {
    background-color: transparent; }
    .stick-addtocart .addcart-ad:hover span {
      color: #1f1f1f; }

.judgeme-wrapper .pt-4 {
  text-align: center;
  font-size: 35px !important;
  font-weight: 500; }

.row-all-description-container {
  display: flex;
  flex-wrap: wrap; }

.tab-all-container {
  flex: 0 0 62%;
  max-width: 62%;
  padding-right: 30px; }

.tabbing-all-content {
  max-width: 672px; }

.details-descript-line {
  flex: 0 0 38%;
  max-width: 38%;
  padding-right: 30px; }

.tabs-list li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 2px;
  margin-right: 30px;
  padding-bottom: 5px; }
  .tabs-list li a:hover {
    border-bottom: 4px solid #cca194; }

.tab-header.active-tab {
  border-bottom: 4px solid #cca194; }

.tabbing-portion {
  margin-top: 30px;
  display: none; }
  .tabbing-portion ul {
    margin-left: 20px; }
    .tabbing-portion ul li {
      list-style: unset; }
  .tabbing-portion h5 {
    margin-top: 20px; }

.tabbing-portion.active-tabbing {
  display: block; }

.tabs-list {
  display: flex;
  flex-wrap: wrap; }

.tabs-list li {
  cursor: pointer; }

.details-descript-line h5 {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 15px;
  font-family: 'Work Sans'; }

.details-dom {
  margin-top: 30px; }
  .details-dom ul li {
    list-style: unset;
    margin-bottom: 10px; }

.main-tabbing-description-product-templete .product-pairs-container {
  border-top: 1px solid #000;
  padding-top: 39px; }

#bb-product-template #var-option-Size .clickyboxes li a {
  min-width: 32px;
  margin: 0 15px 5px 0; }

@media only screen and (max-width: 767px) {
  .main-product-sticky.stick-product {
    position: fixed;
    width: 100%;
    top: auto;
    display: none;
    bottom: -1px;
    box-shadow: none; }

  .template-product .css-sef6vt {
    bottom: 60px !important; }
  .template-product #smile-ui-container {
    display: none; } }
/* menu-new-css */
.more-links--with-dropdown > .site-nav__dropdown {
  right: 0;
  width: 25%;
  left: inherit; }

.more-links--with-dropdown > .site-nav__dropdown > .page-width > .small-dropdown__container {
  width: 100%; }

.product-detail__price.product-price {
  display: flex;
  order: 1;
  padding-left: 0; }

.product-detail__header > div {
  display: flex;
  order: 2;
  padding-left: 10px; }

.product-detail__header {
  align-items: center; }

.product-detail__header > div .container {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0px;
  border-width: 0px;
  padding-left: 15px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px; }

.site-nav__item .site-nav__dropdown li.small-dropdown__item, .site-nav__item .site-nav__submenu li.mega-dropdown__subitem {
  position: relative; }

.site-nav__item .site-nav__dropdown li.small-dropdown__item a, .site-nav__item .site-nav__submenu li.mega-dropdown__subitem a {
  position: relative;
  margin-bottom: 8px; }
  .site-nav__item .site-nav__dropdown li.small-dropdown__item a span, .site-nav__item .site-nav__submenu li.mega-dropdown__subitem a span {
    position: relative; }
    .site-nav__item .site-nav__dropdown li.small-dropdown__item a span:before, .site-nav__item .site-nav__dropdown li.small-dropdown__item a span:after, .site-nav__item .site-nav__submenu li.mega-dropdown__subitem a span:before, .site-nav__item .site-nav__submenu li.mega-dropdown__subitem a span:after {
      content: "";
      position: absolute;
      bottom: -3px;
      width: 0px;
      height: 3px;
      margin: 5px 0 0;
      transition: all 0.2s ease-in-out;
      transition-duration: 0.35s;
      opacity: 0;
      background-color: #d5a092;
      left: 0; }
  .site-nav__item .site-nav__dropdown li.small-dropdown__item a:hover, .site-nav__item .site-nav__submenu li.mega-dropdown__subitem a:hover {
    cursor: pointer; }
    .site-nav__item .site-nav__dropdown li.small-dropdown__item a:hover span:before, .site-nav__item .site-nav__dropdown li.small-dropdown__item a:hover span:after, .site-nav__item .site-nav__submenu li.mega-dropdown__subitem a:hover span:before, .site-nav__item .site-nav__submenu li.mega-dropdown__subitem a:hover span:after {
      width: 100%;
      opacity: 1; }

.site-nav__item .site-nav__dropdown li.small-dropdown__item:before, .site-nav__item .site-nav__submenu li.mega-dropdown__subitem:before {
  content: '\f105';
  font-family: 'FontAwesome';
  position: absolute;
  left: -20px;
  font-size: 20px;
  top: -5px; }

.more-links--with-dropdown > .site-nav__dropdown {
  width: 100%; }

.more-links--with-dropdown > .site-nav__dropdown .site-nav__dropdown {
  background-color: #ffff;
  right: 0 !important;
  max-width: 100% !important; }

/* --------------------------------------------------------------------------
  CART DRAWER Variables
-----------------------------------------------------------------------------*/
.top_cart_drawer .product-related-info {
  width: 100%;
  background: #f4f4f3;
  padding: 15px;
  margin-top: 15px; }

.item-details:last-child {
  border: none !important; }

/* css */
.custom-blog-title-img p:empty {
  display: none; }

.add-bundle-products {
  background-color: #f3ebe2; }

.main-bundle-product {
  padding: 100px 60px; }

.add-product-bundle-info {
  display: flex;
  flex-wrap: wrap; }

.add-product-bundle-info .product-bundle-1 {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 60px; }

.custom-field__add-bundle-product-sec-title .custom-field--value {
  margin: 20px 0 60px;
  font-family: 'Playfair Display';
  font-size: 35px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1f1f1f;
  padding-left: 60px; }

.logo-bundle-product {
  padding-left: 60px; }

.product-bundle-info .jdgm-preview-badge {
  display: block !important;
  margin-left: 0px;
  padding-left: 0px; }

.product-bundle-info .jdgm-preview-badge .jdgm-star {
  color: #1f1f1f; }

.info-about-bundle-product p.product-title {
  margin: 10px 0;
  font-family: 'Playfair Display';
  font-size: 22px;
  font-weight: normal;
  font-stretch: normal;
  font-style: italic;
  line-height: normal;
  letter-spacing: normal;
  color: #1f1f1f; }

.product-bundle-info p.product-price,
.product-bundle-info .custom-field--value p:first-child,
.atc-btn-bundle button.product-bundle-atc span {
  font-family: 'Work Sans';
  font-size: 15px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 2px;
  color: #1f1f1f; }

.product-bundle-info p.product-price {
  margin: 10px 0 40px; }

.product-bundle-info .custom-field--value p:first-child {
  margin-bottom: 10px; }

.product-bundle-info .custom-field--value {
  margin-bottom: 40px; }

.info-about-bundle-product select {
  width: 100%;
  height: 45px;
  border: 1px solid #1f1f1f;
  margin: 0; }

.atc-btn-bundle {
  text-align: center;
  margin-top: 40px; }

.atc-btn-bundle button.product-bundle-atc {
  width: 310px;
  height: 45px;
  padding: 0; }

.atc-btn-bundle button.product-bundle-atc span {
  color: #fff; }

@media only screen and (max-width: 1024px) {
  .main-bundle-product {
    padding: 100px 0px; }

  .add-product-bundle-info .product-bundle-1 {
    padding: 0 22px; }

  .custom-field__add-bundle-product-sec-title .custom-field--value {
    padding: 0 22px; }

  .logo-bundle-product {
    padding: 0 22px; } }
@media only screen and (max-width: 767px) {
  .add-product-bundle-info .product-bundle-1 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px 22px; }

  .logo-bundle-product img {
    max-width: 55px; }

  .main-bundle-product {
    padding: 50px 0px; }

  .custom-field__add-bundle-product-sec-title .custom-field--value {
    margin: 10px 0 25px;
    font-size: 20px; }

  .product-bundle-info p.product-price {
    margin: 10px 0 15px; }

  .product-bundle-info .custom-field--value {
    margin-bottom: 20px; } }
@media only screen and (min-width: 768px) {
  .additional-checkout-buttons {
    display: none !important; }

  .dynamic-checkout__content .shopify-cleanslate [data-testid="ShopifyPay-button"], .dynamic-checkout__content .shopify-cleanslate [data-testid="GooglePay-button"], .dynamic-checkout__content .shopify-cleanslate iframe.paypalLight, .dynamic-checkout__content .shopify-cleanslate li:last-child {
    display: none !important; } }
@media only screen and (max-width: 767px) {
  .dynamic-checkout__content .shopify-cleanslate [data-testid="ShopifyPay-button"], .dynamic-checkout__content .shopify-cleanslate iframe.paypalLight, .dynamic-checkout__content .shopify-cleanslate li:last-child {
    display: none !important; } }
.hero-title-description .learnmore-brn {
  display: none !important; }

.page-bundle.header-row {
  padding-top: 7rem;
  padding-bottom: 4rem;
  text-align: center; }

.container.page-bundle {
  padding: 45px 25px;
  margin: 0 auto; }

.page-bundle .h1, .popup-product-info .panel-heading, h1 {
  font-size: 48px;
  line-height: 53px;
  font-family: "Playfair Display",serif;
  font-weight: 400; }
  @media screen and (max-width: 768px) {
    .page-bundle .h1, .popup-product-info .panel-heading, h1 {
      font-size: 36px; } }

.bundle-steps {
  margin-bottom: 2rem; }
  .bundle-steps h3 {
    font-weight: 700;
    font-size: 18px; }
  @media screen and (max-width: 768px) {
    .bundle-steps {
      margin-top: 45px; } }

.header-row.page-bundle p span {
  font-size: 16px !important;
  font-family: Montserrat !important;
  color: #370c27 !important; }

.show-mobile {
  display: none; }

.page-bundle .bundle-content .inner {
  background: 0 0;
  border: 1px solid #b8c2cc;
  padding: 2rem 3rem 3rem;
  text-align: center; }

.page-bundle .bundle-content .inner {
  background: 0 0;
  border: 1px solid #b8c2cc;
  padding: 2rem 3rem 3rem;
  text-align: center; }

.page-bundle .bundle-content .inner h3 {
  font-size: 48px;
  margin-bottom: .75rem;
  font-family: Montserrat,sans-serif;
  font-weight: 500; }

.page-bundle .h4, h4 {
  font-family: Montserrat,sans-serif;
  font-size: 18px;
  font-weight: 600; }

.page-bundle .bundle-content .inner h5 {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 400;
  font-size: 18px; }

.page-bundle .bundle-content .inner ol {
  letter-spacing: .07rem;
  list-style-position: outside;
  list-style-type: decimal;
  text-align: left;
  margin-left: 0;
  padding-left: 0; }

.page-bundle .bundle-content .inner li {
  margin-bottom: 1rem;
  text-transform: none;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0; }

.page-bundle form.bundle-builder--add-to-bundle-form {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  width: 100%;
  flex-direction: column; }

.page-bundle .bundle-builder--add-to-cart-form {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1.5rem; }

.page-bundle .bundle-content .inner .total-row {
  border-top: 1px solid #370c27;
  padding-top: 0;
  margin-top: 2.25rem; }

.page-bundle .bundle-content .inner .total-row > p {
  margin-bottom: 0; }

.page-bundle .bundle-content .inner .btn, .page-bundle .bundle-content .inner .theme-product-reviews .spr-summary-actions-newreview, .theme-product-reviews .page-bundle .bundle-content .inner .spr-summary-actions-newreview, .page-bundle .bundle-content .inner .bandita-modal-registration #customer_register_link, .bandita-modal-registration .page-bundle .bundle-content .inner #customer_register_link, .page-bundle .bundle-content .inner .bandita-modal-registration #customer_login_link, .bandita-modal-registration .page-bundle .bundle-content .inner #customer_login_link, .page-bundle .bundle-content .inner .galaxy .collection-shop-now, .galaxy .page-bundle .bundle-content .inner .collection-shop-now {
  width: 100%; }

.page-bundle .btn--red:disabled {
  background-color: #ddd;
  color: #fff;
  border: 2px solid #ddd;
  border-radius: 0;
  cursor: default;
  pointer-events: none;
  opacity: 1;
  letter-spacing: 0;
  padding: 15px 10px;
  font-size: 14px;
  line-height: 23px; }

.page-bundle .btn--red {
  border: 2px solid #000;
  box-shadow: none;
  background-color: #000;
  color: #fff;
  letter-spacing: 0;
  padding: 15px 10px;
  font-size: 14px; }

.page-bundle .btn, .page-bundle .theme-product-reviews .spr-summary-actions-newreview, .theme-product-reviews .page-bundle .spr-summary-actions-newreview, .page-bundle .bandita-modal-registration #customer_register_link, .bandita-modal-registration .page-bundle #customer_register_link, .page-bundle .bandita-modal-registration #customer_login_link, .bandita-modal-registration .page-bundle #customer_login_link, .page-bundle .galaxy .collection-shop-now, .galaxy .page-bundle .collection-shop-now {
  border-radius: none !important;
  cursor: pointer;
  font-weight: 600;
  border-radius: 100px;
  font-family: Montserrat,sans-serif;
  display: inline-block;
  border: 2px solid #171a38;
  background-color: #171a38;
  color: #fff; }

.add-info-menu .add-info-toggle, .btn, .theme-product-reviews .spr-summary-actions-newreview, .bandita-modal-registration #customer_register_link, .bandita-modal-registration #customer_login_link, .galaxy .collection-shop-now, .caps, .collection-sidebar .collapsible-content li .icon-tag, .collection-sidebar .collapsible-content li .text-tag, .leak-levels-section .feature-text strong, .nav-wrapper nav .nav-caps, .page-bundle .bundle-content .inner ol, .product-features-section .feature-text strong, .product-single__form .js-qty__num, .product-single__form .quantity-wrapper, .reviews-section .textarea-only > p, .sizing-header-row, .template-cart .cart__header-label, footer #mc_embed_signup button {
  text-transform: uppercase;
  font-family: Montserrat,sans-serif;
  font-size: 1rem;
  letter-spacing: .2rem;
  font-weight: 600; }

.page-bundle button {
  background: 0 0;
  outline: 0;
  transition: all .3s ease-in-out; }

.page-bundle .bundle-content .inner li form {
  float: right;
  margin: 0;
  width: 20px; }

.page-bundle .bundle-builder--remove-from-bundle-form {
  display: inline-block;
  width: auto;
  padding: 0;
  margin-left: 1rem; }

.page-bundle .cols-1-2 {
  -ms-grid-columns: 0.75fr 2.25fr;
  grid-template-columns: 0.75fr 2.25fr; }

.page-bundle .bundle-product {
  flex-direction: column; }

.page-bundle .bundle-product {
  border: none;
  margin-bottom: 2rem; }

.bundle-product {
  display: flex; }

.bundle-text-callout {
  margin-top: 5rem; }

.text-callout.text-callout--dark {
  background: #c93e39;
  color: #ebd8d4;
  text-align: center; }

.padded, .shopify-challenge__container {
  padding: 84px; }

.text-callout p {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  width: 80%;
  line-height: 60px;
  font-size: 55.5px;
  margin: 0 auto;
  font-family: "Playfair Display",serif; }

.page-bundle .bundle-content .inner {
  background: 0 0;
  border: 1px solid #b8c2cc;
  padding: 2rem 3rem 3rem;
  text-align: center; }

.page-bundle .bundle-content .inner .icon-text-item .title, .page-bundle .bundle-content .inner .icon-text-item blockquote {
  font-size: 12px; }

.page-bundle img {
  display: block;
  max-width: 100%; }

.page-bundle .bundle-content .inner .icon-text-item .icon img {
  margin: 0 auto; }

.page-bundle form {
  display: flex;
  justify-content: center;
  padding: 3rem 2.5rem;
  width: 100%;
  flex-direction: column; }

.page-bundle .info-col {
  flex-grow: 1; }

.page-bundle .h3, .page-bundle h3 {
  font-family: "Playfair Display",serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 500; }

.page-bundle .h4, .page-bundle h4 {
  font-family: "Playfair Display",serif;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500; }

.page-bundle .title-row {
  margin-bottom: 2rem; }

.title-row.split-aligner {
  justify-content: space-between;
  flex: 1;
  min-height: 5rem; }

.page-bundle .variant-price {
  position: relative;
  top: 0;
  color: #171a38;
  padding-left: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 23px; }

.page-bundle .btn--red {
  border: 2px solid #333;
  background-color: #333;
  border-radius: 0;
  font-size: 14px;
  color: #fff; }

.page-bundle .button-col button {
  width: 100%;
  font-size: 12px;
  max-width: 300px;
  padding: 10px;
  border: 2px solid #000;
  background-color: #000;
  border-radius: 0; }
  @media screen and (max-width: 768px) {
    .page-bundle .button-col button {
      max-width: 100%; } }

.page-bundle .button-col button:hover {
  transform: translateY(0.3rem); }

.bundle-content .icon {
  height: auto;
  width: auto; }

.styled-select {
  position: relative;
  cursor: pointer;
  max-width: 100%;
  width: 100%;
  border: 1px solid #b8c2cc;
  border-radius: 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(//cdn.shopify.com/s/files/1/0026/0820/1837/files/chevron-down-solid3.png?v=5777363266530319762) no-repeat;
  background-position: center right !important;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  line-height: 23px;
  color: #171a38;
  height: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 600; }

.page-bundle .bundle-content .inner .total-row {
  border-top: 1px solid #370c27;
  padding-top: 1rem;
  margin-top: 2.25rem; }

.page-bundle .bundle-content .inner .summary-amount {
  font-weight: 600;
  font-size: 18px; }

.page-bundle .bundle-content .inner .summary-desc {
  font-weight: 600;
  font-size: 18px; }

.page-bundle .bundle-content .inner .split-aligner:first-child .summary-desc, .page-bundle .bundle-content .inner .split-aligner:first-child .summary-amount {
  color: #E1BFAF; }

.page-bundle .bundle-content .inner .total-row > p {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between; }

button.next_arrow:before {
  content: '\f105 ';
  font-family: FontAwesome;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff; }

button.next_arrow {
  position: relative;
  font-size: 0;
  padding: 20px;
  max-width: 50px;
  margin: 0 auto;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.5); }

button.prev_arrow:before {
  content: '\f104 ';
  font-family: FontAwesome;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff; }

button.prev_arrow {
  position: relative;
  font-size: 0;
  padding: 20px;
  max-width: 50px;
  margin: 0 auto;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.5); }

.bb--section-switch-form-container {
  width: 49%;
  display: inline-block;
  text-align: center; }
  .bb--section-switch-form-container button {
    background-color: #000; }

.page-bundle .bundle-content .inner li {
  margin-bottom: 1rem; }

.page-bundle .bundle-builder--remove-from-bundle-form {
  display: inline-block;
  width: auto;
  padding: 0;
  margin-left: 1rem; }

.page-bundle .bundle-builder--remove-from-bundle-form .text-only {
  font-family: Montserrat,sans-serif;
  font-weight: 600;
  text-transform: lowercase;
  box-shadow: none;
  font-size: 20px;
  min-width: 1px; }

.add-info-menu .add-info-toggle, .text-only {
  cursor: pointer;
  border-radius: 0;
  border: 0;
  background: 0 0;
  padding: 0;
  font-family: inherit;
  color: inherit; }

.page-bundle .bundle-content .inner li div {
  font-size: 14.5px;
  line-height: 20px; }

.bundle-swatches a.swatches-Color {
  position: relative; }

.bundle-swatches a.swatches-Color:after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 32px;
  height: 32px;
  border-radius: 100%; }

.bundle-swatches .opt--heather-grey::after {
  background-color: #8f8989; }

.bundle-swatches .opt--heathergrey::after {
  background-color: #8f8989; }

.bundle-swatches .opt--heather-grey-white::after {
  background-color: #cfd4db; }

.bundle-swatches .opt--heathergreywhite::after {
  background-color: #cfd4db; }

.bundle-swatches .opt--heather-dove::after {
  background-color: #cbc5bc; }

.bundle-swatches .opt--heatherdove::after {
  background-color: #cbc5bc; }

.bundle-swatches .opt--heather-dove-white::after {
  background-color: #f4f4f4; }

.bundle-swatches .opt--heatherdovewhite::after {
  background-color: #f4f4f4; }

.bundle-swatches .opt--dove-white::after {
  background-color: #ebeaef; }

.bundle-swatches .opt--dovewhite::after {
  background-color: #ebeaef; }

.bundle-swatches .opt--charcoal::after {
  background-color: #494852; }

.bundle-swatches .opt--pink::after {
  background-color: #fbc9ca; }

.bundle-swatches .opt--blush::after {
  background-color: #e2c5ca; }

.bundle-swatches .opt--navy::after {
  background-color: #464657; }

.bundle-swatches .opt--nude::after {
  background-color: #e8d3c2; }

.bundle-swatches .opt--almond:after {
  background-color: #e8d3c2; }

.bundle-swatches .opt--pebble::after {
  background-color: #865d5d; }

.bundle-swatches .opt--sand::after {
  background-color: #e8d3c2; }

.bundle-swatches .opt--heather-navy::after {
  background-color: #413e51; }

.bundle-swatches .opt--heathernavy::after {
  background-color: #413e51; }

.bundle-swatches .opt--heather-blue::after {
  background-color: #156bb4; }

.bundle-swatches .opt--heatherblue::after {
  background-color: #156bb4; }

.bundle-swatches .opt--heather-black::after {
  background-color: #373737; }

.bundle-swatches .opt--heatherblack::after {
  background-color: #373737; }

.bundle-swatches .opt--charcoal-black::after {
  background-color: #373737; }

.bundle-swatches .opt--charcoalblack::after {
  background-color: #373737; }

.bundle-swatches .opt--cream::after {
  background-color: #fef9f3; }

.bundle-swatches .opt--natural::after {
  background-color: #f4f4f4; }

.bundle-swatches .opt--brown::after {
  background-color: #432604; }

.bundle-swatches .opt--black-lace-print::after {
  background-color: #9d7a66; }

.bundle-swatches .opt--blackcamo::after {
  background-color: #2b2b2b; }

.bundle-swatches .opt--blacklaceprint::after {
  background-color: #9d7a66; }

.bundle-swatches .opt--lace::after {
  background-color: #1f1f1f; }

.bundle-swatches .opt--darkheathergrey::after {
  background-color: #9e9c9d; }

.bundle-swatches .opt--dark-heather-grey::after {
  background-color: #9e9c9d; }

.bundle-swatches .opt--steel::after {
  background-color: #43464b; }

.bundle-swatches .opt--cocoa::after {
  background-color: #a8533e; }

.bundle-swatches .opt--storm::after {
  background-color: #333438; }

.bundle-swatches .opt--twilight::after {
  background-color: #7e86a6; }

.bundle-swatches .opt--black::after {
  background-color: black; }

.bundle-swatches ul.Size {
  margin-bottom: 5px; }

.bundle-swatches ul li a.swatches-Color {
  position: relative;
  padding: 18px;
  width: 32px;
  height: 32px;
  border: 2px solid transparent;
  border-radius: 100%;
  overflow: hidden;
  text-indent: 40px;
  min-width: 0;
  display: inline-block; }

.bundle-swatches ul li a {
  text-decoration: none;
  cursor: pointer; }

.bundle-swatches ul li a.active {
  border-color: #1f1f1f; }

.bundle-swatches ul li {
  display: inline;
  vertical-align: top; }

.bundle-swatches ul li a.swatches-Size {
  border-color: #1f1f1f;
  padding: 5px 7px;
  margin-right: 0;
  color: #000; }

.bundle-swatches ul li a.swatches-Height {
  border-color: #1f1f1f;
  padding: 5px 7px;
  margin-right: 0;
  color: #000; }

.bundle-swatches ul li a.swatches-Size.active {
  border-color: transparent;
  border: 1px solid;
  background-color: #000;
  color: #fff; }

.bundle-swatches ul li a.swatches-Height.active {
  border-color: transparent;
  border: 1px solid;
  background-color: #000;
  color: #fff; }

@media (min-width: 769px) {
  .cols-4 {
    -ms-grid-columns: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr); }

  .page-bundle .bundle-content {
    top: 10rem; }

  .page-bundle .cols-1-2 {
    grid-column-gap: 3rem; }

  .page-bundle .bundle-content .inner-2 {
    margin-top: 2rem; }

  .page-bundle .cols-4 {
    -ms-grid-columns: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr); }

  .page-bundle .cols-3 {
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr); }

  .page-bundle .cols-2 {
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr); }

  [class*=cols] {
    display: -ms-grid;
    display: grid;
    grid-template-rows: auto;
    grid-column-gap: 2rem;
    grid-row-gap: 1.5rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr; } }
@media (max-width: 1024px) and (min-width: 769px) {
  .page-bundle form.bundle-builder--add-to-bundle-form {
    padding: 10px 5px; }

  .page-bundle .bundle-content .inner {
    padding: 2rem 1rem 3rem; }

  .container.page-bundle {
    padding: 35px 20px;
    margin: 0 auto; } }
@media (max-width: 480px) {
  .container.page-bundle {
    padding: 10px 20px;
    margin: 0 auto; }

  /* .page-bundle .bundle-content .inner {
      background: 0 0;
      border: 1px solid #b8c2cc;
      padding: 15px;
      text-align: center;
  } */ }
.fancybox-content {
  max-width: 1140px !important; }

@media screen and (min-width: 767px) {
  .mobile-header-only {
    display: none; }

  .desktop-header-only {
    display: block; } }
@media screen and (max-width: 767px) {
  .mobile-header-only {
    display: block; }

  .desktop-header-only {
    display: none; } }
.mobile-inline {
  display: block; }

@media (max-width: 768px) {
  .mobile-inline {
    display: inline-block; } }
.about-category-details ul {
  padding-left: 30px; }
  .about-category-details ul li {
    list-style: disc; }
