/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #000; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 80px; }

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg); }
  .hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
  .hamburger--arrowturn.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -80px;
      top: -80px;
      transform: translate3d(80px, 80px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -80px;
      top: -80px;
      transform: translate3d(-80px, 80px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -80px;
      top: 80px;
      transform: translate3d(80px, -80px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -80px;
      top: 80px;
      transform: translate3d(-80px, -80px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; }

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; }

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0; }

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0; }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px; }
  .hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 20px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }
body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:0.8125rem;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:2.75rem;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{-webkit-animation-timing-function:cubic-bezier(.5,0,.14,1);animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:-webkit-grab;cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:-webkit-grabbing;cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:1rem;line-height:1.25rem;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:0.875rem;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@-webkit-keyframes a{to{transform:rotate(1turn)}}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:2.1875rem;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:0.875rem;font-weight:700;line-height:2.5rem;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:0.875rem;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}@charset "UTF-8";
/*=include hamburgers/dist/hamburgers.css */
/*=include flickity/dist/flickity.css*/
/*=include @fancyapps/fancybox/dist/jquery.fancybox.min.css*/
/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.white-background {
  background-color: #ffffff;
}

.subtitle {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5625rem;
  letter-spacing: 0.0625rem;
  font-family: "barlow semi condensed", sans-serif;
  font-style: italic;
  color: #000000;
}

.gold-text {
  color: #ECB032;
}

h1 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
  letter-spacing: 0.0625rem;
  font-family: "barlow semi condensed", sans-serif;
  color: #000000;
  margin-top: 55px;
  text-transform: uppercase;
}

h2 {
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: 0.03125rem;
  font-family: "barlow";
  color: #000000;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2.375rem;
  letter-spacing: 0.06938rem;
  font-family: "barlow semi condensed", sans-serif;
  color: #000000;
}

h4 {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.0625rem;
  font-family: "barlow semi condensed", sans-serif;
  color: #000000;
}

p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.625rem;
  letter-spacing: 0;
  font-family: "barlow";
  color: #000000;
}

* {
  box-sizing: border-box;
  outline: -webkit-focus-ring-color none 0px;
}

body {
  margin: 0px;
}
body.woocommerce {
  padding: 0 !important;
}
body.vp-center .player {
  max-width: 100% !important;
}

.width-container {
  max-width: 1145px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.mian-content-wrqapper {
  flex: 1 0 auto;
}

.no-person {
  top: 62px !important;
}

.scroll-wrapper {
  position: absolute;
  right: 0px;
  top: 104px;
  width: calc(100vw - 239px);
  min-height: 100vh;
  min-height: calc(100vh - 62px);
  overflow-x: hidden;
}
@media (max-width: 1270px) {
  .scroll-wrapper {
    width: 100%;
    position: absolute;
  }
}
@media (max-width: 1060px) {
  .scroll-wrapper {
    top: 104px;
  }
}
@media (max-width: 500px) {
  .scroll-wrapper {
    top: 124px;
  }
}

.mob-scroll-wrapper {
  position: absolute;
  right: 0px;
  top: 157px;
  width: 100vw;
}
@media (max-width: 425px) {
  .mob-scroll-wrapper {
    top: 177px;
  }
}

.dark-wrapper {
  background-color: #F9F8F8;
}

.fake-hr {
  border-bottom: 1px solid black;
}

.img-positoner {
  height: 100%;
  width: 100%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

a {
  text-decoration: none;
  color: inherit;
}

.cart-btn {
  display: inline-block;
  padding: 0px;
  border: 2px solid #ecb032;
  color: #ecb032;
  font-family: "barlow semi condensed", sans-serif;
  size: 14px;
  background-color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.055rem;
  width: 204px;
  height: 34px;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  bottom: 1px;
}

#user_type_prompt {
  top: 0px;
  width: 100%;
  height: 62px;
  background-color: #EAEAEA;
  position: fixed;
  padding: 17.5px 20px;
  z-index: 1000;
}
@media (max-width: 1060px) {
  #user_type_prompt {
    height: 95px;
  }
}
@media (max-width: 425px) {
  #user_type_prompt {
    height: 115px;
  }
}
#user_type_prompt .prompt-text {
  display: inline;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.0125rem;
  font-family: "barlow semi condensed";
  color: #000000;
}
#user_type_prompt .prompt-text strong {
  font-weight: 600;
}
@media (max-width: 425px) {
  #user_type_prompt .prompt-text strong {
    display: block;
  }
}
@media (max-width: 540px) {
  #user_type_prompt .prompt-text {
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  #user_type_prompt .prompt-text {
    font-size: 0.75rem;
  }
}
@media (max-width: 1060px) {
  #user_type_prompt .prompt-link-box {
    display: block;
    position: relative;
    top: 10px;
  }
}
#user_type_prompt .prompt-link {
  display: inline;
  margin-left: 80px;
  cursor: pointer;
}
@media (max-width: 1060px) {
  #user_type_prompt .prompt-link {
    margin-top: 10px;
    margin-left: 0px;
    margin-right: 80px;
  }
}
@media (max-width: 425px) {
  #user_type_prompt .prompt-link {
    margin-right: 60px;
  }
}
@media (max-width: 375px) {
  #user_type_prompt .prompt-link {
    margin-right: 20px;
  }
}
#user_type_prompt .prompt-link .wholesale-lover {
  display: inline-block;
  position: relative;
  top: 2px;
  padding: 5px;
  border: 2px solid #000000;
  border-radius: 50%;
}
#user_type_prompt .prompt-link .selected-customer-type {
  background-color: #000000;
}
#user_type_prompt .prompt-link:hover .wholesale-lover {
  background-color: #000000;
}
#user_type_prompt .prompt-link img {
  height: 12px;
  display: none;
}
#user_type_prompt .prompt-link p {
  display: inline;
  text-decoration: underline;
  -webkit-text-decoration-style: dashed;
  text-decoration-style: dashed;
  -webkit-text-decoration: underline dashed #555555;
  text-decoration: underline dashed #555555;
  text-underline-position: under;
  line-height: 0.3125rem;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.0125rem;
  font-family: "barlow semi condensed";
}
@media (max-width: 540px) {
  #user_type_prompt .prompt-link p {
    font-size: 0.8125rem;
  }
}
@media (max-width: 480px) {
  #user_type_prompt .prompt-link p {
    font-size: 0.75rem;
  }
}
#user_type_prompt .close-holder {
  display: inline;
  position: absolute;
  top: 23.5px;
  right: 20px;
}
#user_type_prompt .close-holder .type-prompt-close {
  width: 16px;
  height: 15px;
}

#navbar {
  position: fixed;
  top: 42px;
  width: 100%;
  height: 62px;
  padding: 20px;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}
@media (max-width: 500px) {
  #navbar {
    top: 62px;
  }
}
#navbar .mobile-logo {
  display: block;
}
@media (min-width: 1271px) {
  #navbar .mobile-logo {
    display: none;
  }
}
#navbar .mobile-logo a img {
  height: 28px;
  margin-top: 4px;
}
#navbar #black-nav-logo {
  display: none;
}
#navbar .bread-crumbs {
  display: none;
}
@media (min-width: 1271px) {
  #navbar .bread-crumbs {
    display: block;
  }
}
#navbar .bread-crumbs .breadcrumb-text {
  margin-left: 219px;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
}
#navbar .bread-crumbs .breadcrumb-text a {
  color: #bcbcbc;
  font-weight: 100;
}
#navbar .bread-crumbs .breadcrumb-text a:hover {
  text-decoration: underline;
}
#navbar .bread-crumbs .breadcrumb-text .bc-text:last-of-type {
  text-decoration: underline;
}
#navbar .bread-crumbs .breadcrumb-text .nostyle {
  color: #bcbcbc;
  text-decoration: none !important;
}
#navbar .nav-links {
  display: flex;
  justify-content: space-between;
}
#navbar .nav-links .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  text-decoration: none;
}
#navbar .nav-links .nav-link .nav__link-text {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.0125rem;
  font-family: "barlow semi condensed";
  color: #ffffff;
  white-space: nowrap;
}
@media (max-width: 450px) {
  #navbar .nav-links .nav-link .nav__link-text {
    display: none;
  }
}
#navbar .nav-links .nav-link img {
  height: 21.5px;
  margin-right: 10px;
}
#navbar .nav-links .cart-holder-dt {
  position: relative;
}
#navbar .nav-links .cart-holder-dt .purchace-quant {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: red;
  color: #ffffff;
  text-align: center;
  font-family: "barlow semi condensed";
  font-weight: 700;
  font-size: 0.875rem;
  position: absolute;
  left: 33px;
  top: 4px;
  padding-top: 4px;
}
#navbar .nav-links .cart-holder-dt h4::after {
  content: none;
}
@media (max-width: 1270px) {
  #navbar .nav-links #nav__search-link {
    display: none;
  }
}
@media (max-width: 768px) {
  #navbar .nav-links #nav__log-in-link {
    display: none;
  }
}
#navbar .nav-links .hamburger {
  padding: 24px 0px;
  height: 62px;
}
#navbar .nav-links .hamburger:hover {
  opacity: 1;
}
#navbar .nav-links .hamburger .hamburger-box {
  width: 23px;
  height: 13px;
}
#navbar .nav-links .hamburger:focus {
  outline: -webkit-focus-ring-color none 0px;
}
#navbar .nav-links .hamburger .hamburger-inner {
  background-color: #ffffff;
  border-radius: 0px;
  height: 2px;
  width: 23px;
}
#navbar .nav-links .hamburger .hamburger-inner::before {
  background-color: #ffffff;
  border-radius: 0px;
  height: 2px;
  width: 23px;
}
#navbar .nav-links .hamburger .hamburger-inner::after {
  background-color: #ffffff;
  border-radius: 0px;
  height: 2px;
  width: 23px;
}
@media (min-width: 1271px) {
  #navbar .nav-links .hamburger {
    display: none;
  }
}
#navbar .nav-links .hamburger-can-hover:hover {
  opacity: 0.7;
}
#navbar .nav-links .hamburger:not(.is-active) .hamburger-inner::before {
  top: -5px;
}
#navbar .nav-links .hamburger:not(.is-active) .hamburger-inner::after {
  top: 5px;
}
#navbar .nav-links .hamburger-invert .hamburger-inner {
  background-color: #000000;
}
#navbar .nav-links .hamburger-invert .hamburger-inner::before {
  background-color: #000000;
}
#navbar .nav-links .hamburger-invert .hamburger-inner::after {
  background-color: #000000;
}
#navbar .nav-links .is-active .hamburger-inner {
  background-color: transparent;
}

.sidebar {
  position: fixed;
  left: 0px;
  top: 104px;
  width: 239px;
  height: calc(100vh - 104px);
  transition: width 0.3s;
  padding: 0px;
  background-color: #ffffff;
  z-index: 1000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #f0f0f0;
}
@media (max-width: 1270px) {
  .sidebar {
    width: 0px;
    left: 0px;
  }
}
@media (max-width: 1060px) {
  .sidebar {
    top: 105px;
    height: calc(100vh - 105px);
  }
}
@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
}
.sidebar .sidebar-logo {
  flex: 0 0 242;
  position: relative;
}
.sidebar .sidebar-logo img {
  width: 157px;
  margin-top: 42px;
  margin-left: 41px;
}
.sidebar .sidebar-logo a {
  text-decoration: none;
}
.sidebar .sidebar-logo a #outer-logo {
  transform: rotate(0deg);
  transition: transform 0.25s;
}
.sidebar .sidebar-logo a #center-logo {
  position: absolute;
  margin-left: 0px;
  left: 58px;
  transform: rotate(0deg);
  transition: transform 0.25s;
}
.sidebar .sidebar-logo a #words-logo {
  margin-top: 0px;
}
.sidebar .sidebar-logo:hover #outer-logo {
  transform: rotate(30deg);
}
.sidebar .sidebar-logo:hover #center-logo {
  transform: rotate(-30deg);
}
.sidebar .sidebar-logo .ie-animated-logo {
  width: 100px;
  height: 100px;
}
.sidebar .nav-link-container {
  flex: 1 1 auto;
  overflow-y: scroll;
  padding-top: 30px;
  padding-bottom: 80px;
  width: 110%;
  margin-top: 0px;
}
.sidebar .nav-link-container .nav-links {
  margin-left: 24px;
  max-height: 450px;
  height: 100%;
}
.sidebar .nav-link-container .nav-links .sidebar__nav-link {
  padding-left: 20px;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.0625rem;
  font-family: "barlow semi condensed";
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 13px;
  color: #000000;
  display: block;
}
.sidebar .nav-link-container .nav-links .sidebar__nav-link:hover {
  padding-left: 20px;
}
.sidebar .nav-link-container .nav-links .sidebar__nav-link:hover:before {
  visibility: visible;
}
.sidebar .nav-link-container .nav-links .sidebar__nav-link:before {
  visibility: hidden;
  content: "";
  background: url("../images/sidebar-arrow.png") center center no-repeat;
  background-size: 6px;
  position: relative;
  top: 1px;
  right: 5px;
  z-index: 1100;
  min-width: 8px;
  max-width: 8px;
  min-height: 8px;
  max-height: 8px;
  padding: 5px;
  z-index: 0;
}
.sidebar .nav-link-container .nav-links .sidebar__nav-link-selected {
  padding-left: 20px;
  font-weight: 500;
}
.sidebar .nav-link-container .nav-links .sidebar__nav-link-selected:before {
  visibility: visible;
  content: "";
  background: url("../images/sidebar-arrow.png") center center no-repeat;
  background-size: 6px;
  position: relative;
  top: 1px;
  right: 5px;
  z-index: 1100;
  min-width: 8px;
  max-width: 8px;
  min-height: 8px;
  max-height: 8px;
  padding: 5px;
  z-index: 0;
}
.sidebar .social-logos {
  flex: 0 0 120px;
  text-align: center;
  position: absolute;
  bottom: 20px;
  margin-left: 71px;
}
.sidebar .social-logos .social {
  width: 28px;
  margin: 10px 8px;
  position: relative;
}
.sidebar .color-fade {
  width: 100%;
  height: 110px;
  position: absolute;
  bottom: 0px;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to top, white 67%, white 68%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  pointer-events: none;
}

.mobile-menu {
  left: 0;
  top: 124px;
  width: 100%;
  height: calc(100vh - 104px);
  opacity: 0;
  transition: opacity 0.3s;
  padding: 5px 10px 5px 25px;
  background-color: #ffffff;
  z-index: 1000;
  overflow: scroll;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none;
    opacity: 0;
  }
}
.mobile-menu .mobile-logo {
  text-align: center;
  display: none;
}
.mobile-menu .mobile-logo img {
  width: 77px;
  margin: 20px 0px;
}
.mobile-menu .mobile__top-nav {
  margin: 15px auto 0px;
}
.mobile-menu .mobile__top-nav .cart-holder-mob {
  position: relative;
}
.mobile-menu .mobile__top-nav .cart-holder-mob .purchace-quant {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: red;
  color: #ffffff;
  text-align: center;
  font-family: "barlow semi condensed";
  font-weight: 700;
  font-size: 0.875rem;
  position: absolute;
  left: 13px;
  top: -15px;
  padding-top: 4px;
}
.mobile-menu .mobile__top-nav .cart-holder-mob h4::after {
  content: none;
}
.mobile-menu .nav-basket {
  text-align: left;
  margin-bottom: 20px;
}
.mobile-menu .nav-basket img {
  height: 20px;
  display: inline;
}
.mobile-menu .nav-basket h4 {
  display: inline;
  padding-left: 10.8px;
}
.mobile-menu .nav-login {
  text-align: left;
  margin-bottom: 20px;
}
.mobile-menu .nav-login img {
  height: 20px;
  display: inline;
}
.mobile-menu .nav-login h4 {
  display: inline;
  padding-left: 14.8px;
}
.mobile-menu .nav-link-container {
  flex: 1 1 auto;
  padding-top: 20px;
  padding-bottom: 100px;
}
.mobile-menu .nav-link-container .nav-links {
  margin-top: 0px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  max-height: 430px;
  overflow-y: scroll;
}
.mobile-menu .nav-link-container .nav-links .sidebar__nav-link {
  padding-left: 34.4px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.0625rem;
  font-family: "barlow semi condensed";
  color: #000000;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 20px;
  display: block;
}
.mobile-menu .nav-link-container .nav-links .sidebar__nav-link-selected {
  padding-left: 24.2px;
  font-weight: 700;
}
.mobile-menu .nav-link-container .nav-links .sidebar__nav-link-selected:before {
  content: "";
  background: url("../images/sidebar-arrow.png") center center no-repeat;
  background-size: 6px;
  position: relative;
  top: 1px;
  right: 5px;
  z-index: 1100;
  min-width: 8px;
  max-width: 8px;
  min-height: 8px;
  max-height: 8px;
  padding: 5px;
  z-index: 0;
}
.mobile-menu .social-logos {
  margin-bottom: 75px;
  width: 100%;
  left: 0px;
  position: relative;
  padding-left: 34.4px;
}
.mobile-menu .social-logos .social {
  width: 33px;
  margin: 10px 10px 10px 0px;
}
.mobile-menu .color-fade {
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 0px;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to top, white 67%, white 68%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  pointer-events: none;
}

.sidebar__slide-in {
  width: 239px;
  padding: 5px;
}

.display-none {
  display: none;
}

.top-offset {
  top: 62px;
}
@media (max-width: 420px) {
  .top-offset {
    top: 157px;
  }
}

.mobile-menu__active {
  opacity: 1;
  top: 0px;
  width: 100vw;
}

.no-top {
  top: 0px !important;
}

.wrapper-wrapper {
  height: 540px;
  position: relative;
  top: 104px;
  width: 100%;
  height: calc(100vh - 104px);
}
@media (max-width: 500px) {
  .wrapper-wrapper {
    top: 124px;
    height: calc(100vh - 124px);
  }
}

.mobile__menu-hr {
  margin-top: 20px;
  margin-left: 34.4px;
  margin-right: 42px;
  border-bottom: 2px solid #f0f0f0;
}

#main-content-wrapper {
  background-color: #F9F8F8;
  position: relative;
  padding-left: 45px;
  padding-bottom: 20px;
}
@media (max-width: 950px) {
  #main-content-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.homepage-top-text {
  margin: 0 0 10px;
}

.homepage-top-text__title {
  margin: 0;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .homepage-top-text__title {
    margin-bottom: 3px;
    font-size: 1.5rem;
    width: 80%;
    letter-spacing: 0.0625rem;
    line-height: 1.5rem;
  }
}

.homepage-top-text__subtitle {
  margin: 0 0 15px;
  color: #000000;
  font-family: barlow semi condensed, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.0625rem;
  line-height: 1.5625rem;
  text-transform: uppercase;
  font-style: italic;
}
@media (max-width: 768px) {
  .homepage-top-text__subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.0625rem;
    line-height: 1.375rem;
  }
}

.homepage-top-text__content p {
  margin-top: 0;
}

.home-page-sign-up {
  height: auto !important;
}

.grid-wholesale [data-visibility-wholesale=false] {
  display: none;
}

.grid-consumer [data-visibility-consumer=false] {
  display: none;
}

.grid .gi-1x1 {
  width: 217px;
  min-width: 172px;
  height: 207px;
  margin-top: 20px;
  overflow: hidden;
}
.grid .gi-2x2 {
  width: 450.5px;
  min-width: 360px;
  height: 434px;
  margin-top: 20px;
  overflow: hidden;
}
.grid .gi-2x1 {
  width: 450.5px;
  min-width: 360px;
  height: 207px;
  margin-top: 20px;
  overflow: hidden;
}
.grid .taller {
  height: 280px;
}
@media (max-width: 1015px) {
  .grid .gi-1x1 {
    height: 247px;
  }
  .grid .gi-2x2 {
    height: 514px;
  }
  .grid .gi-2x1 {
    height: 247px;
  }
}
@media (max-width: 814px) {
  .grid .gi-1x1 {
    height: 207px;
  }
  .grid .gi-2x2 {
    height: 434px;
  }
  .grid .gi-2x1 {
    height: 207px;
  }
}
@media (max-width: 768px) {
  .grid .gi-1x1 {
    width: 100%;
    min-width: 290px;
  }
  .grid .gi-2x2 {
    width: 100%;
    min-width: 290px;
    height: 280px;
  }
  .grid .gi-2x1 {
    width: 100%;
    min-width: 290px;
  }
}
@media (max-width: 450px) {
  .grid .home-page-sign-up {
    height: 330px;
  }
  .grid .home-page-sign-up .sign-up input {
    width: 100%;
  }
  .grid .home-page-sign-up .sign-up .fake-button {
    width: 100%;
  }
}

.shipping-box {
  padding: 19px;
  width: 540px;
  height: 62px;
  margin-top: 20px;
  background-color: #f0f0f0;
}
@media (max-width: 814px) {
  .shipping-box {
    width: 100%;
  }
}
@media (max-width: 503px) {
  .shipping-box {
    height: 83px;
  }
}
.shipping-box img {
  height: 23px;
  float: left;
  margin-right: 10px;
}
.shipping-box .shipping-text {
  position: relative;
  bottom: 5px;
  font-size: 0.84375rem;
  letter-spacing: 0;
  margin: 4px 0px 0px 33px;
}

.vid-container {
  height: 207px;
}

.recomended {
  background-color: #f9f9f9;
  padding: 10px;
}
.recomended--margin-top {
  margin-top: 30px;
}
.recomended .recomend-title-container {
  max-width: 680px;
  margin: 0px auto;
}
.recomended .recomend-title-container h3 {
  font-weight: 400;
  font-family: "barlow";
  font-size: 1.3125rem;
}
.recomended .recomend-container {
  max-width: 680px;
  margin: 0px auto 40px;
}
.recomended .recomend-container #lower-carusel {
  height: 230px;
}
.recomended .carousel-cell {
  margin: 0px 10px;
}
.recomended .product-tile {
  width: 267px;
  height: 230px;
}
.recomended .flickity-prev-next-button {
  background-color: #000000;
  border-radius: 22px;
}
.recomended .flickity-prev-next-button .arrow {
  fill: #ffffff;
}
.recomended .flickity-prev-next-button:disabled {
  opacity: 0;
}
.recomended .previous {
  left: -70px;
}
@media (max-width: 768px) {
  .recomended .previous {
    left: -60px;
  }
}
@media (max-width: 400px) {
  .recomended .previous {
    left: -50px;
  }
}
@media (max-width: 374px) {
  .recomended .previous {
    left: -45px;
  }
}
.recomended .next {
  right: -70px;
}
@media (max-width: 768px) {
  .recomended .next {
    right: -60px;
  }
}
@media (max-width: 400px) {
  .recomended .next {
    right: -50px;
  }
}
@media (max-width: 374px) {
  .recomended .next {
    right: -48px;
  }
}

#page-footer {
  right: 0px;
  bottom: 0px;
  background-color: #f0f0f0;
  padding: 44px 44px 25px 44px;
  width: calc(100vw - 239px);
  flex-shrink: 0;
}
@media (max-width: 1270px) {
  #page-footer {
    width: 100vw;
    padding: 25px 20px 1px;
  }
}
#page-footer .main-foot-content {
  display: flex;
  justify-content: space-between;
  max-width: 1065px;
  margin: 0px auto;
}
#page-footer .main-foot-content .fake-hr {
  display: none;
  border-bottom-color: #DEDEDE;
}
@media (max-width: 825px) {
  #page-footer .main-foot-content .fake-hr {
    display: block;
    margin-bottom: 20px;
  }
}
#page-footer .main-foot-content .foot-column {
  max-width: 300px;
  margin-right: 55px;
}
@media (max-width: 825px) {
  #page-footer .main-foot-content .foot-column {
    border-top: 1px solid #DEDEDE;
    max-width: 100%;
  }
}
#page-footer .main-foot-content .foot-column .foot-title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  line-height: 1.5625rem;
  margin-bottom: 0px;
  text-transform: uppercase;
}
@media (max-width: 825px) {
  #page-footer .main-foot-content .foot-column .foot-title {
    display: inline;
  }
}
#page-footer .main-foot-content .foot-column .foot__detail-toggler {
  display: none;
  height: 14px;
}
@media (max-width: 825px) {
  #page-footer .main-foot-content .foot-column .foot__detail-toggler {
    display: inline;
    height: 14px;
    margin-left: 20px;
    transform: rotate(0deg);
    transition: transform 0.25s;
  }
}
#page-footer .main-foot-content .foot-column .foot__collapse {
  display: block;
}
@media (max-width: 825px) {
  #page-footer .main-foot-content .foot-column .foot__collapse {
    display: none;
  }
}
#page-footer .main-foot-content .foot-column .foot-detail {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5625rem;
  margin-top: 0px;
  margin-bottom: 20px;
  color: #414141;
  letter-spacing: 0;
  font-family: "barlow semi condensed";
  text-decoration: none;
}
#page-footer .main-foot-content .foot-column .foot-detail:visited {
  color: #414141;
  text-decoration: none;
}
#page-footer .main-foot-content .foot-column .detail-para {
  min-height: 110px;
  margin-top: 22px;
  margin-bottom: 14px;
}
#page-footer .main-foot-content .foot-column .gold-foot-link {
  font-weight: 500;
  font-size: 0.9375rem;
  font-family: "barlow semi condensed";
  color: #ECB032;
  display: block;
  text-decoration: none;
  margin: 8px 0px;
}
#page-footer .main-foot-content .foot-column .gold-foot-link span {
  text-decoration: underline;
}
#page-footer .foot-copy {
  max-width: 1065px;
  margin: 0px auto;
}
#page-footer .foot-copy H4 {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5625rem;
  color: #9b9b9b;
  margin-top: 95px;
}
@media (max-width: 825px) {
  #page-footer .foot-copy H4 {
    margin-top: 55px;
  }
}
@media (max-width: 825px) {
  #page-footer {
    height: auto;
  }
  #page-footer .main-foot-content {
    display: block;
  }
  #page-footer .main-foot-content .foot-column {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 0px;
  }
  #page-footer .main-foot-content .foot-column .first-collapse {
    cursor: pointer;
  }
  #page-footer .main-foot-content .foot-column .second-collapse {
    cursor: pointer;
  }
  #page-footer .main-foot-content .top-col {
    border: none;
  }
  #page-footer .foot-copy {
    text-align: center;
  }
}

.grid-item {
  position: relative;
}
.grid-item h1, .grid-item h2, .grid-item h3, .grid-item h4, .grid-item h5, .grid-item h6, .grid-item p, .grid-item a {
  text-transform: uppercase;
}
.grid-item a {
  text-decoration: none !important;
}

.admin-data {
  display: none;
}

.tile-color-white {
  background: white !important;
}
.tile-color-white h3 {
  color: black !important;
}

.tile-color-grey {
  background: #EDEDED !important;
}
.tile-color-grey h3 {
  color: black !important;
}

.tile-color-black {
  background: black !important;
}
.tile-color-black h3 {
  color: white !important;
}

.tile-color-orange {
  background: #ECB032 !important;
}
.tile-color-orange h3 {
  color: white !important;
}

.tile-color-whiteorange {
  background: white !important;
}
.tile-color-whiteorange h3 {
  color: #ECB032 !important;
}

.featured-tile {
  border: 1px solid #f0f0f0;
  height: 434px;
  width: 100%;
  overflow: hidden;
  background-color: white;
  height: 100%;
}
.featured-tile .featured-background-pic {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  height: 434px;
  position: absolute;
  z-index: 0;
  height: 100%;
}
.featured-tile .featured-underscaled-pic {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
  height: 434px;
  position: absolute;
  z-index: 0;
  height: 100%;
}
.featured-tile .tile-corner {
  display: none;
  transform: rotate(45deg);
  background-color: #ECB032;
  width: 40px;
  height: 40px;
  padding-top: 151px;
  text-transform: uppercase;
  position: absolute;
  width: 138px;
  height: 200px;
  right: -91px;
  top: -122px;
  z-index: 900;
}
.featured-tile .tile-corner img {
  transform: rotate(-45deg);
  position: absolute;
  width: 15px;
  height: 15px;
  right: 61px;
}
.featured-tile .tile-corner .star {
  opacity: 1;
  transition: opacity 0.5s ease-out;
}
.featured-tile .tile-corner h3 {
  margin-top: 13px;
  margin-bottom: 0px;
  font-size: 1rem;
  color: white;
  font-weight: 400;
  text-align: center;
}
.featured-tile .tile-corner h3 span {
  width: 100%;
}
.featured-tile .primary-view {
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: left 0.5s ease-out;
  z-index: 100;
  left: 0px;
}
.featured-tile .primary-view .tile-title h2 {
  font-size: 2.25rem;
  letter-spacing: 0.0625rem;
  line-height: 3rem;
  font-family: "barlow semi condensed";
  font-weight: 600;
  margin-top: 122px;
  margin-bottom: 10.5px;
}
@media (max-width: 768px) {
  .featured-tile .primary-view .tile-title h2 {
    font-size: 1.625rem;
    line-height: 2.375rem;
    margin-top: 72px;
    margin-bottom: 6.8px;
  }
}
.featured-tile .primary-view .tile-title .fake-hr {
  width: 70px;
  margin-left: auto;
  margin-right: auto;
}
.featured-tile .primary-view .tile-title h3 {
  font-size: 0.875rem;
  font-family: "barlow semi condensed";
  font-weight: 400;
  color: #919191;
  height: 26px;
  margin-top: 12px;
  margin-bottom: 38px;
  line-height: 1.375rem;
}
.featured-tile .primary-view .tile-circle {
  background-color: black;
  border-radius: 50%;
  color: white;
  height: 68px;
  width: 68px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1px;
}
.featured-tile .primary-view .tile-circle h3 {
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.03125rem;
  font-weight: 700;
  align-self: center;
  margin-top: 14px;
}
.featured-tile .primary-view .tile-circle h3 span {
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .featured-tile .primary-view .tile-title h3 {
    margin-bottom: 28px;
  }
}

.standard-tile {
  border: 1px solid #f0f0f0;
  height: 434px;
  width: 100%;
  overflow: hidden;
  background-color: white;
}
.standard-tile .standard-pic {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.standard-tile .standard-pic .featured-background-pic {
  max-height: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.standard-tile .standard-pic .featured-underscaled-pic {
  max-height: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}
.standard-tile .tile-corner {
  transform: rotate(45deg);
  background-color: #ECB032;
  width: 40px;
  height: 40px;
  padding-top: 151px;
  text-transform: uppercase;
  position: absolute;
  width: 138px;
  height: 200px;
  right: -108px;
  top: -137px;
  z-index: 900;
}
.standard-tile .tile-corner h3 {
  margin-top: 13px;
  margin-bottom: 0px;
  font-size: 0.75rem;
  color: white;
  font-weight: 400;
  text-align: center;
}
.standard-tile .primary-view {
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: left 0.5s ease-out;
  z-index: 100;
  left: 0px;
  padding: 20px;
}
.standard-tile .primary-view .tile-title h2 {
  font-size: 1.25rem;
  letter-spacing: 0.0625rem;
  line-height: 1.5rem;
  font-family: "barlow semi condensed";
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 6.5px;
}
.standard-tile .primary-view .tile-title .fake-hr {
  width: 40px;
  margin-left: auto;
  margin-right: auto;
}
.standard-tile .primary-view .tile-title h3 {
  font-size: 0.6875rem;
  font-family: "barlow semi condensed";
  font-weight: 400;
  color: #919191;
  height: 20px;
  margin-top: 8px;
  margin-bottom: 6px;
  line-height: 1.0625rem;
  overflow: hidden;
}
.standard-tile .primary-view .tile-circle {
  background-color: #EDEDED;
  border-radius: 50%;
  color: white;
  height: 48px;
  width: 48px;
  margin: 0px auto 0px;
  padding-top: 1px;
}
.standard-tile .primary-view .tile-circle h3 {
  color: black;
  font-size: 0.75rem;
  letter-spacing: 0.03125rem;
  font-weight: 700;
  align-self: center;
  margin-top: 4px;
}

.product-tile {
  border: 1px solid #f0f0f0;
  background-color: #ffffff;
  display: flex;
  padding: 25px;
  height: 100%;
}
.product-tile .info {
  width: 50%;
  max-height: 162px;
}
.product-tile .info h2 {
  font-size: 1rem;
  letter-spacing: 0.03125rem;
  font-weight: 600;
  color: #000000;
  margin: 0px;
  line-height: 1.25rem;
  margin-bottom: 6px;
}
.product-tile .info h3 {
  font-size: 0.875rem;
  letter-spacing: 0.03125rem;
  font-weight: 300;
  color: #000000;
  margin: 0px;
  font-style: italic;
  line-height: 0.9375rem;
}
.product-tile .info .tile-circle {
  background-color: #EDEDED;
  border-radius: 50%;
  color: white;
  height: 52px;
  width: 52px;
  padding-top: 1px;
  margin-top: 7px;
  margin-bottom: 20px;
}
.product-tile .info .tile-circle h3 {
  font-size: 0.75rem;
  letter-spacing: 0.03125rem;
  font-weight: 700;
  align-self: center;
  margin-top: 6px;
  width: 100%;
  text-align: center;
  line-height: 2.375rem;
  padding: 0px !important;
}
.product-tile .info .tile-circle h3 .amount {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.product-tile .info .tile-circle h3 .amount span {
  display: inline;
}
.product-tile .product-image {
  width: 50%;
  display: flex;
  align-items: center;
  max-height: 162px;
  overflow: hidden;
}
.product-tile .product-image img {
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain; object-position: 0% 50%;";
  max-height: 100%;
}

.insta-tile {
  border: 1px solid #f0f0f0;
  height: 434px;
  width: 100%;
  overflow: hidden;
  background-color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.insta-tile:hover .social-caption {
  text-decoration: underline;
}
.insta-tile .featured-instagram-pic {
  min-width: 200px;
  min-height: 200px;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  top: 0px;
  height: 100%;
}
.insta-tile .insta-logo {
  position: relative;
  width: 53px;
  height: 53px;
  top: -100px;
}
.insta-tile .social-caption {
  position: relative;
  top: -100px;
  color: white;
  font-weight: 600;
}

.link-tile {
  border: 1px solid #f0f0f0;
  width: 100%;
  overflow: hidden;
  height: 100%;
}
.link-tile .standard-pic {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.link-tile .standard-pic .featured-background-pic {
  max-height: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.link-tile .standard-pic .featured-underscaled-pic {
  max-height: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}
.link-tile .primary-view {
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 100;
  left: 0px;
  padding: 20px;
}
.link-tile .primary-view .tile-title h2 {
  font-size: 1.25rem;
  letter-spacing: 0.0625rem;
  line-height: 1.5rem;
  font-family: "barlow semi condensed";
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 6.5px;
}
.link-tile .primary-view .tile-title .fake-hr {
  width: 40px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid #ffffff;
}
.link-tile .primary-view .tile-title h3 {
  font-size: 0.6875rem;
  font-family: "barlow semi condensed";
  font-weight: 400;
  margin-top: 2px;
  margin-bottom: 0px;
  line-height: 1rem;
}
.link-tile .primary-view .tile-circle {
  border-radius: 50%;
  height: 48px;
  width: 48px;
  margin: 20px auto 40px;
  padding-top: 1px;
}
.link-tile .primary-view .tile-circle h3 {
  font-size: 0.75rem;
  letter-spacing: 0.03125rem;
  font-weight: 700;
  align-self: center;
  margin-top: 4px;
}

.category-tile {
  border: 1px solid #f0f0f0;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  height: 100%;
}
.category-tile .standard-pic {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.category-tile .standard-pic .featured-background-pic {
  max-height: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.category-tile .standard-pic .featured-underscaled-pic {
  max-height: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}
.category-tile #white .tile-title h2 {
  color: #ffffff;
}
.category-tile #white .fake-hr {
  border-bottom: 1px solid #ffffff;
}
.category-tile #white .tile-circle {
  background-color: transparent;
  border: 2px solid #ffffff;
}
.category-tile #white .tile-circle img {
  color: #ffffff;
}
.category-tile .primary-view {
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 100;
  left: 0px;
}
.category-tile .primary-view .tile-title h2 {
  color: #000000;
  font-size: 1.25rem;
  letter-spacing: 0.0625rem;
  line-height: 2.375rem;
  font-family: "barlow semi condensed";
  font-weight: 600;
  margin-top: 38px;
  margin-bottom: 23.5px;
}
.category-tile .primary-view .tile-title .fake-hr {
  width: 40px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid #000000;
}
.category-tile .primary-view .tile-circle {
  background-color: #ffffff;
  border: 2px solid #000000;
  border-radius: 50%;
  color: #000000;
  height: 48px;
  width: 48px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 21px;
  padding-top: 1px;
  margin-top: 30px;
}
.category-tile .primary-view .tile-circle img {
  color: #000000;
  font-size: 0.75rem;
  letter-spacing: 0.03125rem;
  font-weight: 700;
  align-self: center;
  margin-top: 16px;
  margin-left: 0px;
}

.vid-tile {
  border: 1px solid #f0f0f0;
  position: relative;
  height: 100%;
}
.vid-tile .vid-pic {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.vid-tile .vid-pic img {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  max-height: 100%;
  min-width: 100%;
  height: 100%;
}
.vid-tile .play-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.vid-tile .play-link img {
  height: 40px;
}
.vid-tile .play-link h4 {
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  margin-left: 15px;
}

.shop-tile {
  border: 1px solid #f0f0f0;
}
.shop-tile .shop-pic {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.shop-tile .shop-pic img {
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.shop-tile .shop-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 208px;
}
.shop-tile .shop-link img {
  padding-left: 7px;
  width: 32px;
}
.shop-tile .shop-link h4 {
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  margin-left: 15px;
}

.sign-up {
  background-color: #f9f8f8;
  height: 100%;
  padding: 25px 10px 25px 25px;
  border: 0px solid rgba(0, 0, 0, 0);
}
.sign-up .gform_confirmation_message {
  font-family: "barlow semi condensed";
  font-size: 1rem;
  font-weight: 700;
}
.sign-up .validation_message {
  display: none;
}
.sign-up .validation_error {
  font-family: "barlow semi condensed";
  font-size: 1rem;
  font-weight: 600;
  color: red;
}
.sign-up .gform_wrapper h3 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "barlow semi condensed";
}
.sign-up .gform_wrapper .fake-hr {
  width: 40px;
}
.sign-up .gform_wrapper .gform_description {
  text-transform: none;
  font-family: "barlow semi condensed";
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.625rem;
}
.sign-up .gform_wrapper .gform_body input[aria-invalid=true] {
  border: 2px solid red;
}
.sign-up .gform_footer {
  margin-top: 10px;
  display: inline-block;
  width: 32%;
  vertical-align: top;
}
.sign-up .gform_footer input[type=submit] {
  border: 1px solid #000000;
  cursor: pointer;
}
.sign-up .gform_footer input {
  background-color: #000000;
  color: #ffffff;
  width: 100%;
  min-width: 120px;
  height: 33px;
  position: relative;
  text-align: center;
  font-family: "barlow semi condensed";
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}
.sign-up .gform_footer input img {
  height: 15px;
  display: inline-block !important;
  position: relative;
  top: 2px;
  left: 7px;
}
.sign-up .gform_body {
  margin-top: 10px;
  display: inline-block;
  vertical-align: top;
  width: 67%;
}
.sign-up .gform_body ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
.sign-up .gform_body ul li {
  display: inline;
  vertical-align: top;
}
.sign-up .gform_body ul li .ginput_container {
  display: inline;
}
.sign-up .gform_body ul label {
  display: none;
}
.sign-up .gform_body input {
  height: 34px;
  width: 47%;
  margin-right: 6px;
  margin-bottom: 6px;
  padding: 7px 5px 5px 10px;
  border: 1px solid #F0F0F0;
}
@media (max-width: 678px) {
  .sign-up .gform_body input {
    margin-bottom: 10px;
  }
}
.sign-up .gform_body input:-ms-input-placeholder {
  color: #bcbcbc;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 0.875rem;
}
.sign-up .gform_body input::-moz-placeholder {
  color: #bcbcbc;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 0.875rem;
}
.sign-up .gform_body input::-ms-input-placeholder {
  color: #bcbcbc;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 0.875rem;
}
.sign-up .gform_body input::placeholder {
  color: #bcbcbc;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 0.875rem;
}
.sign-up .gform_body input[aria-invalid=true] {
  border: 2px solid red;
}

.short-tile {
  border: 1px solid #f0f0f0;
  height: 90px !important;
}
.short-tile .category-tile .primary-view .tile-title h2 {
  margin-top: 31px;
  margin-bottom: 9.5px;
  line-height: 1.125rem;
}
.short-tile .category-tile .primary-view .tile-circle {
  margin-top: 18px;
  display: none;
}
.short-tile .fake-hr {
  display: none;
}

.brew-guide-tile {
  border: 1px solid #f0f0f0;
  height: 285px;
  background-color: #ffffff;
  content: "";
}
.brew-guide-tile .standard-pic {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.brew-guide-tile .standard-pic .featured-background-pic {
  max-height: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.brew-guide-tile .standard-pic .featured-underscaled-pic {
  max-height: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}
.brew-guide-tile .primary-view {
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: left 0.5s ease-out;
  z-index: 100;
  left: 0px;
}
.brew-guide-tile .primary-view .tile-title h2 {
  font-size: 1.25rem;
  letter-spacing: 0.0625rem;
  line-height: 2.375rem;
  font-family: "barlow semi condensed";
  font-weight: 600;
  margin-top: 60px;
  margin-bottom: 4px;
  color: white;
  line-height: 1.75rem;
}
.brew-guide-tile .primary-view .tile-title .fake-hr {
  width: 40px;
  margin-left: auto;
  border-bottom: 1px solid #fff;
  margin-right: auto;
}
.brew-guide-tile .primary-view .tile-title h3 {
  font-size: 0.6875rem;
  font-family: "barlow semi condensed";
  font-weight: 400;
  color: #fff;
  height: 26px;
  margin-top: 2px;
  margin-bottom: 8px;
  letter-spacing: 0.0625rem;
  line-height: 1.75rem;
}
@media (max-width: 768px) {
  .brew-guide-tile .primary-view .tile-title h3 {
    height: 16px;
  }
}
.brew-guide-tile .primary-view .machine-pic {
  height: 115px;
}
@media (max-width: 768px) {
  .brew-guide-tile .primary-view .machine-pic {
    height: 100px;
  }
}
.brew-guide-tile .primary-view .tile-circle {
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  height: 41px;
  width: 41px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 21px;
  padding-top: 1px;
  margin-top: 30px;
}
.brew-guide-tile .primary-view .tile-circle img {
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.03125rem;
  font-weight: 700;
  align-self: center;
  margin-top: 13px;
  margin-left: 0px;
}

.feature__can-hover:hover .hover-view {
  left: 0px;
}
.feature__can-hover:hover .primary-view {
  left: -100%;
}
.feature__can-hover:hover .star {
  opacity: 0;
}
.feature__can-hover .hover-view {
  height: 100%;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  bottom: 434px;
  left: 100%;
  transition: left 0.5s ease-out;
  z-index: 100;
}
.feature__can-hover .hover-view .tile-title h2 {
  font-size: 2.25rem;
  letter-spacing: 0.0625rem;
  line-height: 3rem;
  font-family: "barlow semi condensed";
  font-weight: 600;
  margin-top: 54px;
  margin-bottom: 10.5px;
  max-width: 455px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .feature__can-hover .hover-view .tile-title h2 {
    font-size: 1.625rem;
    line-height: 2.375rem;
  }
}
.feature__can-hover .hover-view .tile-title .fake-hr {
  width: 70px;
  margin-left: auto;
  margin-right: auto;
}
.feature__can-hover .hover-view .tile-title h3 {
  font-size: 0.875rem;
  font-family: "barlow semi condensed";
  font-weight: 400;
  color: #919191;
  height: 26px;
  margin-top: 2px;
  margin-bottom: 30px;
}
.feature__can-hover .hover-view .quality-circles-box {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.feature__can-hover .hover-view .quality-circles-box .circle-container .quality-circle {
  background-color: rgba(255, 255, 255, 0);
  border: 2px solid #000000;
  border-radius: 50%;
  color: black;
  height: 48px;
  width: 48px;
  margin-left: 28px;
  margin-right: 28px;
  padding-top: 1px;
}
.feature__can-hover .hover-view .quality-circles-box .circle-container .quality-circle h3 {
  margin-top: 2px;
}
.feature__can-hover .hover-view .quality-circles-box .circle-container .taste-type {
  font-size: 0.875rem;
  font-family: "barlow semi condensed";
  font-weight: 400;
  color: #919191;
  margin-top: 0px;
}
.feature__can-hover .hover-view .tile-circle {
  background-color: #ECB032;
  border-radius: 50%;
  color: white;
  height: 68px;
  width: 68px;
  margin-top: 26px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1px;
}
.feature__can-hover .hover-view .tile-circle h3 {
  color: white;
  font-size: 0.875rem;
  letter-spacing: 0.03125rem;
  font-weight: 700;
  align-self: center;
  margin-top: 14px;
}

.feature__corner .tile-corner {
  display: block;
}

.feature__text-black .primary-view .tile-title h2 {
  color: #000000 !important;
}
.feature__text-black .hover-view .tile-title h2 {
  color: #000000;
}
.feature__text-black .hover-view .quality-circles-box .circle-container .quality-circle {
  border: 2px solid #000000;
  color: black;
}
.feature__text-black .hover-view .quality-circles-box .circle-container .taste-type {
  color: #919191;
}
.feature__text-black .hover-view .tile-circle {
  color: white;
}
.feature__text-black .hover-view .tile-circle h3 {
  color: white;
}

.feature__text-white .primary-view .tile-title h2 {
  color: #ffffff !important;
}
.feature__text-white .primary-view .tile-title .fake-hr {
  border-bottom: 1px solid white !important;
}
.feature__text-white .hover-view .tile-title h2 {
  color: #ffffff;
}
.feature__text-white .hover-view .tile-title .fake-hr {
  border-bottom: 1px solid white;
}
.feature__text-white .hover-view .quality-circles-box .circle-container .quality-circle {
  border: 2px solid #ffffff;
}
.feature__text-white .hover-view .quality-circles-box .circle-container .quality-circle h3 {
  color: white;
}
.feature__text-white .hover-view .quality-circles-box .circle-container .taste-type {
  color: #919191;
}
.feature__text-white .hover-view .tile-circle {
  color: white;
}
.feature__text-white .hover-view .tile-circle h3 {
  color: white;
}

.feature__circle-black .primary-view .tile-circle {
  background-color: black;
  color: white;
}
.feature__circle-black .primary-view .tile-circle h3 {
  color: white;
}

.feature__circle-white .primary-view .tile-circle {
  background-color: white;
  color: black;
}
.feature__circle-white .primary-view .tile-circle h3 {
  color: black;
}

.standard__can-hover:hover .hover-view {
  left: 0px;
}
.standard__can-hover:hover .primary-view {
  left: -540px;
}
.standard__can-hover .hover-view {
  height: 100%;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  bottom: 434px;
  left: 540px;
  transition: left 0.5s ease-out;
  z-index: 100;
}
.standard__can-hover .hover-view .tile-title h2 {
  font-size: 1.25rem;
  letter-spacing: 0.0625rem;
  line-height: 1.6875rem;
  font-family: "barlow semi condensed";
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 15.5px;
  max-width: 255px;
  margin-left: auto;
  margin-right: auto;
}
.standard__can-hover .hover-view .tile-title .fake-hr {
  width: 40px;
  margin-left: auto;
  margin-right: auto;
}
.standard__can-hover .hover-view .tile-title h3 {
  font-size: 0.875rem;
  font-family: "barlow semi condensed";
  font-weight: 400;
  color: #919191;
  height: 26px;
  margin-top: 7px;
  margin-bottom: 10px;
}
.standard__can-hover .hover-view .tile-circle {
  background-color: #ECB032;
  border-radius: 50%;
  color: white;
  height: 48px;
  width: 48px;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1px;
}
.standard__can-hover .hover-view .tile-circle h3 {
  color: white;
  font-size: 0.875rem;
  letter-spacing: 0.03125rem;
  font-weight: 700;
  align-self: center;
  margin-top: 5px;
}

.link__gold {
  background-color: #ECB032;
}
.link__gold .primary-view .tile-title h2 {
  color: #ffffff;
}
.link__gold .primary-view .tile-title .fake-hr {
  border-bottom: 1px solid #ffffff;
}
.link__gold .primary-view .tile-title h3 {
  color: #ffffff;
}
.link__gold .primary-view .tile-circle {
  background-color: #ffffff;
  color: #ECB032;
}
.link__gold .primary-view .tile-circle h3 {
  color: #ECB032;
}

.link__black {
  background-color: #000000;
}
.link__black .primary-view .tile-title h2 {
  color: #ffffff;
}
.link__black .primary-view .tile-title .fake-hr {
  border-bottom: 1px solid #ffffff;
}
.link__black .primary-view .tile-title h3 {
  color: #ffffff;
}
.link__black .primary-view .tile-circle {
  background-color: #ffffff;
  color: #000000;
}
.link__black .primary-view .tile-circle h3 {
  color: #000000;
}

.link__white {
  background-color: #ffffff;
}
.link__white .primary-view .tile-title h2 {
  color: #000000;
}
.link__white .primary-view .tile-title .fake-hr {
  border-bottom: 1px solid #000000;
}
.link__white .primary-view .tile-title h3 {
  color: #000000;
}
.link__white .primary-view .tile-circle {
  background-color: #000000;
  color: #ffffff;
}
.link__white .primary-view .tile-circle h3 {
  color: #ffffff;
}

.feature__subtitle_text-white .tile-title h3 {
  color: white !important;
}

.feature__subtitle_text-gray .tile-title h3 {
  color: #717171 !important;
}

.feature__subtitle_text-black .tile-title h3 {
  color: black !important;
}

.has-background img {
  display: block !important;
}

.loading-indicator {
  margin-top: 15px;
  margin-bottom: 20px;
}
.loading-indicator img {
  width: 32px;
  height: 32px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.home-loader {
  position: absolute;
  top: 40vh;
  margin: 0px auto;
  width: 100%;
  height: 60px;
  opacity: 0.2;
}
.home-loader img {
  width: 60px;
  height: 60px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.home-loader .load-words {
  text-align: center;
  font-family: "barlow semi condensed";
  font-size: 1rem;
  background: none;
  border: 0px;
  letter-spacing: 0.0125rem;
}

.hide-indicator {
  display: none;
}

.hide-grid {
  visibility: hidden;
}

.sideways-words {
  position: absolute;
  width: 100%;
  max-width: 1050px;
  right: 0px;
}
.sideways-words h3 {
  transform: rotate(90deg);
  position: absolute;
  right: -20px;
  top: 61px;
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  margin: 0px;
}
@media (max-width: 420px) {
  .sideways-words {
    position: static;
  }
  .sideways-words h3 {
    position: relative;
    float: unset;
    transform: none;
    margin: 0px;
    top: 10px;
    right: 0px;
  }
}

.coffee-top {
  padding-top: 35px;
}

.grid-words-margin {
  margin-right: 40px;
}
@media (max-width: 420px) {
  .grid-words-margin {
    margin-right: 0px;
  }
}

.navigate {
  max-width: 1030px;
  margin: 0px auto;
}

.blog-divide {
  max-width: 1030px;
}

.load-butt {
  background-color: #000000;
  color: #ffffff;
  width: 124px;
  margin: 20px auto;
  cursor: pointer;
}
.load-butt h3 {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.view-link {
  float: right;
  top: -54px;
  position: relative;
}
@media (max-width: 420px) {
  .view-link {
    float: none;
    position: static;
    text-align: center;
  }
}
.view-link h3 {
  color: #9e9e9e;
  display: inline;
}
.view-link img {
  height: 20px;
  position: relative;
  top: 2px;
  margin-left: 5px;
}

.blog-divide {
  border-bottom-color: #F0F0F0;
  border-bottom-width: 2px;
  margin-top: 30px;
}

.under-margin {
  margin-bottom: 30px;
}

.blog-page iframe {
  width: 100%;
}

.grid-3 {
  margin-top: -25px;
}

.reset_variations {
  display: none !important;
}

.woocommerce-variation-price {
  text-align: right;
  font-weight: 600;
  line-height: 1.5625rem;
  font-size: 1.5625rem;
  letter-spacing: 0.0625rem;
  font-family: "barlow semi condensed";
  color: #000000;
  margin-bottom: 12px;
}
.woocommerce-variation-price:empty {
  display: none;
}
.woocommerce-variation-price--hidden {
  display: none;
}

.equipment-page {
  background-color: #ffffff;
  padding: 10px 10px 70px 10px;
  max-width: 680px;
  margin: 0px auto;
}
.equipment-page .prod-name {
  text-transform: uppercase;
}
.equipment-page .prod-name h1 {
  margin-top: 47px;
}
.equipment-page .prod-name h4 {
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.0625rem;
}
.equipment-page .prod-hr {
  border-color: #F0F0F0;
  border-width: 2px;
}
.equipment-page .top-area {
  display: flex;
}
@media (max-width: 768px) {
  .equipment-page .top-area {
    display: block;
  }
}
.equipment-page .top-area .prod-btns .basket {
  margin: 5px;
  margin-top: 20px;
  padding: 10px 4% 12px 4%;
  background-color: #F5F5F5;
}
.equipment-page .top-area .prod-btns .basket h3 {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "barlow semi condensed";
  letter-spacing: 0.055rem;
  line-height: 1.375rem;
  margin: 0px;
}
.equipment-page .top-area .prod-btns .basket h4 {
  margin-top: 0px;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "barlow semi condensed";
}
.equipment-page .top-area .prod-btns .basket .view-basket-btn {
  width: 47%;
  height: 34px;
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "barlow semi condensed";
  padding: 8px;
  text-align: center;
  text-decoration: none;
}
.equipment-page .top-area .prod-btns .basket .checkout-btn {
  width: 46.9%;
  height: 34px;
  display: inline-block;
  background-color: #35c051;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "barlow semi condensed";
  padding: 8px;
  text-align: center;
  margin-left: 4.3%;
  text-decoration: none;
}
.equipment-page .top-area .prod-btns label {
  display: block;
  font-family: "barlow semi condensed";
  color: #BBBBBB;
  font-size: 0.875rem;
  letter-spacing: 0.0625rem;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.equipment-page .top-area .prod-btns #purchase-quantity {
  border: 1.5px solid #BABABA;
  width: 61px;
  height: 34px;
  text-align: center;
  font-size: 0.875rem;
  font-family: "barlow semi condensed";
}
.equipment-page .top-area .prod-btns #purchase-quantity:focus {
  outline: -webkit-focus-ring-color none 0px;
}
.equipment-page .top-area .prod-btns #purchase-quantity:-ms-input-placeholder {
  color: #bcbcbc;
}
.equipment-page .top-area .prod-btns #purchase-quantity::-moz-placeholder {
  color: #bcbcbc;
}
.equipment-page .top-area .prod-btns #purchase-quantity::-ms-input-placeholder {
  color: #bcbcbc;
}
.equipment-page .top-area .prod-btns #purchase-quantity::placeholder {
  color: #bcbcbc;
}
.equipment-page .top-area .prod-btns .product_attribute_select {
  position: relative;
}
.equipment-page .top-area .prod-btns .product_attribute_select::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 16px;
  margin-top: -1px;
  height: 0;
  width: 0;
  border-top: 5px solid #000;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  pointer-events: none;
}
.equipment-page .top-area .prod-btns select {
  width: 100%;
  border: 2px solid #bababa;
  border-radius: 0%;
  height: 34px;
  font-size: 0.875rem;
  font-family: "barlow semi condensed";
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  padding-left: 10px;
  margin-bottom: 10px;
  background-color: #ffffff;
}
.equipment-page .top-area .prod-btns .quantity {
  display: inline-block;
}
.equipment-page .top-area .prod-btns .qty {
  border: 1.5px solid #BABABA;
  width: 61px;
  height: 34px;
  text-align: center;
  font-size: 0.875rem;
  font-family: "barlow semi condensed";
  padding-left: 11px;
  position: relative;
}
.equipment-page .top-area .prod-btns .qty:focus {
  outline: -webkit-focus-ring-color none 0px;
}
.equipment-page .top-area .prod-btns .qty:-ms-input-placeholder {
  color: #bcbcbc;
}
.equipment-page .top-area .prod-btns .qty::-moz-placeholder {
  color: #bcbcbc;
}
.equipment-page .top-area .prod-btns .qty::-ms-input-placeholder {
  color: #bcbcbc;
}
.equipment-page .top-area .prod-btns .qty::placeholder {
  color: #bcbcbc;
}
.equipment-page .top-area .cart-btn {
  display: inline-block;
  padding: 0px;
  border: 2px solid #ECB032;
  color: #ECB032;
  font-family: "barlow semi condensed";
  size: 14px;
  background-color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.055rem;
  width: 234px;
  height: 34px;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  bottom: 1px;
}
.equipment-page .prod-details {
  display: flex;
}
@media (max-width: 768px) {
  .equipment-page .prod-details {
    display: block;
  }
}
.equipment-page .prod-details .prod-info {
  width: 50%;
  padding: 10px 10px 10px 0px;
}
@media (max-width: 768px) {
  .equipment-page .prod-details .prod-info {
    width: 100%;
  }
}
.equipment-page .prod-details .prod-info .desc-title h4 {
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  font-family: barlow;
  margin-bottom: 8px;
}
.equipment-page .prod-details .prod-info .info-details {
  font-family: "barlow semi condensed";
}
.equipment-page .prod-details .prod-info .info-details h2 {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  color: #BBBBBB;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.equipment-page .prod-details .prod-info .info-details p {
  font-family: "barlow semi condensed";
  font-weight: 600;
  font-style: italic;
  margin-top: 0px;
  line-height: 1.25rem;
}
.equipment-page .prod-details .prod-describe {
  width: 50%;
  padding: 10px 0px 10px 10px;
  position: relative;
}
@media (max-width: 768px) {
  .equipment-page .prod-details .prod-describe {
    width: 100%;
    padding: 8px 0px;
  }
}
.equipment-page .prod-details .prod-describe .fake-hr {
  border-bottom-color: #F0F0F0;
}
.equipment-page .prod-details .prod-describe .desc-title {
  cursor: pointer;
}
.equipment-page .prod-details .prod-describe .desc-title h4 {
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  font-family: barlow;
  display: inline-block;
  margin-bottom: 8px;
}
.equipment-page .prod-details .prod-describe .prod-delivery {
  cursor: pointer;
}
.equipment-page .prod-details .prod-describe .prod-delivery h4 {
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  font-family: barlow;
  display: inline-block;
  margin-bottom: 8px;
}
.equipment-page .prod-details .prod-describe .show-hide-btn {
  display: inline-block;
  position: absolute;
  right: 0px;
  padding-top: 33px;
  padding-right: 20px;
}
.equipment-page .prod-details .prod-describe .open {
  width: 15px;
}
.equipment-page .prod-details .prod-describe .close {
  width: 15px;
  position: relative;
  bottom: 5px;
}

.prod-pic {
  position: relative;
  max-width: 50%;
  max-height: 330px;
  min-height: 100%;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 768px) {
  .prod-pic {
    max-width: 100%;
    width: 100%;
    height: 100vw;
    max-height: none;
  }
}
.prod-pic .flickety-box {
  max-height: 100%;
}
@media (max-width: 768px) {
  .prod-pic .flickety-box {
    max-width: 100%;
    width: 100%;
    height: 100vw;
  }
}
.prod-pic .flickety-box .top-carousel {
  max-height: 100%;
  height: 100%;
  min-height: 299px;
}
@media (max-width: 768px) {
  .prod-pic .flickety-box .top-carousel {
    max-width: 100%;
    width: 100%;
    height: 100vw;
  }
}
.prod-pic .flickety-box .top-carousel .flickity-viewport {
  max-height: 330px !important;
  height: 100% !important;
  min-height: 299px;
}
@media (max-width: 768px) {
  .prod-pic .flickety-box .top-carousel .flickity-viewport {
    max-width: 100%;
    width: 100%;
    height: 100vw;
    max-height: 100vw !important;
  }
}
.prod-pic .flickety-box .top-carousel .flickity-viewport .flickity-slider a {
  height: 299px;
}
.prod-pic .flickety-box .top-carousel .flickity-viewport .flickity-slider a img {
  max-height: 330px;
  height: 299px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 768px) {
  .prod-pic .flickety-box .top-carousel .flickity-viewport .flickity-slider a img {
    max-width: 100%;
    width: 100%;
    height: 100vw;
    max-height: 100vw;
  }
}
.prod-pic .will-be-btn {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 34px;
  width: 68px;
}

.coffee-page {
  background-color: #ffffff;
  padding: 0px 10px 0px 10px;
  max-width: 640px;
  margin: 0px auto;
}
.coffee-page h1 {
  line-height: 2.3125rem;
}
@media (max-width: 550px) {
  .coffee-page h1 {
    font-size: 24PX;
  }
}
@media (max-width: 768px) {
  .coffee-page {
    padding: 0px 20px;
  }
}
.coffee-page .prod-name h4 {
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.0625rem;
}
.coffee-page .prod-hr {
  border-color: #F0F0F0;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .coffee-page .prod-hr {
    width: 120px;
  }
}
.coffee-page .fake-hr {
  border-color: #F0F0F0;
}
.coffee-page .top-area {
  display: flex;
}
@media (max-width: 768px) {
  .coffee-page .top-area {
    display: block;
  }
}
.coffee-page .top-area .prod-btns {
  width: 50%;
  padding: 0px 0px 0px 20px;
}
@media (max-width: 768px) {
  .coffee-page .top-area .prod-btns {
    width: 100%;
    padding: 0px 0px 0px 2px;
  }
}
.coffee-page .top-area .prod-btns label {
  display: block;
  font-family: "barlow semi condensed";
  color: #BBBBBB;
  font-size: 0.875rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
}
.coffee-page .top-area .prod-btns label:first-child {
  margin-top: 25px;
}
.coffee-page .top-area .prod-btns select {
  width: 100%;
  border: 2px solid #bababa;
  border-radius: 0%;
  height: 34px;
  font-size: 0.875rem;
  font-family: "barlow semi condensed";
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  padding-left: 10px;
  margin-bottom: 10px;
}
.coffee-page .top-area .prod-btns .product_attribute_select {
  position: relative;
}
.coffee-page .top-area .prod-btns .product_attribute_select:after {
  content: "";
  border: 7px solid rgba(0, 0, 0, 0);
  border-top: 8px solid #000000;
  height: 0px;
  width: 0px;
  position: absolute;
  right: 11px;
  top: 15px;
  display: block;
  pointer-events: none;
}
.coffee-page .top-area .prod-btns .product_attribute_ie:after {
  display: none;
}
.coffee-page .top-area .prod-btns #purchase-quantity {
  border: 1.5px solid #BABABA;
  width: 61px;
  width: 23.5%;
  height: 34px;
  text-align: center;
  font-size: 0.875rem;
  font-family: "barlow semi condensed";
  -webkit-appearance: none;
}
.coffee-page .top-area .prod-btns #purchase-quantity:focus {
  outline: -webkit-focus-ring-color none 0px;
}
.coffee-page .top-area .prod-btns #purchase-quantity:-ms-input-placeholder {
  color: #bcbcbc;
}
.coffee-page .top-area .prod-btns #purchase-quantity::-moz-placeholder {
  color: #bcbcbc;
}
.coffee-page .top-area .prod-btns #purchase-quantity::-ms-input-placeholder {
  color: #bcbcbc;
}
.coffee-page .top-area .prod-btns #purchase-quantity::placeholder {
  color: #bcbcbc;
}
.coffee-page .top-area .prod-btns .cart-btn {
  width: 74.8%;
}
.coffee-page .top-area .prod-btns .woocommerce-error {
  background-color: #e80e0e;
  border: 2px solid #ff4b00;
}
.coffee-page .top-area .prod-btns .woocommerce-error li {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  letter-spacing: 0.02375rem;
}
.coffee-page .top-area .prod-btns .woocommerce-error:before {
  display: none;
}
.coffee-page .top-area .fake-btn {
  display: inline-block;
  border: 2px solid #ECB032;
  color: #ECB032;
  font-family: "barlow semi condensed";
  size: 14px;
  font-weight: 600;
  letter-spacing: 0.055rem;
  width: 75%;
  height: 34px;
  text-align: center;
  padding-top: 5px;
  cursor: pointer;
  position: relative;
  top: 1px;
}
.coffee-page .top-area .basket {
  margin: 5px;
  margin-top: 20px;
  padding: 10px 4% 12px 4%;
  background-color: #F5F5F5;
}
.coffee-page .top-area .basket h3 {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "barlow semi condensed";
  letter-spacing: 0.055rem;
  line-height: 1.375rem;
  margin: 0px;
}
.coffee-page .top-area .basket h4 {
  margin-top: 0px;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "barlow semi condensed";
}
.coffee-page .top-area .basket .view-basket-btn {
  width: 47%;
  height: 34px;
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "barlow semi condensed";
  padding: 8px;
  text-align: center;
  text-decoration: none;
}
.coffee-page .top-area .basket .view-basket-btn:hover {
  text-decoration: underline;
}
.coffee-page .top-area .basket .checkout-btn {
  width: 46.9%;
  height: 34px;
  display: inline-block;
  background-color: #35c051;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "barlow semi condensed";
  padding: 8px;
  text-align: center;
  margin-left: 4.3%;
  text-decoration: none;
}
.coffee-page .top-area .basket .checkout-btn:hover {
  text-decoration: underline;
}
.coffee-page .prod-details {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .coffee-page .prod-details {
    display: block;
  }
}
.coffee-page .prod-details .prod-info {
  padding: 10px 10px 10px 0px;
}
@media (max-width: 768px) {
  .coffee-page .prod-details .prod-info {
    width: 100%;
  }
}
.coffee-page .prod-details .prod-info .desc-title h4 {
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  font-family: barlow;
}
.coffee-page .prod-details .prod-info .info-details {
  font-family: "barlow semi condensed";
  display: flex;
  flex-wrap: wrap;
}
.coffee-page .prod-details .prod-info .info-details .detail {
  width: 50%;
  padding: 0px 10px 0px 0px;
}
.coffee-page .prod-details .prod-info .info-details .detail:nth-of-type(even) {
  padding: 0px 0px 0px 10px;
}
.coffee-page .prod-details .prod-info .info-details h2 {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  color: #BBBBBB;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.coffee-page .prod-details .prod-info .info-details p {
  font-family: "barlow semi condensed";
  font-weight: 600;
  font-style: italic;
  margin-top: 0px;
  line-height: 1.25rem;
  text-transform: uppercase;
}
.coffee-page .prod-details .prod-describe {
  padding: 8px 0px 8px 0px;
  position: relative;
}
@media (max-width: 768px) {
  .coffee-page .prod-details .prod-describe {
    width: 100%;
    padding: 8px 0px 8px 0px;
  }
}
.coffee-page .prod-details .prod-describe .desc-title {
  cursor: pointer;
}
.coffee-page .prod-details .prod-describe .desc-title h4 {
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  font-family: barlow;
  display: inline-block;
}
.coffee-page .prod-details .prod-describe .prod-delivery {
  cursor: pointer;
}
.coffee-page .prod-details .prod-describe .prod-delivery h4 {
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  font-family: barlow;
  display: inline-block;
}
.coffee-page .prod-details .prod-describe .show-hide-btn {
  display: inline-block;
  position: absolute;
  right: 0px;
  padding-top: 33px;
  padding-right: 20px;
}
.coffee-page .prod-details .prod-describe .open {
  width: 15px;
}
.coffee-page .prod-details .prod-describe .close {
  width: 15px;
  position: relative;
  bottom: 5px;
}

.tasting-nav-section {
  display: flex;
  max-width: 970px;
  align-items: center;
  margin: 0px auto;
}
@media (max-width: 768px) {
  .tasting-nav-section {
    padding: 0px 20px;
    max-width: 640px;
  }
}
.tasting-nav-section .taste-nav-arrow-box {
  content: "";
  min-width: 106px;
  width: 106px;
}
@media (max-width: 815px) {
  .tasting-nav-section .taste-nav-arrow-box {
    display: none;
  }
}
.tasting-nav-section .tasting-nav-button {
  background-color: #EDEDED;
  width: 106px;
  height: 40px;
  padding: 1.8px 15px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .tasting-nav-section .tasting-nav-button {
    display: none;
  }
}
.tasting-nav-section .tasting-nav-button .taste-nav-arrow {
  height: 14px;
  position: relative;
  top: 12.1px;
}
.tasting-nav-section .tasting-nav-button h3 {
  height: 12px;
  margin: 0px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.055rem;
}
.tasting-nav-section .tasting-nav-center {
  max-width: 640px;
  width: 640px;
  margin: 0px auto;
  display: flex;
  padding: 10px;
  width: 100%;
}
@media (max-width: 768px) {
  .tasting-nav-section .tasting-nav-center {
    display: block;
    width: 100%;
    padding: 10px 0px;
  }
}
.tasting-nav-section .tasting-nav-center .tasting-nav-notes {
  width: 50%;
}
@media (max-width: 768px) {
  .tasting-nav-section .tasting-nav-center .tasting-nav-notes {
    width: 100%;
    margin-bottom: 30px;
  }
}
.tasting-nav-section .tasting-nav-center .tasting-nav-notes h4 {
  font-size: 0.875rem;
  font-weight: 400;
  color: #BBBBBB;
  letter-spacing: 0;
  margin-bottom: 13px;
  margin-top: 7px;
}
@media (max-width: 768px) {
  .tasting-nav-section .tasting-nav-center .tasting-nav-notes h4 {
    margin-top: 0px;
  }
}
.tasting-nav-section .tasting-nav-center .tasting-nav-notes h3 {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03125rem;
  line-height: 0.875rem;
  margin-top: 5px;
  text-transform: uppercase;
}
.tasting-nav-section .tasting-nav-center .quality-circles-box {
  display: flex;
  justify-content: space-between;
  width: 60%;
  align-items: center;
}
@media (max-width: 768px) {
  .tasting-nav-section .tasting-nav-center .quality-circles-box {
    width: 100%;
  }
}
.tasting-nav-section .tasting-nav-center .quality-circles-box .circle-container {
  display: flex;
}
@media (max-width: 400px) {
  .tasting-nav-section .tasting-nav-center .quality-circles-box .circle-container {
    flex-direction: column;
    align-items: center;
  }
}
.tasting-nav-section .tasting-nav-center .quality-circles-box .circle-container .quality-circle {
  background-color: rgba(255, 255, 255, 0);
  border: 2px solid #000000;
  border-radius: 50%;
  color: black;
  height: 48px;
  width: 48px;
  min-width: 48px;
  padding-top: 1px;
  display: inline-block;
}
.tasting-nav-section .tasting-nav-center .quality-circles-box .circle-container .quality-circle h3 {
  margin: 3px 0px 0px 0px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  width: 100%;
  text-align: center;
}
.tasting-nav-section .tasting-nav-center .quality-circles-box .circle-container .taste-type {
  font-size: 0.875rem;
  font-family: "barlow semi condensed";
  font-weight: 400;
  color: #BBBBBB;
  margin-top: 0px;
  line-height: 0.8125rem;
  text-align: right;
  letter-spacing: 0;
}
.tasting-nav-section .tasting-nav-center .quality-circles-box .circle-container .sweetness {
  width: 61px;
  margin-right: 10px;
}
@media (max-width: 400px) {
  .tasting-nav-section .tasting-nav-center .quality-circles-box .circle-container .sweetness {
    text-align: center;
    margin-right: 0px;
  }
}
.tasting-nav-section .tasting-nav-center .quality-circles-box .circle-container .body {
  width: 45PX;
}
.tasting-nav-section .tasting-nav-center .quality-circles-box .circle-container .acidity {
  width: 45px;
}

.training-page {
  background-color: #ffffff;
  padding: 10px 10px 70px 10px;
  max-width: 640px;
  margin: 0px auto;
}
@media (max-width: 768px) {
  .training-page {
    padding: 10px 20px 70px;
  }
}
.training-page .train-name h1 {
  margin-bottom: 0px;
}
.training-page .train-name h4 {
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.0625rem;
  margin-top: 13px;
}
.training-page .train-hr {
  border-color: #F0F0F0;
}
.training-page .top-area {
  display: flex;
}
@media (max-width: 768px) {
  .training-page .top-area {
    display: block;
  }
}
.training-page .top-area .train-pic {
  position: relative;
  max-width: 50%;
}
@media (max-width: 768px) {
  .training-page .top-area .train-pic {
    max-width: 100%;
  }
}
.training-page .top-area .train-pic .will-be-btn {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 34px;
  width: 68px;
}
.training-page .top-area .train-btns h2 {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  color: #BBBBBB;
  letter-spacing: 0.0625rem;
}
.training-page .top-area .train-btns p {
  font-family: "barlow semi condensed";
  font-weight: 600;
  font-style: italic;
  margin: 0px;
  line-height: 1.25rem;
  letter-spacing: 0.02938rem;
}
.training-page .top-area .train-btns p i {
  font-weight: 400;
  font-size: 0.875rem;
  font-style: italic;
  color: #484848;
  letter-spacing: 0.02375rem;
  line-height: 1.375rem;
}
.training-page .top-area .train-btns em {
  font-size: 0.875rem;
  font-style: italic;
  display: inline-block;
  color: #484848;
  font-family: "barlow semi condensed";
  letter-spacing: 0.02375rem;
  line-height: 1.375rem;
  font-weight: 400;
  margin-top: 25px;
}
.training-page .top-area .fake-btn {
  display: inline-block;
  border: 2px solid #ECB032;
  color: #ECB032;
  font-family: "barlow semi condensed";
  size: 14px;
  font-weight: 600;
  letter-spacing: 0.055rem;
  width: 234px;
  height: 34px;
  text-align: center;
  padding-top: 5px;
  cursor: pointer;
  position: relative;
}
.training-page .training-dates h4 {
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  font-family: barlow;
  margin-bottom: 8px;
}
.training-page .training-dates .bookly-section {
  margin-top: 30px;
}
.training-page .training-dates .dates .course {
  border-bottom: 1px solid #f0f0f0;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-content: center;
}
.training-page .training-dates .dates .course .date {
  width: 20%;
}
.training-page .training-dates .dates .course .date h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  font-style: italic;
  margin: 0px;
}
.training-page .training-dates .dates .course .location {
  width: 45%;
}
.training-page .training-dates .dates .course .location h3 {
  font-size: 0.9375rem;
  font-weight: 300;
  font-family: barlow;
  margin: 0px;
}
.training-page .training-dates .dates .course .button {
  background-color: #ECB032;
  height: 34px;
  max-width: 155px;
  min-width: 155px;
  text-align: center;
}
.training-page .training-dates h2 {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  color: #BBBBBB;
  letter-spacing: 0.0625rem;
}
.training-page .training-dates p {
  font-family: "barlow semi condensed";
  font-weight: 600;
  font-style: italic;
}
.training-page .train-details {
  display: flex;
}
@media (max-width: 768px) {
  .training-page .train-details {
    display: block;
  }
}
.training-page .train-details .train-info {
  width: 50%;
  padding: 10px 20px 10px 0px;
}
@media (max-width: 768px) {
  .training-page .train-details .train-info {
    width: 100%;
    padding: 10px 0px;
  }
}
.training-page .train-details .train-info .desc-title h4 {
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  font-family: barlow;
  margin: 40px 0px 10px;
}
.training-page .train-details .train-info .info-details {
  font-family: "barlow semi condensed";
}
.training-page .train-details .train-info .info-details h2 {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  color: #BBBBBB;
  letter-spacing: 0.0625rem;
  margin: 10px 0px 0px;
}
.training-page .train-details .train-info .info-details p {
  font-family: "barlow semi condensed";
  font-weight: 600;
  font-style: italic;
  margin: 0px 0px 25px;
}
.training-page .train-details .train-describe {
  width: 50%;
  padding: 10px 0px 10px 20px;
  position: relative;
}
@media (max-width: 768px) {
  .training-page .train-details .train-describe {
    width: 100%;
    padding: 10px 0px;
  }
}
.training-page .train-details .train-describe .desc-title {
  position: relative;
}
.training-page .train-details .train-describe .desc-title h4 {
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  font-family: barlow;
  display: inline-block;
  margin: 40px 0px 10px;
}
.training-page .train-details .train-describe .train-delivery {
  position: relative;
}
.training-page .train-details .train-describe .train-delivery h4 {
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  font-family: barlow;
  display: inline-block;
  margin: 40px 0px 10px;
}
.training-page .train-details .train-describe .delivery-details li {
  font-size: 0.9375rem;
  font-weight: 300;
  font-family: barlow;
  line-height: 1.625rem;
}
.training-page .train-details .train-describe .show-hide-btn {
  display: inline;
  position: absolute;
  right: 0px;
  padding-top: 47px;
}
.training-page .train-details .train-describe .open {
  width: 15px;
}
.training-page .train-details .train-describe .close {
  width: 15px;
  position: relative;
  bottom: 5px;
}

.empty-button {
  position: relative;
  border: 2px solid #ECB032;
  color: #ECB032 !important;
  background: none;
  padding: 6.5px 23px 6.5px;
  font-weight: 600;
  font-size: 0.875rem;
  font-family: "barlow semi condensed";
  cursor: pointer;
  transition: color 0.5s;
  z-index: 5;
  text-decoration: none;
  min-width: 110px;
  text-align: center;
  height: 34px;
  width: 155px;
}
.empty-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #ECB032;
  z-index: -1;
  height: 100%;
  width: 0%;
  transition: width 0.5s;
}

.can-hover-gold:hover {
  color: white !important;
}
.can-hover-gold:hover:before {
  width: 100%;
  transition: width 0.5s;
}

.book-now-button {
  display: block;
  border: 2px solid #ECB032;
  font-family: "barlow semi condensed";
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.055rem;
  line-height: 1rem;
  font-weight: 600;
  color: #ECB032;
  padding: 8px 30px;
}
.book-now-button:hover {
  background: #ECB032;
  color: white;
}

.carousel-cell {
  overflow: hidden;
}
.carousel-cell .standard-tile {
  width: 238px;
  height: 207px;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 30%;
  top: 0%;
  width: 40%;
  height: 100%;
}

.flickity-page-dots {
  display: none;
}

.product-gallery {
  width: 50%;
  margin: 20px 20px 0px 0px;
}
@media (max-width: 768px) {
  .product-gallery {
    width: 100%;
  }
}
.product-gallery .is-hiding-nav-ui .flickity-prev-next-button {
  display: none;
}
.product-gallery .carousel-cell {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  height: 100%;
}
.product-gallery .carousel-cell .product-image {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  min-width: 100%;
}
.product-gallery .flickity-prev-next-button {
  height: 34px;
  width: 34px;
  border-radius: 0%;
  fill: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: auto;
  bottom: 0px;
  transform: none;
}
.product-gallery .flickity-prev-next-button .arrow {
  fill: #ffffff;
}
.product-gallery .previous {
  left: 0px;
}
.product-gallery .previous:disabled {
  display: none;
}
.product-gallery .next {
  left: 34px;
}
.product-gallery .next:disabled {
  display: none;
}
.product-gallery .flickity-page-dots {
  display: none;
}

.banner {
  position: fixed;
  top: 0;
  z-index: 5000;
  height: auto;
  min-height: 42px;
  width: 100%;
  background-color: #ECB032;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px 0 40px;
}

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

.banner__image {
  height: 28px;
  width: 28px;
  margin: 0 10px;
  border-radius: 50%;
}

.banner__text-wrapper {
  height: 20px;
  display: flex;
  align-items: center;
  padding-top: 2px;
}

.banner__text {
  font-family: "barlow semi condensed";
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  margin-right: 10px;
}

.banner__link {
  font-family: "barlow semi condensed";
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  border-bottom: 1px #ffffff dotted;
}

.banner__close-button-image {
  height: 17px;
  width: 17px;
}

@media (max-width: 1271px) {
  .banner {
    padding: 0 20px 0 8px;
  }
}
@media (max-width: 600px) {
  .banner {
    padding: 0 8px;
  }

  .banner__image {
    margin: 0 6px;
  }

  .banner__text {
    font-size: 0.9375rem;
    margin-right: 6px;
  }

  .banner__link {
    font-size: 0.9375rem;
  }
}
@media (max-width: 500px) {
  .banner {
    min-height: 62px;
    padding: 0 15px;
  }

  .banner__image {
    width: 30px;
    height: 30px;
    margin: 0 5px 0 3px;
  }

  .banner__text-wrapper {
    height: auto;
    padding: 3px 0 5px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .banner__text {
    line-height: 1.375rem;
    padding-bottom: 3px;
  }

  .banner__text, .banner__link {
    margin: 0 0 1px 3px;
  }
}
.blog-page {
  background-color: #ffffff;
  padding: 10px;
  max-width: 870px;
  margin: 0px auto;
}
@media (max-width: 768px) {
  .blog-page {
    padding: 0px;
  }
}
.blog-page .blog-name {
  width: 75%;
}
@media (max-width: 768px) {
  .blog-page .blog-name {
    padding: 20px 20px 0px 20px;
    width: 100%;
  }
}
.blog-page .blog-name h1 {
  line-height: 2.5rem;
}
.blog-page .blog-name h4 {
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.0625rem;
}
.blog-page .blog-hr {
  border-color: #F0F0F0;
  width: 120px;
  margin-bottom: 35px;
}
.blog-page .side-hr {
  width: 40px;
}
.blog-page .blog-post-content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .blog-page .blog-post-content {
    display: block;
  }
}
.blog-page .blog-post-content .main-content {
  width: 100%;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .blog-page .blog-post-content .main-content {
    width: 100%;
    padding: 0px 20px 0px 20px;
  }
}
.blog-page .blog-post-content .main-content .hero-pic {
  width: 100%;
}
.blog-page .blog-post-content .main-content .hero-pic .blog-hero-image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.blog-page .blog-post-content .main-content .blog-words iframe {
  width: 100%;
}
.blog-page .blog-post-content .main-content .blog-words h3 {
  line-height: 1.5rem;
}
.blog-page .blog-post-content .main-content .blog-words p {
  margin: 15px 0px 20px;
  overflow: hidden;
}
.blog-page .blog-post-content .main-content .blog-words p a {
  text-decoration: underline;
  color: #ECB032;
}
.blog-page .blog-post-content .main-content .blog-words p img {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  max-width: 100%;
  height: 100%;
  width: 100%;
  margin-bottom: 15px;
}
.blog-page .blog-post-content .main-content .blog-words ul {
  padding-left: 15px;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.625rem;
  letter-spacing: 0;
  font-family: "barlow";
  color: #000;
}
.blog-page .blog-post-content .main-content .blog-words ul a {
  color: #ECB032;
  text-decoration: underline;
}
.blog-page .blog-post-content .main-content .blog-words ol {
  padding-left: 15px;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.625rem;
  letter-spacing: 0;
  font-family: "barlow";
  color: #000;
}
.blog-page .blog-post-content .main-content .blog-words ol a {
  color: #ECB032;
  text-decoration: underline;
}
.blog-page .blog-post-content .main-content .blog-words table {
  border: 0px solid rgba(0, 0, 0, 0);
}
.blog-page .blog-post-content .main-content .blog-words table tbody tr {
  border-bottom: 0px solid rgba(0, 0, 0, 0.5);
  min-height: 40px;
}
.blog-page .blog-post-content .right-side-bar {
  display: none;
  width: 35%;
  margin-top: 14px;
}
@media (max-width: 768px) {
  .blog-page .blog-post-content .right-side-bar {
    width: 100%;
    padding: 20px 20px 0px 20px;
    margin-top: 0px;
  }
}
.blog-page .blog-post-content .right-side-bar .sign-up-box {
  margin-bottom: 60px;
}
.blog-page .blog-post-content .right-side-bar .sign-up-box h3 {
  margin: 0px;
  margin-top: -10px;
}
.blog-page .blog-post-content .right-side-bar .sign-up-box p {
  font-size: 0.875rem;
}
.blog-page .blog-post-content .right-side-bar .sign-up-box input {
  margin: 5px 0px;
}
.blog-page .blog-post-content .right-side-bar .sign-up-box input[type=text], .blog-page .blog-post-content .right-side-bar .sign-up-box input[type=email] {
  height: 34px;
  width: 100%;
  padding: 10px 7px 7px 7px;
  font-size: 0.875rem;
  border: 1px solid #f0f0f0;
}
.blog-page .blog-post-content .right-side-bar .sign-up-box input[type=text]:-ms-input-placeholder, .blog-page .blog-post-content .right-side-bar .sign-up-box input[type=email]:-ms-input-placeholder {
  font-size: 0.875rem;
  color: #bcbcbc;
}
.blog-page .blog-post-content .right-side-bar .sign-up-box input[type=text]::-moz-placeholder, .blog-page .blog-post-content .right-side-bar .sign-up-box input[type=email]::-moz-placeholder {
  font-size: 0.875rem;
  color: #bcbcbc;
}
.blog-page .blog-post-content .right-side-bar .sign-up-box input[type=text]::-ms-input-placeholder, .blog-page .blog-post-content .right-side-bar .sign-up-box input[type=email]::-ms-input-placeholder {
  font-size: 0.875rem;
  color: #bcbcbc;
}
.blog-page .blog-post-content .right-side-bar .sign-up-box input[type=text]::placeholder, .blog-page .blog-post-content .right-side-bar .sign-up-box input[type=email]::placeholder {
  font-size: 0.875rem;
  color: #bcbcbc;
}
.blog-page .blog-post-content .right-side-bar .sign-up-box input[type=text]:focus, .blog-page .blog-post-content .right-side-bar .sign-up-box input[type=email]:focus {
  outline: none;
}
.blog-page .blog-post-content .right-side-bar .sign-up-box input[type=button] {
  width: 50%;
  height: 34px;
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.055rem;
}
.blog-page .blog-post-content .right-side-bar .insta-zone h3 {
  margin: 0px;
  line-height: 1.375rem;
}
.blog-page .blog-post-content .right-side-bar .insta-zone .fake-hr {
  margin-top: 15px;
  margin-bottom: 30px;
}
.blog-page .blog-post-content .right-side-bar .insta-zone .wpmi-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style-type: none;
  padding: 0;
}
.blog-page .blog-post-content .right-side-bar .insta-zone .wpmi-list .wpmi-item {
  width: 49%;
}
.blog-page .blog-post-content .right-side-bar .insta-zone .wpmi-list .wpmi-item img {
  height: 105px;
  width: 105px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .blog-page .blog-post-content .right-side-bar .insta-zone .wpmi-list .wpmi-item img {
    width: 100%;
    height: 45vw;
  }
}
.blog-page .blog-post-content .right-side-bar .insta-zone .insta-pics {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog-page .blog-post-content .right-side-bar .insta-zone .insta-pics .insta-pic {
  width: 49%;
}
.blog-page .blog-post-content .right-side-bar .insta-zone .insta-pics .insta-pic .insta-image {
  height: 105px;
  width: 105px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .blog-page .blog-post-content .right-side-bar .insta-zone .insta-pics .insta-pic .insta-image {
    width: 100%;
    height: 45vw;
  }
}
.blog-page .blog-post-content .not-flickity {
  display: none;
  padding: 1px 0px;
  background-color: #f9f9f9;
}
.blog-page .blog-post-content .not-flickity h3 {
  padding: 20px 20px 0px 20px;
}
@media (max-width: 768px) {
  .blog-page .blog-post-content .not-flickity {
    display: block;
  }
}
.blog-page .blog-post-content .not-flickity .product-tile {
  margin: 20px;
}

@media (max-width: 768px) {
  .recomended .flickety-box {
    margin-left: auto;
    margin-right: auto;
  }
}

.date-cat {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  color: #717171;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  margin-bottom: 60px;
  line-height: 1.5625rem;
}
.date-cat a {
  background-color: #000000;
  color: #ffffff;
  padding: 2px 5px;
  text-transform: none;
}
.date-cat a:first-child {
  margin-left: 10px;
}

.notices {
  margin-bottom: 15px;
}
.notices .basket {
  font-family: "barlow semi condensed";
  font-weight: 600;
}
.notices .basket a {
  color: #ECB032;
  text-decoration: underline;
}

.space-maker {
  width: 100%;
  height: 40px;
}

.angelleye_smart_button_top,
.angelleye_smart_button_bottom {
  max-width: none !important;
}

.basket {
  font-family: "barlow semi condensed";
  font-weight: 600;
  margin-bottom: 15px;
}
.basket a {
  color: #ECB032;
  text-decoration: underline;
}

button[name=update_cart] {
  display: none !important;
}

#calc_shipping_state {
  display: none;
}

.empty-cart-notice .basket {
  display: none;
}

.recur_totals {
  border-top: 1px solid #f0f0f0;
  margin-top: 0px !important;
  padding-top: 20px;
}

.cart {
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .cart {
    padding: 0px 0px;
  }
}
.cart .cart__top {
  max-width: 680px;
  margin: 0px auto;
}
.cart .cart__top .cart__name {
  margin-top: 50px;
}
.cart .cart__top .cart__hr {
  border-color: #f0f0f0;
}
.cart .cart__top .cart__table-headding {
  display: flex;
  margin: 10px 0px;
  align-content: center;
}
.cart .cart__top .cart__table-headding .title {
  font-family: "barlow semi condensed";
  color: #717171;
  font-weight: 600;
  font-size: 0.9375rem;
}
.cart .cart__top .cart__table-headding .position-text {
  width: 12.5%;
  text-align: center;
}
.cart .cart__top .cart__table-headding .cart__table-head-product {
  width: 50%;
  display: inline-block;
}
.cart .cart__top .cart__table-headding .cart__table-head-price {
  width: 12.5%;
  display: inline-block;
  font-family: "barlow semi condensed";
  text-align: left;
}
.cart .cart__top .cart__table-headding .cart__table-head-quantity {
  width: 12.5%;
  display: inline-block;
}
.cart .cart__top .cart__table-headding .cart__table-head-remove {
  width: 12.5%;
  display: inline-block;
}
.cart .cart__top .cart__table-headding .cart__table-head-total {
  width: 12.5%;
  display: inline-block;
  text-align: right;
}
.cart .cart__top .cart__table-row {
  display: flex;
  padding: 0px 0px 12px;
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}
.cart .cart__top .cart__table-row .variation {
  margin-top: 5px !important;
}
.cart .cart__top .cart__table-row .variation p {
  margin: 0 !important;
}
.cart .cart__top .cart__table-row .position-text-mob {
  text-align: center;
  font-family: "barlow semi condensed";
  color: #717171;
  font-weight: 600;
  font-size: 0.9375rem;
}
@media (min-width: 769px) {
  .cart .cart__top .cart__table-row .position-text-mob {
    display: none;
  }
}
.cart .cart__top .cart__table-row .cart__table-row-product {
  width: 50%;
  display: inline-block;
}
@media (max-width: 768px) {
  .cart .cart__top .cart__table-row .cart__table-row-product {
    width: 100%;
  }
}
.cart .cart__top .cart__table-row .cart__table-row-product .cart__table-head-product {
  font-family: "barlow semi condensed";
  margin-bottom: -20px;
  font-family: "barlow semi condensed";
  color: #717171;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: 13px;
}
.cart .cart__top .cart__table-row .cart__table-row-product p {
  margin: 0;
}
.cart .cart__top .cart__table-row .cart__table-row-product h3 {
  margin-top: 30px;
  margin-bottom: 0px;
  font-size: 0.875rem;
  text-transform: uppercase;
  line-height: 1.125rem;
}
.cart .cart__top .cart__table-row .cart__table-row-product h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #717171;
  letter-spacing: 0.02938rem;
  margin-top: 0px;
  margin-bottom: 16px;
}
.cart .cart__top .cart__table-row .cart__table-row-product h4 dl {
  margin-top: 0px;
}
.cart .cart__top .cart__table-row .cart__table-row-product h4 dl dt {
  display: none;
}
.cart .cart__top .cart__table-row .cart__table-row-product h4 dl dd {
  margin-left: 0px;
}
.cart .cart__top .cart__table-row .cart__table-row-product h4 dl dd p {
  margin: 2px;
}
.cart .cart__top .cart__table-row .cart__table-row-price {
  width: 25%;
  display: inline-block;
  text-align: left;
}
.cart .cart__top .cart__table-row .cart__table-row-price .cart__table-head-price {
  text-align: left;
  font-family: "barlow semi condensed";
  margin-bottom: 10px;
}
.cart .cart__top .cart__table-row .cart__table-row-price .amount {
  margin-top: 10px;
  display: inline-block;
}
.cart .cart__top .cart__table-row .cart__table-row-quantity {
  width: 20%;
  display: inline-block;
  text-align: center;
}
.cart .cart__top .cart__table-row .cart__table-row-quantity input {
  width: 61px;
  height: 34px;
  border: 1.5px solid #bababa;
  padding-left: 14px;
  text-align: center;
}
.cart .cart__top .cart__table-row .cart__table-row-quantity .cart__table-head-quantity {
  font-family: "barlow semi condensed";
  margin-bottom: 10px;
}
.cart .cart__top .cart__table-row .cart__table-row-quantity .quantity input {
  border: 1.5px solid #bababa;
  width: 61px;
  height: 34px;
  text-align: center;
  font-size: 0.875rem;
  font-family: "barlow semi condensed";
  padding-left: 14px;
}
.cart .cart__top .cart__table-row .cart__table-row-quantity .quantity input:focus {
  outline: -webkit-focus-ring-color none 0px;
}
.cart .cart__top .cart__table-row .cart__table-row-quantity .quantity input:-ms-input-placeholder {
  color: #bcbcbc;
}
.cart .cart__top .cart__table-row .cart__table-row-quantity .quantity input::-moz-placeholder {
  color: #bcbcbc;
}
.cart .cart__top .cart__table-row .cart__table-row-quantity .quantity input::-ms-input-placeholder {
  color: #bcbcbc;
}
.cart .cart__top .cart__table-row .cart__table-row-quantity .quantity input::placeholder {
  color: #bcbcbc;
}
@media (max-width: 768px) {
  .cart .cart__top .cart__table-row .cart__table-row-quantity .quantity input {
    width: 40px;
  }
}
.cart .cart__top .cart__table-row .cart__table-row-remove {
  width: 25%;
  display: inline-block;
  text-align: center;
}
.cart .cart__top .cart__table-row .cart__table-row-remove .cart__table-head-remove {
  font-family: "barlow semi condensed";
  margin-bottom: 10px;
}
.cart .cart__top .cart__table-row .cart__table-row-remove .remove-btn {
  width: 32px;
  height: 32px;
  border: 2px solid #f0f0f0;
  border-radius: 50%;
  display: block;
  margin: 0px auto;
}
.cart .cart__top .cart__table-row .cart__table-row-remove .remove-btn .remove-img {
  width: 14px;
  height: 14px;
  position: relative;
  top: 7px;
}
.cart .cart__top .cart__table-row .cart__table-row-total {
  width: 25%;
  display: inline-block;
  text-align: right;
}
.cart .cart__top .cart__table-row .cart__table-row-total .cart__table-head-total {
  text-align: right;
  font-family: "barlow semi condensed";
  margin-bottom: 10px;
}
.cart .cart__top .cart__table-row .cart__table-row-total .amount {
  margin-top: 10px;
  display: inline-block;
}
.cart .cart__top .cart__table-row .position-text {
  width: 24%;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  letter-spacing: 0.055rem;
  line-height: 1rem;
  font-weight: 600;
  margin-top: 21px;
}
@media (max-width: 768px) {
  .cart .cart__top .cart__table-row .position-text {
    width: 24%;
    height: 70px;
  }
}
@media (max-width: 768px) {
  .cart .cart__top .mob-no-flex {
    display: block;
  }
}
.cart .cart__top .promo-link-container {
  text-align: right;
  padding: 20px 0px;
}
.cart .cart__top .promo-link-container .promo-link-anchor {
  cursor: pointer;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: underline;
  -webkit-text-decoration-style: dashed;
  text-decoration-style: dashed;
  letter-spacing: 0.055rem;
  color: #717171;
  -webkit-text-decoration-style: dotted;
  text-decoration-style: dotted;
}
.cart .cart__top .coupon {
  background-color: #ffffff;
  border: 1.5px solid #f0f0f0;
  margin: 10px 0px;
  padding: 15px;
  display: flex;
}
.cart .cart__top .coupon label {
  display: none;
}
.cart .cart__top .coupon input {
  height: 34px;
  padding-left: 10px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.055rem;
  font-family: "barlow semi condensed";
  border: 1.5px solid #bababa;
  width: 100%;
  border-radius: 0px;
  -webkit-appearance: none;
}
.cart .cart__top .coupon input:-ms-input-placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem;
}
.cart .cart__top .coupon input::-moz-placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem;
}
.cart .cart__top .coupon input::-ms-input-placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem;
}
.cart .cart__top .coupon input::placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem;
}
.cart .cart__top .coupon input[type=submit] {
  background-color: black;
  color: #ffffff;
  background-size: 100%;
  width: 176px;
  height: 34px;
  border: none;
  border-radius: 0px;
  -webkit-appearance: none;
  text-transform: uppercase;
}

.cart-2 {
  background-color: #f9f8f8;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .cart-2 {
    padding: 0px 20px;
    padding-bottom: 30px;
  }
}
.cart-2 .cart__bottom {
  max-width: 680px;
  margin: 0px auto;
  padding-top: 1px;
  float: clear;
}
.cart-2 .cart__bottom .shipping-calculation-box {
  background-color: #ffffff;
  border: 1.5px solid #f0f0f0;
  margin: 40px 0px;
  padding: 15px;
  display: flex;
}
@media (max-width: 768px) {
  .cart-2 .cart__bottom .shipping-calculation-box {
    display: block;
    width: 100%;
  }
}
.cart-2 .cart__bottom .shipping-calculation-box .select-country {
  display: inline-block;
  padding-right: 7.5px;
}
@media (max-width: 768px) {
  .cart-2 .cart__bottom .shipping-calculation-box .select-country {
    display: block;
    width: 100%;
  }
}
.cart-2 .cart__bottom .shipping-calculation-box .select-country p button {
  display: none;
}
.cart-2 .cart__bottom .shipping-calculation-box .select-country h3 {
  margin-top: 0px;
  margin-bottom: 0px;
}
.cart-2 .cart__bottom .shipping-calculation-box .select-country .under-title {
  margin: 0px;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.055rem;
}
.cart-2 .cart__bottom .shipping-calculation-box .select-country .shipping_country_container {
  position: relative;
}
.cart-2 .cart__bottom .shipping-calculation-box .select-country .shipping_country_container:after {
  content: "";
  border: 7px solid rgba(0, 0, 0, 0);
  border-top: 8px solid #000000;
  height: 0px;
  width: 0px;
  position: absolute;
  right: 14px;
  top: 16px;
  display: block;
  pointer-events: none;
}
.cart-2 .cart__bottom .shipping-calculation-box .select-country select {
  position: relative;
  width: 100%;
  height: 38px;
  border-radius: 0px;
  padding-left: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 400;
  font-size: 0.875rem;
  color: #bababa;
  background-color: #ffffff;
  letter-spacing: 0.055rem;
}
.cart-2 .cart__bottom .shipping-calculation-box .select-country select .option {
  font-family: "barlow semi condenseed";
  font-size: 0.875rem;
  font-weight: 400;
  color: #bababa;
  letter-spacing: 0.055rem;
}
.cart-2 .cart__bottom .shipping-calculation-box .select-country select:focus {
  outline: none;
}
.cart-2 .cart__bottom .shipping-calculation-box .select-country select:after {
  transform: rotate(45deg);
  content: "";
  border-right: 3px solid #000000;
  border-bottom: 3px solid #000000;
  height: 7px;
  width: 7px;
  position: absolute;
  right: 10px;
  top: 13px;
  display: block;
  pointer-events: none;
}
.cart-2 .cart__bottom .shipping-calculation-box .learn-more-container {
  display: inline-block;
  width: 49.5%;
  padding-left: 7.5px;
  padding-top: 65px;
}
@media (max-width: 768px) {
  .cart-2 .cart__bottom .shipping-calculation-box .learn-more-container {
    display: block;
    width: 100%;
    padding-top: 0px;
  }
}
.cart-2 .cart__bottom .shipping-calculation-box .learn-more-container .under-title {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.055rem;
  color: #717171;
  line-height: 1.0625rem;
}
.cart-2 .cart__bottom .shipping-calculation-box .learn-more-container a p {
  color: #bababa;
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
  text-decoration-style: dotted;
  letter-spacing: 0.02375rem;
}
.cart-2 .cart__bottom .shipping-calculation-box .learn-more-container p {
  margin: 0px;
}
.cart-2 .cart__bottom .totals {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .cart-2 .cart__bottom .totals {
    display: block;
  }
}
.cart-2 .cart__bottom .totals .basket-total {
  width: 44.5% !important;
  display: inline-block;
  background-color: #ffffff;
  border: 1.5px solid #f0f0f0;
  margin-right: 5%;
  padding: 20px 20px 0px 20px;
}
@media (max-width: 768px) {
  .cart-2 .cart__bottom .totals .basket-total {
    display: block;
    width: 100% !important;
    margin-right: 0%;
    margin-bottom: 20px;
  }
}
.cart-2 .cart__bottom .totals .basket-total h3 {
  margin-top: -10px;
}
.cart-2 .cart__bottom .totals .basket-total .basket-box {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
}
.cart-2 .cart__bottom .totals .basket-total .basket-box .left-bit,
.cart-2 .cart__bottom .totals .basket-total .basket-box .right-bit {
  margin-top: 25px;
}
.cart-2 .cart__bottom .totals .basket-total .basket-box .woocommerce-remove-coupon {
  color: red;
}
.cart-2 .cart__bottom .totals .basket-total .basket-box .woocommerce-remove-coupon img {
  height: 12px;
  position: relative;
  top: 1px;
  right: 0px;
}
.cart-2 .cart__bottom .totals .basket-total .ship-box {
  display: block;
  position: relative;
}
.cart-2 .cart__bottom .totals .basket-total .ship-box select {
  position: relative;
  width: 100%;
  height: 38px;
  border-radius: 0px;
  padding-left: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 400;
  font-size: 0.875rem;
  color: #bababa;
  background-color: #ffffff;
  letter-spacing: 0.055rem;
}
.cart-2 .cart__bottom .totals .basket-total .ship-box select .option {
  font-family: "barlow semi condenseed";
  font-size: 0.875rem;
  font-weight: 400;
  color: #bababa;
  letter-spacing: 0.055rem;
}
.cart-2 .cart__bottom .totals .basket-total .ship-box select:focus {
  outline: none;
}
.cart-2 .cart__bottom .totals .basket-total .show-after:after {
  content: "";
  border: 7px solid rgba(0, 0, 0, 0);
  border-top: 8px solid #000000;
  height: 0px;
  width: 0px;
  position: absolute;
  right: 14px;
  bottom: 6px;
  display: block;
  pointer-events: none;
}
.cart-2 .cart__bottom .totals .basket-total .end {
  border-bottom: none;
}
.cart-2 .cart__bottom .totals .basket-total h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #717171;
  letter-spacing: 0.02938rem;
}
.cart-2 .cart__bottom .totals .basket-total h5 {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.055rem;
}
.cart-2 .cart__bottom .totals .checkout-btns {
  width: 44.5%;
  display: inline-block;
  margin-left: 5%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .cart-2 .cart__bottom .totals .checkout-btns {
    display: block;
    width: 100%;
    margin-left: 0px;
  }
}
.cart-2 .cart__bottom .totals .checkout-btns .angelleye-proceed-to-checkout-button-separator {
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 300;
  text-transform: lowercase;
  font-family: "barlow";
  margin: 15px 0 14px;
}
@media (max-width: 768px) {
  .cart-2 .cart__bottom .totals .checkout-btns .angelleye-proceed-to-checkout-button-separator {
    width: 100%;
  }
}
.cart-2 .cart__bottom .totals .checkout-btns p {
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 63px;
}
@media (max-width: 768px) {
  .cart-2 .cart__bottom .totals .checkout-btns p {
    margin-bottom: 15px;
  }
}
.cart-2 .cart__bottom .totals .checkout-btns #wc-stripe-payment-request-wrapper {
  padding: 0 !important;
}
.cart-2 .cart__bottom .totals .checkout-btns #wc-stripe-payment-request-button-separator {
  text-transform: lowercase;
  margin: 13px 0 9px !important;
}
.cart-2 .cart__bottom .totals .checkout-btns .green-btn {
  background-color: #35c051;
  color: #ffffff;
  height: 58px;
  width: 100%;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.055rem;
  font-family: "barlow semi condensed";
  text-transform: uppercase;
  padding-top: 20px;
  border-radius: 3px;
}
.cart-2 .cart__bottom .totals .checkout-btns .green-btn:focus {
  outline: none;
}
@media (max-width: 768px) {
  .cart-2 .cart__bottom .totals .checkout-btns .green-btn {
    display: block;
    max-width: 360px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .cart-2 .cart__bottom .totals .checkout-btns .paypal_checkout_button_bottom img {
    display: block;
    max-width: 360px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.cart-2 .cart__bottom .totals .checkout-btns .paypal_checkout_button_cc_bottom {
  display: none;
}
.cart-2 .cart__bottom .totals .checkout-btns .wcppec-checkout-buttons__separator {
  font-family: "barlow semi condensed";
}
.cart-2 .cart__bottom .totals .checkout-btns h4 {
  text-align: center;
}
.cart-2 .cart__bottom .totals .checkout-btns .apple-pay-btn {
  background-color: #000000;
  color: #ffffff;
  height: 38px;
  width: 100%;
  margin-top: 15px;
}
.cart-2 .cart__bottom .totals .checkout-btns .apple-pay-btn .apple-pay-img {
  height: 22px;
  margin-top: 5px;
}
.cart-2 .cart__bottom .totals .checkout-btns .apple-pay-btn:focus {
  outline: none;
}
.cart-2 .cart__bottom .terms-box {
  background-color: #f0f0f0;
  margin: 40px 0px 0px 0px;
  padding: 15px;
}
.cart-2 .cart__bottom .terms-box .words {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  font-family: "barlow semi condensed";
  color: #717171;
  letter-spacing: 0.055rem;
  margin: 0px;
}
.cart-2 .cart__bottom .terms-box .terms-link {
  font-style: italic;
  font-weight: 400;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .dt {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .mob {
    display: none !important;
  }
}

.mobile-no-flex {
  width: 50%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .mobile-no-flex {
    width: 100%;
  }
}

.empty-cart {
  margin-left: 40px;
}
.empty-cart .button {
  background-color: #000 !important;
  text-decoration: none;
  background-image: none;
  color: #fff !important;
}

.woocommerce {
  padding: 0 20px;
}

.cross-sells {
  width: 100% !important;
  float: none !important;
  max-width: 680px;
  margin: auto;
}
@media (max-width: 500px) {
  .cross-sells {
    text-align: center !important;
  }
}
.cross-sells .products {
  margin: 0 !important;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cross-sells .products {
    flex-wrap: wrap;
  }
}
.cross-sells .products .product {
  margin: 0 0 2.992em !important;
  width: 33.33% !important;
}
.cross-sells .products .product .button {
  width: 100%;
  background-color: #000;
  color: #fff;
  width: auto;
  min-width: 120px;
  height: 33px;
  text-align: center;
  font-family: "barlow semi condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 500px) {
  .cross-sells .products .product .button {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .cross-sells .products .product:nth-child(3n+2) {
    margin: 0 3.8% 2.992em !important;
  }
}
@media (max-width: 767px) {
  .cross-sells .products .product {
    margin: 0 0 30px !important;
    width: 48% !important;
  }
  .cross-sells .products .product:nth-child(3n+1) {
    margin: 0 3.8% 30px 0 !important;
  }
  .cross-sells .products .product img {
    width: 1000% !important;
  }
}
@media (max-width: 500px) {
  .cross-sells .products .product {
    margin: 0 0 30px !important;
    width: 100% !important;
  }
  .cross-sells .products .product:nth-child(3n+1) {
    margin: 0 0 30px !important;
  }
  .cross-sells .products .product img {
    width: 70% !important;
    margin: 0 auto 1em !important;
  }
}

.brew-guide-page {
  min-height: 580px !important;
}

.subscribe-page {
  display: flex;
  justify-content: space-between;
  max-width: 725px;
  margin: 0px auto;
  min-height: 730px;
}
@media (max-width: 768px) {
  .subscribe-page {
    display: block;
  }
}
.subscribe-page .main-post {
  width: 68%;
}
@media (max-width: 768px) {
  .subscribe-page .main-post {
    width: 100%;
    padding: 0px 20px;
  }
}
.subscribe-page .main-post a {
  text-decoration: underline;
  color: #ECB032;
}
.subscribe-page .main-post .fake-hr {
  margin-bottom: 35px;
  border-bottom-color: #F0F0F0;
  width: 50%;
}
.subscribe-page .main-post p img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}
.subscribe-page .main-post .subscription__instagram-feed h2 span {
  color: #ECB032;
}
.subscribe-page .main-post .subscription__instagram-feed .subscription__insta-pictures,
.subscribe-page .main-post .subscription__instagram-feed .wpmi-list {
  display: flex;
  justify-content: space-between;
  align-content: space-between;
  flex-wrap: wrap;
  min-height: 490px;
  margin-bottom: 90px;
  max-width: 493px;
  margin: 0px auto;
  padding: 0;
  list-style-type: none;
}
@media (min-width: 768px) {
  .subscribe-page .main-post .subscription__instagram-feed .subscription__insta-pictures,
.subscribe-page .main-post .subscription__instagram-feed .wpmi-list {
    margin-bottom: 90px;
  }
}
.subscribe-page .main-post .subscription__instagram-feed .subscription__insta-pictures .wpmi-item,
.subscribe-page .main-post .subscription__instagram-feed .wpmi-list .wpmi-item {
  flex: 1 1 auto;
}
@media (max-width: 530px) {
  .subscribe-page .main-post .subscription__instagram-feed .subscription__insta-pictures .wpmi-item:last-child,
.subscribe-page .main-post .subscription__instagram-feed .wpmi-list .wpmi-item:last-child {
    display: none;
  }
}
.subscribe-page .main-post .subscription__instagram-feed .subscription__insta-pictures .wpmi-item img,
.subscribe-page .main-post .subscription__instagram-feed .wpmi-list .wpmi-item img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: center center";
  height: 154px;
  width: 154px;
  position: relative;
  margin: 1%;
}
@media (max-width: 530px) {
  .subscribe-page .main-post .subscription__instagram-feed .subscription__insta-pictures .wpmi-item img,
.subscribe-page .main-post .subscription__instagram-feed .wpmi-list .wpmi-item img {
    max-height: 44.5vw;
  }
}
.subscribe-page .main-post .subscription__instagram-feed .subscription__insta-pictures .feed-photo,
.subscribe-page .main-post .subscription__instagram-feed .wpmi-list .feed-photo {
  flex: 1 1 auto;
}
@media (max-width: 530px) {
  .subscribe-page .main-post .subscription__instagram-feed .subscription__insta-pictures .feed-photo:last-child,
.subscribe-page .main-post .subscription__instagram-feed .wpmi-list .feed-photo:last-child {
    display: none;
  }
}
.subscribe-page .main-post .subscription__instagram-feed .subscription__insta-pictures .subscription__insta-pic,
.subscribe-page .main-post .subscription__instagram-feed .wpmi-list .subscription__insta-pic {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: center center";
  height: 154px;
  width: 154px;
  position: relative;
  margin: 1%;
}
@media (max-width: 530px) {
  .subscribe-page .main-post .subscription__instagram-feed .subscription__insta-pictures .subscription__insta-pic,
.subscribe-page .main-post .subscription__instagram-feed .wpmi-list .subscription__insta-pic {
    max-height: 44.5vw;
  }
}
.subscribe-page .main-post table {
  border: 0px solid rgba(0, 0, 0, 0);
  font-family: barlow;
  font-size: 0.9375rem;
  font-weight: 300;
}
.subscribe-page .main-post table tr {
  border-bottom: 1px solid #ebebeb;
  height: 40px;
}
.subscribe-page .main-post table tr:last-child {
  border: 0px solid rgba(0, 0, 0, 0);
}
.subscribe-page .main-post table tr strong {
  font-weight: 400;
}
.subscribe-page .right-bar {
  margin-top: 0px;
  width: 20%;
  min-width: 189px;
}
@media (max-width: 768px) {
  .subscribe-page .right-bar {
    width: 100%;
    padding: 0px 15px;
    margin-top: 40px;
  }
}
.subscribe-page .right-bar .right-button {
  width: 100%;
  min-width: 189px;
  height: 45px;
  margin: 16px 0px;
  padding: 0px 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.subscribe-page .right-bar .right-button h3 {
  display: inline-block;
  margin-top: 3px;
  color: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
}
.subscribe-page .right-bar .right-button div {
  display: inline-block;
  margin: 0px;
}
.subscribe-page .right-bar .right-button div a {
  display: inline-block;
  margin-top: 3px;
  color: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  line-height: 2.375rem;
  font-family: "barlow semi condensed";
  margin: 0px;
  margin-top: 3px;
}
.subscribe-page .right-bar .right-button img {
  height: 13px;
}
.subscribe-page .right-bar .gold {
  background-color: #ECB032;
  color: #ffffff;
}
.subscribe-page .right-bar .grey {
  background-color: #f5f5f5;
}
.subscribe-page .right-bar .right-bar-hr {
  border-color: #f0f0f0;
  width: 100%;
  min-width: 189px;
}

.side-form .sign-up {
  background-color: #ffffff;
  padding: 20px 0px 0px 0px;
}
.side-form .sign-up .gform_body {
  width: 100%;
}
.side-form .sign-up .gform_body input {
  width: 100%;
  margin-bottom: 10px;
}
.side-form .sign-up .gform_footer {
  margin-top: 0px;
}
.side-form .sign-up .validation_message {
  display: none;
}
.side-form .sign-up .validation_error {
  font-family: "barlow semi condensed";
  font-size: 1rem;
  font-weight: 600;
  color: red;
}
.side-form .sign-up .gform_confirmation_message {
  font-family: "barlow semi condensed";
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.side-form .sign-up .words h2 {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "barlow semi condensed";
  letter-spacing: 0.0625rem;
}
.side-form .sign-up .words .fake-hr {
  width: 40px;
}
.side-form .sign-up .inputs input {
  width: 100%;
  margin: 0px 0px 10px;
  border: 1px solid #f0f0f0;
}
.side-form .sign-up .inputs input[type=text], .side-form .sign-up .inputs input[type=email] {
  height: 34px;
  width: 100%;
  padding: 10px 7px 7px 7px;
  font-size: 0.875rem;
}
.side-form .sign-up .inputs input[type=text]:-ms-input-placeholder, .side-form .sign-up .inputs input[type=email]:-ms-input-placeholder {
  font-size: 0.875rem;
  color: #bcbcbc;
}
.side-form .sign-up .inputs input[type=text]::-moz-placeholder, .side-form .sign-up .inputs input[type=email]::-moz-placeholder {
  font-size: 0.875rem;
  color: #bcbcbc;
}
.side-form .sign-up .inputs input[type=text]::-ms-input-placeholder, .side-form .sign-up .inputs input[type=email]::-ms-input-placeholder {
  font-size: 0.875rem;
  color: #bcbcbc;
}
.side-form .sign-up .inputs input[type=text]::placeholder, .side-form .sign-up .inputs input[type=email]::placeholder {
  font-size: 0.875rem;
  color: #bcbcbc;
}
.side-form .sign-up .inputs input[type=text]:focus, .side-form .sign-up .inputs input[type=email]:focus {
  outline: none;
}
.side-form .sign-up .inputs .fake-button {
  width: 50%;
  height: 34px;
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.055rem;
  text-align: center;
  padding-top: 7px;
}
.side-form .sign-up .inputs .fake-button img {
  width: 9px;
  height: 15px;
  position: relative;
  top: 3px;
}
.side-form .sign-up form {
  margin-bottom: 30px;
}

.cart_totals {
  float: none !important;
  width: auto !important;
}

.cart__message {
  background-color: #a12f00;
  padding: 10px;
}
.cart__message p, .cart__message li {
  color: #ffffff;
}

.checkout__top .cart__message {
  margin-bottom: 30px;
}

.checkout-container {
  max-width: 680px;
  margin: 0px auto;
}
@media (max-width: 768px) {
  .checkout-container {
    padding: 0px 20px;
  }
}
.checkout-container .fake-hr {
  border-color: #f0f0f0;
}

.checkout-button-positioner {
  margin-top: 3px;
}
@media (max-width: 768px) {
  .checkout-button-positioner {
    margin-top: 14px;
  }
}

.checkout__content-wrapper {
  background-color: #f9f8f8;
}
.checkout__content-wrapper .checkout__content fieldset {
  padding: 0px;
  border: none;
}

.checkout__top {
  background-color: #ffffff;
}
.checkout__top h1 {
  margin-bottom: 55px;
}
@media only screen and (max-width: 699px) {
  .checkout__top h1 {
    margin-bottom: 25px;
  }
}

.checkout__returning-wrapper {
  background-color: #f9f8f8;
}
.checkout__returning-wrapper .user-logo {
  width: 13px;
  display: inline-block;
}
.checkout__returning-wrapper .returning-user {
  font-size: 0.875rem;
  font-style: italic;
  letter-spacing: 0.02375rem;
  display: inline-block;
  line-height: 0.625rem;
  margin-top: 30px;
  font-weight: 400;
  position: relative;
  top: -3px;
  left: 2px;
}
@media (max-width: 768px) {
  .checkout__returning-wrapper .returning-user {
    margin-bottom: 20px;
  }
}
.checkout__returning-wrapper .returning-user a {
  color: #ECB032;
  text-decoration: underline;
}
.checkout__returning-wrapper .returning-hr {
  width: 50%;
}

.checkout__content-wrapper {
  background-color: #f9f8f8;
}
.checkout__content-wrapper .checkout__content {
  padding-bottom: 45px;
  display: flex;
}
@media (max-width: 768px) {
  .checkout__content-wrapper .checkout__content {
    display: block;
  }
}
.checkout__content-wrapper .checkout__content .form-area {
  width: 50%;
  order: 1;
}
@media (max-width: 768px) {
  .checkout__content-wrapper .checkout__content .form-area {
    width: 100%;
  }
}
.checkout__content-wrapper .checkout__content .form-area .checkout-log-in .login {
  border-radius: 0px;
  background-color: #ffffff;
}
.checkout__content-wrapper .checkout__content .form-area .checkout-log-in .form-row {
  width: 100%;
}
.checkout__content-wrapper .checkout__content .form-area .checkout-log-in .form-row .button {
  width: 100%;
  background-color: #ECB032;
  color: #ffffff;
  border-radius: 0px;
}
.checkout__content-wrapper .checkout__content .form-area .checkout-log-in .form-row label {
  width: 100%;
  display: inline-block;
}
.checkout__content-wrapper .checkout__content .form-area .checkout-log-in .form-row label .woocommerce-form__input-checkbox {
  height: 14px;
  width: 14px;
}
.checkout__content-wrapper .checkout__content .form-area .checkout-log-in .form-row label span {
  font-family: "barlow";
  font-family: 15px;
  font-weight: 300;
  letter-spacing: 0;
}
.checkout__content-wrapper .checkout__content .form-area .checkout-log-in .lost_password {
  margin: 0px;
  margin-top: -10px;
}
.checkout__content-wrapper .checkout__content .form-area .checkout-log-in .lost_password a {
  text-decoration: underline;
  color: #ECB032;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  font-style: italic;
  margin: 0px;
  margin-left: 4px;
}
.checkout__content-wrapper .checkout__content .form-area .woocommerce-billing-fields .express-provided-address, .checkout__content-wrapper .checkout__content .form-area .woocommerce-shipping-fields .express-provided-address {
  font-family: "barlow semi condensed";
}
.checkout__content-wrapper .checkout__content .form-area .woocommerce-billing-fields .express-provided-address .ex-show-address-fields, .checkout__content-wrapper .checkout__content .form-area .woocommerce-shipping-fields .express-provided-address .ex-show-address-fields {
  text-decoration: underline;
  color: #ECB032;
}
.checkout__content-wrapper .checkout__content .form-area .woocommerce-billing-fields .angelleye-woocommerce-customer-details-email, .checkout__content-wrapper .checkout__content .form-area .woocommerce-shipping-fields .angelleye-woocommerce-customer-details-email {
  padding-left: 0px;
  font-family: "barlow semi condensed";
  margin-bottom: 15px;
}
.checkout__content-wrapper .checkout__content .form-area .woocommerce-billing-fields .angelleye-woocommerce-customer-details-email:before, .checkout__content-wrapper .checkout__content .form-area .woocommerce-shipping-fields .angelleye-woocommerce-customer-details-email:before {
  display: none !important;
}
.checkout__content-wrapper .checkout__content .form-area .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper #billing_first_name_field, .checkout__content-wrapper .checkout__content .form-area .woocommerce-billing-fields .woocommerce-shipping-fields__field-wrapper #billing_first_name_field, .checkout__content-wrapper .checkout__content .form-area .woocommerce-shipping-fields .woocommerce-billing-fields__field-wrapper #billing_first_name_field, .checkout__content-wrapper .checkout__content .form-area .woocommerce-shipping-fields .woocommerce-shipping-fields__field-wrapper #billing_first_name_field {
  width: 49.3%;
}
.checkout__content-wrapper .checkout__content .form-area .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper #billing_last_name_field, .checkout__content-wrapper .checkout__content .form-area .woocommerce-billing-fields .woocommerce-shipping-fields__field-wrapper #billing_last_name_field, .checkout__content-wrapper .checkout__content .form-area .woocommerce-shipping-fields .woocommerce-billing-fields__field-wrapper #billing_last_name_field, .checkout__content-wrapper .checkout__content .form-area .woocommerce-shipping-fields .woocommerce-shipping-fields__field-wrapper #billing_last_name_field {
  width: 49.3%;
}
.checkout__content-wrapper .checkout__content .form-area .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row, .checkout__content-wrapper .checkout__content .form-area .woocommerce-billing-fields .woocommerce-shipping-fields__field-wrapper .form-row, .checkout__content-wrapper .checkout__content .form-area .woocommerce-shipping-fields .woocommerce-billing-fields__field-wrapper .form-row, .checkout__content-wrapper .checkout__content .form-area .woocommerce-shipping-fields .woocommerce-shipping-fields__field-wrapper .form-row {
  margin-bottom: 5px;
}
.checkout__content-wrapper .checkout__content .form-area .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper #billing_country_field, .checkout__content-wrapper .checkout__content .form-area .woocommerce-billing-fields .woocommerce-shipping-fields__field-wrapper #billing_country_field, .checkout__content-wrapper .checkout__content .form-area .woocommerce-shipping-fields .woocommerce-billing-fields__field-wrapper #billing_country_field, .checkout__content-wrapper .checkout__content .form-area .woocommerce-shipping-fields .woocommerce-shipping-fields__field-wrapper #billing_country_field {
  position: relative;
}
.checkout__content-wrapper .checkout__content .form-area .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper #billing_country_field:after, .checkout__content-wrapper .checkout__content .form-area .woocommerce-billing-fields .woocommerce-shipping-fields__field-wrapper #billing_country_field:after, .checkout__content-wrapper .checkout__content .form-area .woocommerce-shipping-fields .woocommerce-billing-fields__field-wrapper #billing_country_field:after, .checkout__content-wrapper .checkout__content .form-area .woocommerce-shipping-fields .woocommerce-shipping-fields__field-wrapper #billing_country_field:after {
  content: "";
  border: 7px solid transparent;
  border-top: 8px solid #000;
  height: 0px;
  width: 0px;
  position: absolute;
  right: 14px;
  top: 19px;
  display: block;
  pointer-events: none;
}
.checkout__content-wrapper .checkout__content .form-area .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper label, .checkout__content-wrapper .checkout__content .form-area .woocommerce-billing-fields .woocommerce-shipping-fields__field-wrapper label, .checkout__content-wrapper .checkout__content .form-area .woocommerce-shipping-fields .woocommerce-billing-fields__field-wrapper label, .checkout__content-wrapper .checkout__content .form-area .woocommerce-shipping-fields .woocommerce-shipping-fields__field-wrapper label {
  display: none;
}
.checkout__content-wrapper .checkout__content .form-area .flexer {
  display: flex;
  justify-content: space-between;
}
.checkout__content-wrapper .checkout__content .form-area .full-width {
  width: 100%;
}
.checkout__content-wrapper .checkout__content .form-area .half-width {
  width: 49%;
}
.checkout__content-wrapper .checkout__content .form-area .thirty-width {
  width: 121px;
}
.checkout__content-wrapper .checkout__content .form-area legend {
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  font-family: "barlow";
  padding-top: 30px;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.checkout__content-wrapper .checkout__content .form-area .first-hr {
  margin-bottom: 10px;
}
.checkout__content-wrapper .checkout__content .form-area textarea {
  resize: none;
  border: 1.5px solid #bababa;
  padding: 10px;
  font-size: 0.875rem;
  height: 154px;
  font-family: "barlow semi condensed";
}
.checkout__content-wrapper .checkout__content .form-area textarea:-ms-input-placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem;
}
.checkout__content-wrapper .checkout__content .form-area textarea::-moz-placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem;
}
.checkout__content-wrapper .checkout__content .form-area textarea::-ms-input-placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem;
}
.checkout__content-wrapper .checkout__content .form-area textarea::placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem;
}
.checkout__content-wrapper .checkout__content .form-area input {
  height: 34px;
  margin: 5px 0px;
  padding-left: 10px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.055rem;
  font-family: "barlow semi condensed";
  border: 1.5px solid #bababa;
  -webkit-appearance: none;
}
.checkout__content-wrapper .checkout__content .form-area input:-ms-input-placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem !important;
}
.checkout__content-wrapper .checkout__content .form-area input::-moz-placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem !important;
}
.checkout__content-wrapper .checkout__content .form-area input::-ms-input-placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem !important;
}
.checkout__content-wrapper .checkout__content .form-area input::placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem !important;
}
.checkout__content-wrapper .checkout__content .form-area .woocommerce-validated input {
  border: 1.5px solid #bababa !important;
}
.checkout__content-wrapper .checkout__content .form-area select {
  width: 100%;
  height: 38px;
  border-radius: 0px;
  padding-left: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ffffff;
  border: 1.5px solid #bababa !important;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.055rem;
  font-family: "barlow semi condensed";
}
.checkout__content-wrapper .checkout__content .form-area .select2-results__options {
  width: 100%;
  height: 38px;
  border-radius: 0px;
  padding-left: 10px;
  background-color: #ffffff;
  border: 1.5px solid #bababa;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.055rem;
  font-family: "barlow semi condensed";
}
.checkout__content-wrapper .checkout__content .form-area .select2-container--default .select2-dropdown .select2-results ul {
  background-color: #ffffff;
  border: 1.5px solid #bababa;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.055rem;
  font-family: "barlow semi condensed";
}
.checkout__content-wrapper .checkout__content .form-area .select2-container--default .select2-selection--single {
  width: 100%;
  height: 38px;
  border-radius: 0px;
  padding-left: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ffffff;
  border: 1.5px solid #bababa;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.055rem;
  font-family: "barlow semi condensed";
  -webkit-appearance: none;
}
.checkout__content-wrapper .checkout__content .form-area .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-top: 4px;
}
.checkout__content-wrapper .checkout__content .form-area .select2-container--default .select2-selection--single .select2-selection__arrow {
  padding-top: 35px;
  padding-right: 35px;
}
.checkout__content-wrapper .checkout__content .form-area .button-positioner {
  text-align: center;
  margin-top: 30px;
}
.checkout__content-wrapper .checkout__content .form-area .button-positioner h4 {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  color: #717171;
  margin: 10px;
}
.checkout__content-wrapper .checkout__content .form-area input[type=submit] {
  background: url("../images/temp-images/paypal-button.png") no-repeat center center;
  background-size: 100%;
  width: 176px;
  height: 34px;
  border: none;
  color: transparent;
  margin: 0px auto;
}
.checkout__content-wrapper .checkout__content .form-area label {
  display: inline-block;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 600;
  color: #717171;
  letter-spacing: 0.02375rem;
  margin-top: 10px;
  width: 100%;
}
.checkout__content-wrapper .checkout__content .form-area .what-is-this {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  color: #bababa;
  letter-spacing: 0.02375rem;
  -webkit-text-decoration-style: dotted;
  text-decoration-style: dotted;
}
.checkout__content-wrapper .checkout__content .form-area .angelleye_cancel {
  height: 34px;
  width: 100%;
  margin-top: 20px;
  background-color: #E80E0E;
  color: #ffffff;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.055rem;
  font-family: "barlow semi condensed";
  border-radius: 0px;
  text-align: center;
}
.checkout__content-wrapper .checkout__content .form-area .angelleye_cancel:hover {
  background-color: #E80E0E;
}
.checkout__content-wrapper .checkout__content .form-area .place-order-button {
  height: 34px;
  width: 100%;
  margin-top: 20px;
  background-color: #35C051;
  color: #ffffff;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.055rem;
  font-family: "barlow semi condensed";
}
.checkout__content-wrapper .checkout__content .order-summary {
  width: 50%;
  order: 2;
  position: relative;
}
@media (max-width: 768px) {
  .checkout__content-wrapper .checkout__content .order-summary {
    width: 100%;
    margin-left: 0px;
  }
}
.checkout__content-wrapper .checkout__content .order-summary h3 {
  margin-top: 0px;
  margin-bottom: 5px;
  font-size: 0.9375rem;
  letter-spacing: 0.02938rem;
  line-height: 1.25rem;
  text-transform: uppercase;
}
.checkout__content-wrapper .checkout__content .order-summary h2 {
  font-family: "barlow semi condensed";
  margin: 0px 0px 18px;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.06938rem;
  text-transform: uppercase;
}
.checkout__content-wrapper .checkout__content .order-summary dl.variation {
  margin-top: 0px;
}
@media (min-width: 769px) {
  .checkout__content-wrapper .checkout__content .order-summary .totals {
    position: absolute;
    top: 25px;
    width: 330px;
  }
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total {
  width: 100%;
  display: inline-block;
  background-color: #ffffff;
  border: 1.5px solid #F0F0F0;
  margin-right: 5%;
  margin-left: 20px;
  padding: 20px 20px 0px 20px;
}
@media (max-width: 768px) {
  .checkout__content-wrapper .checkout__content .order-summary .totals .basket-total {
    margin-left: 0px;
  }
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .basket-box {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .basket-box .cart__table-row {
  width: 100%;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .basket-box .cart__table-row {
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid #f0f0f0;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .basket-box .cart__table-row:last-of-type {
  border-bottom: none;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .basket-box .cart__table-row .cart__table-row-quant {
  width: 13%;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .basket-box .cart__table-row .cart__table-row-quant .quant {
  color: grey;
  font-size: 0.875rem;
  letter-spacing: 0.055rem;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .basket-box .cart__table-row .cart__table-row-product {
  width: 64%;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .basket-box .cart__table-row .cart__table-row-product h4 {
  margin-top: 5px;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .basket-box .cart__table-row .cart__table-row-product p {
  margin: 0;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .basket-box .cart__table-row .cart__table-row-price {
  width: 23%;
  text-align: right;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .basket-box .cart__table-row .cart__table-row-price h4 {
  font-size: 0.875rem;
  color: #000000;
  letter-spacing: 0.055rem;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .end {
  border-bottom: none;
  padding-top: 3px;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .end h5 {
  margin-bottom: 4px;
  margin-top: 17px;
  margin-left: 10px;
}
@media (max-width: 456px) {
  .checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .end h5 {
    margin-left: 0;
    margin-bottom: 44px;
  }
}
@media (min-width: 769px) {
  .checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .end h5 {
    margin-left: 0;
    margin-bottom: 44px;
  }
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .end .woocommerce-Price-amount {
  font-size: 1.25rem;
  position: relative;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .shipping-title {
  font-family: "barlow semi condensed";
  font-size: 0.9375rem;
  font-weight: 600;
  color: #717171;
  letter-spacing: 0.02938rem;
  margin: 20px 0px;
  text-transform: uppercase;
  position: relative;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .shipping-title:empty {
  margin: 0;
  border: 0;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .shipping-title .amount {
  float: right;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .shipping-title select {
  position: relative;
  width: 100%;
  height: 38px;
  border-radius: 0px;
  padding-left: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 400;
  font-size: 0.875rem;
  color: #BABABA;
  background-color: #ffffff;
  letter-spacing: 0.055rem;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .shipping-title select .option {
  font-family: "barlow semi condenseed";
  font-size: 0.875rem;
  font-weight: 400;
  color: #BABABA;
  letter-spacing: 0.055rem;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .shipping-title select:focus {
  outline: none;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total .show-after:after {
  content: "";
  border: 7px solid rgba(0, 0, 0, 0);
  border-top: 8px solid #000000;
  height: 0px;
  width: 0px;
  position: absolute;
  right: 14px;
  bottom: 6px;
  display: block;
  pointer-events: none;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #717171;
  letter-spacing: 0.02938rem;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total h4 dl dt {
  display: none;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total h4 dl dd {
  margin-left: 0px;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total h4 dl dd p {
  margin: 2px;
}
.checkout__content-wrapper .checkout__content .order-summary .totals .basket-total h5 {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.055rem;
}
.checkout__content-wrapper .checkout__content .order-summary .cards {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-left: 20px;
}
.checkout__content-wrapper .checkout__content .order-summary .cards .card-logo {
  height: 24px;
}
.checkout__content-wrapper .checkout__content .order-summary .cards .lock-logo {
  height: 15px;
  margin-right: -10px;
}
.checkout__content-wrapper .checkout__content .order-summary .cards h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04188rem;
  color: #717171;
}

/* makes the checkbox look nice :) */
/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1.375rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.check-container {
  position: relative;
  margin-bottom: 20px;
  padding-left: 50px;
  padding-top: 8px;
}
.check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 34px;
  width: 34px;
  background-color: #ffffff;
  border: 1.5px solid #bababa;
}

/* On mouse-over, add a grey background color */
.check-container :hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .checkmark {
  background-color: #ffffff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
  left: 11px;
  top: 3px;
  width: 8px;
  height: 17px;
  border: solid #000000;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

.bottom {
  position: absolute !important;
}

.woocommerce-error {
  background-color: #e80e0e;
  border: 2px solid #ff4b00;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  letter-spacing: 0.02375rem;
  text-align: center;
}
.woocommerce-error a {
  display: block;
}
.woocommerce-error li {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  letter-spacing: 0.02375rem;
  text-align: center;
}
.woocommerce-error:before {
  display: none;
}

.input-checkbox {
  display: none !important;
}

#create-account-p {
  padding: 0px;
  margin-top: 20px;
}

#ship-to-different-address-label, #create_an_account_label {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  color: black;
  line-height: 2rem;
}

.input-checkbox + label:before {
  display: block;
  content: "";
  border: 2px solid #bcbcbc;
  background: white;
  width: 28px;
  margin-right: 10px;
  margin-bottom: 10px;
  height: 28px;
  float: left;
  margin-left: 3px;
}

.input-checkbox:checked + label:before {
  background-color: white;
  background-image: url("../images/check-symbol.png");
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: 3px 3px;
}

.wc_payment_method {
  border: 1px solid #f0f0f0;
  background: white;
  padding: 10px 15px;
  display: block;
  overflow: hidden;
}
.wc_payment_method p {
  text-align: left;
}
.wc_payment_method label {
  text-align: left !important;
}
.wc_payment_method input[type=radio] + label {
  position: relative;
  top: 4px;
  font-size: 1.3125rem !important;
  letter-spacing: 0.02938rem;
  text-transform: uppercase;
  text-align: left;
}
.wc_payment_method input[type=radio] + label:before {
  position: relative;
  top: -3px;
  display: block;
  content: "";
  border: 2px solid #bcbcbc;
  width: 28px;
  margin-right: 10px;
  margin-bottom: 10px;
  height: 28px;
  float: left;
}
.wc_payment_method input[type=radio] {
  display: none;
}
.wc_payment_method input[type=radio]:checked + label:before {
  float: left;
  display: block;
  content: "";
  border: 2px solid #bcbcbc;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  background: url("../images/check-symbol.png");
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: 3px 3px;
}

.ppc-button-wrapper::before {
  content: "\2014   or \2014";
  font-family: "barlow", sans-serif;
  font-weight: 300;
  line-height: 1.625rem;
  letter-spacing: 0;
  text-align: center;
  font-style: italic;
  font-size: 0.875rem;
  text-transform: lowercase;
  display: block;
  margin: 13px 0 9px !important;
}

.fancybox-button--play {
  display: none;
}

.fancybox-button--fullscreen {
  display: none;
}

[include*="form-input-select()"] {
  display: block;
  border-radius: 0;
  box-shadow: none;
  font-size: 1rem;
  margin-top: 9px;
  margin-bottom: 15px;
  width: 100%;
}
[include*="form-input-select()"]::before, [include*="form-input-select()"]::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  border: 1px solid transparent;
  width: 0;
  height: 0;
  right: 16px;
  bottom: 10px;
}
[include*="form-input-select()"]::after {
  border-width: 8px 6.5px 0 6.5px;
  border-top-color: #d6d6d6;
  top: 55%;
}
[include*="form-input-select()"]:hover select:focus {
  outline-color: transparent;
}
[include*="form-input-select()"]:hover::before {
  border-bottom-color: #005ba6;
}
[include*="form-input-select()"]:hover::after {
  border-top-color: #005ba6;
}
[include*="form-input-select()"] #enquiry-type-select {
  border: 3px solid #e6e6e6;
  border-radius: 0;
  font-weight: 400;
  color: inherit;
  padding: 11px 15px;
  line-height: normal;
  transition: border-color 0.2s ease, outline 0.2s ease;
}
[include*="form-input-select()"] #enquiry-type-select::focus {
  box-shadow: none;
  outline-style: none;
}
[include*="form-input-select()"] #enquiry-type-select[disabled], [include*="form-input-select()"] #enquiry-type-select:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
[include*="form-input-select()"] #enquiry-type-select:invalid {
  color: #bababa;
}

.contact-form {
  background-color: #fafafa;
  padding: 50px 0 75px;
}

.contact-page {
  max-width: 540px;
  margin: 0 auto;
}
@media (max-width: 814px) {
  .contact-page {
    padding: 0px 20px;
    width: 100%;
  }
}
.contact-page__content {
  max-width: 515px;
  width: 100%;
}
.contact-page .contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 65px;
  margin-top: 25px;
}
@media (max-width: 814px) {
  .contact-page .contact-details {
    display: block;
  }
}
.contact-page .contact-details__email, .contact-page .contact-details__facebook {
  margin-top: 35px;
}
.contact-page .contact-details__content {
  margin-top: 0;
  margin-bottom: 35px;
}
.contact-page .contact-details__content:last-child {
  margin-bottom: 0;
}
.contact-page .contact-details__column {
  flex: 0 0 calc((100% / 3) - 15px);
  border: 1px solid #efefef;
  padding: 31px 20px 31px 35px;
}
@media (max-width: 814px) {
  .contact-page .contact-details__column {
    padding: 20px;
    width: 100%;
    margin-top: 25px;
  }
}
.contact-page .contact-details__title {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.625rem;
  font-weight: bold;
  text-transform: uppercase;
}
.contact-page .contact-details__text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: light;
  line-height: 1.625rem;
}
.contact-page .section-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.625rem;
  letter-spacing: 0;
  margin-bottom: 5px;
  width: 80%;
}
.contact-page .fake-hr {
  border-color: #f5f5f5;
  max-width: 245px;
  width: 100%;
  margin-bottom: 23px;
}
.contact-page .contact-title h4 {
  font-style: italic;
  font-feature-settings: 14px;
  line-height: 1.5625rem;
  margin: 0 0 25px;
  font-weight: 400;
}
.contact-page .contact-title h1 {
  margin-bottom: 0;
}
.contact-page .address-container {
  display: flex;
  margin-bottom: 23px;
}
.contact-page .address-container .address {
  width: 50%;
}
.contact-page .address-container .tel-email {
  width: 50%;
}
.contact-page .address-container .section-content {
  font-size: 0.9375rem;
  letter-spacing: 0;
  line-height: 1.625rem;
  margin: 0px;
}
.contact-page .gform_confirmation_wrapper {
  font-family: "barlow semi condensed";
}
.contact-page .gform_footer .gform_ajax_spinner {
  width: 32px;
  margin-top: 20px;
}
.contact-page .message-form-container {
  margin-bottom: 70px;
}
@media (max-width: 814px) {
  .contact-page .message-form-container form {
    width: 100%;
  }
}
.contact-page .message-form-container form .gform_body ul {
  list-style-type: none;
  margin: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0px;
}
.contact-page .message-form-container form .gform_body .gfield_label {
  font-size: 0.875rem;
  line-height: 1rem;
  font-family: "barlow semi condensed";
  font-weight: normal;
  margin-bottom: 10px;
  display: block;
}
.contact-page .message-form-container form .gfield {
  flex: 0 0 100%;
}
.contact-page .message-form-container form .gfield_checkbox {
  padding: 20px 0 0;
  margin: 0 0 0 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.contact-page .message-form-container form .gfield_checkbox li {
  margin: 0 0 10px;
  flex: 0 0 50%;
}
.contact-page .message-form-container form .gfield_checkbox li input[type=checkbox] {
  display: none;
}
.contact-page .message-form-container form .gfield_checkbox li input[type=checkbox]:checked + label::before {
  background-color: #ffffff;
  color: #ffffff;
}
.contact-page .message-form-container form .gfield_checkbox li input[type=checkbox]:checked + label::after {
  content: "";
}
.contact-page .message-form-container form .gfield_checkbox li input[type=checkbox][disabled] {
  color: #c0c0c0;
}
.contact-page .message-form-container form .gfield_checkbox li input[type=checkbox][disabled] + label::before {
  border-color: #c0c0c0;
}
.contact-page .message-form-container form .gfield_checkbox li input[type=checkbox][disabled] + label:hover::before {
  border-color: #c0c0c0;
}
.contact-page .message-form-container form .gfield_checkbox li label {
  padding-left: 35px;
  position: relative;
  height: 22px;
  display: block;
}
.contact-page .message-form-container form .gfield_checkbox li label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #c0c0c0;
  height: 22px;
  width: 22px;
  transition: background-color 0.3s;
}
.contact-page .message-form-container form .gfield_checkbox li label::after {
  position: absolute;
  top: 3px;
  left: 8px;
  width: 6px;
  height: 15px;
  border-bottom: 1px solid #c0c0c0;
  border-right: 1px solid #c0c0c0;
  transform: rotate(45deg);
}
.contact-page .message-form-container form .gfield_checkbox li label:hover:before {
  border-color: #c0c0c0;
}
.contact-page .message-form-container form .gfield_checkbox li label {
  margin-bottom: 10px;
  color: #1c1c1c;
  font-size: 0.875rem;
}
.contact-page .message-form-container form .gfield_description {
  margin-bottom: 10px;
}
.contact-page .message-form-container form .ginput_container_consent {
  margin: 25px 0;
}
.contact-page .message-form-container form .fileupload.multiple-upload .gform_drop_instructions {
  display: none;
}
.contact-page .message-form-container form .fileupload.multiple-upload .ginput_container_fileupload {
  margin-top: 40px;
  margin-bottom: 45px;
}
.contact-page .message-form-container form .fileupload.multiple-upload .ginput_container_fileupload input {
  position: absolute;
  opacity: 0;
  z-index: 2;
  top: -13px;
  left: 0;
  right: 0;
  cursor: pointer;
  bottom: 0;
  height: 48px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact-page .message-form-container form .fileupload.multiple-upload .gform_delete {
  width: 48px;
  height: 48px;
  opacity: 0;
  cursor: pointer;
}
.contact-page .message-form-container form .fileupload.multiple-upload .ginput_preview {
  margin-bottom: 20px;
  display: flex;
  position: relative;
  flex-wrap: wrap;
}
.contact-page .message-form-container form .fileupload.multiple-upload .ginput_preview strong {
  font-weight: normal;
  margin-left: 13px;
}
.contact-page .message-form-container form .fileupload.multiple-upload .ginput_preview::before {
  content: url(/app/themes/cliftoncoffee/dist/images/delete.png);
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  width: 48px;
  z-index: 0;
  pointer-events: none;
}
.contact-page .message-form-container form .fileupload.multiple-upload .gform_drop_area {
  position: relative;
}
.contact-page .message-form-container form .fileupload.multiple-upload .gform_drop_area::before {
  content: url(/app/themes/cliftoncoffee/dist/images/select-files.png);
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  width: 48px;
  z-index: 0;
  pointer-events: none;
}
.contact-page .message-form-container form .fileupload.multiple-upload .gform_drop_area::after {
  content: "Attach a file (max size 1MB)";
  pointer-events: none;
  display: inline-block;
  font-weight: 400;
  margin-left: 60px;
  font-size: 0.9375rem;
  font-family: "barlow semi condensed";
}
.contact-page .message-form-container form .fileupload.single-upload .gform_drop_instructions {
  display: none;
}
.contact-page .message-form-container form .fileupload.single-upload .ginput_container_fileupload {
  min-height: 48px;
  position: relative;
}
.contact-page .message-form-container form .fileupload.single-upload .ginput_container_fileupload input {
  position: absolute;
  opacity: 0;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  bottom: 0;
  height: 48px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact-page .message-form-container form .fileupload.single-upload .ginput_container_fileupload::before {
  content: url(/app/themes/cliftoncoffee/dist/images/select-files.png);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  width: 48px;
  z-index: 0;
  pointer-events: none;
}
.contact-page .message-form-container form .fileupload.single-upload .ginput_container_fileupload::after {
  content: "Attach a file (max size 1MB)";
  pointer-events: none;
  display: inline-block;
  font-weight: 400;
  margin-left: 60px;
  margin-top: 13px;
  font-size: 0.9375rem;
  font-family: "barlow semi condensed";
}
.contact-page .message-form-container form .gfield_radio {
  padding: 20px 0 0;
  margin: 0;
  list-style-type: none;
}
.contact-page .message-form-container form .gfield_radio li {
  margin: 0 0 5px;
  flex: 0 0 50%;
}
.contact-page .message-form-container form .gfield_radio li input[type=radio],
.contact-page .message-form-container form .gfield_radio li input[type=checkbox] {
  display: none;
}
.contact-page .message-form-container form .gfield_radio li input[type=radio]:checked + label::before,
.contact-page .message-form-container form .gfield_radio li input[type=checkbox]:checked + label::before {
  background-color: #ffffff;
  color: #ffffff;
}
.contact-page .message-form-container form .gfield_radio li input[type=radio]:checked + label::after,
.contact-page .message-form-container form .gfield_radio li input[type=checkbox]:checked + label::after {
  content: "";
}
.contact-page .message-form-container form .gfield_radio li input[type=radio][disabled],
.contact-page .message-form-container form .gfield_radio li input[type=checkbox][disabled] {
  color: #c0c0c0;
}
.contact-page .message-form-container form .gfield_radio li input[type=radio][disabled] + label::before,
.contact-page .message-form-container form .gfield_radio li input[type=checkbox][disabled] + label::before {
  border-color: #c0c0c0;
}
.contact-page .message-form-container form .gfield_radio li input[type=radio][disabled] + label:hover::before,
.contact-page .message-form-container form .gfield_radio li input[type=checkbox][disabled] + label:hover::before {
  border-color: #c0c0c0;
}
.contact-page .message-form-container form .gfield_radio li label {
  padding-left: 35px;
  position: relative;
  height: 22px;
  display: block;
}
.contact-page .message-form-container form .gfield_radio li label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #c0c0c0;
  border-radius: 50%;
  height: 22px;
  width: 22px;
  transition: background-color 0.3s;
}
.contact-page .message-form-container form .gfield_radio li label::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #c0c0c0;
  transform: rotate(45deg);
}
.contact-page .message-form-container form .gfield_radio li label:hover:before {
  border-color: #c0c0c0;
}
.contact-page .message-form-container form .gfield_radio li label {
  margin-bottom: 10px;
  color: #1c1c1c;
  font-size: 0.875rem;
}
.contact-page .message-form-container form input:not([type=checkbox]):not([type=radio]):not([type=file]),
.contact-page .message-form-container form select {
  width: 100%;
  height: 34px;
  padding: 0px 8px;
  border: 1px solid #c0c0c0;
  font-size: 0.9375rem;
  font-family: "barlow semi condensed";
}
.contact-page .message-form-container form input:not([type=checkbox]):not([type=radio]):not([type=file])::-webkit-input-placeholder,
.contact-page .message-form-container form select::-webkit-input-placeholder {
  color: #bababa;
  font-size: 0.9375rem;
  font-family: "barlow semi condensed";
}
.contact-page .message-form-container form input:not([type=checkbox]):not([type=radio]):not([type=file]):focus,
.contact-page .message-form-container form select:focus {
  outline: none;
}
.contact-page .message-form-container form .ginput_container_select {
  position: relative;
  width: 100%;
  height: 34px;
  display: inline-block;
}
.contact-page .message-form-container form .ginput_container_select::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 50%;
  margin-top: -1px;
  height: 0;
  width: 0;
  border-top: 5px solid #000;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  pointer-events: none;
}
.contact-page .message-form-container form select {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -webkit-appearance: none;
  width: 100%;
  color: #bababa;
  background-color: white;
}
@media (max-width: 814px) {
  .contact-page .message-form-container form select {
    margin: 5px 0px;
    width: 100%;
  }
}
.contact-page .message-form-container form textarea {
  width: 100%;
  height: 137px;
  resize: none;
  padding: 10px;
  border: 1px solid #c0c0c0;
  margin-top: 5px;
  font-size: 0.9375rem;
  font-family: "barlow semi condensed";
}
.contact-page .message-form-container form textarea::-webkit-input-placeholder {
  color: #bababa;
  font-size: 0.9375rem;
  font-family: "barlow semi condensed";
}
.contact-page .message-form-container form textarea:focus {
  outline: none;
}
.contact-page .message-form-container form input[type=submit] {
  margin-top: 20px;
  background-color: #ECB032;
  color: #ffffff;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  width: 100%;
  max-width: 495px;
  letter-spacing: 0.03125rem;
  border: 1px solid #ECB032 !important;
}
.contact-page .message-form-container form .form-left,
.contact-page .message-form-container form .form-right {
  flex: 0 0 47%;
  margin: 0 0 10px 0px;
}
@media (max-width: 814px) {
  .contact-page .message-form-container form .form-left,
.contact-page .message-form-container form .form-right {
    flex: 0 0 100%;
  }
}
.contact-page .message-form-container form #selectbox-placeholder {
  color: #bababa;
}
.contact-page .team h2 {
  margin: 55px 0 0;
}
.contact-page .team-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
  justify-content: flex-start;
}
.contact-page .team-list .member-name {
  width: 25%;
  margin: 3px 0;
  white-space: nowrap;
  min-width: 203px;
}
.contact-page .team-list .member-name p {
  margin: 0px;
}
@media (max-width: 1000px) {
  .contact-page .team-list .member-name {
    white-space: initial;
  }
}
@media (max-width: 680px) {
  .contact-page .team-list .member-name {
    width: 50%;
  }
}
@media (max-width: 360px) {
  .contact-page .team-list .member-name {
    min-width: 100%;
    width: 100%;
  }
}
.contact-page--wide {
  max-width: 1055px;
}
@media (max-width: 1390px) {
  .contact-page--wide {
    max-width: 100%;
    padding: 0 44px;
  }
}
@media (max-width: 1270px) {
  .contact-page--wide {
    max-width: 1085px;
    padding: 0 20px;
  }
}
@media (max-width: 360px) {
  .contact-page--wide .team-list {
    flex-direction: column;
  }
}

.map-container {
  width: 100%;
  margin: 0px auto;
}
.map-container #googleMap {
  width: 100%;
  height: 400px;
}

/* Calendar */
.ui-datepicker .ui-icon {
  position: relative;
}

a.ui-datepicker-prev {
  float: left;
  margin-bottom: 10px;
  margin-left: 5px;
  cursor: pointer;
}
a.ui-datepicker-next {
  margin-right: 5px;
  cursor: pointer;
  float: right;
  margin-bottom: 10px;
}

.ui-datepicker-calendar {
  width: 100%;
}

body:not(.woocommerce) #ui-datepicker-div {
  background: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  width: 17em;
  padding: 0.2em 0.2em 0;
}

table.ui-datepicker-calendar th,
table.ui-datepicker-calendar td {
  padding: 0.25em;
}

a.ui-datepicker-next.ui-corner-all {
  float: right;
}

.ui-datepicker-title {
  text-align: center;
  clear: both;
}
.ui-datepicker-title select {
  padding: 0.5em 1em;
  width: 48%;
  margin: 0 0.15em;
}

td.ui-datepicker-week-end {
  background: #efefef;
}

table.ui-datepicker-calendar td {
  padding: 0.25em;
  text-align: center;
}

select[multiple] + .chosen-container li.result-selected {
  padding-left: 0.75em;
  background: black;
  color: white;
}

td.ui-datepicker-current-day a.ui-state-active {
  display: block;
  border-radius: 50%;
  width: 1.5em;
}

input.datepicker_with_icon + img {
  width: 1.5em;
  position: relative;
  left: 0.5em;
  top: 0.25em;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-clearfix {
  min-height: 0;
}

.ginput_container_consent input[type=checkbox] {
  display: none;
}
.ginput_container_consent input[type=checkbox]:checked + label::before {
  background-color: #ffffff;
  color: #ffffff;
}
.ginput_container_consent input[type=checkbox]:checked + label::after {
  content: "";
}
.ginput_container_consent input[type=checkbox][disabled] {
  color: #c0c0c0;
}
.ginput_container_consent input[type=checkbox][disabled] + label::before {
  border-color: #c0c0c0;
}
.ginput_container_consent input[type=checkbox][disabled] + label:hover::before {
  border-color: #c0c0c0;
}
.ginput_container_consent label {
  padding-left: 35px;
  position: relative;
  height: 22px;
  display: block;
}
.ginput_container_consent label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #c0c0c0;
  height: 22px;
  width: 22px;
  transition: background-color 0.3s;
}
.ginput_container_consent label::after {
  position: absolute;
  top: 3px;
  left: 8px;
  width: 6px;
  height: 15px;
  border-bottom: 1px solid #c0c0c0;
  border-right: 1px solid #c0c0c0;
  transform: rotate(45deg);
}
.ginput_container_consent label:hover:before {
  border-color: #c0c0c0;
}
.ginput_container_consent label {
  margin-bottom: 10px;
  color: #1c1c1c;
  font-size: 0.875rem;
}

.contact-cta {
  margin: 70px 0 90px;
  padding: 0 20px;
  min-height: 430px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.contact-cta__button {
  background-color: black;
  border-radius: 50%;
  height: 68px;
  width: 68px;
  margin: 25px auto 0;
  line-height: 1.125rem;
  color: white;
  letter-spacing: 0.03125rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  font-size: 0.875rem;
  font-family: "barlow semi condensed";
  font-weight: 600;
}
.contact-cta__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  left: 0;
}
.contact-cta__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.contact-cta__content {
  position: relative;
  text-align: center;
  z-index: 1;
  max-width: 630px;
}
.contact-cta__title {
  font-size: 2.25rem;
  letter-spacing: 0.0625rem;
  line-height: 3rem;
  margin-top: 0;
  font-family: "barlow semi condensed";
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}
.contact-cta__title::after {
  content: "";
  width: 100%;
  max-width: 70px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  margin: 20px auto 0;
}
@media (max-width: 768px) {
  .contact-cta__title {
    font-size: 1.625rem;
    line-height: 2.375rem;
  }
}
.contact-cta__text {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 24 px;
  letter-spacing: 0.055rem;
}

@media (max-width: 768px) {
  .account-page {
    padding: 0px 20px;
  }
}
.account-page .title-section {
  max-width: 640px;
  margin: 0px auto;
}
.account-page .title-section h4 {
  display: inline-block;
  margin-top: 0px;
}
.account-page .title-section a {
  float: right;
  text-decoration: underline;
  font-family: "barlow semi condensed";
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 400;
  color: #ECB032;
}
@media (max-width: 500px) {
  .account-page .title-section a {
    float: none;
    display: block;
    margin-bottom: 20px;
  }
}
@media (max-width: 403px) {
  .account-page .title-section .prod-name {
    height: 130px;
  }
}
.account-page .title-section:after {
  content: "";
  margin-bottom: 20px;
  border-top: 1px solid #F0F0F0;
  width: 230px;
  height: 1px;
  display: block;
}

.account__order-container {
  margin-bottom: 30px;
  background: #F9F8F8;
  margin-top: -60px;
}
.account__order-container .account__order-inner {
  padding-top: 50px;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}
@media (min-width: 700px) {
  .account__order-container .account__order-inner {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
  }
}
@media (max-width: 700px) {
  .account__order-container .account__order-inner {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
  }
}
.account__order-container .account-order-box {
  display: block;
  height: 210px;
  background-color: white;
  padding: 20px;
}
@media (min-width: 700px) {
  .account__order-container .account-order-box {
    width: 32%;
  }
}
@media (max-width: 700px) {
  .account__order-container .account-order-box {
    width: 100%;
    margin-bottom: 20px;
  }
}
.account__order-container .account-order-box h3 {
  margin-top: 0px;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
.account__order-container .account-order-box h3:after {
  content: "";
  border-bottom: 1px solid black;
  width: 40%;
  margin-top: 4px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.account__order-container .account-order-box p {
  font-size: 0.9375rem;
  color: #919191;
  margin-bottom: 0px;
  margin-top: 0px;
  line-height: 1.5rem;
}
.account__order-container .account-order-box p strong {
  color: black;
}

.no_subscriptions a {
  color: #ECB032;
  text-decoration: underline;
}

address {
  font-style: normal;
}

.woocommerce-account .addresses .title h3 {
  margin-top: 0px;
  text-transform: uppercase;
}
.woocommerce-account .addresses .title a {
  margin-top: 8px;
  text-decoration: underline;
  color: #ECB032;
  display: block;
}

.account-options {
  background-color: #f9f8f8;
}
.account-options .options-container {
  max-width: 640px;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.account-options .options-container a {
  width: 200px;
  height: 162px;
  margin: 1%;
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
  border: 1.5px solid #f0f0f0;
}
.account-options .options-container a h3 {
  letter-spacing: 0.0625rem;
  margin: 0px;
}
.account-options .options-container a .fake-hr {
  width: 30%;
  margin: 0px auto;
}
.account-options .options-container a p {
  font-size: 0.75rem;
  font-weight: 400;
  font-family: "barlow semi condensed";
  letter-spacing: 0.0625rem;
  line-height: 1.125rem;
  color: #919191;
}
.account-options .order-details .fake-hr {
  border-color: #f0f0f0;
}
@media (max-width: 768px) {
  .account-options .order-details {
    padding: 20px;
  }
}
.account-options .order-details .dt {
  display: flex;
}
.account-options .order-details .dt .title {
  width: 16.6%;
}
.account-options .order-details .dt .order__table-head-product {
  width: 50%;
}
.account-options .woocommerce-addresses .woocommerce-address .woocommerce-address-title a {
  text-decoration: underline;
  color: #ECB032;
}

.woocommerce .required {
  text-decoration: none;
}
.woocommerce .account-options {
  background-color: #ffffff;
  max-width: 640px;
  margin: 0px auto;
  font-family: "barlow semi condensed";
  margin-bottom: 60px;
}
.woocommerce .account-options .woocommerce-button {
  font-family: "barlow semi condensed";
  text-transform: uppercase;
  border-radius: 0px;
  font-weight: 400;
}
.woocommerce .account-options .woocommerce-button:hover {
  background-color: #ebe9eb;
}
.woocommerce .account-options address {
  line-height: 1.4375rem;
}
.woocommerce .account-options .woocommerce-Address-title a {
  text-decoration: underline;
  color: #ECB032;
}
@media (max-width: 768px) {
  .woocommerce .account-options .orders-table-container {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.woocommerce .account-options .woocommerce-orders-table {
  font-family: "barlow semi condensed";
  max-width: 650px;
  margin: 30px auto 25px;
  border-radius: 0px;
  border-right: none;
  border-left: none;
  border-collapse: collapse;
}
.woocommerce .account-options .woocommerce-orders-table .woocommerce-orders-table__cell-order-actions {
  display: none;
}
.woocommerce .account-options .woocommerce-orders-table .woocommerce-orders-table__header-order-actions {
  display: none;
}
.woocommerce .account-options .woocommerce-orders-table th {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #717171;
  letter-spacing: 0.02938rem;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
}
.woocommerce .account-options .woocommerce-orders-table td {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.055rem;
  text-transform: uppercase;
  padding-top: 15px;
  padding-bottom: 15px;
}
.woocommerce .account-options .woocommerce-orders-table td a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #ECB032;
  text-decoration: underline;
  letter-spacing: 0;
}
.woocommerce .account-options .woocommerce-orders-table td .button {
  background-color: #ffffff;
  border-radius: 0px;
  border: none;
}
@media (max-width: 814px) {
  .woocommerce .account-options {
    width: 100%;
  }
}
.woocommerce .account-options input, .woocommerce .account-options select {
  width: 48.5%;
  height: 34px;
  padding: 0px 8px;
  border: 1px solid #c0c0c0;
  font-size: 0.9375rem;
  font-family: "barlow semi condensed";
}
.woocommerce .account-options input::-webkit-input-placeholder, .woocommerce .account-options select::-webkit-input-placeholder {
  color: #BABABA;
  font-size: 0.9375rem;
  font-family: "barlow semi condensed";
}
.woocommerce .account-options input:focus, .woocommerce .account-options select:focus {
  outline: none;
}
.woocommerce .account-options .select-span {
  position: relative;
  width: 48.5%;
  height: 34px;
  display: inline-block;
}
.woocommerce .account-options .select-span::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 50%;
  margin-top: -1px;
  height: 0;
  width: 0;
  border-top: 5px solid #000;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  pointer-events: none;
}
.woocommerce .account-options select {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -webkit-appearance: none;
  width: 100%;
  color: #bababa;
  background-color: white;
}
@media (max-width: 814px) {
  .woocommerce .account-options select {
    margin: 5px 0px;
    width: 100%;
  }
}
.woocommerce .account-options label {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #bababa;
  margin-left: 2px;
}
.woocommerce .account-options .woocommerce-form__label-for-checkbox {
  display: inline-block;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 600;
  color: #717171;
  letter-spacing: 0.02375rem;
  margin-top: 10px;
  width: 100%;
  line-height: 2;
  text-transform: capitalize;
  cursor: pointer;
}
.woocommerce .account-options textarea {
  width: 99.7%;
  height: 137px;
  resize: none;
  padding: 10px;
  border: 1px solid #c0c0c0;
  margin-top: 5px;
  font-size: 0.9375rem;
  font-family: "barlow semi condensed";
}
.woocommerce .account-options textarea::-webkit-input-placeholder {
  color: #BABABA;
  font-size: 0.9375rem;
  font-family: "barlow semi condensed";
}
.woocommerce .account-options textarea:focus {
  outline: none;
}
.woocommerce .account-options input[type=submit] {
  margin-top: 20px;
  background-color: #ECB032;
  color: #ffffff;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  letter-spacing: 0.03125rem;
  border: 1px solid #ECB032;
}
.woocommerce .account-options button[type=submit] {
  margin-top: 20px;
  background-color: #ECB032;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  letter-spacing: 0.03125rem;
  border: 1px solid #ECB032;
  border-radius: 0px;
}
.woocommerce .account-options .form-left {
  margin: 5px 5px 5px 0px;
}
@media (max-width: 814px) {
  .woocommerce .account-options .form-left {
    margin: 5px 0px;
    width: 100%;
  }
}
.woocommerce .account-options .form-right {
  margin: 5px 0px 5px 5px;
}
@media (max-width: 814px) {
  .woocommerce .account-options .form-right {
    margin: 5px 0px;
    width: 100%;
  }
}
.woocommerce .account-options #selectbox-placeholder {
  color: #BABABA;
}

.woocommerce-ResetPassword {
  max-width: 310px;
  margin: 32px auto;
  border: 0px solid rgba(0, 0, 0, 0);
  padding: 0px;
}
.woocommerce-ResetPassword label {
  display: none;
}
.woocommerce-ResetPassword .woocommerce-form-row {
  width: 100% !important;
}
.woocommerce-ResetPassword .woocommerce-form-row input {
  width: 100% !important;
  height: 34px;
  padding-left: 10px;
}
.woocommerce-ResetPassword .woocommerce-form-row button {
  background-color: #ECB032;
  color: #ffffff;
  border-radius: 0px;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "barlow semi condensed";
}
.woocommerce-ResetPassword .woocommerce-form-row button:hover {
  background-color: #ECB032;
  color: #ffffff;
}

.subscription-page {
  max-width: 640px;
  margin: 0px auto;
}
@media (max-width: 768px) {
  .subscription-page {
    padding: 0px 20px;
  }
}
.subscription-page #subs-flick-back {
  display: inline-block;
  background-color: black;
  color: white;
  padding: 10px 15px;
  text-transform: uppercase;
  font-size: 0.9375rem;
  margin-top: 20px;
  margin-bottom: 20px;
}
.subscription-page .description-text-subs {
  margin-top: 20px;
}
.subscription-page .title-section {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .subscription-page .title-section {
    display: block;
  }
}
@media (max-width: 768px) {
  .subscription-page .title-section .prod-name {
    width: 100%;
  }
}
.subscription-page .title-section .prod-name h4 {
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 400;
}
.subscription-page .title-section .prod-name a {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  color: #919191;
  letter-spacing: 0.02375rem;
}
.subscription-page .title-section .prod-name a img {
  height: 12px;
  margin-right: 5px;
  position: relative;
  top: 1px;
}
.subscription-page .title-section .progress-circles {
  display: flex;
  justify-content: space-between;
  width: 353px;
}
@media (max-width: 768px) {
  .subscription-page .title-section .progress-circles {
    width: 100%;
  }
}
.subscription-page .title-section .progress-circles .circle-img-hide {
  display: none;
}
.subscription-page .title-section .progress-circles .circle {
  display: none;
  display: flex;
  align-items: flex-end;
  margin-right: 16px;
  padding-top: 17px;
}
@media (max-width: 768px) {
  .subscription-page .title-section .progress-circles .circle {
    padding-top: 0px;
    margin-bottom: 15px;
  }
}
@media (max-width: 425px) {
  .subscription-page .title-section .progress-circles .circle {
    display: block;
  }
}
.subscription-page .title-section .progress-circles h3 {
  font-size: 0.875rem;
  font-weight: 400;
  color: #BBBBBB;
  line-height: 1.75rem;
  margin-top: 0px;
  letter-spacing: 0;
  margin-right: 3px;
}
@media (max-width: 425px) {
  .subscription-page .title-section .progress-circles h3 {
    display: none;
  }
}
.subscription-page .title-section .progress-circles img {
  width: 36px;
  height: 36px;
}
.subscription-page .prod-edit {
  padding-bottom: 20px;
}
.subscription-page .prod-edit a {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  color: #919191;
  letter-spacing: 0.02375rem;
  cursor: pointer;
}
.subscription-page .prod-edit a img {
  height: 12px;
  margin-right: 5px;
  position: relative;
  top: 1px;
}
.subscription-page .faq-section {
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
}
.subscription-page .faq-section h2 {
  margin-bottom: 28px;
}
.subscription-page .faq-section h3 {
  font-family: "barlow";
  font-size: 0.9375rem;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 0px;
}
.subscription-page .faq-section h4 {
  font-family: "barlow";
  font-size: 0.9375rem;
  line-height: 1.625rem;
  letter-spacing: 0;
  font-weight: 300;
  margin-top: 0px;
  margin-bottom: 40px;
}

.sub-background {
  background-color: #f9f8f8;
  min-height: 360px;
  position: relative;
}
.sub-background .confirmation {
  max-width: 640px;
  margin: 0px auto;
  color: #000000;
  font-size: 0.9375rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.625rem;
  letter-spacing: 0;
  font-family: "barlow";
  padding-bottom: 65px;
  margin-top: -20px;
  text-align: center;
}

form {
  position: relative;
}
form .wholebean {
  position: absolute;
  top: 280px;
  left: 0px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  form .wholebean {
    top: 700px;
  }
}

.subscription-options {
  min-height: 360px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 55px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .subscription-options .fake-hr {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 768px) {
  .subscription-options {
    padding: 20px 20px 72px;
  }
}
@media (max-width: 475px) {
  .subscription-options {
    padding-bottom: 92px;
  }
}
.subscription-options .options-container {
  max-width: 640px;
  width: 100%;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
}
.subscription-options .options-container input[type=radio] {
  position: absolute;
  left: -99999px;
  top: -9999px;
}
@media (max-width: 768px) {
  .subscription-options .options-container {
    display: block;
  }
}
.subscription-options .options-container label {
  min-width: 200px;
  height: 240px;
  margin: 1%;
  background-size: cover;
  background-position: center;
  display: block;
}
@media (max-width: 768px) {
  .subscription-options .options-container label {
    margin-bottom: 20px;
  }
}
.subscription-options .options-container .white-image h3 {
  color: white;
}
.subscription-options .options-container .white-image p {
  color: white;
}
.subscription-options .options-container .white-image .fake-hr {
  border-bottom: 1px solid white;
}
.subscription-options .options-container .white-image [type=radio]:not(:checked) + label .select-marker-unchecked {
  display: none;
}
.subscription-options .options-container .white-image [type=radio]:not(:checked) + label .select-marker-checked {
  display: none;
}
.subscription-options .options-container .black-white h3 {
  color: black;
}
.subscription-options .options-container .black-white p {
  color: black;
}
.subscription-options .options-container .black-white .fake-hr {
  border-bottom: 1px solid black;
}
.subscription-options .options-container a {
  min-width: 200px;
  height: 240px;
  padding: 20px;
  text-align: center;
  border: 1.5px solid #f0f0f0;
  display: block;
  color: white;
  cursor: pointer;
}
.subscription-options .options-container a:hover {
  border-color: #BABABA;
}
.subscription-options .options-container [type=radio]:checked + label .select-marker-unchecked {
  display: none;
}
.subscription-options .options-container [type=radio]:checked + label .select-marker-checked {
  display: inline;
}
.subscription-options .options-container [type=radio]:not(:checked) + label .select-marker-unchecked {
  display: inline;
}
.subscription-options .options-container [type=radio]:not(:checked) + label .select-marker-checked {
  display: none;
}
.subscription-options .options-container .option {
  height: 240px;
  position: relative;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
.subscription-options .options-container .option .fake-hr {
  width: 30%;
  margin: 0px auto;
}
.subscription-options .options-container .option h3 {
  margin: 0px;
}
.subscription-options .options-container .option p {
  margin: 5px;
  max-width: 145px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.375rem;
}
.subscription-options .options-container .option .sub_sub_title {
  font-size: 0.6875rem;
  font-style: italic;
  margin-top: 10px;
}
.subscription-options .options-container .option .button-container {
  position: absolute;
  bottom: 50px;
  left: 0px;
  right: 0px;
  text-align: center;
}
.subscription-options .options-container .option .select-marker {
  width: 48px;
}
.subscription-options .options-container .summary-tile {
  height: 137px;
  margin: 1%;
  background: #ffffff;
}
.subscription-options .options-container .summary-container {
  width: 97.6%;
  background-color: #ffffff;
  margin: 0px auto;
  padding: 30px;
  border: 1.5px solid #f0f0f0;
}
.subscription-options .options-container .summary-container .inner-summary {
  width: 280px;
  margin: 0px auto;
  text-align: center;
}
@media (max-width: 768px) {
  .subscription-options .options-container .summary-container .inner-summary {
    width: auto;
  }
}
.subscription-options .options-container .summary-container .inner-summary h3 {
  margin-top: 0px;
  margin-bottom: 14px;
}
.subscription-options .options-container .summary-container .inner-summary .fake-hr {
  width: 20%;
  margin: 0px auto;
}
.subscription-options .options-container .summary-container .inner-summary .checkout-btns {
  width: 100%;
  display: inline-block;
}
@media (max-width: 768px) {
  .subscription-options .options-container .summary-container .inner-summary .checkout-btns {
    display: block;
    width: 100%;
    margin-left: 0px;
  }
}
.subscription-options .options-container .summary-container .inner-summary .checkout-btns .green-btn {
  background-color: #35c051;
  color: #ffffff;
  height: 38px;
  width: 100%;
}
.subscription-options .options-container .summary-container .inner-summary .checkout-btns .green-btn:focus {
  outline: none;
}
.subscription-options .options-container .summary-container .inner-summary .checkout-btns h4 {
  text-align: center;
}
.subscription-options .options-container .summary-container .single_variation_wrap {
  width: 280px;
  margin: 0px auto;
  text-align: center;
}
@media (max-width: 392px) {
  .subscription-options .options-container .summary-container .single_variation_wrap {
    width: auto;
  }
}
.subscription-options .options-container .summary-container .single_variation_wrap button {
  width: 100%;
  background-color: #35c051;
  border-radius: 0px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.055rem;
  font-family: "barlow semi condensed";
  text-transform: uppercase;
}
.subscription-options h4 {
  text-align: center;
  font-weight: 300;
  font-style: italic;
}

@media (max-width: 768px) {
  .completed-options {
    padding: 0px 20px;
  }
}
.completed-options .options-container {
  justify-content: space-between;
}
.completed-options .options-container a {
  margin: 0px;
  margin-bottom: 20px;
}
.completed-options a {
  height: 137px !important;
}
.completed-options .summary-container {
  width: 100%;
  background-color: #ffffff;
  margin: 0px auto;
  padding: 30px;
  border: 1.5px solid #f0f0f0;
}
.completed-options .summary-container .inner-summary {
  width: 280px;
  margin: 0px auto;
  text-align: center;
}
.completed-options .summary-container .inner-summary h3 {
  margin-top: 0px;
}
.completed-options .summary-container .inner-summary .fake-hr {
  width: 20%;
  margin: 0px auto;
}
.completed-options .summary-container .inner-summary .checkout-btns {
  width: 100%;
  display: inline-block;
}
@media (max-width: 768px) {
  .completed-options .summary-container .inner-summary .checkout-btns {
    display: block;
    width: 100%;
    margin-left: 0px;
  }
}
.completed-options .summary-container .inner-summary .checkout-btns .green-btn {
  background-color: #35c051;
  color: #ffffff;
  height: 38px;
  width: 100%;
}
.completed-options .summary-container .inner-summary .checkout-btns .green-btn:focus {
  outline: none;
}
.completed-options .summary-container .inner-summary .checkout-btns h4 {
  text-align: center;
}

@media (max-width: 768px) {
  .order-confirmation-page {
    margin: 0px 20px 0px !important;
  }
}

.order-confirmation-page, .account-options {
  max-width: 640px;
  margin: 0px auto;
}
.order-confirmation-page .save-form form, .account-options .save-form form {
  display: flex;
  justify-content: space-between;
}
.order-confirmation-page .save-form form input, .account-options .save-form form input {
  width: 31.3%;
  height: 34px;
  padding: 0px 8px;
  border: 1px solid #c0c0c0;
}
.order-confirmation-page .save-form form input::-webkit-input-placeholder, .account-options .save-form form input::-webkit-input-placeholder {
  color: #BABABA;
}
.order-confirmation-page .save-form form input:focus, .account-options .save-form form input:focus {
  outline: none;
}
.order-confirmation-page .save-form form input[type=submit], .account-options .save-form form input[type=submit] {
  background-color: #ECB032;
  color: #ffffff;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  letter-spacing: 0.03125rem;
  border: none;
  cursor: pointer;
}
.order-confirmation-page .order-info, .account-options .order-info {
  padding: 40px 0px;
}
.order-confirmation-page .order-info h2, .account-options .order-info h2 {
  margin-top: 0px;
  margin-bottom: 10px;
}
.order-confirmation-page .order-info h4, .account-options .order-info h4 {
  margin: 0px;
}
.order-confirmation-page .order-info a, .account-options .order-info a {
  text-decoration: underline;
  font-family: "barlow semi condensed";
  color: #ECB032;
}
.order-confirmation-page .order-details, .account-options .order-details {
  margin-bottom: 70px;
}
.order-confirmation-page .order__table-headding, .account-options .order__table-headding {
  display: flex;
  margin: 10px 0px;
  align-content: center;
}
.order-confirmation-page .order__table-headding .title, .account-options .order__table-headding .title {
  font-family: "barlow semi condensed";
}
.order-confirmation-page .order__table-headding .order__table-head-product, .account-options .order__table-headding .order__table-head-product {
  width: 50%;
  display: inline-block;
}
.order-confirmation-page .order__table-headding .order__table-head-price, .account-options .order__table-headding .order__table-head-price {
  width: 16%;
  display: inline-block;
  font-family: "barlow semi condensed";
  text-align: center;
}
.order-confirmation-page .order__table-headding .order__table-head-quantity, .account-options .order__table-headding .order__table-head-quantity {
  width: 16%;
  display: inline-block;
  text-align: center;
}
.order-confirmation-page .order__table-headding .order__table-head-total, .account-options .order__table-headding .order__table-head-total {
  width: 16%;
  display: inline-block;
  text-align: center;
}
.order-confirmation-page .order__table-row, .account-options .order__table-row {
  display: flex;
  align-items: baseline;
  width: 100%;
}
.order-confirmation-page .order__table-row .order__table-row-product, .account-options .order__table-row .order__table-row-product {
  width: 100%;
  display: inline-block;
}
.order-confirmation-page .order__table-row .order__table-row-product .order__table-head-product, .account-options .order__table-row .order__table-row-product .order__table-head-product {
  font-family: "barlow semi condensed";
  margin-bottom: -20px;
  margin-top: 13px;
  color: #717171;
  font-weight: 600;
  font-size: 0.9375rem;
}
.order-confirmation-page .order__table-row .order__table-row-product h3, .account-options .order__table-row .order__table-row-product h3 {
  margin-bottom: 0px;
}
.order-confirmation-page .order__table-row .order__table-row-product h4, .account-options .order__table-row .order__table-row-product h4 {
  margin-top: 10px;
}
.order-confirmation-page .order__table-row .order__table-row-product ul, .account-options .order__table-row .order__table-row-product ul {
  list-style-type: none;
  margin: 2px;
  padding: 0px;
}
.order-confirmation-page .order__table-row .order__table-row-product ul li, .account-options .order__table-row .order__table-row-product ul li {
  margin: 0px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #717171;
  letter-spacing: 0.02938rem;
}
.order-confirmation-page .order__table-row .order__table-row-product ul li p, .account-options .order__table-row .order__table-row-product ul li p {
  margin: 0px;
  margin-bottom: 3px;
}
.order-confirmation-page .order__table-row .order__table-row-product ul li strong, .account-options .order__table-row .order__table-row-product ul li strong {
  display: none;
}
.order-confirmation-page .order__table-row .order__table-row-price, .account-options .order__table-row .order__table-row-price {
  width: 33.3%;
  display: inline-block;
}
.order-confirmation-page .order__table-row .order__table-row-price .order__table-head-price, .account-options .order__table-row .order__table-row-price .order__table-head-price {
  font-family: "barlow semi condensed";
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .order-confirmation-page .order__table-row .order__table-row-price .order__table-head-price, .account-options .order__table-row .order__table-row-price .order__table-head-price {
    margin-top: 20px;
  }
}
.order-confirmation-page .order__table-row .order__table-row-quantity, .account-options .order__table-row .order__table-row-quantity {
  width: 33.3%;
  display: inline-block;
}
.order-confirmation-page .order__table-row .order__table-row-quantity .order__table-head-quantity, .account-options .order__table-row .order__table-row-quantity .order__table-head-quantity {
  font-family: "barlow semi condensed";
  margin-bottom: 10px;
}
.order-confirmation-page .order__table-row .order__table-row-quantity #purchase-quantity, .account-options .order__table-row .order__table-row-quantity #purchase-quantity {
  border: 1.5px solid #BABABA;
  width: 61px;
  height: 34px;
  text-align: center;
  font-size: 0.875rem;
  font-family: "barlow semi condensed";
}
.order-confirmation-page .order__table-row .order__table-row-quantity #purchase-quantity:focus, .account-options .order__table-row .order__table-row-quantity #purchase-quantity:focus {
  outline: -webkit-focus-ring-color none 0px;
}
.order-confirmation-page .order__table-row .order__table-row-quantity #purchase-quantity:-ms-input-placeholder, .account-options .order__table-row .order__table-row-quantity #purchase-quantity:-ms-input-placeholder {
  color: #bcbcbc;
}
.order-confirmation-page .order__table-row .order__table-row-quantity #purchase-quantity::-moz-placeholder, .account-options .order__table-row .order__table-row-quantity #purchase-quantity::-moz-placeholder {
  color: #bcbcbc;
}
.order-confirmation-page .order__table-row .order__table-row-quantity #purchase-quantity::-ms-input-placeholder, .account-options .order__table-row .order__table-row-quantity #purchase-quantity::-ms-input-placeholder {
  color: #bcbcbc;
}
.order-confirmation-page .order__table-row .order__table-row-quantity #purchase-quantity::placeholder, .account-options .order__table-row .order__table-row-quantity #purchase-quantity::placeholder {
  color: #bcbcbc;
}
.order-confirmation-page .order__table-row .order__table-row-total, .account-options .order__table-row .order__table-row-total {
  width: 33.3%;
  display: inline-block;
}
.order-confirmation-page .order__table-row .order__table-row-total .order__table-head-total, .account-options .order__table-row .order__table-row-total .order__table-head-total {
  font-family: "barlow semi condensed";
  margin-bottom: 10px;
}
.order-confirmation-page .order__table-row .position-text, .account-options .order__table-row .position-text {
  text-align: center;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.055rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .order-confirmation-page .order__table-row .position-text, .account-options .order__table-row .position-text {
    text-align: left;
  }
}
.order-confirmation-page .order__table-row .position-text h4, .account-options .order__table-row .position-text h4 {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.055rem;
  margin: 0px;
}
@media (max-width: 768px) {
  .order-confirmation-page .mob-no-flex, .account-options .mob-no-flex {
    display: block;
  }
}

.woocommerce-checkout .fake-hr {
  border-color: #f0f0f0;
}

.training-parent-page {
  max-width: 714px;
  margin: 0px auto;
}
@media (max-width: 1270px) {
  .training-parent-page {
    padding: 0px 20px;
  }
}
@media (max-width: 768px) {
  .training-parent-page {
    max-width: 1000px;
  }
}
.training-parent-page .section-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.625rem;
  letter-spacing: 0;
  margin-bottom: 5px;
}
.training-parent-page .fake-hr {
  border-color: #f5f5f5;
  width: 50%;
  margin-bottom: 23px;
}
.training-parent-page .contact-title h4 {
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 400;
  margin-top: 0px;
}
.training-parent-page .contact-title h1 {
  margin: 40px 0px 2px;
}
@media (max-width: 700px) {
  .training-parent-page .contact-title h1 {
    margin-top: 25px;
  }
}

.training-blurb {
  padding-top: 0px !important;
}
@media (min-width: 590px) {
  .training-blurb .blurb-words {
    display: flex;
  }
}
.training-blurb .blurb-words p {
  margin-top: 20px;
}
@media (min-width: 590px) {
  .training-blurb .blurb-image {
    margin-right: 26px;
  }
}
@media (max-width: 589px) {
  .training-blurb .blurb-image {
    text-align: center;
  }
}
.training-blurb .blurb-image img {
  width: 191px;
}

.blurb {
  max-width: 895px;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}
@media (max-width: 1270px) {
  .blurb {
    padding: 30px 20px;
  }
}
@media (max-width: 768px) {
  .blurb {
    display: block;
  }
}
.blurb .blurb-words {
  max-width: 714px;
  margin: 0px auto;
}
@media (max-width: 768px) {
  .blurb .blurb-words {
    max-width: 100%;
    padding: 0px;
  }
}
.blurb .right-bar {
  width: 30%;
  min-width: 189px;
  right: 0px;
}
@media (max-width: 768px) {
  .blurb .right-bar {
    width: 100%;
    padding: 0px;
  }
}
.blurb .right-bar .right-button {
  width: 100%;
  min-width: 189px;
  height: 45px;
  margin: 16px 0px;
  padding: 0px 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.blurb .right-bar .right-button h3 {
  display: inline-block;
  margin-top: 3px;
  color: inherit;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.0625rem;
}
.blurb .right-bar .right-button img {
  height: 13px;
}
.blurb .right-bar .gold {
  background-color: #ECB032;
  color: #ffffff;
}
.blurb .right-bar .grey {
  background-color: #f5f5f5;
}
.blurb .right-bar .right-bar-hr {
  border-color: #f0f0f0;
  width: 100%;
  min-width: 189px;
}

.bookly-booking-section .bookly-inner {
  margin: 0 auto;
  max-width: 714px;
  padding: 40px 0px;
}
@media (max-width: 1270px) {
  .bookly-booking-section .bookly-inner {
    padding: 40px 20px 0px;
  }
}
.bookly-booking-section .bookly-inner h2 {
  font-family: "barlow semi condensed";
  margin: 0px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.bookly-form {
  font-family: "barlow";
  font-weight: 600;
  line-height: 1.625rem;
  font-size: 0.9375rem;
}
.bookly-form .bookly-progress-tracker {
  font-family: "barlow semi condensed";
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: 0.0275rem;
  text-transform: uppercase;
}
.bookly-form .bookly-bold {
  font-family: "barlow";
  font-weight: 600;
  line-height: 1.625rem;
  font-size: 0.9375rem;
}
.bookly-form .bookly-details-step {
  margin-right: 0px !important;
}
.bookly-form .bookly-btn {
  border-radius: 0px !important;
}
@media (min-width: 450px) {
  .bookly-form .bookly-btn {
    min-width: 155px;
  }
}
@media (max-width: 449px) {
  .bookly-form .bookly-btn {
    min-width: 120px;
  }
}
.bookly-form .bookly-btn span {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  line-height: 1rem !important;
  letter-spacing: 0.055rem !important;
}
.bookly-form .bookly-box {
  margin: 0 0 18px;
}

.training-trainers {
  margin: 0 auto;
  max-width: 714px;
  padding: 40px 0px 20px;
}
@media (max-width: 1270px) {
  .training-trainers {
    padding: 40px 20px 20px;
  }
}
.training-trainers h2 {
  font-family: "barlow semi condensed";
  margin: 0px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.training-trainers .trainers-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 500px) {
  .training-trainers .trainers-container .trainer-single {
    width: 47.5%;
    min-width: 47.5%;
    max-width: 47.5%;
    margin-bottom: 40px;
  }
}
@media (max-width: 499px) {
  .training-trainers .trainers-container .trainer-single {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin-bottom: 25px;
  }
}
.training-trainers .trainers-container .trainer-single .trainer-single__image-container {
  position: relative;
  width: 100%;
  padding-top: 96%;
}
@media (max-width: 499px) {
  .training-trainers .trainers-container .trainer-single .trainer-single__image-container {
    padding-top: 70%;
  }
}
.training-trainers .trainers-container .trainer-single .trainer-single__image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 499px) {
  .training-trainers .trainers-container .trainer-single .trainer-single__image-container img {
    -o-object-position: top;
       object-position: top;
    font-family: "object-fit: cover; object-position: top;";
  }
}
.training-trainers .trainers-container .trainer-single .trainer-text h5 {
  margin: 15px 0 0;
  padding: 0;
  font-family: "barlow";
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.625rem;
  color: black;
  text-transform: uppercase;
}
.training-trainers .trainers-container .trainer-single .trainer-text p {
  font-size: 0.9375rem;
  font-family: "barlow";
  font-weight: 300;
  line-height: 1.625rem;
  margin: 0 0;
}

.bottom-content {
  margin: 0 auto;
  max-width: 714px;
  padding: 0px 0px 50px;
}
@media (max-width: 1270px) {
  .bottom-content {
    padding: 0px 20px 30px;
  }
}
.bottom-content h2 {
  font-family: "barlow semi condensed";
  margin: 0px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.courses {
  background-color: #f9f8f8;
}
@media (max-width: 1270px) {
  .courses {
    padding: 0px 20px;
  }
}
.courses .course-box {
  max-width: 895px;
  margin: 0px auto;
  padding-bottom: 30px;
}
.courses .course-box .courses-title {
  padding: 30px 0px 20px;
  max-width: 714px;
  margin: 0px auto;
}
.courses .course-box .courses-title h2 {
  font-family: "barlow semi condensed";
  margin: 0px;
}
.courses .course-box .courses-section-summary {
  max-width: 714px;
  margin: 0px auto;
  padding: 0px 0px;
}
.courses .course-box .courses-section-summary p {
  margin: 9px 0px 10px;
}
.courses .course-box .courses-links {
  max-width: 714px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0px auto;
}
@media (max-width: 768px) {
  .courses .course-box .courses-links {
    margin: 0px auto;
  }
}
.courses .course-box .courses-links .course-tile {
  padding: 30px 15px 20px;
  text-align: center;
  max-height: 220px;
  background-color: #ffffff;
  width: 48%;
  border: 1.5px solid #F0F0F0;
  margin-bottom: 21px;
}
@media (min-width: 720px) {
  .courses .course-box .courses-links .course-tile {
    max-width: 225px;
  }
}
@media (max-width: 480px) {
  .courses .course-box .courses-links .course-tile {
    max-width: 100%;
    width: 100%;
    margin: 10px 0px 0px;
  }
}
.courses .course-box .courses-links .course-tile:hover img, .courses .course-box .courses-links .course-tile:hover h4, .courses .course-box .courses-links .course-tile:hover h5 {
  opacity: 0.3;
}
.courses .course-box .courses-links .course-tile img {
  max-height: 85px;
}
.courses .course-box .courses-links .course-tile h4 {
  font-weight: 400;
  letter-spacing: 0.03125rem;
  line-height: 1.5rem;
  margin: 0;
  color: #000000;
  font-family: "barlow semi condensed";
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  line-height: 1.8125rem;
  text-transform: uppercase;
  font-size: 20px;
}
.courses .course-box .courses-links .course-tile h5 {
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0px;
  line-height: 1.5rem;
  letter-spacing: 0.0625rem;
  line-height: 1.8125rem;
}

.meet-trainer {
  max-width: 895px;
  margin: 0px auto;
}
@media (max-width: 1270px) {
  .meet-trainer {
    padding: 0px 20px;
  }
}
.meet-trainer .trainer-box {
  max-width: 520px;
}
@media (max-width: 768px) {
  .meet-trainer .trainer-box {
    margin: 0px auto;
  }
}
.meet-trainer .trainer-box h3 span b {
  font-weight: 400;
  font-size: 1.3125rem;
  letter-spacing: 0.03125rem;
}
.meet-trainer .trainer-box .trainer-title h2 {
  font-family: "barlow semi condensed";
  margin: 30px 0px;
}
.meet-trainer .trainer-box img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
  height: 100%;
  margin-bottom: 20px;
}
.meet-trainer .trainer-box p {
  padding-bottom: 20px;
}
.meet-trainer .trainer-box p img {
  margin-bottom: -10px;
}

.cant-find-page {
  min-height: 830px;
  max-width: 100%;
  width: 1024px;
  margin: 0px auto;
}
@media (max-width: 1270px) {
  .cant-find-page {
    padding-left: 100px;
  }
}
@media (max-width: 768px) {
  .cant-find-page {
    padding-left: 0px;
  }
}
.cant-find-page .cant-find-words {
  font-size: 2.25rem;
  font-weight: 600;
  font-family: "barlow semi condensed";
  letter-spacing: 0.0625rem;
}
@media (max-width: 768px) {
  .cant-find-page .cant-find-words {
    padding-left: 15px;
  }
}
.cant-find-page .more-words {
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  font-family: "barlow semi condensed";
  letter-spacing: 0.0625rem;
}
@media (max-width: 768px) {
  .cant-find-page .more-words {
    padding-left: 15px;
  }
}
.cant-find-page .right-bar {
  margin-top: 100px;
  width: 20%;
  min-width: 189px;
}
@media (max-width: 768px) {
  .cant-find-page .right-bar {
    width: 100%;
    padding: 0px 15px;
  }
}
.cant-find-page .right-bar .right-button {
  width: 100%;
  min-width: 189px;
  height: 45px;
  margin: 16px 0px;
  padding: 0px 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cant-find-page .right-bar .right-button h3 {
  display: inline-block;
  margin-top: 3px;
  color: inherit;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.0625rem;
}
.cant-find-page .right-bar .right-button img {
  height: 13px;
}
.cant-find-page .right-bar .gold {
  background-color: #ECB032;
  color: #ffffff;
}
.cant-find-page .right-bar .grey {
  background-color: #f5f5f5;
}
.cant-find-page .right-bar .right-bar-hr {
  border-color: #f0f0f0;
  width: 100%;
  min-width: 189px;
}
.cant-find-page .right-bar .sign-up {
  background-color: #ffffff;
  padding: 20px 0px 0px 0px;
}
.cant-find-page .right-bar .sign-up .inputs input {
  width: 100%;
}
.cant-find-page .right-bar .sign-up form {
  margin-bottom: 30px;
}

body .login-container {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  max-width: 770px;
  margin: 0 auto 80px;
}
@media (max-width: 650px) {
  body .login-container {
    flex-wrap: wrap;
    margin: 0 auto 60px;
  }
}
body .create-account {
  max-width: 310px;
  width: 100%;
}
body .create-account a {
  display: inline-block;
  color: #ECB032;
  text-decoration: underline;
  font-size: 0.875rem;
  font-weight: 600;
  font-style: italic;
  margin: 0px;
  margin-left: 4px;
}
@media (max-width: 650px) {
  body .create-account {
    max-width: 100%;
  }
}
body .create-account__title {
  font-family: "Barlow Semi Condensed";
  font-size: 2.25rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px;
  line-height: 2.25rem;
}
body .create-account__subtitle {
  font-family: "Barlow Semi Condensed";
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  line-height: 1.5625rem;
  text-transform: uppercase;
  padding-bottom: 20px;
  position: relative;
  margin: 0 0 35px;
}
body .create-account__subtitle::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 2px;
  background: #f0f0f0;
  bottom: 0;
  left: 0;
}
body .create-account__copy p {
  font-family: "Barlow";
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4375rem;
  margin: 0 0 30px;
}
body .create-account__copy p:last-of-type {
  margin: 0 0 10px;
}
body .create-account__copy a {
  color: #ecb032;
  font-family: "Barlow Semi Condensed";
  font-weight: 600;
  text-decoration: underline;
  margin: 0;
}
body .log-in-page {
  max-width: 310px;
  width: 100%;
  margin: 0 40px 0 0;
}
@media (max-width: 650px) {
  body .log-in-page {
    max-width: 100%;
    margin: 0 0 50px;
  }
}
body .log-in-page__title {
  font-family: "Barlow Semi Condensed";
  font-size: 2.25rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px;
  line-height: 2.25rem;
}
body .log-in-page__subtitle {
  font-family: "Barlow Semi Condensed";
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  line-height: 1.5625rem;
  text-transform: uppercase;
  padding-bottom: 20px;
  position: relative;
  margin: 0 0 40px;
}
body .log-in-page__subtitle::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 2px;
  background: #f0f0f0;
  bottom: 0;
  left: 0;
}
body .log-in-page .login-box {
  border: 0px solid rgba(0, 0, 0, 0);
  padding: 0px;
}
body .log-in-page .login-box label {
  display: none;
}
body .log-in-page .login-box input {
  width: 310px;
  height: 34px;
  padding-left: 10px;
  border: 1.5px solid #bababa;
}
body .log-in-page .login-box input:-ms-input-placeholder {
  color: #717171;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 0.875rem;
}
body .log-in-page .login-box input::-moz-placeholder {
  color: #bcbcbc;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 0.875rem;
}
body .log-in-page .login-box input::-ms-input-placeholder {
  color: #bcbcbc;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 0.875rem;
}
body .log-in-page .login-box input::placeholder {
  color: #bcbcbc;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 0.875rem;
}
body .log-in-page .login-box .form-row button {
  background-color: #ECB032;
  color: #ffffff;
  border-radius: 0px;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "barlow semi condensed";
}
body .log-in-page .login-box .form-row .woocommerce-form__input-checkbox {
  height: 14px;
  width: 14px;
  -webkit-appearance: checkbox;
}
body .log-in-page .login-box p {
  margin: 0px;
}
body .log-in-page .login-box p a {
  display: inline-block;
  color: #ECB032;
  text-decoration: underline;
  font-size: 0.875rem;
  font-weight: 600;
  font-style: italic;
  margin: 0px;
  margin-left: 4px;
}

.equipment-page .woocommerce-message {
  background-color: #f5f5f5;
  border-top: 0px solid rgba(0, 0, 0, 0);
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.055rem;
  padding: 15px;
  display: flex;
  flex-direction: column-reverse;
}
.equipment-page .woocommerce-message:before {
  display: none;
}
.equipment-page .woocommerce-message .button {
  background-color: #35c051;
  color: #ffffff;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.055rem;
  text-align: center;
  border-radius: 0px;
  margin-top: 15px;
}

.qtylabel {
  margin-top: 0px !important;
}

@media print {
  .sidebar {
    display: none;
  }

  #navbar {
    display: none;
  }

  iframe {
    display: none;
  }
}
.pic-gallery {
  margin-bottom: 40px;
}
.pic-gallery h2 {
  text-transform: uppercase;
}
.pic-gallery .gallery-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0px -2%;
}
.pic-gallery .gallery-box .image-box {
  width: 48%;
  height: 0px;
  padding-bottom: 48%;
  margin: 1%;
  overflow: hidden;
  position: relative;
}
.pic-gallery .gallery-box .image-box .inner-image {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.pic-gallery .gallery-box .image-box .inner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: center center";
}
.pic-gallery .gallery-box .image-box .image-plus-box {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}
.pic-gallery .gallery-box .image-box .image-plus-box .plus-image {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 20%;
  height: 20%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: center center";
}

.search-wrapper {
  max-width: 640px;
  margin: 0px auto;
  padding-bottom: 50px;
  padding-top: 35px;
}
.search-wrapper .fake-hr {
  margin-bottom: 35px;
  border-bottom-color: #F0F0F0;
  width: 50%;
}
@media (max-width: 680px) {
  .search-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.search-wrapper h2 {
  text-transform: uppercase;
  margin-bottom: 15px;
}
.search-wrapper .search-result {
  margin-bottom: 60px;
}
@media (min-width: 451px) {
  .search-wrapper .search-result {
    display: flex;
  }
}
.search-wrapper .search-result h3 {
  margin: 0px;
}
.search-wrapper .search-result h4 {
  margin: 0px;
}
.search-wrapper .search-result .sr-button {
  display: inline-block;
  background: #EDEDED;
  font-family: "barlow semi condensed";
  padding: 12px 16px;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.0625rem;
  margin-top: 12px;
}
.search-wrapper .search-result .sr-image {
  margin-right: 20px;
}
@media (max-width: 450px) {
  .search-wrapper .search-result .sr-image {
    width: 100%;
    height: 200px;
  }
}
@media (min-width: 451px) and (max-width: 650px) {
  .search-wrapper .search-result .sr-image {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }
}
@media (min-width: 651px) {
  .search-wrapper .search-result .sr-image {
    min-width: 200px;
    width: 200px;
    height: 200px;
  }
}
.search-wrapper .search-result .sr-image .sr-image-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}

.go-button {
  content: "";
  width: 8px;
  max-width: 8px;
  height: 15px;
  margin-left: 8px;
  box-sizing: border-box;
}

.search-container .go-button {
  background: url(../images/search-go.png) !important;
  background-repeat: no-repeat !important;
  background-size: 8px 15px !important;
}

.search-container-mobile .go-button {
  background: url(../images/search-go-black.png) !important;
  background-repeat: no-repeat !important;
  background-size: 8px 15px !important;
}

.search-container-mobile {
  font-size: 1rem;
  margin-bottom: 20px;
}
.search-container-mobile #searchform {
  display: flex;
  align-items: center;
  height: 100%;
}
.search-container-mobile input[type=text] {
  font-family: "barlow semi condensed";
  color: black;
  background: none;
  font-size: 1rem;
  text-transform: uppercase;
}
.search-container-mobile input[type=text] ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: black;
}
.search-container-mobile input[type=text] ::-moz-placeholder {
  /* Firefox 19+ */
  color: black;
}
.search-container-mobile input[type=text] :-ms-input-placeholder {
  /* IE 10+ */
  color: black;
}
.search-container-mobile input[type=text] :-moz-placeholder {
  /* Firefox 18- */
  color: black;
}
.search-container-mobile input[type=submit] {
  font-family: "barlow semi condensed";
  font-size: 1rem;
  background: none;
  border: 0px;
  color: black;
  letter-spacing: 0.0125rem;
  text-transform: uppercase;
  padding: 0px;
}
.search-container-mobile .search-icon-image {
  height: 22px;
  width: 22px;
  background: url(../images/search-mobile.png);
  background-size: 22px 22px;
  padding-left: 24px;
  padding-right: 10.8px;
  overflow: hidden;
  background-repeat: no-repeat;
}
.search-container-mobile .collapsing-input {
  width: 0px;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
  transition: width 0.2s ease-in-out;
}
.search-container-mobile .s-open {
  width: 75% !important;
  transition: width 0.5s ease-in-out;
}

.search-container {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .search-container {
    display: none;
  }
}
.search-container #searchform {
  display: flex;
  align-items: center;
  height: 100%;
}
.search-container input[type=text] {
  font-family: "barlow semi condensed";
  color: white;
  background: none;
  font-size: 1rem;
}
.search-container input[type=text] ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: white;
}
.search-container input[type=text] ::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
}
.search-container input[type=text] :-ms-input-placeholder {
  /* IE 10+ */
  color: white;
}
.search-container input[type=text] :-moz-placeholder {
  /* Firefox 18- */
  color: white;
}
.search-container input[type=submit] {
  font-family: "barlow semi condensed";
  font-size: 1rem;
  background: none;
  border: 0px;
  color: white;
  letter-spacing: 0.0125rem;
}
.search-container .search-icon-image {
  height: 22px;
}
.search-container .collapsing-input {
  width: 0px;
  overflow: hidden;
  transition: width 0.2s ease-in-out;
}
.search-container .s-open {
  width: 200px !important;
  border-bottom: 1px solid white;
  margin-left: 10px;
  transition: width 0.5s ease-in-out;
}

.new-subs-page .title-section,
.page-template-template-new-subs .title-section {
  margin: 0 0 30px;
}
.new-subs-page .title-section .prod-name,
.page-template-template-new-subs .title-section .prod-name {
  max-width: 576px;
  margin: 0px auto;
  text-align: center;
  padding: 0 20px;
}
.new-subs-page .title-section .prod-name .subs-title,
.page-template-template-new-subs .title-section .prod-name .subs-title {
  margin: 50px auto 10px;
  text-transform: uppercase;
  text-align: center;
  font-family: "barlow semi condensed", sans-serif;
  font-weight: 600;
  font-size: 2.25rem;
  letter-spacing: 0.0625rem;
  line-height: initial;
}
@media (max-width: 550px) {
  .new-subs-page .title-section .prod-name .subs-title,
.page-template-template-new-subs .title-section .prod-name .subs-title {
    font-size: 1.5rem;
  }
}
.new-subs-page .title-section .prod-name .subs-subtitle,
.page-template-template-new-subs .title-section .prod-name .subs-subtitle {
  margin: 0 auto 70px;
  text-transform: uppercase;
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: initial;
  font-family: "barlow semi condensed", sans-serif;
}
@media (max-width: 550px) {
  .new-subs-page .title-section .prod-name .subs-subtitle,
.page-template-template-new-subs .title-section .prod-name .subs-subtitle {
    margin: 0 auto 50px;
  }
}
.new-subs-page .sub-hero-img-box,
.page-template-template-new-subs .sub-hero-img-box {
  padding: 0px 25px;
}
.new-subs-page .sub-hero-img-box .sub-hero-img,
.page-template-template-new-subs .sub-hero-img-box .sub-hero-img {
  width: 100%;
  height: 282px;
  max-width: 1100px;
  max-width: 700px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  font-family: "object-fit: cover; object-position: center center;";
}
@media (min-width: 768px) {
  .new-subs-page .sub-hero-img-box .sub-hero-img,
.page-template-template-new-subs .sub-hero-img-box .sub-hero-img {
    position: relative;
    left: -32px;
  }
}
@media (max-width: 768px) {
  .new-subs-page .sub-hero-img-box .sub-hero-img,
.page-template-template-new-subs .sub-hero-img-box .sub-hero-img {
    height: 225px;
  }
}
@media (max-width: 626px) {
  .new-subs-page .sub-hero-img-box,
.page-template-template-new-subs .sub-hero-img-box {
    padding: 0px 20px;
  }
}
.new-subs-page .jilt-left,
.page-template-template-new-subs .jilt-left {
  position: relative;
}
.new-subs-page .how-you-like-it,
.page-template-template-new-subs .how-you-like-it {
  margin-bottom: 40px;
}
.new-subs-page .how-you-like-it .like-it-box,
.page-template-template-new-subs .how-you-like-it .like-it-box {
  padding: 0 35px 0;
}
@media (max-width: 768px) {
  .new-subs-page .how-you-like-it .like-it-box,
.page-template-template-new-subs .how-you-like-it .like-it-box {
    padding: 0 20px 40px;
  }
}
.new-subs-page .how-you-like-it .like-it-box .choices,
.page-template-template-new-subs .how-you-like-it .like-it-box .choices {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .new-subs-page .how-you-like-it .like-it-box .choices,
.page-template-template-new-subs .how-you-like-it .like-it-box .choices {
    display: block;
  }
}
.new-subs-page .how-you-like-it .like-it-box .choices a,
.page-template-template-new-subs .how-you-like-it .like-it-box .choices a {
  width: calc((100% - 25px) / 2);
  max-width: 525px;
}
.new-subs-page .how-you-like-it .like-it-box .choices a:first-of-type,
.page-template-template-new-subs .how-you-like-it .like-it-box .choices a:first-of-type {
  margin-right: 25px;
}
.new-subs-page .how-you-like-it .like-it-box .choices .box,
.page-template-template-new-subs .how-you-like-it .like-it-box .choices .box {
  position: relative;
}
.new-subs-page .how-you-like-it .like-it-box .choices .box .heading,
.page-template-template-new-subs .how-you-like-it .like-it-box .choices .box .heading {
  padding: 0 20px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
}
.new-subs-page .how-you-like-it .like-it-box .choices .box .heading h4,
.page-template-template-new-subs .how-you-like-it .like-it-box .choices .box .heading h4 {
  margin: 0 auto 16%;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  line-height: initial;
  text-transform: uppercase;
  color: #ffffff;
}
@media (max-width: 768px) {
  .new-subs-page .how-you-like-it .like-it-box .choices .box .heading h4,
.page-template-template-new-subs .how-you-like-it .like-it-box .choices .box .heading h4 {
    margin: 0 auto 30px;
    font-size: 1.625rem;
  }
}
.new-subs-page .how-you-like-it .like-it-box .choices .box .img-box,
.page-template-template-new-subs .how-you-like-it .like-it-box .choices .box .img-box {
  position: relative;
  height: 0;
  width: 100%;
  padding-top: 80%;
}
@media (max-width: 768px) {
  .new-subs-page .how-you-like-it .like-it-box .choices .box .img-box,
.page-template-template-new-subs .how-you-like-it .like-it-box .choices .box .img-box {
    padding-top: 70%;
  }
}
.new-subs-page .how-you-like-it .like-it-box .choices .box .img-box::after,
.page-template-template-new-subs .how-you-like-it .like-it-box .choices .box .img-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.new-subs-page .how-you-like-it .like-it-box .choices .box .img-box img,
.page-template-template-new-subs .how-you-like-it .like-it-box .choices .box .img-box img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: " object-fit: cover;";
}
.new-subs-page .how-you-like-it .like-it-box .choices .box__content,
.page-template-template-new-subs .how-you-like-it .like-it-box .choices .box__content {
  position: relative;
}
.new-subs-page .how-you-like-it .like-it-box .choices .box .btn,
.page-template-template-new-subs .how-you-like-it .like-it-box .choices .box .btn {
  margin: auto;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
  font-family: "barlow";
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.0625rem;
  letter-spacing: 0.035rem;
  line-height: 1.5625rem;
}
.new-subs-page .how-you-like-it .like-it-box .choices .words,
.page-template-template-new-subs .how-you-like-it .like-it-box .choices .words {
  margin: 0;
}
.new-subs-page .how-you-like-it--custom,
.page-template-template-new-subs .how-you-like-it--custom {
  margin-top: 30px;
}
.new-subs-page .how-you-like-it--custom .like-it-box,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box {
  max-width: 576px;
  margin: 0px auto;
  border: 2px solid #dddddd;
  padding: 30px 30px 32px 30px;
}
.new-subs-page .how-you-like-it--custom .like-it-box .like-it-title,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .like-it-title {
  text-transform: uppercase;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .new-subs-page .how-you-like-it--custom .like-it-box .like-it-title,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .like-it-title {
    margin-bottom: 230x;
  }
}
.new-subs-page .how-you-like-it--custom .like-it-box .like-it-title h2,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .like-it-title h2 {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .new-subs-page .how-you-like-it--custom .like-it-box .like-it-title h2,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .like-it-title h2 {
    font-size: 1.3125rem;
    line-height: 1.625rem;
    letter-spacing: 0.03125rem;
  }
}
.new-subs-page .how-you-like-it--custom .like-it-box .choices,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices {
  display: flex;
}
.new-subs-page .how-you-like-it--custom .like-it-box .choices--landing .left-box,
.new-subs-page .how-you-like-it--custom .like-it-box .choices--landing .right-box,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices--landing .left-box,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices--landing .right-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.new-subs-page .how-you-like-it--custom .like-it-box .choices--landing .left-box__content,
.new-subs-page .how-you-like-it--custom .like-it-box .choices--landing .right-box__content,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices--landing .left-box__content,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices--landing .right-box__content {
  margin-bottom: 20px;
}
.new-subs-page .how-you-like-it--custom .like-it-box .choices .left-box .heading,
.new-subs-page .how-you-like-it--custom .like-it-box .choices .right-box .heading,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .left-box .heading,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .right-box .heading {
  font-family: "barlow";
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0;
  line-height: 1.625rem;
  text-transform: uppercase;
}
.new-subs-page .how-you-like-it--custom .like-it-box .choices .left-box .how-blurb,
.new-subs-page .how-you-like-it--custom .like-it-box .choices .right-box .how-blurb,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .left-box .how-blurb,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .right-box .how-blurb {
  font-family: "barlow";
  font-weight: 300;
  font-size: 0.9375rem;
  letter-spacing: 0;
  line-height: 1.625rem;
  margin-top: 0px;
}
.new-subs-page .how-you-like-it--custom .like-it-box .choices .left-box,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .left-box {
  margin-right: 40px;
}
.new-subs-page .how-you-like-it--custom .like-it-box .choices .left-box .img-box,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .left-box .img-box {
  margin-bottom: 15px;
}
.new-subs-page .how-you-like-it--custom .like-it-box .choices .left-box .img-box img,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .left-box .img-box img {
  width: 48px;
}
.new-subs-page .how-you-like-it--custom .like-it-box .choices .left-box .btn,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .left-box .btn {
  width: 220px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #35c051;
  color: #ffffff;
  font-family: "barlow";
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03125rem;
  line-height: 1rem;
  text-transform: uppercase;
}
.new-subs-page .how-you-like-it--custom .like-it-box .choices .right-box .img-box,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .right-box .img-box {
  margin-bottom: 15px;
}
.new-subs-page .how-you-like-it--custom .like-it-box .choices .right-box .img-box img,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .right-box .img-box img {
  width: 40px;
  margin-bottom: 4px;
}
.new-subs-page .how-you-like-it--custom .like-it-box .choices .right-box .btn,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .right-box .btn {
  width: 220px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 2px solid black;
  font-family: "barlow";
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03125rem;
  line-height: 1rem;
  text-transform: uppercase;
}
.new-subs-page .how-you-like-it--custom .like-it-box .choices .words,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .words {
  margin: 0;
}
@media (max-width: 768px) {
  .new-subs-page .how-you-like-it--custom .like-it-box,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box {
    padding: 30px;
  }
}
@media (max-width: 768px) and (max-width: 616px) {
  .new-subs-page .how-you-like-it--custom .like-it-box,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box {
    margin: 0px 20px;
  }
}
@media (max-width: 768px) {
  .new-subs-page .how-you-like-it--custom .like-it-box .like-it-title,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .like-it-title {
    margin-bottom: 25px;
  }
  .new-subs-page .how-you-like-it--custom .like-it-box .like-it-title h2,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .like-it-title h2 {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .new-subs-page .how-you-like-it--custom .like-it-box .choices,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices {
    display: block;
  }
  .new-subs-page .how-you-like-it--custom .like-it-box .choices .left-box,
.new-subs-page .how-you-like-it--custom .like-it-box .choices .right-box,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .left-box,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .right-box {
    width: 100%;
  }
  .new-subs-page .how-you-like-it--custom .like-it-box .choices .left-box .img-box,
.new-subs-page .how-you-like-it--custom .like-it-box .choices .right-box .img-box,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .left-box .img-box,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .right-box .img-box {
    margin-bottom: 15px;
  }
  .new-subs-page .how-you-like-it--custom .like-it-box .choices .left-box .img-box img,
.new-subs-page .how-you-like-it--custom .like-it-box .choices .right-box .img-box img,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .left-box .img-box img,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .right-box .img-box img {
    width: 48px;
    height: 48px;
  }
  .new-subs-page .how-you-like-it--custom .like-it-box .choices .left-box .heading,
.new-subs-page .how-you-like-it--custom .like-it-box .choices .right-box .heading,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .left-box .heading,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .right-box .heading {
    font-size: 0.9375rem;
    letter-spacing: 0;
    line-height: 1.625rem;
  }
  .new-subs-page .how-you-like-it--custom .like-it-box .choices .left-box .how-blurb,
.new-subs-page .how-you-like-it--custom .like-it-box .choices .right-box .how-blurb,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .left-box .how-blurb,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .right-box .how-blurb {
    font-size: 0.9375rem;
    letter-spacing: 0;
    line-height: 1.625rem;
    margin: 0 0 25px;
  }
  .new-subs-page .how-you-like-it--custom .like-it-box .choices .left-box,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .left-box {
    margin-bottom: 30px;
  }
  .new-subs-page .how-you-like-it--custom .like-it-box .choices .left-box .btn,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .left-box .btn {
    width: 220px;
    height: 34px;
    font-size: 0.875rem;
    letter-spacing: 0.03125rem;
    line-height: 1rem;
  }
  .new-subs-page .how-you-like-it--custom .like-it-box .choices .right-box .btn,
.page-template-template-new-subs .how-you-like-it--custom .like-it-box .choices .right-box .btn {
    width: 220px;
    height: 34px;
    font-size: 0.875rem;
    letter-spacing: 0.03125rem;
    line-height: 1rem;
  }
}
.new-subs-page .how-you-like-it--sub,
.page-template-template-new-subs .how-you-like-it--sub {
  margin: 0 auto 93px;
  padding: 0 41px 30px;
  left: 0;
  max-width: 658px;
  background-color: #f9f8f8;
}
@media (max-width: 1000px) {
  .new-subs-page .how-you-like-it--sub,
.page-template-template-new-subs .how-you-like-it--sub {
    padding: 0 20px 30px;
  }
}
@media (max-width: 768px) {
  .new-subs-page .how-you-like-it--sub,
.page-template-template-new-subs .how-you-like-it--sub {
    margin: 0 auto 50px;
  }
}
.new-subs-page .how-you-like-it--sub .bottom-title,
.page-template-template-new-subs .how-you-like-it--sub .bottom-title {
  font-size: 0.9375rem;
  line-height: 1.625rem;
  font-weight: 500;
  margin: 40px 0 20px;
}
.new-subs-page .how-you-like-it--sub .bottom-text,
.page-template-template-new-subs .how-you-like-it--sub .bottom-text {
  margin: 0 0 15px;
}
.new-subs-page .how-you-like-it--sub .bottom-link,
.page-template-template-new-subs .how-you-like-it--sub .bottom-link {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  color: #ecb032;
  font-weight: 500;
  font-family: "barlow semi condensed", sans-serif;
  text-decoration: underline;
}
@media (max-width: 1000px) {
  .new-subs-page .how-you-like-it--sub .like-it-box,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box {
    margin: 0;
    padding-bottom: 70px;
  }
}
.new-subs-page .how-you-like-it--sub .like-it-box .choices,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices {
  display: flex;
}
@media (max-width: 1000px) {
  .new-subs-page .how-you-like-it--sub .like-it-box .choices,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices {
    flex-direction: column;
  }
}
.new-subs-page .how-you-like-it--sub .like-it-box .choices .left-box,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .left-box {
  margin-right: 40px;
}
@media (max-width: 1000px) {
  .new-subs-page .how-you-like-it--sub .like-it-box .choices .left-box,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .left-box {
    margin: 0 0 40px;
  }
}
.new-subs-page .how-you-like-it--sub .like-it-box .choices .left-box .img-box,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .left-box .img-box {
  margin-bottom: 15px;
}
.new-subs-page .how-you-like-it--sub .like-it-box .choices .left-box .img-box img,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .left-box .img-box img {
  width: 48px;
}
.new-subs-page .how-you-like-it--sub .like-it-box .choices .left-box .btn,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .left-box .btn {
  width: 220px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #35c051;
  color: #ffffff;
  font-family: "barlow";
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03125rem;
  line-height: 1rem;
  text-transform: uppercase;
}
.new-subs-page .how-you-like-it--sub .like-it-box .choices .how-blurb,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .how-blurb {
  margin: 0 0 25px;
}
.new-subs-page .how-you-like-it--sub .like-it-box .choices .right-box .img-box,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .right-box .img-box {
  margin-bottom: 15px;
}
.new-subs-page .how-you-like-it--sub .like-it-box .choices .right-box .img-box img,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .right-box .img-box img {
  width: 40px;
  margin-bottom: 4px;
}
.new-subs-page .how-you-like-it--sub .like-it-box .choices .right-box .btn,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .right-box .btn {
  width: 220px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 2px solid black;
  font-family: "barlow";
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03125rem;
  line-height: 1rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .new-subs-page .how-you-like-it--sub .like-it-box,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box {
    padding: 30px;
    margin: 0;
  }
  .new-subs-page .how-you-like-it--sub .like-it-box .like-it-title,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .like-it-title {
    margin-bottom: 25px;
  }
  .new-subs-page .how-you-like-it--sub .like-it-box .like-it-title h2,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .like-it-title h2 {
    margin-top: 0px;
  }
  .new-subs-page .how-you-like-it--sub .like-it-box .choices,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices {
    display: block;
  }
  .new-subs-page .how-you-like-it--sub .like-it-box .choices .left-box,
.new-subs-page .how-you-like-it--sub .like-it-box .choices .right-box,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .left-box,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .right-box {
    width: 100%;
  }
  .new-subs-page .how-you-like-it--sub .like-it-box .choices .left-box .img-box,
.new-subs-page .how-you-like-it--sub .like-it-box .choices .right-box .img-box,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .left-box .img-box,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .right-box .img-box {
    margin-bottom: 15px;
  }
  .new-subs-page .how-you-like-it--sub .like-it-box .choices .left-box .img-box img,
.new-subs-page .how-you-like-it--sub .like-it-box .choices .right-box .img-box img,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .left-box .img-box img,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .right-box .img-box img {
    width: 48px;
    height: 48px;
  }
  .new-subs-page .how-you-like-it--sub .like-it-box .choices .left-box .heading,
.new-subs-page .how-you-like-it--sub .like-it-box .choices .right-box .heading,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .left-box .heading,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .right-box .heading {
    letter-spacing: 0;
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .new-subs-page .how-you-like-it--sub .like-it-box .choices .left-box .how-blurb,
.new-subs-page .how-you-like-it--sub .like-it-box .choices .right-box .how-blurb,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .left-box .how-blurb,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .right-box .how-blurb {
    letter-spacing: 0;
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .new-subs-page .how-you-like-it--sub .like-it-box .choices .left-box,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .left-box {
    margin-bottom: 30px;
  }
  .new-subs-page .how-you-like-it--sub .like-it-box .choices .left-box .btn,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .left-box .btn {
    width: 220px;
    height: 34px;
    font-size: 0.875rem;
    letter-spacing: 0.03125rem;
    line-height: 1rem;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .new-subs-page .how-you-like-it--sub .like-it-box .choices .left-box .btn,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .left-box .btn {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .new-subs-page .how-you-like-it--sub .like-it-box .choices .right-box .btn,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .right-box .btn {
    width: 220px;
    height: 34px;
    font-size: 0.875rem;
    letter-spacing: 0.03125rem;
    line-height: 1rem;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .new-subs-page .how-you-like-it--sub .like-it-box .choices .right-box .btn,
.page-template-template-new-subs .how-you-like-it--sub .like-it-box .choices .right-box .btn {
    width: 100%;
  }
}
.new-subs-page .subscribing,
.page-template-template-new-subs .subscribing {
  margin: 0 0 35px;
  padding: 0 35px;
}
@media (max-width: 768px) {
  .new-subs-page .subscribing,
.page-template-template-new-subs .subscribing {
    margin: 0 0 10px;
    padding: 0 20px;
  }
}
.new-subs-page .subscribing .inner,
.page-template-template-new-subs .subscribing .inner {
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .new-subs-page .subscribing .inner,
.page-template-template-new-subs .subscribing .inner {
    padding: 0 20px;
  }
}
@media (max-width: 550px) {
  .new-subs-page .subscribing .inner,
.page-template-template-new-subs .subscribing .inner {
    padding: 0;
  }
}
.new-subs-page .subscribing .inner .title,
.page-template-template-new-subs .subscribing .inner .title {
  margin: 0 0 50px;
}
.new-subs-page .subscribing .inner .title h2,
.page-template-template-new-subs .subscribing .inner .title h2 {
  margin: 0;
  font-family: "barlow semi condensed", sans-serif;
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0.03125rem;
  line-height: 1.625rem;
}
.new-subs-page .subscribing .inner .reasons-box,
.page-template-template-new-subs .subscribing .inner .reasons-box {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1025px) {
  .new-subs-page .subscribing .inner .reasons-box .reason,
.page-template-template-new-subs .subscribing .inner .reasons-box .reason {
    width: calc((100% - 90px) / 4);
    margin: 0 30px 40px 0;
  }
  .new-subs-page .subscribing .inner .reasons-box .reason:nth-of-type(4n + 4),
.page-template-template-new-subs .subscribing .inner .reasons-box .reason:nth-of-type(4n + 4) {
    margin: 0 0 40px;
  }
}
@media (max-width: 1024px) {
  .new-subs-page .subscribing .inner .reasons-box .reason,
.page-template-template-new-subs .subscribing .inner .reasons-box .reason {
    width: calc((100% - 60px) / 3);
    margin: 0 30px 40px 0;
  }
  .new-subs-page .subscribing .inner .reasons-box .reason:nth-of-type(3n + 3),
.page-template-template-new-subs .subscribing .inner .reasons-box .reason:nth-of-type(3n + 3) {
    margin: 0 0 40px;
  }
}
@media (max-width: 550px) {
  .new-subs-page .subscribing .inner .reasons-box .reason,
.page-template-template-new-subs .subscribing .inner .reasons-box .reason {
    width: 100%;
    margin: 0 0 40px 0;
  }
  .new-subs-page .subscribing .inner .reasons-box .reason:nth-of-type(3n + 3),
.page-template-template-new-subs .subscribing .inner .reasons-box .reason:nth-of-type(3n + 3) {
    margin: 0 0 40px 0;
  }
  .new-subs-page .subscribing .inner .reasons-box .reason:nth-of-type(2n + 2),
.page-template-template-new-subs .subscribing .inner .reasons-box .reason:nth-of-type(2n + 2) {
    margin: 0 0 40px;
  }
}
.new-subs-page .subscribing .inner .reasons-box .reason .reason-img,
.page-template-template-new-subs .subscribing .inner .reasons-box .reason .reason-img {
  width: 30px;
  height: 30px;
  margin-bottom: 2px;
}
.new-subs-page .subscribing .inner .reasons-box .reason .reason-title,
.page-template-template-new-subs .subscribing .inner .reasons-box .reason .reason-title {
  font-family: "barlow", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.625rem;
  text-transform: uppercase;
}
.new-subs-page .subscribing .inner .reasons-box .reason .reason-words,
.page-template-template-new-subs .subscribing .inner .reasons-box .reason .reason-words {
  font-family: "barlow";
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.625rem;
}
@media (max-width: 768px) {
  .new-subs-page .subscribing .inner .reasons-box .reason .reason-img,
.page-template-template-new-subs .subscribing .inner .reasons-box .reason .reason-img {
    width: 30px;
    height: 30px;
  }
  .new-subs-page .subscribing .inner .reasons-box .reason .reason-title,
.page-template-template-new-subs .subscribing .inner .reasons-box .reason .reason-title {
    font-size: 0.9375rem;
    letter-spacing: 0;
    line-height: 1.625rem;
  }
  .new-subs-page .subscribing .inner .reasons-box .reason .reason-words,
.page-template-template-new-subs .subscribing .inner .reasons-box .reason .reason-words {
    font-size: 0.9375rem;
    letter-spacing: 0.0225rem;
    line-height: 1.625rem;
    margin-top: 0px;
  }
}
.new-subs-page .how,
.page-template-template-new-subs .how {
  background-color: #f9f8f8;
  padding-top: 40px;
  padding-bottom: 40px;
}
.new-subs-page .how .how-box,
.page-template-template-new-subs .how .how-box {
  max-width: 576px;
  margin: 0px auto;
}
.new-subs-page .how .how-box .how-title,
.page-template-template-new-subs .how .how-box .how-title {
  text-transform: uppercase;
  margin-bottom: 34px;
}
.new-subs-page .how .how-box .step,
.page-template-template-new-subs .how .how-box .step {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .new-subs-page .how .how-box .step,
.page-template-template-new-subs .how .how-box .step {
    display: flex;
  }
  .new-subs-page .how .how-box .step .text-container,
.page-template-template-new-subs .how .how-box .step .text-container {
    padding-top: 5px;
    padding-left: 5px;
  }
}
.new-subs-page .how .how-box .step .title-box img,
.page-template-template-new-subs .how .how-box .step .title-box img {
  width: 38px;
  height: 38px;
  margin-right: 10px;
}
.new-subs-page .how .how-box .step .title-words,
.page-template-template-new-subs .how .how-box .step .title-words {
  font-family: "barlow";
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0;
  line-height: 1.625rem;
}
.new-subs-page .how .how-box .step .explanation,
.page-template-template-new-subs .how .how-box .step .explanation {
  font-family: "barlow";
  font-weight: 300;
  font-size: 0.9375rem;
  letter-spacing: 0;
  line-height: 1.625rem;
}
.new-subs-page .how .how-box .button-box,
.page-template-template-new-subs .how .how-box .button-box {
  margin-top: 40px;
  display: flex;
}
.new-subs-page .how .how-box .button-box .disclaimer,
.page-template-template-new-subs .how .how-box .button-box .disclaimer {
  font-family: "barlow semi condensed";
  font-size: 0.8125rem;
  line-height: 1.1875rem;
  font-style: italic;
  color: #a7a7a7;
  letter-spacing: 0;
  margin-left: 23px;
  max-width: 245px;
}
.new-subs-page .how .how-box .button-box .btn,
.page-template-template-new-subs .how .how-box .button-box .btn {
  width: 278px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #35c051;
  color: #ffffff;
  font-family: "barlow semi condensed";
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03125rem;
  line-height: 1rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .new-subs-page .how,
.page-template-template-new-subs .how {
    padding-top: 20px;
  }
}
@media (max-width: 768px) and (max-width: 616px) {
  .new-subs-page .how .how-box,
.page-template-template-new-subs .how .how-box {
    margin: 0px 20px;
  }
}
@media (max-width: 768px) {
  .new-subs-page .how .how-box .step,
.page-template-template-new-subs .how .how-box .step {
    margin-bottom: 20px;
  }
  .new-subs-page .how .how-box .step .title-box img,
.page-template-template-new-subs .how .how-box .step .title-box img {
    width: 38px;
    height: 38px;
    margin-right: 10px;
  }
  .new-subs-page .how .how-box .step .title-box .title-words,
.page-template-template-new-subs .how .how-box .step .title-box .title-words {
    font-size: 0.9375rem;
    letter-spacing: 0;
    line-height: 1.625rem;
  }
  .new-subs-page .how .how-box .step .explanation,
.page-template-template-new-subs .how .how-box .step .explanation {
    font-size: 0.9375rem;
    letter-spacing: 0;
    line-height: 1.625rem;
  }
}
@media (max-width: 768px) {
  .new-subs-page .how .how-box .button-box,
.page-template-template-new-subs .how .how-box .button-box {
    display: block;
    margin-top: 40px;
  }
  .new-subs-page .how .how-box .button-box .disclaimer,
.page-template-template-new-subs .how .how-box .button-box .disclaimer {
    margin-left: 0px;
    margin-top: 8px;
    max-width: 100%;
  }
  .new-subs-page .how .how-box .button-box .btn,
.page-template-template-new-subs .how .how-box .button-box .btn {
    width: 100%;
    height: 34px;
    font-size: 0.875rem;
    letter-spacing: 0.03125rem;
    line-height: 1rem;
  }
}
.new-subs-page .subs-faqs-box,
.page-template-template-new-subs .subs-faqs-box {
  margin: 0;
  padding: 0 35px;
  background: #F9F8F8;
}
@media (max-width: 768px) {
  .new-subs-page .subs-faqs-box,
.page-template-template-new-subs .subs-faqs-box {
    padding: 0 20px;
  }
}
.new-subs-page .subs-faqs-box .subs-faqs,
.page-template-template-new-subs .subs-faqs-box .subs-faqs {
  padding: 50px 60px;
}
@media (max-width: 768px) {
  .new-subs-page .subs-faqs-box .subs-faqs,
.page-template-template-new-subs .subs-faqs-box .subs-faqs {
    padding: 40px 20px;
  }
}
@media (max-width: 550px) {
  .new-subs-page .subs-faqs-box .subs-faqs,
.page-template-template-new-subs .subs-faqs-box .subs-faqs {
    padding: 40px 0;
  }
}
.new-subs-page .subs-faqs-box .subs-faqs .faq-title h2,
.page-template-template-new-subs .subs-faqs-box .subs-faqs .faq-title h2 {
  margin: 0 0 30px;
  font-family: "barlow";
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  line-height: 1.625rem;
}
.new-subs-page .subs-faqs-box .subs-faqs .questions,
.page-template-template-new-subs .subs-faqs-box .subs-faqs .questions {
  display: flex;
  flex-wrap: wrap;
}
.new-subs-page .subs-faqs-box .subs-faqs .questions__column,
.page-template-template-new-subs .subs-faqs-box .subs-faqs .questions__column {
  width: calc((100% - 50px) / 2);
}
.new-subs-page .subs-faqs-box .subs-faqs .questions__column:nth-of-type(2n + 1),
.page-template-template-new-subs .subs-faqs-box .subs-faqs .questions__column:nth-of-type(2n + 1) {
  margin: 0 50px 0 0;
}
@media (max-width: 768px) {
  .new-subs-page .subs-faqs-box .subs-faqs .questions__column,
.page-template-template-new-subs .subs-faqs-box .subs-faqs .questions__column {
    width: 100%;
  }
  .new-subs-page .subs-faqs-box .subs-faqs .questions__column:nth-of-type(2n + 1),
.page-template-template-new-subs .subs-faqs-box .subs-faqs .questions__column:nth-of-type(2n + 1) {
    margin: 0;
  }
}
.new-subs-page .subs-faqs-box .subs-faqs .questions .prod-delivery,
.page-template-template-new-subs .subs-faqs-box .subs-faqs .questions .prod-delivery {
  cursor: pointer;
  position: relative;
}
.new-subs-page .subs-faqs-box .subs-faqs .questions .prod-delivery h4,
.page-template-template-new-subs .subs-faqs-box .subs-faqs .questions .prod-delivery h4 {
  font-family: "barlow";
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.625rem;
  letter-spacing: 0;
  margin-top: 20px;
  margin-bottom: 13px;
  margin-right: 50px;
  display: inline-block;
}
.new-subs-page .subs-faqs-box .subs-faqs .questions .show-hide-btn,
.page-template-template-new-subs .subs-faqs-box .subs-faqs .questions .show-hide-btn {
  display: inline-block;
  position: absolute;
  top: 25px;
  right: 0px;
}
.new-subs-page .subs-faqs-box .subs-faqs .questions .fake-hr,
.page-template-template-new-subs .subs-faqs-box .subs-faqs .questions .fake-hr {
  border-bottom: 2px solid #f0f0f0 !important;
}
.new-subs-page .subs-faqs-box .subs-faqs .questions .open,
.page-template-template-new-subs .subs-faqs-box .subs-faqs .questions .open {
  width: 15px;
}
.new-subs-page .subs-faqs-box .subs-faqs .questions .close,
.page-template-template-new-subs .subs-faqs-box .subs-faqs .questions .close {
  width: 15px;
  position: relative;
  bottom: 6px;
}
.new-subs-page .subs-faqs-box .subs-faqs .questions .question-answer,
.page-template-template-new-subs .subs-faqs-box .subs-faqs .questions .question-answer {
  overflow: hidden;
  transition: height 250ms;
  -webkit-transition: height 250ms;
  -moz-transition: height 250ms;
  -ms-transition: height 250ms;
  -o-transition: height 250ms;
}
.new-subs-page .subs-faqs-box .subs-faqs .question,
.page-template-template-new-subs .subs-faqs-box .subs-faqs .question {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.new-subs-page .foot-note,
.page-template-template-new-subs .foot-note {
  padding-bottom: 90px;
}
.new-subs-page .foot-note .foot-note-box,
.page-template-template-new-subs .foot-note .foot-note-box {
  max-width: 576px;
  margin: 0px auto;
}
@media (min-width: 768px) {
  .new-subs-page .foot-note .foot-note-box,
.page-template-template-new-subs .foot-note .foot-note-box {
    padding-left: 36px;
  }
}
@media (max-width: 616px) {
  .new-subs-page .foot-note .foot-note-box,
.page-template-template-new-subs .foot-note .foot-note-box {
    margin: 0px 20px;
  }
}
.new-subs-page .foot-note .foot-note-box h2,
.page-template-template-new-subs .foot-note .foot-note-box h2 {
  font-family: "barlow";
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0;
  line-height: 1.625rem;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 0px;
}
.new-subs-page .foot-note .foot-note-box p,
.page-template-template-new-subs .foot-note .foot-note-box p {
  margin-top: 0px;
}
.new-subs-page .foot-note .foot-note-box a,
.page-template-template-new-subs .foot-note .foot-note-box a {
  font-weight: 500;
  font-size: 0.9375rem;
  font-family: "barlow semi condensed";
  color: #ecb032;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .new-subs-page .foot-note,
.page-template-template-new-subs .foot-note {
    padding-bottom: 50px;
  }
}

.accordion__main {
  display: flex;
  margin: 0 -10px;
  padding: 30px 0 10px;
}
@media (max-width: 850px) {
  .accordion__main {
    flex-direction: column;
  }
}
.accordion__content {
  height: 0;
  overflow: hidden;
  transition: height 400ms;
  margin-bottom: 28px;
}
.accordion__header {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 17px;
  cursor: pointer;
}
.accordion__title {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.625rem;
  margin: 0 12px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .accordion__title {
    font-size: 0.875rem;
    lline-height: 20px;
  }
}
.accordion__number {
  width: 38px;
  height: 38px;
  border: 2px solid black;
  border-radius: 20px;
  line-height: 2.0625rem;
  text-align: center;
  display: block;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.025rem;
}
.accordion__button {
  display: flex;
  align-items: center;
  justify-self: end;
  color: #f05d15;
  font-family: "Barlow", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.625rem;
  text-decoration: underline;
  margin-left: auto;
  pointer-events: none;
}
@media (max-width: 768px) {
  .accordion__button {
    margin: 0 0 0 auto;
  }
}
.accordion__button-arrow {
  display: block;
  width: 16px;
  height: 9px;
  margin-left: 11px;
  margin-top: 2px;
}

.tile {
  position: relative;
  border: 2px solid #ededed;
  margin: 0 10px;
  text-align: center;
  padding: 16px 19px 40px 17px;
  min-height: 206px;
  flex-grow: 1;
  flex-basis: 0;
}
@media (max-width: 850px) {
  .tile {
    margin: 0 10px 20px;
  }
}
.tile__image {
  width: 60px;
  height: 60px;
  margin: 10px auto 4px;
}
.tile__image--larger {
  width: 80px;
  height: 80px;
  margin: 20px auto 4px;
}
.tile__text {
  color: #919191;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1rem;
  padding: 0 5px;
}
@media (max-width: 850px) {
  .tile__text {
    max-width: 176px;
    margin: auto;
  }
}
.tile__heading {
  color: #000;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.0375rem;
  line-height: 1rem;
  text-transform: uppercase;
  margin: 0;
}
.tile__button-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 18px 16px;
  width: 100%;
}
.tile__button {
  display: block;
  cursor: pointer;
  background-color: #35c051;
  border: 0;
  color: #ffffff;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03125rem;
  line-height: 1rem;
  text-transform: uppercase;
  padding: 5px 10px;
  width: 100%;
}
@media (max-width: 850px) {
  .tile__button {
    max-width: 173px;
    margin: auto;
  }
}
.tile__button--selected {
  background: #ecb032;
}

.slider {
  width: 100%;
  padding: 15px 0 0;
}
.slider__main {
  display: flex;
  margin: 33px 37px 36px;
}
.slider__label {
  color: #999999;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02813rem;
  line-height: 1rem;
  text-transform: uppercase;
}
.slider__numbers {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.0425rem;
  line-height: 1rem;
  text-transform: uppercase;
  color: #979797;
  text-align: center;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.slider__number {
  color: #000000;
  font-size: 2.125rem;
}
.slider__range {
  display: block;
  flex: 2 0 auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.slider__range::-webkit-slider-runnable-track {
  height: 2px;
  background-color: #d8d8d8;
  border: none;
  -webkit-appearance: none;
  position: relative;
}
.slider__range::-moz-range-track {
  height: 2px;
  background-color: #d8d8d8;
  border: none;
  position: relative;
  border-radius: 100px;
}
.slider__range::-ms-track {
  height: 2px;
  background-color: #d8d8d8;
  border-width: 12px 0;
  position: relative;
  border-radius: 100px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.slider__range::-ms-tooltip {
  display: none;
}
.slider__range::-ms-fill-lower {
  background: #e5f1f8;
}
.slider__range::-ms-fill-upper {
  background: #e5f1f8;
}
.slider__range::-ms-thumb {
  width: 22px;
  height: 22px;
  border: 4px solid #2ab145;
  background-color: #33d854;
  border-radius: 100px;
  top: -10px;
  cursor: grab;
}
.slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  position: relative;
  width: 22px;
  height: 22px;
  border: 4px solid #2ab145;
  background-color: #33d854;
  border-radius: 100px;
  top: -10px;
  cursor: -webkit-grab;
  cursor: grab;
}
.slider__range::-moz-range-thumb {
  position: relative;
  width: 22px;
  height: 22px;
  border: 4px solid #2ab145;
  background-color: #33d854;
  border-radius: 100px;
  top: -10px;
  cursor: grab;
}

.faqs {
  max-width: 658px;
  margin: 0 auto 41px;
  padding: 34px 41px 20px;
  background-color: #f9f8f8;
}
@media (max-width: 768px) {
  .faqs {
    margin: 0 auto 70px;
    padding: 30px 20px;
  }
}
.faqs__faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faqs__faq-main {
  height: 0;
  overflow: hidden;
  margin-bottom: 17px;
  transition: height 500ms ease-in-out;
}
.faqs__faq-icon {
  width: 16px;
}
.faqs__faq-icon--open {
  height: 17px;
}
.faqs__faq-icon--close {
  height: 2px;
}
.faqs__head {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  line-height: 1.625rem;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.faqs__faq-header {
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.625rem;
  border-bottom: 2px solid #f0f0f0;
  padding: 7px 0;
}
.faqs--sub {
  margin: 0 auto;
  padding-bottom: 108px;
}
@media (max-width: 1000px) {
  .faqs--sub {
    padding-bottom: 70px;
  }
}

.sub-summary {
  box-sizing: border-box;
  background-color: #f9f8f8;
  border: 2px solid #f0f0f0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 350px;
  padding: 47px 65px 100px 36px;
}
@media (max-width: 768px) {
  .sub-summary {
    position: relative;
    width: 100%;
    margin: 0 0 50px;
    padding: 30px 20px;
  }
}
.sub-summary h3 {
  margin: 0 0 16px;
  color: #000000;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  line-height: 1.5625rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .sub-summary h3 {
    font-size: 1.25rem;
    letter-spacing: 0.02563rem;
  }
}
.sub-summary__option {
  display: block;
  color: #000000;
  font-family: "Barlow", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.625rem;
}
@media (max-width: 768px) {
  .sub-summary__option {
    font-size: 0.875rem;
  }
}
.sub-summary__selection {
  display: block;
  color: #f05d15;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  line-height: 1.5625rem;
  text-transform: uppercase;
}
.sub-summary__choices {
  position: relative;
  padding: 16px 0 6px;
}
.sub-summary__choices::before, .sub-summary__choices::after {
  position: absolute;
  left: 0;
  width: 80px;
  content: "";
  height: 2px;
  background: #dad6d6;
}
.sub-summary__choices::before {
  top: 0;
}
.sub-summary__choices::after {
  bottom: 0;
}
.sub-summary__choice {
  margin: 0 0 18px;
}
@media (max-width: 768px) {
  .sub-summary__choice {
    margin: 0 0 14px;
  }
}
.sub-summary__price {
  position: relative;
  color: #000000;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.0625rem;
  line-height: 2.375rem;
  text-transform: uppercase;
  margin: 14px 0 10px;
  text-align: center;
}
.sub-summary__price::after {
  position: absolute;
  content: "";
  width: 36px;
  height: 1px;
  background: black;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.sub-summary__shipping {
  color: #919191;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.0625rem;
  line-height: 1.125rem;
  text-transform: uppercase;
  text-align: center;
}
.sub-summary__submit {
  font-size: 0.875rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: 0.055rem;
  line-height: 1rem;
  text-transform: uppercase;
  border: 2px solid #35c051;
  background-color: #35c051;
  color: #ffffff;
  min-height: 38px;
  width: 100%;
  margin-top: 30px;
  cursor: pointer;
}

.subscriptions {
  max-width: 658px;
  margin: 0 auto;
  padding: 0 41px;
}
@media (max-width: 768px) {
  .subscriptions {
    margin: 0 auto 50px;
    padding: 0 20px;
  }
}
.subscriptions h1 {
  font-family: "barlow semi condensed", sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  margin: 50px 0 3px;
}
@media (max-width: 768px) {
  .subscriptions h1 {
    margin: 30px 0 3px;
    font-size: 1.5rem;
    width: 80%;
    letter-spacing: 0.0625rem;
    line-height: 1.5rem;
  }
}
.subscriptions h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.0625rem;
  line-height: 1.5625rem;
  text-transform: uppercase;
  margin: 3px 0 15px;
}
@media (max-width: 768px) {
  .subscriptions h2 {
    margin: 3px 0 50px;
    font-size: 0.75rem;
    letter-spacing: 0.0625rem;
    line-height: 1.375rem;
  }
}
.subscriptions__options {
  margin: 123px 0 100px;
}
@media (max-width: 768px) {
  .subscriptions__options {
    margin: 50px 0 60px;
  }
}

.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 20px;
  display: none;
  cursor: pointer;
}
.modal--active {
  display: flex;
}
.modal__container {
  position: relative;
  max-width: 540px;
  margin: auto;
  padding: 35px;
  cursor: initial;
  max-height: 80vh;
  overflow: visible;
  padding-top: 10px;
}
@media (max-width: 550px) {
  .modal__container {
    padding: 15px;
  }
}
.modal__inner-container {
  overflow-y: auto;
  max-height: 80vh;
  padding: 35px;
  position: relative;
}
@media (max-width: 550px) {
  .modal__inner-container {
    padding: 15px;
  }
}
.modal__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  min-height: 100vh;
}
@media (max-width: 1000px) and (orientation: landscape) {
  .modal__image {
    height: 200%;
  }
}
.modal__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}
.modal__content {
  position: relative;
}
.modal__title {
  font-family: "barlow semi condensed", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: 0.05188rem;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
}
.modal__subtitle {
  font-family: "barlow semi condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.07125rem;
  line-height: 1.5625rem;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 35px;
}
.modal__text {
  font-family: "barlow", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.625rem;
  margin: 0 0 20px;
  color: #fff;
  max-width: 320px;
}
@media (max-width: 550px) {
  .modal__text {
    max-width: 100%;
  }
}
.modal__button {
  width: 500px;
  height: 25px;
  color: #fff;
  background: transparent;
  font-family: "barlow semi condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04rem;
  line-height: 1.5625rem;
  text-decoration: underline;
  text-transform: uppercase;
  position: absolute;
  top: -31px;
  right: 0;
  text-align: right;
  width: auto;
  border: none;
  cursor: pointer;
  margin-right: 27px;
}
.modal__form {
  position: relative;
  max-width: 250px;
}
@media (max-width: 550px) {
  .modal__form {
    max-width: 100%;
  }
}
.modal__form .gform_confirmation_wrapper {
  font-family: "barlow semi condensed", sans-serif;
}
.modal__form .validation_error,
.modal__form .validation_message {
  color: #fff;
  font-family: "barlow", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.625rem;
}
.modal__form .validation_error {
  margin: 0 0 15px;
}
.modal__form .gform_footer {
  text-align: center;
}
.modal__form .gform_footer .gform_ajax_spinner {
  width: 32px;
  margin-top: 15px;
}
.modal__form .gform_footer .button {
  cursor: pointer;
}
.modal__form .gform_body ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
.modal__form .gform_body .gfield_label {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "barlow semi condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.055rem;
  line-height: 1rem;
}
.modal__form input,
.modal__form select {
  width: 100%;
  height: 34px;
  padding: 0px 8px;
  border: 1px solid #c0c0c0;
  font-size: 0.9375rem;
  font-family: "barlow semi condensed";
}
.modal__form input::-webkit-input-placeholder,
.modal__form select::-webkit-input-placeholder {
  color: #bababa;
  font-size: 0.9375rem;
  font-family: "barlow semi condensed";
}
.modal__form input:focus,
.modal__form select:focus {
  outline: none;
}
.modal__form .ginput_container_select {
  position: relative;
  width: 100%;
  height: 34px;
  display: inline-block;
}
.modal__form .ginput_container_select::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 50%;
  margin-top: -1px;
  height: 0;
  width: 0;
  border-top: 5px solid #000;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  pointer-events: none;
}
.modal__form select {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -webkit-appearance: none;
  width: 100%;
  color: #bababa;
  background-color: white;
}
@media (max-width: 814px) {
  .modal__form select {
    margin: 5px 0px;
    width: 100%;
  }
}
.modal__form textarea {
  width: 99.7%;
  height: 137px;
  resize: none;
  padding: 10px;
  border: 1px solid #c0c0c0;
  margin-top: 5px;
  font-size: 0.9375rem;
  font-family: "barlow semi condensed";
}
.modal__form textarea::-webkit-input-placeholder {
  color: #bababa;
  font-size: 0.9375rem;
  font-family: "barlow semi condensed";
}
.modal__form textarea:focus {
  outline: none;
}
.modal__form input[type=submit] {
  margin-top: 20px;
  background-color: #ECB032;
  color: #ffffff;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  letter-spacing: 0.03125rem;
  border: 1px solid #ECB032;
}
.modal__form .form-left {
  width: 48.5%;
  display: inline-block;
  margin: 5px 5px 5px 0px;
}
@media (max-width: 814px) {
  .modal__form .form-left {
    margin: 5px 0px;
    width: 100%;
  }
}
.modal__form .form-right {
  width: 48.5%;
  display: inline-block;
  margin: 5px 0px 5px 5px;
}
@media (max-width: 814px) {
  .modal__form .form-right {
    margin: 5px 0px;
    width: 100%;
  }
}
.modal__form #selectbox-placeholder {
  color: #bababa;
}
.modal__form .ginput_recaptcha {
  margin-left: -25px !important;
}
.modal__form iframe {
  transform: scale(0.82) !important;
}

.cross-sells__slider {
  display: block !important;
  max-width: 680px;
}
.cross-sells__slider .product {
  width: calc((100% - 90px) / 3);
  margin: 0 15px;
}
.cross-sells__slider .flickity-viewport {
  overflow: hidden;
}
.cross-sells__slider .flickity-button {
  position: absolute;
  background-color: #000;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.cross-sells__slider .flickity-button.next {
  right: -70px;
}
@media (max-width: 850px) {
  .cross-sells__slider .flickity-button.next {
    right: -30px;
  }
}
.cross-sells__slider .flickity-button.previous {
  left: -70px;
}
@media (max-width: 850px) {
  .cross-sells__slider .flickity-button.previous {
    left: -30px;
  }
}
.cross-sells__slider .flickity-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}
.cross-sells__slider .flickity-button svg path {
  fill: #fff;
}

.woocommerce_gc_giftcard_form label {
  color: #000000 !important;
  margin-bottom: 10px;
}
.woocommerce_gc_giftcard_form input[type=text],
.woocommerce_gc_giftcard_form input[type=email] {
  border: 1.5px solid #bababa;
  border-radius: 0;
  width: 310px;
  padding-left: 10px;
  height: 34px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.055rem;
  font-family: "barlow semi condensed", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.88px;
  width: 100%;
}
.woocommerce_gc_giftcard_form input[type=text]::-moz-placeholder, .woocommerce_gc_giftcard_form input[type=email]::-moz-placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem !important;
}
.woocommerce_gc_giftcard_form input[type=text]:-ms-input-placeholder, .woocommerce_gc_giftcard_form input[type=email]:-ms-input-placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem !important;
}
.woocommerce_gc_giftcard_form input[type=text]::-ms-input-placeholder, .woocommerce_gc_giftcard_form input[type=email]::-ms-input-placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem !important;
}
.woocommerce_gc_giftcard_form input[type=text]::placeholder,
.woocommerce_gc_giftcard_form input[type=email]::placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem !important;
}
.woocommerce_gc_giftcard_form textarea {
  resize: none;
  border: 1.5px solid #bababa;
  padding: 10px;
  font-size: 0.875rem;
  height: 154px;
  width: 100%;
  font-family: "barlow semi condensed", sans-serif;
}

.woocommerce-Giftcards .cart-btn {
  position: relative;
  top: 1px;
}

.woocommerce-MyAccount-Giftcards-balance-amount {
  margin-bottom: 10px;
}

.gift-card-balance {
  display: block;
  padding-bottom: 15px;
  font-family: "barlow semi condensed";
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.055rem;
}
.gift-card-balance::before {
  margin-right: 15px !important;
}

.basket-box--gift-card {
  display: block !important;
}

.checkout__content .add_gift_card_form {
  background: #ffffff;
  border: 1.5px solid #f0f0f0;
  margin-top: 20px;
  padding: 10px 15px;
}
.checkout__content .add_gift_card_form h4 {
  display: inline-block;
  font-family: "barlow semi condensed";
  font-size: 1.3125rem;
  font-weight: 600;
  color: #717171;
  letter-spacing: 0.02375rem;
  margin-top: 10px;
  width: 100%;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.checkout__content .add_gift_card_form input[type=text] {
  width: 100% !important;
}
.checkout__content .add_gift_card_form .cart-btn {
  width: 100%;
}
.checkout__content #wc_gc_cart_redeem_form {
  margin-bottom: 0;
}

.cart__bottom .add_gift_card_form {
  background: #ffffff;
  border: 1.5px solid #f0f0f0;
  padding: 20px 20px 0;
  margin-bottom: 20px;
}
.cart__bottom .add_gift_card_form h4 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 2.375rem;
  letter-spacing: 0.06938rem;
  font-family: "barlow semi condensed", sans-serif;
  color: #717171;
  text-transform: uppercase;
  text-align: left !important;
  margin-top: -10px;
  margin-bottom: 6px;
}
.cart__bottom .add_gift_card_form input[type=text],
.cart__bottom .add_gift_card_form input[type=email] {
  border: 1.5px solid #bababa;
  border-radius: 0;
  width: 310px;
  padding-left: 10px;
  height: 34px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.055rem;
  font-family: "barlow semi condensed", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.88px;
  width: 100%;
}
.cart__bottom .add_gift_card_form input[type=text]::-moz-placeholder, .cart__bottom .add_gift_card_form input[type=email]::-moz-placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem !important;
}
.cart__bottom .add_gift_card_form input[type=text]:-ms-input-placeholder, .cart__bottom .add_gift_card_form input[type=email]:-ms-input-placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem !important;
}
.cart__bottom .add_gift_card_form input[type=text]::-ms-input-placeholder, .cart__bottom .add_gift_card_form input[type=email]::-ms-input-placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem !important;
}
.cart__bottom .add_gift_card_form input[type=text]::placeholder,
.cart__bottom .add_gift_card_form input[type=email]::placeholder {
  font-size: 0.875rem;
  color: #bababa;
  font-weight: 400;
  letter-spacing: 0.055rem !important;
}
.cart__bottom .add_gift_card_form .form_elements {
  display: flex;
}
.cart__bottom .add_gift_card_form .form_elements .cart-btn {
  margin-left: 10px;
  position: relative;
  top: 1px;
}

.ui-datepicker {
  font-family: "barlow semi condensed", sans-serif;
  width: 35em;
}
.ui-datepicker-calendar td {
  padding: 10px 0;
}
.ui-datepicker-calendar td:not(.ui-datepicker-unselectable):hover::after {
  background: #ECB032 !important;
}

.woocommerce-cart-form .variation-line-item {
  display: flex;
}

dt.variation-To,
dt.variation-From,
dt.variation-Message,
dt.variation-DeliveryDate {
  display: block !important;
  padding-top: 3px;
  padding-right: 5px;
  color: #000000;
}

.blog-tile--related .primary-view {
  background-color: rgba(0, 0, 0, 0.3);
}
.blog-tile--related h2 {
  font-family: "barlow semi condensed", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.0875rem;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin: 44px 0 20px;
}
@media (max-width: 510px) {
  .blog-tile--related h2 {
    margin: 5px 0 15px;
    font-size: 1.125rem;
  }
}
.blog-tile--related h3 {
  font-family: "Barlow Semi Condensed";
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.09063rem;
  line-height: 2.375rem;
  color: white;
  margin: 26px 0 10px;
}
@media (max-width: 510px) {
  .blog-tile--related h3 {
    margin: 5px 0 10px;
    font-size: 0.875rem;
    display: none;
  }
}
.blog-tile--related .tile-circle {
  background-color: #000000 !important;
}
.blog-tile--related .tile-circle h3 {
  color: #ffffff !important;
  display: block !important;
}
.blog-tile--related .small-white-seperator {
  border-bottom: 1px solid #ffffff;
  width: 41px;
  margin: 0 auto;
}
@media (max-width: 510px) {
  .blog-tile--related .small-white-seperator {
    display: none;
  }
}

@media (min-width: 511px) {
  .carousel-cell .medium-tile {
    width: 383px;
    height: 350px;
  }
}
@media (max-width: 510px) {
  .carousel-cell .medium-tile {
    width: 238px;
    height: 207px;
  }
}

.bundled_product_summary {
  display: flex;
  padding-bottom: 15px;
  padding-top: 20px;
  margin-bottom: 0 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: none !important;
}
@media (max-width: 768px) {
  .bundled_product_summary {
    display: block;
  }
}
.bundled_product_summary .details {
  width: 100%;
}
.bundled_product_summary:first-child {
  border-top: none;
  padding-top: 0;
}
.bundled_product_summary .variations {
  width: 100%;
}
.bundled_product_summary .variations .attribute_options td {
  display: list-item;
  padding: 0;
  list-style: none;
  background-color: transparent;
}
.bundled_product_summary .variations .attribute_options td.label {
  padding: 0;
}
.bundled_product_summary .variations .attribute_options td.label label {
  margin-top: 5px;
}
.bundled_product_summary .variations .attribute_options td.value {
  cursor: pointer;
  position: relative;
}
.bundled_product_summary .variations .attribute_options td.value:after {
  content: "";
  border: 7px solid rgba(0, 0, 0, 0);
  border-top: 8px solid #000000;
  height: 0px;
  width: 0px;
  position: absolute;
  right: 11px;
  top: 15px;
  display: block;
  pointer-events: none;
}
.bundled_product_summary .variations .attribute_options.attribute_value_static td.value span {
  opacity: 0.3;
}
.bundled_product_summary .variations .attribute_options.attribute_value_static td.value:after {
  border-color: #EAEAEA;
}

.bundle_button {
  display: flex;
  margin-top: 2px;
}
.bundle_button .qty {
  border: 1.5px solid #BABABA;
  width: 61px;
  height: 34px;
  text-align: center;
  font-size: 0.875rem;
  font-family: "barlow semi condensed";
  -webkit-appearance: none;
  margin-right: 8px;
}
.bundle_button .qty:focus {
  outline: -webkit-focus-ring-color none 0px;
}
.bundle_button .qty:-ms-input-placeholder {
  color: #bcbcbc;
}
.bundle_button .qty::-moz-placeholder {
  color: #bcbcbc;
}
.bundle_button .qty::-ms-input-placeholder {
  color: #bcbcbc;
}
.bundle_button .qty::placeholder {
  color: #bcbcbc;
}
.bundle_button .cart-btn {
  display: inline-block;
  padding: 0px;
  border: 1.5px solid #ECB032;
  color: #ECB032;
  font-family: "barlow semi condensed";
  size: 14px;
  background-color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.055rem;
  width: 100%;
  height: 34px;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  bottom: 0px;
}

.bundle_error .woocommerce-info {
  background: none;
  border: none;
  padding: 0;
}
.bundle_error .woocommerce-info ul {
  padding-left: 0;
}

.bundled_product_images {
  width: auto !important;
  float: none;
  margin-right: 20px;
}

.bundled_product_image {
  padding: 0;
  margin: 0;
  width: 46px;
  float: none;
}

.bundled_table_item {
  padding-left: 20px !important;
}
.bundled_table_item h3 {
  margin-top: 10px !important;
  font-style: italic;
}
.bundled_table_item .variation {
  font-style: italic;
}

.product-bundle {
  max-width: 640px;
  margin: 0 auto;
}
.product-bundle .basket {
  margin: 5px;
  margin-top: 20px;
  padding: 10px 4% 12px 4%;
  background-color: #F5F5F5;
}
.product-bundle .basket h3 {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "barlow semi condensed";
  letter-spacing: 0.055rem;
  line-height: 1.375rem;
  margin: 0px;
}
.product-bundle .basket h4 {
  margin-top: 0px;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "barlow semi condensed";
}
.product-bundle .basket .view-basket-btn {
  width: 47%;
  height: 34px;
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "barlow semi condensed";
  padding: 8px;
  text-align: center;
  text-decoration: none;
}
.product-bundle .basket .view-basket-btn:hover {
  text-decoration: underline;
}
.product-bundle .basket .checkout-btn {
  width: 46.9%;
  height: 34px;
  display: inline-block;
  background-color: #35c051;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "barlow semi condensed";
  padding: 8px;
  text-align: center;
  margin-left: 4.3%;
  text-decoration: none;
}
.product-bundle .basket .checkout-btn:hover {
  text-decoration: underline;
}
.product-bundle__price {
  font-family: "barlow", sans-serif;
  font-size: 1.3125rem;
  line-height: 1.625rem;
  letter-spacing: 0.03125rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .product-bundle__price {
    margin-top: 10px;
  }
}
.product-bundle__reg-price span {
  text-decoration: line-through;
}
.product-bundle__sale-price {
  text-decoration: underline;
}
.product-bundle .product-gallery {
  margin-top: 0;
}
.product-bundle__title {
  padding-bottom: 48px;
  margin-bottom: 30px;
  border-bottom: 1px solid #D8D8D8;
}
.product-bundle__title h1 {
  margin-bottom: 0;
}
.product-bundle__subtitle {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-style: italic;
}
.product-bundle__stock {
  font-family: "barlow semi condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.055rem;
  line-height: 1.375rem;
  margin: 5px 0 40px;
}
@media (max-width: 768px) {
  .product-bundle__stock {
    margin: 0px 0 10px;
  }
}
@media (min-width: 769px) {
  .product-bundle__photo {
    display: flex;
  }
}
.product-bundle__photo .woocommerce-error {
  padding: 2px;
  font-size: 0.875rem;
  line-height: 1rem;
  letter-spacing: 0.0125rem;
}
@media (min-width: 769px) {
  .product-bundle__cart {
    max-width: 50%;
    flex: 0 1 auto;
    width: 50%;
  }
}
.product-bundle .bundle_error .woocommerce-info {
  display: none;
}
.product-bundle .bundle_quantity_text {
  font-family: "barlow semi condensed", sans-serif;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  letter-spacing: 0.0625rem;
  color: #BBBBBB;
  text-transform: uppercase;
}
.product-bundle__bundle-options {
  margin-top: 50px;
}
.product-bundle__bundle-options p {
  margin: -10px 0 30px;
}
.product-bundle__bundle-options .bundle-item__image-container {
  position: relative;
}
@media (min-width: 769px) {
  .product-bundle__bundle-options .bundle-item__image-container {
    width: 50%;
  }
}
.product-bundle__bundle-options .bundle-item__image-container::after {
  padding-top: 100%;
  display: block;
  content: "";
}
.product-bundle__bundle-options .bundle-item__image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.product-bundle__heading {
  font-family: "barlow", sans-serif;
  font-size: 1.3125rem;
  letter-spacing: 0.03125rem;
  line-height: 1.625rem;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
  border-bottom: 1px solid #D8D8D8;
  padding-bottom: 12px;
}
@media (min-width: 769px) {
  .product-bundle .bundle-item__options {
    width: 50%;
    padding-left: 21px;
  }
}
.product-bundle .bundle-item__options h4 {
  font-family: "barlow semi condensed", sans-serif;
  font-size: 1rem;
  line-height: 1.5625rem;
  letter-spacing: 0.0275rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 21px;
}
@media (max-width: 768px) {
  .product-bundle .bundle-item__options h4 {
    margin-top: 5px;
  }
}
.product-bundle .bundle-item__options h5 {
  font-family: "barlow semi condensed", sans-serif;
  font-size: 1rem;
  line-height: 1.5625rem;
  letter-spacing: 0.0275rem;
  font-weight: 400;
  font-style: italic;
  text-transform: uppercase;
  margin: -21px 0 21px;
}
.product-bundle .bundle-item__options label {
  color: #BBBBBB;
  font-family: "barlow semi condensed", sans-serif;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
}
.product-bundle .bundle-item__options .woocommerce-variation-availability {
  display: none;
}
.product-bundle .bundle-item__options .attribute_options .value::after {
  top: 18px;
  border: 5px solid rgba(0, 0, 0, 0) !important;
  border-top: 6px solid #000 !important;
}
.product-bundle .bundle-item__options .attribute_options.attribute_value_static .value::after {
  opacity: 0.3;
}
.product-bundle .bundle-item__options .bundled_variation_attribute_value {
  display: block;
  border: 1.5px solid #BABABA;
  height: 34px;
  padding: 5px 8px;
  font-family: "barlow semi condensed", sans-serif;
  font-size: 0.875rem;
  line-height: 1rem;
  letter-spacing: 0.055rem;
  padding-top: 7px;
  width: 100%;
}
.product-bundle .bundle-item__options select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border: 1.5px solid #BABABA;
  height: 34px;
  padding: 5px 8px;
  font-family: "barlow semi condensed", sans-serif;
  font-size: 0.875rem;
  line-height: 1rem;
  letter-spacing: 0.055rem;
}
.product-bundle__carousel {
  height: 239px;
  width: 100%;
}
@media (max-width: 768px) {
  .product-bundle__carousel {
    margin: 0 40px;
    width: auto;
  }
}
.product-bundle__carousel .flickity-prev-next-button {
  background: black;
  border-radius: 0;
}
.product-bundle__carousel .flickity-prev-next-button.next {
  right: -50px;
}
.product-bundle__carousel .flickity-prev-next-button.previous {
  left: -50px;
}
.product-bundle__carousel .flickity-prev-next-button svg {
  color: white;
}
.product-bundle__carousel .flickity-prev-next-button:disabled {
  display: none;
}
.product-bundle__carousel:not(.flickity-enabled) {
  display: flex;
}
@media (max-width: 768px) {
  .product-bundle__carousel::after {
    content: "flickity";
    display: none;
  }
}
.product-bundle__carousel-item {
  width: 200px;
  margin: 0;
  margin-right: 20px;
  position: relative;
}
.product-bundle__carousel-item img {
  height: 200px;
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
.product-bundle__carousel-item h4 {
  font-size: 1rem;
  line-height: 1.5625rem;
  letter-spacing: 0.0275rem;
  color: #000;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}
.product-bundle__carousel-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.hiding {
  display: none;
}

.make-upper {
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.0625rem;
}

.footer-forward #page-footer {
  position: relative;
  z-index: 5;
}

#subscription-builder {
  padding-right: 350px;
}
@media (max-width: 768px) {
  #subscription-builder {
    padding-right: 0;
  }
}

.more-words {
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  font-family: "barlow semi condensed", sans-serif;
  letter-spacing: 0.0625rem;
}

select {
  background-color: #fff;
}

.woocommerce-info {
  background-color: #e80e0e;
  border: 2px solid #ff4b00;
  font-family: "barlow semi condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  letter-spacing: 0.02375rem;
}
.woocommerce-info:before {
  display: none;
}

.woocommerce .empty-cart-notice {
  max-width: 680px;
  margin: 0px auto;
  padding: 75px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  min-height: 50vh;
}
.woocommerce .empty-cart-notice p {
  display: inline-block;
  margin: 0px;
  max-width: 100%;
}
.woocommerce .empty-cart-notice p a {
  display: inline-block;
  border: 2px solid #000000;
  border-radius: 0px;
  background-color: #000000;
  color: #ffffff;
  font-family: "barlow semi condensed", sans-serif;
  size: 14px;
  font-weight: 600;
  letter-spacing: 0.055rem;
  width: 200px;
  height: 34px;
  text-align: center;
  padding-top: 8px;
  cursor: pointer;
  position: relative;
  top: 1px;
  max-width: 100%;
}
.woocommerce .empty-cart-notice .return-to-shop {
  border-radius: 0px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .woocommerce .empty-cart-notice .return-to-shop {
    width: 100%;
  }
  .woocommerce .empty-cart-notice .return-to-shop a {
    width: 100%;
    display: block;
  }
}
.woocommerce .empty-cart-notice .basket {
  width: 100%;
  margin-bottom: 20px;
  font-family: "barlow semi condensed", sans-serif;
}
.woocommerce .empty-cart-notice .basket a {
  color: #ECB032;
  text-decoration: underline;
}

ul {
  padding-left: 15px;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.625rem;
  letter-spacing: 0;
  font-family: "barlow";
  color: #000;
}
ul a {
  color: #ECB032;
  text-decoration: underline;
}

ol {
  padding-left: 15px;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.625rem;
  letter-spacing: 0;
  font-family: "barlow";
  color: #000;
}
ol a {
  color: #ECB032;
  text-decoration: underline;
}

input {
  border-radius: 0px;
  -webkit-appearance: none;
  border: 0px solid rgba(0, 0, 0, 0);
}

textarea {
  border-radius: 0px;
  -webkit-appearance: none;
}

.legacy-sidebar-logo {
  display: none;
  margin-left: 50px;
  margin-top: 50px;
}

.main-post iframe {
  max-width: 100%;
}

.cat-header-title {
  font-size: 1.375rem;
  margin: 10px 0px 10px;
  position: relative;
  top: 10px;
}