@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
    opacity: 1;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    opacity: 1;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

.animated.fast {
  animation-duration: 0.8s;
}

.animated.faster {
  animation-duration: 0.5s;
}

.animated.slow {
  animation-duration: 2s;
}

.animated.slower {
  animation-duration: 3s;
}

@media (print) {
  .animated {
    animation: unset !important;
    transition: none !important;
  }
}
/*! Flickity v2.1.2
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

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

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

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

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

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

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

.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}

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

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

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

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: #333;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

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

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

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

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

/* flickity-fade */
.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1;
}

/*! Lazyframe
https://github.com/vb/lazyframe
---------------------------------------------- */
.lazyframe {
  position: relative;
  background-color: currentColor;
  background-repeat: no-repeat;
  background-size: cover;
}

.lazyframe__title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 17px;
  z-index: 3;
}

.lazyframe__title:after {
  z-index: -1;
}

.lazyframe:hover {
  cursor: pointer;
}

.lazyframe:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}

.lazyframe[data-ratio="16:9"]:before {
  padding-top: 56.25%;
}

.lazyframe[data-ratio="4:3"]:before {
  padding-top: 75%;
}

.lazyframe[data-ratio="1:1"]:before {
  padding-top: 100%;
}

.lazyframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
}

.lazyframe[data-vendor=youtube], .lazyframe[data-vendor=youtube_nocookie] {
  background-color: #e52d27;
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.lazyframe[data-vendor=youtube] .lazyframe__title, .lazyframe[data-vendor=youtube_nocookie] .lazyframe__title {
  color: #eee;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 18px;
  text-shadow: rgba(0, 0, 0, 0.498039) 0px 0px 2px;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.1s cubic-bezier(0.4, 0, 1, 1);
}

.lazyframe[data-vendor=youtube] .lazyframe__title:hover, .lazyframe[data-vendor=youtube_nocookie] .lazyframe__title:hover {
  color: #fff;
}

.lazyframe[data-vendor=youtube] .lazyframe__title:before, .lazyframe[data-vendor=youtube_nocookie] .lazyframe__title:before {
  content: "";
  display: block;
  background: linear-gradient(rgba(0, 0, 0, 0.2), transparent);
  height: 98px;
  width: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  -webkit-tap-highlight-color: transparent;
}

.lazyframe[data-vendor=youtube]:before, .lazyframe[data-vendor=youtube_nocookie]:before {
  padding-top: 56.25%;
}

.lazyframe[data-vendor=youtube][data-ratio="16:9"]:before, .lazyframe[data-vendor=youtube_nocookie][data-ratio="16:9"]:before {
  padding-top: 56.25%;
}

.lazyframe[data-vendor=youtube][data-ratio="4:3"]:before, .lazyframe[data-vendor=youtube_nocookie][data-ratio="4:3"]:before {
  padding-top: 75%;
}

.lazyframe[data-vendor=youtube][data-ratio="1:1"]:before, .lazyframe[data-vendor=youtube_nocookie][data-ratio="1:1"]:before {
  padding-top: 100%;
}

.lazyframe[data-vendor=youtube]:after, .lazyframe[data-vendor=youtube_nocookie]:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 48px;
  margin-left: -34px;
  margin-top: -24px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjU1LjcgNDQ2LjNjLTUzLjMuMy0xMDYuNi0uNC0xNTkuOC0zLjMtMTcuNC0xLTM0LjctMi41LTUwLjQtMTFDMzUgNDI2LjMgMjcgNDE4LjQgMjIgNDA3LjIgMTMuMiAzODguNiAxMC41IDM2OSA5IDM0OWMtMy40LTQxLjMtMy42LTgyLjYtMS44LTEyMy44IDEtMjIgMS42LTQ0IDYuOC02NS41IDItOC40IDUtMTYuNiA4LjgtMjQuNEMzMiAxMTcgNDggMTA4IDY3LjMgMTA0YzE2LjItMyAzMi44LTMgNDkuMy0zLjcgNTYtMi4zIDExMi0zLjUgMTY4LTMgNDMgLjYgODYuMiAxLjcgMTI5LjMgNCAxMy4yLjYgMjYuNi44IDM5LjMgNS41IDE3LjIgNi40IDMwIDE3LjIgMzcgMzQuNyA2LjYgMTYuOCA5LjIgMzQuMiAxMC42IDUyIDMuOCA0OC43IDQgOTcuMy43IDE0Ni0xIDE2LjMtMi4yIDMyLjctNi41IDQ4LjgtOS43IDM3LTMyLjggNTEuNS02Ni43IDUzLjgtMzYuMiAyLjUtNzIuNSAzLjgtMTA4LjggNC4zLTIxLjMuMi00Mi43IDAtNjQgMHpNMjAzLjIgMzQ0TDM0OCAyNjQuN2wtMTQ0LjgtNzkuM1YzNDR6IiBmaWxsPSIjIzFmMWYxZiIvPjxwYXRoIGQ9Ik0yMDMuMiAzNDRWMTg1LjVMMzQ4IDI2NC44IDIwMy4yIDM0NHoiIGZpbGw9IiNGRUZERkQiLz48L3N2Zz4=");
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
  opacity: 0.81;
  border: none;
  z-index: 4;
}

.lazyframe[data-vendor=youtube]:hover:after, .lazyframe[data-vendor=youtube_nocookie]:hover:after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjU1LjcgNDQ2LjNjLTUzLjMuMy0xMDYuNi0uNC0xNTkuOC0zLjMtMTcuNC0xLTM0LjctMi41LTUwLjQtMTFDMzUgNDI2LjMgMjcgNDE4LjQgMjIgNDA3LjIgMTMuMiAzODguNiAxMC41IDM2OSA5IDM0OWMtMy40LTQxLjMtMy42LTgyLjYtMS44LTEyMy44IDEtMjIgMS42LTQ0IDYuOC02NS41IDItOC40IDUtMTYuNiA4LjgtMjQuNEMzMiAxMTcgNDggMTA4IDY3LjMgMTA0YzE2LjItMyAzMi44LTMgNDkuMy0zLjcgNTYtMi4zIDExMi0zLjUgMTY4LTMgNDMgLjYgODYuMiAxLjcgMTI5LjMgNCAxMy4yLjYgMjYuNi44IDM5LjMgNS41IDE3LjIgNi40IDMwIDE3LjIgMzcgMzQuNyA2LjYgMTYuOCA5LjIgMzQuMiAxMC42IDUyIDMuOCA0OC43IDQgOTcuMy43IDE0Ni0xIDE2LjMtMi4yIDMyLjctNi41IDQ4LjgtOS43IDM3LTMyLjggNTEuNS02Ni43IDUzLjgtMzYuMiAyLjUtNzIuNSAzLjgtMTA4LjggNC4zLTIxLjMuMi00Mi43IDAtNjQgMHpNMjAzLjIgMzQ0TDM0OCAyNjQuN2wtMTQ0LjgtNzkuM1YzNDR6IiBmaWxsPSIjREQyQzI4Ii8+PHBhdGggZD0iTTIwMy4yIDM0NFYxODUuNUwzNDggMjY0LjggMjAzLjIgMzQ0eiIgZmlsbD0iI0ZFRkRGRCIvPjwvc3ZnPg==");
  opacity: 1;
}

.lazyframe[data-vendor=vimeo] {
  background-color: #00adef;
}

.lazyframe[data-vendor=vimeo] .lazyframe__title {
  font-family: "Helvetica Neue", Helvetica, Arial;
  color: #00adef;
  font-size: 20px;
  font-weight: bold;
  text-rendering: optimizeLegibility;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-font-smoothing: auto;
  -webkit-tap-highlight-color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
}

.lazyframe[data-vendor=vimeo]:before {
  padding-top: 48.25%;
}

.lazyframe[data-vendor=vimeo][data-ratio="16:9"]:before {
  padding-top: 56.25%;
}

.lazyframe[data-vendor=vimeo][data-ratio="4:3"]:before {
  padding-top: 75%;
}

.lazyframe[data-vendor=vimeo][data-ratio="1:1"]:before {
  padding-top: 100%;
}

.lazyframe[data-vendor=vimeo]:after {
  content: "";
  height: 40px;
  width: 65px;
  display: block;
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgYmFzZVByb2ZpbGU9InRpbnkiIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTTcuNzY1IDE2Ljg5bDguNDctNC44OS04LjQ3LTQuODkiLz48L3N2Zz4=");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 5px;
  position: relative;
}

.lazyframe[data-vendor=vimeo]:hover:after {
  background-color: #00adef;
}

.lazyframe[data-vendor=vine] {
  background-color: #00bf8f;
}

.lazyframe[data-vendor=vine] .lazyframe__title {
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
  z-index: 3;
  positon: relative;
}

.lazyframe[data-vendor=vine] .lazyframe__title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 115px;
  padding: 24px 70px 24px 24px;
  background: linear-gradient(to top, rgba(23, 23, 23, 0) 0, rgba(23, 23, 23, 0.7) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b3171717", endColorstr="#00171717", GradientType=0 );
}

.lazyframe[data-vendor=vine]:before {
  padding-top: 100%;
}

.lazyframe[data-vendor=vine][data-ratio="16:9"]:before {
  padding-top: 56.25%;
}

.lazyframe[data-vendor=vine][data-ratio="4:3"]:before {
  padding-top: 75%;
}

.lazyframe[data-vendor=vine][data-ratio="1:1"]:before {
  padding-top: 100%;
}

.lazyframe[data-vendor=vine]:after {
  content: "";
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMzYiIGhlaWdodD0iMTM2IiB2aWV3Qm94PSIwIDAgMTM2IDEzNiI+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTTU2IDQ0Yy0uNyAwLTEuNC4yLTIgLjUtMS4yLjgtMiAyLTIgMy41djQwYzAgMS40LjggMi44IDIgMy41LjYuMyAxLjMuNSAyIC41czEuNC0uMiAyLS41bDM0LjYtMjBjMS4zLS43IDItMiAyLTMuNSAwLTEuNC0uNy0yLjgtMi0zLjVMNTggNDQuNWMtLjYtLjMtMS4zLS41LTItLjV6Ii8+PC9zdmc+");
  background-color: rgba(0, 0, 0, 0.5);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -30px;
  margin-left: -30px;
  border-radius: 50%;
}

.lazyframe[data-vendor=vine]:hover:after {
  background-color: rgba(0, 0, 0, 0.75);
}

/* #Plyr
================================================== */
@keyframes plyr-progress {
  to {
    background-position: 25px 0;
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: subpixel-antialiased;
  direction: ltr;
  font-family: Avenir, "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1.7;
  max-width: 100%;
  min-width: 50px;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
}

.plyr audio, .plyr video {
  border-radius: inherit;
  height: auto;
  vertical-align: middle;
  width: 100%;
}

.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}

.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  box-sizing: border-box;
}

.plyr--full-ui *, .plyr--full-ui ::after, .plyr--full-ui ::before {
  box-sizing: inherit;
}

.plyr--full-ui a, .plyr--full-ui button, .plyr--full-ui input, .plyr--full-ui label {
  touch-action: manipulation;
}

.plyr__badge {
  background: #4a5764;
  border-radius: 2px;
  color: #fff;
  font-size: 9px;
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  color: #fff;
  display: none;
  font-size: 14px;
  left: 0;
  padding: 10px;
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.plyr__captions .plyr__caption {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}

.plyr__captions .plyr__caption div {
  display: inline;
}

.plyr__captions span:empty {
  display: none;
}

@media (min-width: 480px) {
  .plyr__captions {
    font-size: 16px;
    padding: 20px;
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: 18px;
  }
}
.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(-40px);
}

.plyr__control {
  background: 0 0;
  border: 0;
  border-radius: 3px;
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: 7px;
  position: relative;
  transition: all 0.3s ease;
}

.plyr__control svg {
  display: block;
  fill: currentColor;
  height: 18px;
  pointer-events: none;
  width: 18px;
}

.plyr__control:focus {
  outline: 0;
}

.plyr__control.plyr__tab-focus {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

a.plyr__control {
  text-decoration: none;
}

a.plyr__control::after, a.plyr__control::before {
  display: none;
}

.plyr__control.plyr__control--pressed .icon--not-pressed, .plyr__control.plyr__control--pressed .label--not-pressed, .plyr__control:not(.plyr__control--pressed) .icon--pressed, .plyr__control:not(.plyr__control--pressed) .label--pressed {
  display: none;
}

.plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: #00b3ff;
  color: #fff;
}

.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: #00b3ff;
  color: #fff;
}

.plyr__control--overlaid {
  background: rgba(0, 179, 255, 0.8);
  border: 0;
  border-radius: 100%;
  color: #fff;
  display: none;
  left: 50%;
  padding: 15px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}

.plyr__control--overlaid:focus, .plyr__control--overlaid:hover {
  background: #00b3ff;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: center;
}

.plyr__controls .plyr__progress__container {
  flex: 1;
  min-width: 0;
}

.plyr__controls .plyr__controls__item {
  margin-left: 2.5px;
}

.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: 2.5px;
}

.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 5px;
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time, .plyr__controls .plyr__controls__item.plyr__time:first-child {
  padding-left: 0;
}

.plyr__controls .plyr__controls__item.plyr__volume {
  padding-right: 5px;
}

.plyr__controls .plyr__controls__item.plyr__volume:first-child {
  padding-right: 0;
}

.plyr__controls:empty {
  display: none;
}

.plyr--audio .plyr__controls {
  background: #fff;
  border-radius: inherit;
  color: #4a5764;
  padding: 10px;
}

.plyr--video .plyr__controls {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 20px 5px 5px;
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 3;
}

@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: 35px 10px 10px;
  }
}
.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.plyr [data-plyr=airplay], .plyr [data-plyr=captions], .plyr [data-plyr=fullscreen], .plyr [data-plyr=pip] {
  display: none;
}

.plyr--airplay-supported [data-plyr=airplay], .plyr--captions-enabled [data-plyr=captions], .plyr--fullscreen-enabled [data-plyr=fullscreen], .plyr--pip-supported [data-plyr=pip] {
  display: inline-block;
}

.plyr__menu {
  display: flex;
  position: relative;
}

.plyr__menu .plyr__control svg {
  transition: transform 0.3s ease;
}

.plyr__menu .plyr__control[aria-expanded=true] svg {
  transform: rotate(90deg);
}

.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}

.plyr__menu__container {
  animation: plyr-popup 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4a5764;
  font-size: 16px;
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}

.plyr__menu__container > div {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.plyr__menu__container::after {
  border: 4px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.9);
  content: "";
  height: 0;
  position: absolute;
  right: 15px;
  top: 100%;
  width: 0;
}

.plyr__menu__container [role=menu] {
  padding: 7px;
}

.plyr__menu__container [role=menuitem], .plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}

.plyr__menu__container [role=menuitem]:first-child, .plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}

.plyr__menu__container .plyr__control {
  align-items: center;
  color: #4a5764;
  display: flex;
  font-size: 14px;
  padding: 4px 11px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}

.plyr__menu__container .plyr__control::after {
  border: 4px solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.plyr__menu__container .plyr__control--forward {
  padding-right: 28px;
}

.plyr__menu__container .plyr__control--forward::after {
  border-left-color: rgba(74, 87, 100, 0.8);
  right: 5px;
}

.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after, .plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}

.plyr__menu__container .plyr__control--back {
  font-weight: 500;
  margin: 7px;
  margin-bottom: 3px;
  padding-left: 28px;
  position: relative;
  width: calc(100% - 14px);
}

.plyr__menu__container .plyr__control--back::after {
  border-right-color: rgba(74, 87, 100, 0.8);
  left: 7px;
}

.plyr__menu__container .plyr__control--back::before {
  background: #c1c9d1;
  box-shadow: 0 1px 0 #fff;
  content: "";
  height: 1px;
  left: 0;
  margin-top: 4px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}

.plyr__menu__container .plyr__control--back.plyr__tab-focus::after, .plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}

.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: 7px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::after, .plyr__menu__container .plyr__control[role=menuitemradio]::before {
  border-radius: 100%;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  transition: all 0.3s ease;
  width: 16px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: #00b3ff;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before, .plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: -5px;
  overflow: hidden;
  padding-left: 25px;
  pointer-events: none;
}

.plyr--full-ui input[type=range] {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 26px;
  color: #00b3ff;
  display: block;
  height: 19px;
  margin: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}

.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
  background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0));
}

.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  -webkit-appearance: none;
  margin-top: -4px;
}

.plyr--full-ui input[type=range]::-moz-range-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
}

.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: 2.5px;
  height: 5px;
}

.plyr--full-ui input[type=range]::-ms-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none;
  color: transparent;
}

.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none;
}

.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none;
  background: currentColor;
}

.plyr--full-ui input[type=range]::-ms-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  margin-top: 0;
}

.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}

.plyr--full-ui input[type=range]:focus {
  outline: 0;
}

.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr__poster {
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr__time {
  font-size: 14px;
}

.plyr__time + .plyr__time::before {
  content: "⁄";
  margin-right: 10px;
}

@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}
.plyr--video .plyr__time {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.plyr__tooltip {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4a5764;
  font-size: 14px;
  font-weight: 500;
  left: 50%;
  line-height: 1.3;
  margin-bottom: 10px;
  opacity: 0;
  padding: 5px 7.5px;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  white-space: nowrap;
  z-index: 2;
}

.plyr__tooltip::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  bottom: -4px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control.plyr__tab-focus .plyr__tooltip, .plyr .plyr__control:hover .plyr__tooltip, .plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 0 100%;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip::before, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
  left: 16px;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 100% 100%;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: 16px;
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:last-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
  transform: translate(0, 0) scale(1);
}

.plyr--video {
  background: #000;
  overflow: hidden;
}

.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: #000;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__video-embed, .plyr__video-wrapper--fixed-ratio {
  height: 0;
  padding-bottom: 56.25%;
}

.plyr__video-embed iframe, .plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  transform: translateY(-38.28125%);
}

.plyr__progress {
  left: 6.5px;
  margin-right: 13px;
  position: relative;
}

.plyr__progress input[type=range], .plyr__progress__buffer {
  margin-left: -6.5px;
  margin-right: -6.5px;
  width: calc(100% + 13px);
}

.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}

.plyr__progress .plyr__tooltip {
  font-size: 14px;
  left: 0;
}

.plyr__progress__buffer {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 100px;
  height: 5px;
  left: 0;
  margin-top: -2.5px;
  padding: 0;
  position: absolute;
  top: 50%;
}

.plyr__progress__buffer::-webkit-progress-bar {
  background: 0 0;
}

.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -ms-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr--video .plyr__progress__buffer {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.25);
}

.plyr--audio .plyr__progress__buffer {
  color: rgba(193, 201, 209, 0.66);
}

.plyr--loading .plyr__progress__buffer {
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, rgba(35, 41, 47, 0.6) 25%, transparent 25%, transparent 50%, rgba(35, 41, 47, 0.6) 50%, rgba(35, 41, 47, 0.6) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: 25px 25px;
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr__volume {
  align-items: center;
  display: flex;
  flex: 1;
  position: relative;
}

.plyr__volume input[type=range] {
  margin-left: 5px;
  position: relative;
  z-index: 2;
}

@media (min-width: 480px) {
  .plyr__volume {
    max-width: 90px;
  }
}
@media (min-width: 768px) {
  .plyr__volume {
    max-width: 110px;
  }
}
.plyr--is-ios .plyr__volume {
  display: none !important;
}

.plyr--is-ios.plyr--vimeo [data-plyr=mute] {
  display: none !important;
}

.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:-ms-fullscreen video {
  height: 100%;
}

.plyr:fullscreen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}

.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
  }

  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 21px;
  }

  .plyr:fullscreen .plyr__captions {
    font-size: 21px;
  }
}
.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
  }
}
.plyr:-moz-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-moz-full-screen video {
  height: 100%;
}

.plyr:-moz-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-moz-full-screen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-moz-full-screen .plyr__captions {
    font-size: 21px;
  }
}
.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-ms-fullscreen video {
  height: 100%;
}

.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 21px;
  }
}
.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
}

.plyr--fullscreen-fallback video {
  height: 100%;
}

.plyr--fullscreen-fallback .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: 21px;
  }
}
.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.plyr__ads > div, .plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}

.plyr__ads::after {
  background: rgba(35, 41, 47, 0.8);
  border-radius: 2px;
  bottom: 10px;
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  z-index: 3;
}

.plyr__ads::after:empty {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: 5px;
  left: 0;
  margin: -2.5px 0 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  z-index: 2;
}

.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.plyr__preview-thumb::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  bottom: -4px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr__preview-thumb__image-container {
  background: #c1c9d1;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__preview-thumb__image-container img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr__preview-thumb__time-container {
  bottom: 6px;
  left: 0;
  position: absolute;
  right: 0;
  white-space: nowrap;
  z-index: 3;
}

.plyr__preview-thumb__time-container span {
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  padding: 3px 6px;
}

.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}

.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}

.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--no-transition {
  transition: none !important;
}

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

.plyr [hidden] {
  display: none !important;
}

/* #Model Viewer
================================================== */
.shopify-model-viewer-ui {
  position: relative;
  display: block;
  cursor: pointer;
}

.shopify-model-viewer-ui model-viewer {
  transform: translateZ(0);
  z-index: 1;
}

.shopify-model-viewer-ui model-viewer.shopify-model-viewer-ui__disabled {
  pointer-events: none;
}

.shopify-model-viewer-ui.shopify-model-viewer-ui--fullscreen model-viewer {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.shopify-model-viewer-ui.shopify-model-viewer-ui--fullscreen .shopify-model-viewer-ui__control-icon--exit-fullscreen {
  display: block;
}

.shopify-model-viewer-ui.shopify-model-viewer-ui--fullscreen .shopify-model-viewer-ui__control-icon--enter-fullscreen {
  display: none;
}

.shopify-model-viewer-ui.shopify-model-viewer-ui--desktop.shopify-model-viewer-ui--child-focused .shopify-model-viewer-ui__controls-area, .shopify-model-viewer-ui.shopify-model-viewer-ui--desktop:hover .shopify-model-viewer-ui__controls-area {
  opacity: 1;
}

.shopify-model-viewer-ui:not(.shopify-model-viewer-ui--desktop) .shopify-model-viewer-ui__controls-area {
  display: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  display: flex;
  flex-direction: column;
  background: #fff;
  opacity: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  transition: opacity 0.1s linear;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area:not(.shopify-model-viewer-ui__controls-area--playing) {
  display: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button {
  color: #3a3a3a;
  border-radius: 0;
  border: none;
  margin: 0;
  cursor: pointer;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button:not(.focus-visible) {
  outline: 0;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control {
  padding: 0;
  height: 44px;
  width: 44px;
  background: 0 0;
  position: relative;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:hover {
  color: rgba(0, 0, 0, 0.55);
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control.focus-visible:focus, .shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:active {
  color: rgba(0, 0, 0, 0.55);
  background: rgba(0, 0, 0, 0.05);
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:not(:last-child):after {
  position: absolute;
  content: "";
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  width: 28px;
  bottom: 0;
  right: 8px;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__control-icon {
  width: 44px;
  height: 44px;
  fill: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster {
  background: #fff;
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.05);
  top: 50%;
  left: 50%;
  padding: 0;
  transform: translate3d(-50%, -50%, 0);
  height: 62px;
  width: 62px;
  z-index: 1;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:focus, .shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:hover {
  color: rgba(0, 0, 0, 0.55);
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__poster-control-icon {
  width: 60px;
  height: 60px;
  z-index: 1;
  fill: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__control-icon--exit-fullscreen {
  display: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__control-icon--enter-fullscreen {
  display: block;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__spritesheet {
  display: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* # Variables
================================================== */











/* # Mixins
================================================== */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
   or object-fit and object-position:
  @include object-fit(cover, top);
*/
/*
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/v4-stable/app/assets/stylesheets/addons/_prefixer.scss

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

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
*/
ul.tabs, .tabs, .pagination-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis, .file, .breadcrumb, .button, .is-unselectable, .close, .delete {
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}


.selected-swatch-dd:after, .country-wrapper:after, .blog-menu > li:after, .cart__info .mlveda-main .selector-wrapper:after, .item__subscription-wrapper:after, .mobile-menu-link::after, .e-gift .nice-select .current:after, .navbar-link:not(.is-arrowless)::after, .select:not(.is-multiple):not(.is-loading):not(.is-arrowless)::after {
  font-family: "flex-icon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e902";
  display: block;
  pointer-events: none;
  position: absolute;
  transform-origin: center;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
}

.tabs:not(:last-child), .highlight:not(:last-child), .block:not(:last-child), .notification:not(:last-child), .content:not(:last-child), .title:not(:last-child),
.subtitle:not(:last-child) {
  margin-bottom: 1.5rem;
}

.delete {
  -webkit-appearance: none;
          appearance: none;
  background-color: rgba(10, 10, 10, 0.2);
  border: none;
  border-radius: 290486px;
  cursor: pointer;
  pointer-events: auto;
  display: inline-block;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 0;
  height: 20px;
  max-height: 20px;
  max-width: 20px;
  min-height: 20px;
  min-width: 20px;
  outline: none;
  position: relative;
  vertical-align: top;
  width: 20px;
}
.delete::before, .delete::after {
  background-color: white;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform-origin: center center;
}
.delete::before {
  height: 2px;
  width: 50%;
}
.delete::after {
  height: 50%;
  width: 2px;
}
.delete:hover, .delete:focus {
  background-color: rgba(10, 10, 10, 0.3);
}
.delete:active {
  background-color: rgba(10, 10, 10, 0.4);
}
.is-small.delete {
  height: 16px;
  max-height: 16px;
  max-width: 16px;
  min-height: 16px;
  min-width: 16px;
  width: 16px;
}
.is-medium.delete {
  height: 24px;
  max-height: 24px;
  max-width: 24px;
  min-height: 24px;
  min-width: 24px;
  width: 24px;
}
.is-large.delete {
  height: 32px;
  max-height: 32px;
  max-width: 32px;
  min-height: 32px;
  min-width: 32px;
  width: 32px;
}

.close {
  -webkit-appearance: none;
          appearance: none;
  background-color: rgba(10, 10, 10, 0.2);
  border: none;
  border-radius: 290486px;
  cursor: pointer;
  pointer-events: auto;
  display: inline-block;
  display: inline-flex;
  flex-grow: 0;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 20px;
  max-height: 20px;
  max-width: 20px;
  min-height: 20px;
  min-width: 20px;
  width: 20px;
  padding: 0;
  color: currentColor;
  transition: 0.2s linear;
}
.close .icon {
  fill: currentColor;
  height: 50%;
  max-height: 50%;
  max-width: 50%;
  min-height: 50%;
  min-width: 50%;
  width: 50%;
}
.close:hover, .close:focus {
  background-color: rgba(10, 10, 10, 0.3);
}
.close:active {
  background-color: rgba(10, 10, 10, 0.4);
}
.is-small.close {
  height: 16px;
  max-height: 16px;
  max-width: 16px;
  min-height: 16px;
  min-width: 16px;
  width: 16px;
}
.is-medium.close {
  height: 24px;
  max-height: 24px;
  max-width: 24px;
  min-height: 24px;
  min-width: 24px;
  width: 24px;
}
.is-large.close {
  height: 32px;
  max-height: 32px;
  max-width: 32px;
  min-height: 32px;
  min-width: 32px;
  width: 32px;
}

.control.is-loading::after, .select.is-loading::after, .loader, .button.is-loading::after {
  animation: spinAround 500ms infinite linear;
  border: 2px solid #dbdbdb;
  border-radius: 290486px;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 1em;
  position: relative;
  width: 1em;
}

/* # Reset
================================================== */
/*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img,
audio,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

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

td,
th {
  padding: 0;
  text-align: left;
}

/* # Generic
================================================== */
html {
  background-color: #ffffff;
  font-size: 15px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-width: 300px;
  overflow-x: hidden;
  overflow-y: auto;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

main {
  min-height: 30vh;
}

article,
aside,
figure,
footer,
header,
main,
hgroup,
section {
  display: block;
}

body,
button,
input,
select,
textarea {
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
}

code,
pre {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  font-family: monospace;
}

a {
  color: #69588d;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a strong {
  color: currentColor;
}
a:hover {
  color: #5b4f7b;
}

code {
  background-color: #ffffff;
  color: #ff3860;
  font-size: 0.875em;
  font-weight: normal;
  padding: 0.25em 0.5em 0.25em;
}

hr {
  background-color: #ffffff;
  border: none;
  display: block;
  height: 2px;
  margin: 1.5rem 0;
}

img {
  height: auto;
  max-width: 100%;
}

input[type=checkbox],
input[type=radio] {
  vertical-align: baseline;
}

small {
  font-size: 0.875em;
}

span {
  font-style: inherit;
  font-weight: inherit;
}

strong {
  font-weight: 700;
}

fieldset {
  border: none;
}

pre {
  -webkit-overflow-scrolling: touch;
  background-color: #ffffff;
  color: #414042;
  font-size: 0.875em;
  overflow-x: auto;
  padding: 1.25rem 1.5rem;
  white-space: pre;
  word-wrap: normal;
}
pre code {
  background-color: transparent;
  color: currentColor;
  font-size: 1em;
  padding: 0;
}

table td,
table th {
  text-align: left;
  vertical-align: top;
}
table th {
  color: #363636;
}

.table.is-bordered td,
.table.is-bordered th {
  border: 1px solid #f0edea;
  padding: 5px;
}

.table.is-striped tbody tr:not(.is-selected):nth-child(even) {
  background-color: #fafafa;
}

/* # Fonts
================================================== */

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

@font-face {
  font-family: "flex-icon";
  src: url(//cdn.shopify.com/s/files/1/0338/3882/5612/t/304/assets/flex-icon.ttf?v=14100130636688647098) format("truetype"), url(//cdn.shopify.com/s/files/1/0338/3882/5612/t/304/assets/flex-icon.woff?v=6556297278318994921) format("woff"), url(//cdn.shopify.com/s/files/1/0338/3882/5612/t/304/assets/flex-icon.svg?v=12215575079412057538) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
/* # Typography
================================================== */
body {
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 300;
  font-size: 15px;
  color: #414042;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  overflow-wrap: anywhere;
}

h1,
.h1 {
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  text-transform: none;
  line-height: 1.5;
  color: #414042;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 798px) {
  h1,
.h1 {
    font-size: 16px;
  }
}
h1 > a,
h1 > a:link,
h1 > a:visited,
.h1 > a,
.h1 > a:link,
.h1 > a:visited {
  color: #414042;
}
h1 > a:hover,
h1 > a:focus,
.h1 > a:hover,
.h1 > a:focus {
  color: #5b4f7b;
}

h2,
.h2 {
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  text-transform: none;
  line-height: 1.5;
  color: #414042;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 798px) {
  h2,
.h2 {
    font-size: 14px;
  }
}
h2 > a,
h2 > a:link,
h2 > a:visited,
.h2 > a,
.h2 > a:link,
.h2 > a:visited {
  color: #414042;
}
h2 > a:hover,
h2 > a:focus,
.h2 > a:hover,
.h2 > a:focus {
  color: #5b4f7b;
}

h3,
.h3 {
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  text-transform: none;
  line-height: 1.5;
  color: #414042;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 798px) {
  h3,
.h3 {
    font-size: 12px;
  }
}
h3 > a,
h3 > a:link,
h3 > a:visited,
.h3 > a,
.h3 > a:link,
.h3 > a:visited {
  color: #414042;
}
h3 > a:hover,
h3 > a:focus,
.h3 > a:hover,
.h3 > a:focus {
  color: #5b4f7b;
}

h4,
.h4 {
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  text-transform: none;
  line-height: 1.5;
  color: #414042;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 798px) {
  h4,
.h4 {
    font-size: 11px;
  }
}
h4 > a,
h4 > a:link,
h4 > a:visited,
.h4 > a,
.h4 > a:link,
.h4 > a:visited {
  color: #414042;
}
h4 > a:hover,
h4 > a:focus,
.h4 > a:hover,
.h4 > a:focus {
  color: #5b4f7b;
}

h5,
.h5 {
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 300;
  font-style: normal;
  font-size: 13px;
  text-transform: none;
  line-height: 1.5;
  color: #414042;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 798px) {
  h5,
.h5 {
    font-size: 10px;
  }
}
h5 > a,
h5 > a:link,
h5 > a:visited,
.h5 > a,
.h5 > a:link,
.h5 > a:visited {
  color: #414042;
}
h5 > a:hover,
h5 > a:focus,
.h5 > a:hover,
.h5 > a:focus {
  color: #5b4f7b;
}

h6,
.h6 {
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  text-transform: none;
  line-height: 1.5;
  color: #414042;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 798px) {
  h6,
.h6 {
    font-size: 9px;
  }
}
h6 > a,
h6 > a:link,
h6 > a:visited,
.h6 > a,
.h6 > a:link,
.h6 > a:visited {
  color: #414042;
}
h6 > a:hover,
h6 > a:focus,
.h6 > a:hover,
.h6 > a:focus {
  color: #5b4f7b;
}

a {
  color: #69588d;
  cursor: pointer;
  text-decoration: none;
}
a strong {
  color: currentColor;
}
a:hover {
  color: #5b4f7b;
}

sub {
  font-size: smaller;
}

em,
i {
  font-style: italic;
}

strong,
b {
  font-weight: bold;
}

small {
  font-size: smaller;
}

blockquote {
  font-size: larger;
  line-height: 1.2;
  font-style: italic;
}
blockquote cite {
  display: block;
  font-size: smaller;
}
blockquote cite:before {
  content: "— ";
}

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

.text-align-left,
.text-align-start {
  text-align: left;
}

.text-align-right,
.text-align-end {
  text-align: right;
}

.text-align-justify {
  text-align: justify;
}

.is-capitalized {
  text-transform: capitalize;
}

.is-lowercase {
  text-transform: lowercase;
}

.is-uppercase {
  text-transform: uppercase;
}

.is-italic {
  font-style: italic !important;
}

.text-is-large {
  font-size: larger;
}

.text-is-medium {
  font-size: initial;
}

.text-is-small {
  font-size: smaller;
}

.title,
.subtitle {
  overflow-wrap: break-word;
}
.title em,
.title span,
.subtitle em,
.subtitle span {
  font-weight: inherit;
}
.title sub,
.subtitle sub {
  font-size: 0.75em;
}
.title sup,
.subtitle sup {
  font-size: 0.75em;
}
.title .tag,
.subtitle .tag {
  vertical-align: middle;
}

.title {
  color: #414042;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.125;
}
.title strong {
  color: inherit;
  font-weight: inherit;
}
.title + .highlight {
  margin-top: -0.75rem;
}
.title:not(.is-spaced) + .subtitle:not(.modal_price) {
  margin-top: -1.25rem;
}
.title.is-1 {
  font-size: 3rem;
}
.title.is-2 {
  font-size: 2.5rem;
}
.title.is-3 {
  font-size: 2rem;
}
.title.is-4 {
  font-size: 1.5rem;
}
.title.is-5 {
  font-size: 1.25rem;
}
.title.is-6 {
  font-size: 1rem;
}
.title.is-7 {
  font-size: 0.75rem;
}

.subtitle {
  color: #414042;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
}
.subtitle strong {
  color: inherit;
  font-weight: 600;
}
.subtitle:not(.is-spaced) + .title {
  margin-top: -1.25rem;
}
.subtitle.is-1 {
  font-size: 3rem;
}
.subtitle.is-2 {
  font-size: 2.5rem;
}
.subtitle.is-3 {
  font-size: 2rem;
}
.subtitle.is-4 {
  font-size: 1.5rem;
}
.subtitle.is-5 {
  font-size: 1.25rem;
}
.subtitle.is-6 {
  font-size: 1rem;
}
.subtitle.is-7 {
  font-size: 0.75rem;
}

.large-heading {
  padding-bottom: 40px;
}

.signature {
  font-family: fantasy;
}


.heading-divider:not(.heading-divider--vertical) {
  border-style: solid;
  border-color: #414042;
  border-width: 2px;
  border-bottom: none;
}

.heading-divider--short {
  width: 70px;
}

.heading-divider--long {
  width: 100%;
}

.heading-divider--vertical {
  background: #414042;
  width: 2px;
  height: 40px;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/* # Helpers
================================================== */
.is-flex {
  display: flex;
}

.is-inline-flex {
  display: inline-flex;
}

.is-align-start,
.is-align-left {
  align-items: flex-start;
}

.is-align-end,
.is-align-right {
  align-items: flex-end;
}

.is-align-self-end,
.is-align-self-right {
  align-self: flex-end;
}

.is-align-baseline {
  align-items: baseline;
}

.is-align-center {
  align-items: center;
}

.is-align-stretch {
  align-items: stretch;
}

.is-justify-start,
.is-justify-left {
  justify-content: flex-start;
}

.is-justify-end,
.is-justify-right {
  justify-content: flex-end;
}

.is-justify-center {
  justify-content: center;
}

.is-justify-space-around {
  justify-content: space-around;
}

.is-justify-space-between {
  justify-content: space-between;
}

.is-flex-nowrap {
  flex-wrap: nowrap;
}

.is-flex-wrap {
  flex-wrap: wrap;
}

.is-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.is-flex-row {
  flex-direction: row;
}

.is-flex-row-reverse {
  flex-direction: row-reverse;
}

.is-flex-column {
  flex-direction: column;
}

.is-flex-column-reverse {
  flex-direction: column-reverse;
}

@media only screen and (max-width: 480px) {
  .is-flex-column--mobile {
    flex-direction: column;
  }
}

@media only screen and (max-width: 480px) {
  .is-flex-column-reverse-mobile {
    flex-direction: column-reverse;
  }
}

.is-order-aligned-left {
  order: -1;
}
@media only screen and (max-width: 480px) {
  .is-order-aligned-left {
    order: inherit;
  }
}

.is-order-aligned-right {
  order: 1;
}
@media only screen and (max-width: 480px) {
  .is-order-aligned-right {
    order: inherit;
  }
}

.is-pulled-left {
  float: left !important;
}

.is-pulled-right {
  float: right !important;
}

.is-clipped {
  overflow: hidden !important;
}

.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.is-sr-only {
  border: none !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 0.01em !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0.01em !important;
}

.is-invisible {
  visibility: hidden !important;
}

@media only screen and (min-width: 481px) and (max-width: 798px) {
  .is-hidden-small {
    display: none !important;
  }
}
@media only screen and (min-width: 799px) and (max-width: 1024px) {
  .is-hidden-medium {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1400px) {
  .is-hidden-large {
    display: none !important;
  }
}
@media only screen and (max-width: 798px) {
  .is-hidden-mobile-only {
    display: none !important;
  }
}
@media only screen and (min-width: 799px) {
  .is-hidden-desktop-only {
    display: none !important;
  }
}
@media only screen and (max-width: 1400px) {
  .is-hidden-widescreen {
    display: none !important;
  }
}
.is-invisible {
  visibility: hidden !important;
}

.has-padding-top {
  padding-top: 20px;
}

.has-padding-bottom {
  padding-bottom: 20px;
}

.has-padding-left {
  padding-left: 20px;
}

.has-padding-right {
  padding-right: 20px;
}

.has-padding {
  padding: 20px;
}

.has-large-padding-top {
  padding-top: calc(20px * 2);
}

.has-large-padding-bottom {
  padding-bottom: calc(20px * 2);
}

.has-small-padding-top {
  padding-top: calc(20px / 2);
}

.has-small-padding-bottom {
  padding-bottom: calc(20px / 2);
}

.has-margin-top {
  margin-top: 20px;
}

.has-margin-bottom {
  margin-bottom: 20px;
}

.has-margin-left {
  margin-left: 20px;
}

.has-margin-right {
  margin-right: 20px;
}

.has-margin {
  margin: 20px;
}

.border--true {
  border: 1px solid #f0edea;
}

.border-top {
  border: none;
  border-top: 1px solid #f0edea;
}

.border-bottom {
  border: none;
  border-bottom: 1px solid #f0edea;
}

.border-right {
  border: none;
  border-right: 1px solid #f0edea;
}

.border-left {
  border: none;
  border-left: 1px solid #f0edea;
}

.box {
  border-radius: 6px;
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
}

.container-border--top::before {
  display: block;
  content: "";
  height: 0;
  width: calc(100% - 20px);
  border-top: thin solid #f0edea;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  float: left;
}
@media only screen and (max-width: 480px) {
  .container-border--top::before {
    width: 100%;
  }
}

.container-border--bottom::after {
  display: block;
  content: "";
  height: 0;
  width: calc(100% - 20px);
  border-top: thin solid #f0edea;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  clear: both;
}
@media only screen and (max-width: 480px) {
  .container-border--bottom::after {
    width: 100%;
  }
}

.has-columns--2 {
  column-count: 2;
}
@media only screen and (max-width: 480px) {
  .has-columns--2 {
    column-count: 1;
  }
}

.has-columns--3 {
  column-count: 3;
}
@media only screen and (max-width: 480px) {
  .has-columns--3 {
    column-count: 1;
  }
}

.is-marginless {
  margin: 0 !important;
}

.is-paddingless {
  padding: 0 !important;
}

.is-radiusless {
  border-radius: 0 !important;
}

.is-shadowless {
  box-shadow: none !important;
}

.is-relative {
  position: relative;
}

.visuallyhidden, .page-beyond-lash-mascara #shopify-section-beyond-lash__video [data-play-button] span {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

@media only screen and (max-width: 798px) {
  .is-fullwidth-mobile {
    width: 100vw !important;
    padding: 20px !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
  }
}

/* # Vendor override styles
================================================== */
[data-scroll-class] {
  opacity: 0;
  animation-delay: 0.2s;
}

.fancybox-thumbs__list a:before {
  border: 6px solid #69588d;
}

.fancybox-button {
  transition: opacity 0.3s ease-in-out;
}

.flickity-viewport {
  width: 100%;
}

.flickity-prev-next-button {
  position: absolute;
  display: flex;
}

.flickity-prev-next-button .flickity-button-icon {
  position: static;
  top: initial;
  left: initial;
  margin: auto;
}

.flickity-button {
  transition: background-color 0.3s ease-in-out;
}

.shopify-challenge__container {
  padding: 40px 0;
}

.quick-shop .slideshow_animation--fade .gallery-cell {
  opacity: 0 !important;
  transition: opacity 1s ease !important;
}
.quick-shop .slideshow_animation--fade .gallery-cell.is-selected {
  opacity: 1 !important;
}

.flickity-resize .image-slideshow__slide {
  min-height: 100%;
}

.image-slideshow--fade .image-slideshow__slide {
  opacity: 0 !important;
  transition: opacity 1s ease !important;
}
.image-slideshow--fade .image-slideshow__slide.is-selected {
  opacity: 1 !important;
}

.lazyframe {
  background-color: #000 !important;
}

/* Backwards compatibility for Flexslider */
.slider .flickity-slider li,
.flexslider .flickity-slider li {
  width: 100%;
  list-style: none;
  padding-left: 0.1%;
  /* Fix for Flickity pixel line */
  padding-right: 0.1%;
  /* Fix for Flickity pixel line */
  margin: 0 !important;
  /* Overwrite content margin */
}
.slider .flickity-slider li img,
.flexslider .flickity-slider li img {
  width: 100%;
}
.slider .flickity-page-dots,
.flexslider .flickity-page-dots {
  margin: 0;
}

.pz-popup-holder .pz-popup {
  top: 0px !important;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
}

.pz-holder.pz-popup {
  height: 100%;
  max-width: 768px;
}

@media (min-width: 425px) {
  .pz-holder.pz-popup {
    height: 525px !important;
  }
}
@media (min-width: 768px) {
  .pz-holder.pz-popup {
    height: 716px !important;
  }
}
/* # Grid/layout
================================================== */
.index {
  display: flex;
  flex-wrap: wrap;
}

.index-sections,
.page-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.shopify-section {
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .shopify-section {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.section {
  max-width: 1200px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.section.has-background {
  width: calc(95% - 20px);
  max-width: calc(1200px - 20px);
  padding-left: calc(20px / 2);
  padding-right: calc(20px / 2);
}
.section.is-width-half {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
}
@media only screen and (max-width: 798px) {
  .section.is-width-half {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .section.is-width-half .container.small-down--has-limit {
    max-width: 1200px;
    width: 95%;
  }
}
.section.is-width-wide {
  width: 100%;
  max-width: none;
}
.section.is-width-wide .container.has-limit {
  max-width: 1200px;
  width: 95%;
}
@media only screen and (max-width: 480px) {
  .section.is-width-wide .container.has-limit {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .section.is-width-wide .container.small-down--has-limit {
    max-width: 1200px;
    width: 95%;
  }
}

@media only screen and (max-width: 480px) {
  .section.section__wrapper {
    max-width: 1200px;
    width: 95%;
  }
}

.container {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.container .column,
.container .columns {
  margin-left: calc(20px / 2);
  margin-right: calc(20px / 2);
}
.container.is-small {
  width: 50%;
}
@media only screen and (max-width: 480px) {
  .container.is-small {
    width: 60%;
  }
}
.container.is-medium {
  width: 70%;
}
@media only screen and (max-width: 480px) {
  .container.is-medium {
    width: 80%;
  }
}
.container.has-column-padding-bottom .column,
.container.has-column-padding-bottom .columns {
  margin-bottom: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media only screen and (max-width: 798px) {
  .row .column,
.row .columns {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

[class*=offset-by] {
  position: relative;
}
@media only screen and (max-width: 480px) {
  [class*=offset-by] {
    position: static;
  }
}

@media only screen and (max-width: 798px) {
  .has-gutter-enabled .has-gutter--mobile {
    margin-bottom: 20px;
  }
}

.has-gutter-enabled.has-multirow-blocks .has-gutter {
  margin-bottom: 20px;
}

/*================ Build Base Grid Classes ================*/
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.one {
  width: calc(6.25% - 20px);
}

.two {
  width: calc(12.5% - 20px);
}

.three {
  width: calc(18.75% - 20px);
}

.four {
  width: calc(25% - 20px);
}

.five {
  width: calc(31.25% - 20px);
}

.six {
  width: calc(37.5% - 20px);
}

.seven {
  width: calc(43.75% - 20px);
}

.eight {
  width: calc(50% - 20px);
}

.nine {
  width: calc(56.25% - 20px);
}

.ten {
  width: calc(62.5% - 20px);
}

.eleven {
  width: calc(68.75% - 20px);
}

.twelve {
  width: calc(75% - 20px);
}

.thirteen {
  width: calc(81.25% - 20px);
}

.fourteen {
  width: calc(87.5% - 20px);
}

.fifteen {
  width: calc(93.75% - 20px);
}

.sixteen {
  width: calc(100% - 20px);
}

.one-whole {
  width: calc(100% - 20px);
}

.one-half {
  width: calc(50% - 20px);
}

.one-third {
  width: calc(33.3333333333% - 20px);
}

.two-thirds {
  width: calc(66.6666666667% - 20px);
}

.one-fourth {
  width: calc(25% - 20px);
}

.two-fourths {
  width: calc(50% - 20px);
}

.three-fourths {
  width: calc(75% - 20px);
}

.one-fifth {
  width: calc(20% - 20px);
}

.two-fifths {
  width: calc(40% - 20px);
}

.three-fifths {
  width: calc(60% - 20px);
}

.four-fifths {
  width: calc(80% - 20px);
}

.one-sixth {
  width: calc(16.6666666667% - 20px);
}

.two-sixths {
  width: calc(33.3333333333% - 20px);
}

.three-sixths {
  width: calc(50% - 20px);
}

.four-sixths {
  width: calc(66.6666666667% - 20px);
}

.five-sixths {
  width: calc(83.3333333333% - 20px);
}

.one-seventh {
  width: calc(14.2857142857% - 20px);
}

.two-sevenths {
  width: calc(28.5714285714% - 20px);
}

.three-sevenths {
  width: calc(42.8571428571% - 20px);
}

.four-sevenths {
  width: calc(57.1428571429% - 20px);
}

.five-sevenths {
  width: calc(71.4285714286% - 20px);
}

.one-eighth {
  width: calc(12.5% - 20px);
}

.two-eighths {
  width: calc(25% - 20px);
}

.three-eighths {
  width: calc(37.5% - 20px);
}

.four-eighths {
  width: calc(50% - 20px);
}

.five-eighths {
  width: calc(62.5% - 20px);
}

.six-eighths {
  width: calc(75% - 20px);
}

.seven-eighths {
  width: calc(87.5% - 20px);
}

.one-tenth {
  width: calc(10% - 20px);
}

.two-tenths {
  width: calc(20% - 20px);
}

.three-tenths {
  width: calc(30% - 20px);
}

.four-tenths {
  width: calc(40% - 20px);
}

.five-tenths {
  width: calc(50% - 20px);
}

.six-tenths {
  width: calc(60% - 20px);
}

.seven-tenths {
  width: calc(70% - 20px);
}

.eight-tenths {
  width: calc(80% - 20px);
}

.nine-tenths {
  width: calc(90% - 20px);
}

.one-twelfth {
  width: calc(8.3333333333% - 20px);
}

.two-twelfths {
  width: calc(16.6666666667% - 20px);
}

.three-twelfths {
  width: calc(25% - 20px);
}

.four-twelfths {
  width: calc(33.3333333333% - 20px);
}

.five-twelfths {
  width: calc(41.6666666667% - 20px);
}

.six-twelfths {
  width: calc(50% - 20px);
}

.seven-twelfths {
  width: calc(58.3333333333% - 20px);
}

.eight-twelfths {
  width: calc(66.6666666667% - 20px);
}

.nine-twelfths {
  width: calc(75% - 20px);
}

.ten-twelfths {
  width: calc(83.3333333333% - 20px);
}

.eleven-twelfths {
  width: calc(91.6666666667% - 20px);
}

.offset-by-one {
  left: calc(6.25%);
}

.offset-by-two {
  left: calc(12.5%);
}

.offset-by-three {
  left: calc(18.75%);
}

.offset-by-four {
  left: calc(25%);
}

.offset-by-five {
  left: calc(31.25%);
}

.offset-by-six {
  left: calc(37.5%);
}

.offset-by-seven {
  left: calc(43.75%);
}

.offset-by-eight {
  left: calc(50%);
}

.offset-by-nine {
  left: calc(56.25%);
}

.offset-by-ten {
  left: calc(62.5%);
}

.offset-by-eleven {
  left: calc(68.75%);
}

.offset-by-twelve {
  left: calc(75%);
}

.offset-by-thirteen {
  left: calc(81.25%);
}

.offset-by-fourteen {
  left: calc(87.5%);
}

.offset-by-fifteen {
  left: calc(93.75%);
}

.equal-columns--outside-trim .one-half:nth-of-type(2n),
.equal-columns--outside-trim .eight:nth-of-type(2n),
.equal-columns--outside-trim .one-third:nth-of-type(3n),
.equal-columns--outside-trim .one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .four:nth-of-type(4n),
.equal-columns--outside-trim .one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .two:nth-of-type(8n) {
  margin-right: 0;
}
.equal-columns--outside-trim .one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .eight:nth-of-type(2n+1),
.equal-columns--outside-trim .one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .four:nth-of-type(4n+1),
.equal-columns--outside-trim .one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .two:nth-of-type(8n+1) {
  margin-left: 0;
}
.equal-columns--outside-trim .one-whole:nth-of-type(1n+1) {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.equal-columns--outside-trim .one-half {
  width: calc(50% - (20px - (20px / 2)));
}
.equal-columns--outside-trim .one-third {
  width: calc(33.3333333333% - (20px - (20px / 3)));
}
.equal-columns--outside-trim .one-fifth {
  width: calc(20% - (20px - (20px / 5)));
}
.equal-columns--outside-trim .one-fourth {
  width: calc(25% - (20px - (20px / 4)));
}
.equal-columns--outside-trim .one-sixth {
  width: calc(16.6666666667% - (20px - (20px / 6)));
}
.equal-columns--outside-trim .one-seventh {
  width: calc(14.2857142857% - (20px - (20px / 7)));
}
.equal-columns--outside-trim .two {
  width: calc(12.5% - (20px - (20px / 8)));
}
.equal-columns--outside-trim .four {
  width: calc(25% - (20px - (20px / 4)));
}
.equal-columns--outside-trim .seven {
  width: calc(43.75% - (20px - (20px / 2)));
}
.equal-columns--outside-trim .eight {
  width: calc(50% - (20px / 2));
}
.equal-columns--outside-trim .nine {
  width: calc(56.25% - (20px - (20px / 2)));
}

.has-no-side-gutter.has-background {
  padding-right: 0px;
  padding-left: 0px;
}
.has-no-side-gutter .one-whole,
.has-no-side-gutter .one-half,
.has-no-side-gutter .eight,
.has-no-side-gutter .one-third,
.has-no-side-gutter .two-thirds,
.has-no-side-gutter .one-fourth,
.has-no-side-gutter .four,
.has-no-side-gutter .one-fifth,
.has-no-side-gutter .three-fifths,
.has-no-side-gutter .two-fifths,
.has-no-side-gutter .one-sixth,
.has-no-side-gutter .one-seventh,
.has-no-side-gutter .one-eighth,
.has-no-side-gutter .two {
  margin-right: 0;
  margin-left: 0;
}
.has-no-side-gutter .one-whole {
  width: 100%;
}
.has-no-side-gutter .one-half {
  width: 50%;
}
.has-no-side-gutter .one-third {
  width: 33.3333333333%;
}
.has-no-side-gutter .one-fourth {
  width: 25%;
}
.has-no-side-gutter .one-fifth {
  width: 20%;
}
.has-no-side-gutter .two-fifths {
  width: 40%;
}
.has-no-side-gutter .three-fifths {
  width: 60%;
}
.has-no-side-gutter .one-sixth {
  width: 16.6666666667%;
}
.has-no-side-gutter .one-seventh {
  width: 14.2857142857%;
}
.has-no-side-gutter .one-eighth {
  width: 12.5%;
}
.has-no-side-gutter .two-thirds {
  width: 66.6666666667%;
}
.has-no-side-gutter .two {
  width: 12.5%;
}
.has-no-side-gutter .four {
  width: 25%;
}
.has-no-side-gutter .seven {
  width: 43.75%;
}
.has-no-side-gutter .eight {
  width: 50%;
}
.has-no-side-gutter .nine {
  width: 56.25%;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

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

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

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

/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
    - Will not work if `styles/global/grid.scss` is removed
==============================================================================*/
/*================ Build Responsive Grid Classes ================*/
@media only screen and (max-width: 1024px) {
  .large-down--hidden {
    display: none !important;
  }

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

  .large-down--one {
    width: calc(6.25% - 20px);
  }

  .large-down--two {
    width: calc(12.5% - 20px);
  }

  .large-down--three {
    width: calc(18.75% - 20px);
  }

  .large-down--four {
    width: calc(25% - 20px);
  }

  .large-down--five {
    width: calc(31.25% - 20px);
  }

  .large-down--six {
    width: calc(37.5% - 20px);
  }

  .large-down--seven {
    width: calc(43.75% - 20px);
  }

  .large-down--eight {
    width: calc(50% - 20px);
  }

  .large-down--nine {
    width: calc(56.25% - 20px);
  }

  .large-down--ten {
    width: calc(62.5% - 20px);
  }

  .large-down--eleven {
    width: calc(68.75% - 20px);
  }

  .large-down--twelve {
    width: calc(75% - 20px);
  }

  .large-down--thirteen {
    width: calc(81.25% - 20px);
  }

  .large-down--fourteen {
    width: calc(87.5% - 20px);
  }

  .large-down--fifteen {
    width: calc(93.75% - 20px);
  }

  .large-down--sixteen {
    width: calc(100% - 20px);
  }

  .large-down--one-whole {
    width: calc(100% - 20px);
  }

  .large-down--one-half {
    width: calc(50% - 20px);
  }

  .large-down--one-third {
    width: calc(33.3333333333% - 20px);
  }

  .large-down--two-thirds {
    width: calc(66.6666666667% - 20px);
  }

  .large-down--one-fourth {
    width: calc(25% - 20px);
  }

  .large-down--two-fourths {
    width: calc(50% - 20px);
  }

  .large-down--three-fourths {
    width: calc(75% - 20px);
  }

  .large-down--one-fifth {
    width: calc(20% - 20px);
  }

  .large-down--two-fifths {
    width: calc(40% - 20px);
  }

  .large-down--three-fifths {
    width: calc(60% - 20px);
  }

  .large-down--four-fifths {
    width: calc(80% - 20px);
  }

  .large-down--one-sixth {
    width: calc(16.6666666667% - 20px);
  }

  .large-down--two-sixths {
    width: calc(33.3333333333% - 20px);
  }

  .large-down--three-sixths {
    width: calc(50% - 20px);
  }

  .large-down--four-sixths {
    width: calc(66.6666666667% - 20px);
  }

  .large-down--five-sixths {
    width: calc(83.3333333333% - 20px);
  }

  .large-down--one-seventh {
    width: calc(14.2857142857% - 20px);
  }

  .large-down--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }

  .large-down--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }

  .large-down--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }

  .large-down--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }

  .large-down--one-eighth {
    width: calc(12.5% - 20px);
  }

  .large-down--two-eighths {
    width: calc(25% - 20px);
  }

  .large-down--three-eighths {
    width: calc(37.5% - 20px);
  }

  .large-down--four-eighths {
    width: calc(50% - 20px);
  }

  .large-down--five-eighths {
    width: calc(62.5% - 20px);
  }

  .large-down--six-eighths {
    width: calc(75% - 20px);
  }

  .large-down--seven-eighths {
    width: calc(87.5% - 20px);
  }

  .large-down--one-tenth {
    width: calc(10% - 20px);
  }

  .large-down--two-tenths {
    width: calc(20% - 20px);
  }

  .large-down--three-tenths {
    width: calc(30% - 20px);
  }

  .large-down--four-tenths {
    width: calc(40% - 20px);
  }

  .large-down--five-tenths {
    width: calc(50% - 20px);
  }

  .large-down--six-tenths {
    width: calc(60% - 20px);
  }

  .large-down--seven-tenths {
    width: calc(70% - 20px);
  }

  .large-down--eight-tenths {
    width: calc(80% - 20px);
  }

  .large-down--nine-tenths {
    width: calc(90% - 20px);
  }

  .large-down--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }

  .large-down--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }

  .large-down--three-twelfths {
    width: calc(25% - 20px);
  }

  .large-down--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }

  .large-down--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }

  .large-down--six-twelfths {
    width: calc(50% - 20px);
  }

  .large-down--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }

  .large-down--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }

  .large-down--nine-twelfths {
    width: calc(75% - 20px);
  }

  .large-down--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }

  .large-down--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }

  .large-down--offset-by-one {
    left: calc(6.25%);
  }

  .large-down--offset-by-two {
    left: calc(12.5%);
  }

  .large-down--offset-by-three {
    left: calc(18.75%);
  }

  .large-down--offset-by-four {
    left: calc(25%);
  }

  .large-down--offset-by-five {
    left: calc(31.25%);
  }

  .large-down--offset-by-six {
    left: calc(37.5%);
  }

  .large-down--offset-by-seven {
    left: calc(43.75%);
  }

  .large-down--offset-by-eight {
    left: calc(50%);
  }

  .large-down--offset-by-nine {
    left: calc(56.25%);
  }

  .large-down--offset-by-ten {
    left: calc(62.5%);
  }

  .large-down--offset-by-eleven {
    left: calc(68.75%);
  }

  .large-down--offset-by-twelve {
    left: calc(75%);
  }

  .large-down--offset-by-thirteen {
    left: calc(81.25%);
  }

  .large-down--offset-by-fourteen {
    left: calc(87.5%);
  }

  .large-down--offset-by-fifteen {
    left: calc(93.75%);
  }

  .equal-columns--outside-trim .large-down--one-half:nth-of-type(2n),
.equal-columns--outside-trim .large-down--eight:nth-of-type(2n),
.equal-columns--outside-trim .large-down--one-third:nth-of-type(3n),
.equal-columns--outside-trim .large-down--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .large-down--four:nth-of-type(4n),
.equal-columns--outside-trim .large-down--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .large-down--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .large-down--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .large-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .large-down--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .large-down--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .large-down--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .large-down--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .large-down--four:nth-of-type(4n+1),
.equal-columns--outside-trim .large-down--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .large-down--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .large-down--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .large-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-half.large-down--one-half,
.equal-columns--outside-trim .large-down--eight.large-down--eight,
.equal-columns--outside-trim .large-down--one-third.large-down--one-third,
.equal-columns--outside-trim .large-down--one-fourth.large-down--one-fourth,
.equal-columns--outside-trim .large-down--four.large-down--four,
.equal-columns--outside-trim .large-down--one-fifth.large-down--one-fifth,
.equal-columns--outside-trim .large-down--one-sixth.large-down--one-sixth,
.equal-columns--outside-trim .large-down--one-seventh.large-down--one-seventh,
.equal-columns--outside-trim .large-down--two.large-down--two {
    margin-right: 20px;
    margin-left: 20px;
  }
  .equal-columns--outside-trim .large-down--one-half:nth-of-type(2n),
.equal-columns--outside-trim .large-down--eight:nth-of-type(2n),
.equal-columns--outside-trim .large-down--one-third:nth-of-type(3n),
.equal-columns--outside-trim .large-down--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .large-down--four:nth-of-type(4n),
.equal-columns--outside-trim .large-down--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .large-down--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .large-down--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .large-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .large-down--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .large-down--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .large-down--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .large-down--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .large-down--four:nth-of-type(4n+1),
.equal-columns--outside-trim .large-down--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .large-down--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .large-down--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .large-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--four {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--eight {
    width: calc(50% - (20px / 2));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 1024px) {
  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .large-down--one-whole,
.has-no-side-gutter .large-down--one-half,
.has-no-side-gutter .large-down--eight,
.has-no-side-gutter .large-down--one-third,
.has-no-side-gutter .large-down--two-thirds,
.has-no-side-gutter .large-down--one-fourth,
.has-no-side-gutter .large-down--four,
.has-no-side-gutter .large-down--one-fifth,
.has-no-side-gutter .large-down--three-fifths,
.has-no-side-gutter .large-down--two-fifths,
.has-no-side-gutter .large-down--one-sixth,
.has-no-side-gutter .large-down--one-seventh,
.has-no-side-gutter .large-down--one-eighth,
.has-no-side-gutter .large-down--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .large-down--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .large-down--one-half {
    width: 50%;
  }
  .has-no-side-gutter .large-down--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .large-down--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .large-down--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .large-down--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .large-down--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .large-down--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .large-down--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .large-down--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .large-down--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .large-down--two {
    width: 12.5%;
  }
  .has-no-side-gutter .large-down--four {
    width: 25%;
  }
  .has-no-side-gutter .large-down--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .large-down--eight {
    width: 50%;
  }
  .has-no-side-gutter .large-down--nine {
    width: 56.25%;
  }
}
@media only screen and (max-width: 1024px) {
  .large-down--show {
    display: block !important;
  }
}
@media only screen and (max-width: 1024px) {
  .large-down--hide {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) {
  .large-down--text-left {
    text-align: left !important;
  }
}
@media only screen and (max-width: 1024px) {
  .large-down--text-right {
    text-align: right !important;
  }
}
@media only screen and (max-width: 1024px) {
  .large-down--text-center {
    text-align: center !important;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--hidden {
    display: none !important;
  }

  .medium-down--visible {
    display: block !important;
  }

  .medium-down--one {
    width: calc(6.25% - 20px);
  }

  .medium-down--two {
    width: calc(12.5% - 20px);
  }

  .medium-down--three {
    width: calc(18.75% - 20px);
  }

  .medium-down--four {
    width: calc(25% - 20px);
  }

  .medium-down--five {
    width: calc(31.25% - 20px);
  }

  .medium-down--six {
    width: calc(37.5% - 20px);
  }

  .medium-down--seven {
    width: calc(43.75% - 20px);
  }

  .medium-down--eight {
    width: calc(50% - 20px);
  }

  .medium-down--nine {
    width: calc(56.25% - 20px);
  }

  .medium-down--ten {
    width: calc(62.5% - 20px);
  }

  .medium-down--eleven {
    width: calc(68.75% - 20px);
  }

  .medium-down--twelve {
    width: calc(75% - 20px);
  }

  .medium-down--thirteen {
    width: calc(81.25% - 20px);
  }

  .medium-down--fourteen {
    width: calc(87.5% - 20px);
  }

  .medium-down--fifteen {
    width: calc(93.75% - 20px);
  }

  .medium-down--sixteen {
    width: calc(100% - 20px);
  }

  .medium-down--one-whole {
    width: calc(100% - 20px);
  }

  .medium-down--one-half {
    width: calc(50% - 20px);
  }

  .medium-down--one-third {
    width: calc(33.3333333333% - 20px);
  }

  .medium-down--two-thirds {
    width: calc(66.6666666667% - 20px);
  }

  .medium-down--one-fourth {
    width: calc(25% - 20px);
  }

  .medium-down--two-fourths {
    width: calc(50% - 20px);
  }

  .medium-down--three-fourths {
    width: calc(75% - 20px);
  }

  .medium-down--one-fifth {
    width: calc(20% - 20px);
  }

  .medium-down--two-fifths {
    width: calc(40% - 20px);
  }

  .medium-down--three-fifths {
    width: calc(60% - 20px);
  }

  .medium-down--four-fifths {
    width: calc(80% - 20px);
  }

  .medium-down--one-sixth {
    width: calc(16.6666666667% - 20px);
  }

  .medium-down--two-sixths {
    width: calc(33.3333333333% - 20px);
  }

  .medium-down--three-sixths {
    width: calc(50% - 20px);
  }

  .medium-down--four-sixths {
    width: calc(66.6666666667% - 20px);
  }

  .medium-down--five-sixths {
    width: calc(83.3333333333% - 20px);
  }

  .medium-down--one-seventh {
    width: calc(14.2857142857% - 20px);
  }

  .medium-down--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }

  .medium-down--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }

  .medium-down--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }

  .medium-down--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }

  .medium-down--one-eighth {
    width: calc(12.5% - 20px);
  }

  .medium-down--two-eighths {
    width: calc(25% - 20px);
  }

  .medium-down--three-eighths {
    width: calc(37.5% - 20px);
  }

  .medium-down--four-eighths {
    width: calc(50% - 20px);
  }

  .medium-down--five-eighths {
    width: calc(62.5% - 20px);
  }

  .medium-down--six-eighths {
    width: calc(75% - 20px);
  }

  .medium-down--seven-eighths {
    width: calc(87.5% - 20px);
  }

  .medium-down--one-tenth {
    width: calc(10% - 20px);
  }

  .medium-down--two-tenths {
    width: calc(20% - 20px);
  }

  .medium-down--three-tenths {
    width: calc(30% - 20px);
  }

  .medium-down--four-tenths {
    width: calc(40% - 20px);
  }

  .medium-down--five-tenths {
    width: calc(50% - 20px);
  }

  .medium-down--six-tenths {
    width: calc(60% - 20px);
  }

  .medium-down--seven-tenths {
    width: calc(70% - 20px);
  }

  .medium-down--eight-tenths {
    width: calc(80% - 20px);
  }

  .medium-down--nine-tenths {
    width: calc(90% - 20px);
  }

  .medium-down--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }

  .medium-down--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }

  .medium-down--three-twelfths {
    width: calc(25% - 20px);
  }

  .medium-down--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }

  .medium-down--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }

  .medium-down--six-twelfths {
    width: calc(50% - 20px);
  }

  .medium-down--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }

  .medium-down--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }

  .medium-down--nine-twelfths {
    width: calc(75% - 20px);
  }

  .medium-down--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }

  .medium-down--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }

  .medium-down--offset-by-one {
    left: calc(6.25%);
  }

  .medium-down--offset-by-two {
    left: calc(12.5%);
  }

  .medium-down--offset-by-three {
    left: calc(18.75%);
  }

  .medium-down--offset-by-four {
    left: calc(25%);
  }

  .medium-down--offset-by-five {
    left: calc(31.25%);
  }

  .medium-down--offset-by-six {
    left: calc(37.5%);
  }

  .medium-down--offset-by-seven {
    left: calc(43.75%);
  }

  .medium-down--offset-by-eight {
    left: calc(50%);
  }

  .medium-down--offset-by-nine {
    left: calc(56.25%);
  }

  .medium-down--offset-by-ten {
    left: calc(62.5%);
  }

  .medium-down--offset-by-eleven {
    left: calc(68.75%);
  }

  .medium-down--offset-by-twelve {
    left: calc(75%);
  }

  .medium-down--offset-by-thirteen {
    left: calc(81.25%);
  }

  .medium-down--offset-by-fourteen {
    left: calc(87.5%);
  }

  .medium-down--offset-by-fifteen {
    left: calc(93.75%);
  }

  .equal-columns--outside-trim .medium-down--one-half:nth-of-type(2n),
.equal-columns--outside-trim .medium-down--eight:nth-of-type(2n),
.equal-columns--outside-trim .medium-down--one-third:nth-of-type(3n),
.equal-columns--outside-trim .medium-down--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .medium-down--four:nth-of-type(4n),
.equal-columns--outside-trim .medium-down--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .medium-down--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .medium-down--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .medium-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .medium-down--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .medium-down--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .medium-down--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .medium-down--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .medium-down--four:nth-of-type(4n+1),
.equal-columns--outside-trim .medium-down--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .medium-down--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .medium-down--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .medium-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 798px) and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-half.medium-down--one-half,
.equal-columns--outside-trim .medium-down--eight.medium-down--eight,
.equal-columns--outside-trim .medium-down--one-third.medium-down--one-third,
.equal-columns--outside-trim .medium-down--one-fourth.medium-down--one-fourth,
.equal-columns--outside-trim .medium-down--four.medium-down--four,
.equal-columns--outside-trim .medium-down--one-fifth.medium-down--one-fifth,
.equal-columns--outside-trim .medium-down--one-sixth.medium-down--one-sixth,
.equal-columns--outside-trim .medium-down--one-seventh.medium-down--one-seventh,
.equal-columns--outside-trim .medium-down--two.medium-down--two {
    margin-right: 20px;
    margin-left: 20px;
  }
  .equal-columns--outside-trim .medium-down--one-half:nth-of-type(2n),
.equal-columns--outside-trim .medium-down--eight:nth-of-type(2n),
.equal-columns--outside-trim .medium-down--one-third:nth-of-type(3n),
.equal-columns--outside-trim .medium-down--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .medium-down--four:nth-of-type(4n),
.equal-columns--outside-trim .medium-down--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .medium-down--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .medium-down--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .medium-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .medium-down--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .medium-down--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .medium-down--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .medium-down--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .medium-down--four:nth-of-type(4n+1),
.equal-columns--outside-trim .medium-down--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .medium-down--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .medium-down--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .medium-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--four {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--eight {
    width: calc(50% - (20px / 2));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 798px) {
  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .medium-down--one-whole,
.has-no-side-gutter .medium-down--one-half,
.has-no-side-gutter .medium-down--eight,
.has-no-side-gutter .medium-down--one-third,
.has-no-side-gutter .medium-down--two-thirds,
.has-no-side-gutter .medium-down--one-fourth,
.has-no-side-gutter .medium-down--four,
.has-no-side-gutter .medium-down--one-fifth,
.has-no-side-gutter .medium-down--three-fifths,
.has-no-side-gutter .medium-down--two-fifths,
.has-no-side-gutter .medium-down--one-sixth,
.has-no-side-gutter .medium-down--one-seventh,
.has-no-side-gutter .medium-down--one-eighth,
.has-no-side-gutter .medium-down--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .medium-down--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .medium-down--one-half {
    width: 50%;
  }
  .has-no-side-gutter .medium-down--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .medium-down--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .medium-down--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .medium-down--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .medium-down--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .medium-down--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .medium-down--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .medium-down--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .medium-down--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .medium-down--two {
    width: 12.5%;
  }
  .has-no-side-gutter .medium-down--four {
    width: 25%;
  }
  .has-no-side-gutter .medium-down--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .medium-down--eight {
    width: 50%;
  }
  .has-no-side-gutter .medium-down--nine {
    width: 56.25%;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--show {
    display: block !important;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--hide {
    display: none !important;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--text-left {
    text-align: left !important;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--text-right {
    text-align: right !important;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--text-center {
    text-align: center !important;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--hidden {
    display: none !important;
  }

  .small-down--visible {
    display: block !important;
  }

  .small-down--one {
    width: calc(6.25% - 20px);
  }

  .small-down--two {
    width: calc(12.5% - 20px);
  }

  .small-down--three {
    width: calc(18.75% - 20px);
  }

  .small-down--four {
    width: calc(25% - 20px);
  }

  .small-down--five {
    width: calc(31.25% - 20px);
  }

  .small-down--six {
    width: calc(37.5% - 20px);
  }

  .small-down--seven {
    width: calc(43.75% - 20px);
  }

  .small-down--eight {
    width: calc(50% - 20px);
  }

  .small-down--nine {
    width: calc(56.25% - 20px);
  }

  .small-down--ten {
    width: calc(62.5% - 20px);
  }

  .small-down--eleven {
    width: calc(68.75% - 20px);
  }

  .small-down--twelve {
    width: calc(75% - 20px);
  }

  .small-down--thirteen {
    width: calc(81.25% - 20px);
  }

  .small-down--fourteen {
    width: calc(87.5% - 20px);
  }

  .small-down--fifteen {
    width: calc(93.75% - 20px);
  }

  .small-down--sixteen {
    width: calc(100% - 20px);
  }

  .small-down--one-whole {
    width: calc(100% - 20px);
  }

  .small-down--one-half {
    width: calc(50% - 20px);
  }

  .small-down--one-third {
    width: calc(33.3333333333% - 20px);
  }

  .small-down--two-thirds {
    width: calc(66.6666666667% - 20px);
  }

  .small-down--one-fourth {
    width: calc(25% - 20px);
  }

  .small-down--two-fourths {
    width: calc(50% - 20px);
  }

  .small-down--three-fourths {
    width: calc(75% - 20px);
  }

  .small-down--one-fifth {
    width: calc(20% - 20px);
  }

  .small-down--two-fifths {
    width: calc(40% - 20px);
  }

  .small-down--three-fifths {
    width: calc(60% - 20px);
  }

  .small-down--four-fifths {
    width: calc(80% - 20px);
  }

  .small-down--one-sixth {
    width: calc(16.6666666667% - 20px);
  }

  .small-down--two-sixths {
    width: calc(33.3333333333% - 20px);
  }

  .small-down--three-sixths {
    width: calc(50% - 20px);
  }

  .small-down--four-sixths {
    width: calc(66.6666666667% - 20px);
  }

  .small-down--five-sixths {
    width: calc(83.3333333333% - 20px);
  }

  .small-down--one-seventh {
    width: calc(14.2857142857% - 20px);
  }

  .small-down--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }

  .small-down--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }

  .small-down--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }

  .small-down--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }

  .small-down--one-eighth {
    width: calc(12.5% - 20px);
  }

  .small-down--two-eighths {
    width: calc(25% - 20px);
  }

  .small-down--three-eighths {
    width: calc(37.5% - 20px);
  }

  .small-down--four-eighths {
    width: calc(50% - 20px);
  }

  .small-down--five-eighths {
    width: calc(62.5% - 20px);
  }

  .small-down--six-eighths {
    width: calc(75% - 20px);
  }

  .small-down--seven-eighths {
    width: calc(87.5% - 20px);
  }

  .small-down--one-tenth {
    width: calc(10% - 20px);
  }

  .small-down--two-tenths {
    width: calc(20% - 20px);
  }

  .small-down--three-tenths {
    width: calc(30% - 20px);
  }

  .small-down--four-tenths {
    width: calc(40% - 20px);
  }

  .small-down--five-tenths {
    width: calc(50% - 20px);
  }

  .small-down--six-tenths {
    width: calc(60% - 20px);
  }

  .small-down--seven-tenths {
    width: calc(70% - 20px);
  }

  .small-down--eight-tenths {
    width: calc(80% - 20px);
  }

  .small-down--nine-tenths {
    width: calc(90% - 20px);
  }

  .small-down--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }

  .small-down--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }

  .small-down--three-twelfths {
    width: calc(25% - 20px);
  }

  .small-down--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }

  .small-down--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }

  .small-down--six-twelfths {
    width: calc(50% - 20px);
  }

  .small-down--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }

  .small-down--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }

  .small-down--nine-twelfths {
    width: calc(75% - 20px);
  }

  .small-down--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }

  .small-down--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }

  .small-down--offset-by-one {
    left: calc(6.25%);
  }

  .small-down--offset-by-two {
    left: calc(12.5%);
  }

  .small-down--offset-by-three {
    left: calc(18.75%);
  }

  .small-down--offset-by-four {
    left: calc(25%);
  }

  .small-down--offset-by-five {
    left: calc(31.25%);
  }

  .small-down--offset-by-six {
    left: calc(37.5%);
  }

  .small-down--offset-by-seven {
    left: calc(43.75%);
  }

  .small-down--offset-by-eight {
    left: calc(50%);
  }

  .small-down--offset-by-nine {
    left: calc(56.25%);
  }

  .small-down--offset-by-ten {
    left: calc(62.5%);
  }

  .small-down--offset-by-eleven {
    left: calc(68.75%);
  }

  .small-down--offset-by-twelve {
    left: calc(75%);
  }

  .small-down--offset-by-thirteen {
    left: calc(81.25%);
  }

  .small-down--offset-by-fourteen {
    left: calc(87.5%);
  }

  .small-down--offset-by-fifteen {
    left: calc(93.75%);
  }

  .equal-columns--outside-trim .small-down--one-half:nth-of-type(2n),
.equal-columns--outside-trim .small-down--eight:nth-of-type(2n),
.equal-columns--outside-trim .small-down--one-third:nth-of-type(3n),
.equal-columns--outside-trim .small-down--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .small-down--four:nth-of-type(4n),
.equal-columns--outside-trim .small-down--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .small-down--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .small-down--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .small-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .small-down--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .small-down--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .small-down--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .small-down--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .small-down--four:nth-of-type(4n+1),
.equal-columns--outside-trim .small-down--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .small-down--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .small-down--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .small-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 480px) and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-half.small-down--one-half,
.equal-columns--outside-trim .small-down--eight.small-down--eight,
.equal-columns--outside-trim .small-down--one-third.small-down--one-third,
.equal-columns--outside-trim .small-down--one-fourth.small-down--one-fourth,
.equal-columns--outside-trim .small-down--four.small-down--four,
.equal-columns--outside-trim .small-down--one-fifth.small-down--one-fifth,
.equal-columns--outside-trim .small-down--one-sixth.small-down--one-sixth,
.equal-columns--outside-trim .small-down--one-seventh.small-down--one-seventh,
.equal-columns--outside-trim .small-down--two.small-down--two {
    margin-right: 20px;
    margin-left: 20px;
  }
  .equal-columns--outside-trim .small-down--one-half:nth-of-type(2n),
.equal-columns--outside-trim .small-down--eight:nth-of-type(2n),
.equal-columns--outside-trim .small-down--one-third:nth-of-type(3n),
.equal-columns--outside-trim .small-down--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .small-down--four:nth-of-type(4n),
.equal-columns--outside-trim .small-down--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .small-down--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .small-down--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .small-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .small-down--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .small-down--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .small-down--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .small-down--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .small-down--four:nth-of-type(4n+1),
.equal-columns--outside-trim .small-down--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .small-down--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .small-down--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .small-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--four {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--eight {
    width: calc(50% - (20px / 2));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 480px) {
  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .small-down--one-whole,
.has-no-side-gutter .small-down--one-half,
.has-no-side-gutter .small-down--eight,
.has-no-side-gutter .small-down--one-third,
.has-no-side-gutter .small-down--two-thirds,
.has-no-side-gutter .small-down--one-fourth,
.has-no-side-gutter .small-down--four,
.has-no-side-gutter .small-down--one-fifth,
.has-no-side-gutter .small-down--three-fifths,
.has-no-side-gutter .small-down--two-fifths,
.has-no-side-gutter .small-down--one-sixth,
.has-no-side-gutter .small-down--one-seventh,
.has-no-side-gutter .small-down--one-eighth,
.has-no-side-gutter .small-down--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .small-down--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .small-down--one-half {
    width: 50%;
  }
  .has-no-side-gutter .small-down--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .small-down--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .small-down--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .small-down--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .small-down--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .small-down--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .small-down--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .small-down--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .small-down--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .small-down--two {
    width: 12.5%;
  }
  .has-no-side-gutter .small-down--four {
    width: 25%;
  }
  .has-no-side-gutter .small-down--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .small-down--eight {
    width: 50%;
  }
  .has-no-side-gutter .small-down--nine {
    width: 56.25%;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--show {
    display: block !important;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--hide {
    display: none !important;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--text-left {
    text-align: left !important;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--text-right {
    text-align: right !important;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--text-center {
    text-align: center !important;
  }
}
@media only screen and (min-width: 481px) and (max-width: 798px) {
  .small--hidden {
    display: none !important;
  }

  .small--visible {
    display: block !important;
  }

  .small--one {
    width: calc(6.25% - 20px);
  }

  .small--two {
    width: calc(12.5% - 20px);
  }

  .small--three {
    width: calc(18.75% - 20px);
  }

  .small--four {
    width: calc(25% - 20px);
  }

  .small--five {
    width: calc(31.25% - 20px);
  }

  .small--six {
    width: calc(37.5% - 20px);
  }

  .small--seven {
    width: calc(43.75% - 20px);
  }

  .small--eight {
    width: calc(50% - 20px);
  }

  .small--nine {
    width: calc(56.25% - 20px);
  }

  .small--ten {
    width: calc(62.5% - 20px);
  }

  .small--eleven {
    width: calc(68.75% - 20px);
  }

  .small--twelve {
    width: calc(75% - 20px);
  }

  .small--thirteen {
    width: calc(81.25% - 20px);
  }

  .small--fourteen {
    width: calc(87.5% - 20px);
  }

  .small--fifteen {
    width: calc(93.75% - 20px);
  }

  .small--sixteen {
    width: calc(100% - 20px);
  }

  .small--one-whole {
    width: calc(100% - 20px);
  }

  .small--one-half {
    width: calc(50% - 20px);
  }

  .small--one-third {
    width: calc(33.3333333333% - 20px);
  }

  .small--two-thirds {
    width: calc(66.6666666667% - 20px);
  }

  .small--one-fourth {
    width: calc(25% - 20px);
  }

  .small--two-fourths {
    width: calc(50% - 20px);
  }

  .small--three-fourths {
    width: calc(75% - 20px);
  }

  .small--one-fifth {
    width: calc(20% - 20px);
  }

  .small--two-fifths {
    width: calc(40% - 20px);
  }

  .small--three-fifths {
    width: calc(60% - 20px);
  }

  .small--four-fifths {
    width: calc(80% - 20px);
  }

  .small--one-sixth {
    width: calc(16.6666666667% - 20px);
  }

  .small--two-sixths {
    width: calc(33.3333333333% - 20px);
  }

  .small--three-sixths {
    width: calc(50% - 20px);
  }

  .small--four-sixths {
    width: calc(66.6666666667% - 20px);
  }

  .small--five-sixths {
    width: calc(83.3333333333% - 20px);
  }

  .small--one-seventh {
    width: calc(14.2857142857% - 20px);
  }

  .small--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }

  .small--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }

  .small--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }

  .small--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }

  .small--one-eighth {
    width: calc(12.5% - 20px);
  }

  .small--two-eighths {
    width: calc(25% - 20px);
  }

  .small--three-eighths {
    width: calc(37.5% - 20px);
  }

  .small--four-eighths {
    width: calc(50% - 20px);
  }

  .small--five-eighths {
    width: calc(62.5% - 20px);
  }

  .small--six-eighths {
    width: calc(75% - 20px);
  }

  .small--seven-eighths {
    width: calc(87.5% - 20px);
  }

  .small--one-tenth {
    width: calc(10% - 20px);
  }

  .small--two-tenths {
    width: calc(20% - 20px);
  }

  .small--three-tenths {
    width: calc(30% - 20px);
  }

  .small--four-tenths {
    width: calc(40% - 20px);
  }

  .small--five-tenths {
    width: calc(50% - 20px);
  }

  .small--six-tenths {
    width: calc(60% - 20px);
  }

  .small--seven-tenths {
    width: calc(70% - 20px);
  }

  .small--eight-tenths {
    width: calc(80% - 20px);
  }

  .small--nine-tenths {
    width: calc(90% - 20px);
  }

  .small--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }

  .small--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }

  .small--three-twelfths {
    width: calc(25% - 20px);
  }

  .small--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }

  .small--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }

  .small--six-twelfths {
    width: calc(50% - 20px);
  }

  .small--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }

  .small--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }

  .small--nine-twelfths {
    width: calc(75% - 20px);
  }

  .small--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }

  .small--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }

  .small--offset-by-one {
    left: calc(6.25%);
  }

  .small--offset-by-two {
    left: calc(12.5%);
  }

  .small--offset-by-three {
    left: calc(18.75%);
  }

  .small--offset-by-four {
    left: calc(25%);
  }

  .small--offset-by-five {
    left: calc(31.25%);
  }

  .small--offset-by-six {
    left: calc(37.5%);
  }

  .small--offset-by-seven {
    left: calc(43.75%);
  }

  .small--offset-by-eight {
    left: calc(50%);
  }

  .small--offset-by-nine {
    left: calc(56.25%);
  }

  .small--offset-by-ten {
    left: calc(62.5%);
  }

  .small--offset-by-eleven {
    left: calc(68.75%);
  }

  .small--offset-by-twelve {
    left: calc(75%);
  }

  .small--offset-by-thirteen {
    left: calc(81.25%);
  }

  .small--offset-by-fourteen {
    left: calc(87.5%);
  }

  .small--offset-by-fifteen {
    left: calc(93.75%);
  }

  .equal-columns--outside-trim .small--one-half:nth-of-type(2n),
.equal-columns--outside-trim .small--eight:nth-of-type(2n),
.equal-columns--outside-trim .small--one-third:nth-of-type(3n),
.equal-columns--outside-trim .small--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .small--four:nth-of-type(4n),
.equal-columns--outside-trim .small--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .small--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .small--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .small--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .small--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .small--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .small--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .small--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .small--four:nth-of-type(4n+1),
.equal-columns--outside-trim .small--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .small--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .small--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .small--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
  .equal-columns--outside-trim .small--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .equal-columns--outside-trim .small--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
  .equal-columns--outside-trim .small--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
  .equal-columns--outside-trim .small--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
  .equal-columns--outside-trim .small--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
  .equal-columns--outside-trim .small--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
  .equal-columns--outside-trim .small--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
  .equal-columns--outside-trim .small--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
  .equal-columns--outside-trim .small--four {
    width: calc(25% - (20px - (20px / 4)));
  }
  .equal-columns--outside-trim .small--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
  .equal-columns--outside-trim .small--eight {
    width: calc(50% - (20px / 2));
  }
  .equal-columns--outside-trim .small--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }

  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .small--one-whole,
.has-no-side-gutter .small--one-half,
.has-no-side-gutter .small--eight,
.has-no-side-gutter .small--one-third,
.has-no-side-gutter .small--two-thirds,
.has-no-side-gutter .small--one-fourth,
.has-no-side-gutter .small--four,
.has-no-side-gutter .small--one-fifth,
.has-no-side-gutter .small--three-fifths,
.has-no-side-gutter .small--two-fifths,
.has-no-side-gutter .small--one-sixth,
.has-no-side-gutter .small--one-seventh,
.has-no-side-gutter .small--one-eighth,
.has-no-side-gutter .small--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .small--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .small--one-half {
    width: 50%;
  }
  .has-no-side-gutter .small--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .small--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .small--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .small--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .small--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .small--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .small--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .small--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .small--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .small--two {
    width: 12.5%;
  }
  .has-no-side-gutter .small--four {
    width: 25%;
  }
  .has-no-side-gutter .small--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .small--eight {
    width: 50%;
  }
  .has-no-side-gutter .small--nine {
    width: 56.25%;
  }

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

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

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

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

  .small--text-center {
    text-align: center !important;
  }
}
@media only screen and (min-width: 481px) {
  .small-up--hidden {
    display: none !important;
  }

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

  .small-up--one {
    width: calc(6.25% - 20px);
  }

  .small-up--two {
    width: calc(12.5% - 20px);
  }

  .small-up--three {
    width: calc(18.75% - 20px);
  }

  .small-up--four {
    width: calc(25% - 20px);
  }

  .small-up--five {
    width: calc(31.25% - 20px);
  }

  .small-up--six {
    width: calc(37.5% - 20px);
  }

  .small-up--seven {
    width: calc(43.75% - 20px);
  }

  .small-up--eight {
    width: calc(50% - 20px);
  }

  .small-up--nine {
    width: calc(56.25% - 20px);
  }

  .small-up--ten {
    width: calc(62.5% - 20px);
  }

  .small-up--eleven {
    width: calc(68.75% - 20px);
  }

  .small-up--twelve {
    width: calc(75% - 20px);
  }

  .small-up--thirteen {
    width: calc(81.25% - 20px);
  }

  .small-up--fourteen {
    width: calc(87.5% - 20px);
  }

  .small-up--fifteen {
    width: calc(93.75% - 20px);
  }

  .small-up--sixteen {
    width: calc(100% - 20px);
  }

  .small-up--one-whole {
    width: calc(100% - 20px);
  }

  .small-up--one-half {
    width: calc(50% - 20px);
  }

  .small-up--one-third {
    width: calc(33.3333333333% - 20px);
  }

  .small-up--two-thirds {
    width: calc(66.6666666667% - 20px);
  }

  .small-up--one-fourth {
    width: calc(25% - 20px);
  }

  .small-up--two-fourths {
    width: calc(50% - 20px);
  }

  .small-up--three-fourths {
    width: calc(75% - 20px);
  }

  .small-up--one-fifth {
    width: calc(20% - 20px);
  }

  .small-up--two-fifths {
    width: calc(40% - 20px);
  }

  .small-up--three-fifths {
    width: calc(60% - 20px);
  }

  .small-up--four-fifths {
    width: calc(80% - 20px);
  }

  .small-up--one-sixth {
    width: calc(16.6666666667% - 20px);
  }

  .small-up--two-sixths {
    width: calc(33.3333333333% - 20px);
  }

  .small-up--three-sixths {
    width: calc(50% - 20px);
  }

  .small-up--four-sixths {
    width: calc(66.6666666667% - 20px);
  }

  .small-up--five-sixths {
    width: calc(83.3333333333% - 20px);
  }

  .small-up--one-seventh {
    width: calc(14.2857142857% - 20px);
  }

  .small-up--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }

  .small-up--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }

  .small-up--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }

  .small-up--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }

  .small-up--one-eighth {
    width: calc(12.5% - 20px);
  }

  .small-up--two-eighths {
    width: calc(25% - 20px);
  }

  .small-up--three-eighths {
    width: calc(37.5% - 20px);
  }

  .small-up--four-eighths {
    width: calc(50% - 20px);
  }

  .small-up--five-eighths {
    width: calc(62.5% - 20px);
  }

  .small-up--six-eighths {
    width: calc(75% - 20px);
  }

  .small-up--seven-eighths {
    width: calc(87.5% - 20px);
  }

  .small-up--one-tenth {
    width: calc(10% - 20px);
  }

  .small-up--two-tenths {
    width: calc(20% - 20px);
  }

  .small-up--three-tenths {
    width: calc(30% - 20px);
  }

  .small-up--four-tenths {
    width: calc(40% - 20px);
  }

  .small-up--five-tenths {
    width: calc(50% - 20px);
  }

  .small-up--six-tenths {
    width: calc(60% - 20px);
  }

  .small-up--seven-tenths {
    width: calc(70% - 20px);
  }

  .small-up--eight-tenths {
    width: calc(80% - 20px);
  }

  .small-up--nine-tenths {
    width: calc(90% - 20px);
  }

  .small-up--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }

  .small-up--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }

  .small-up--three-twelfths {
    width: calc(25% - 20px);
  }

  .small-up--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }

  .small-up--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }

  .small-up--six-twelfths {
    width: calc(50% - 20px);
  }

  .small-up--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }

  .small-up--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }

  .small-up--nine-twelfths {
    width: calc(75% - 20px);
  }

  .small-up--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }

  .small-up--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }

  .small-up--offset-by-one {
    left: calc(6.25%);
  }

  .small-up--offset-by-two {
    left: calc(12.5%);
  }

  .small-up--offset-by-three {
    left: calc(18.75%);
  }

  .small-up--offset-by-four {
    left: calc(25%);
  }

  .small-up--offset-by-five {
    left: calc(31.25%);
  }

  .small-up--offset-by-six {
    left: calc(37.5%);
  }

  .small-up--offset-by-seven {
    left: calc(43.75%);
  }

  .small-up--offset-by-eight {
    left: calc(50%);
  }

  .small-up--offset-by-nine {
    left: calc(56.25%);
  }

  .small-up--offset-by-ten {
    left: calc(62.5%);
  }

  .small-up--offset-by-eleven {
    left: calc(68.75%);
  }

  .small-up--offset-by-twelve {
    left: calc(75%);
  }

  .small-up--offset-by-thirteen {
    left: calc(81.25%);
  }

  .small-up--offset-by-fourteen {
    left: calc(87.5%);
  }

  .small-up--offset-by-fifteen {
    left: calc(93.75%);
  }

  .equal-columns--outside-trim .small-up--one-half:nth-of-type(2n),
.equal-columns--outside-trim .small-up--eight:nth-of-type(2n),
.equal-columns--outside-trim .small-up--one-third:nth-of-type(3n),
.equal-columns--outside-trim .small-up--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .small-up--four:nth-of-type(4n),
.equal-columns--outside-trim .small-up--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .small-up--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .small-up--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .small-up--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .small-up--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .small-up--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .small-up--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .small-up--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .small-up--four:nth-of-type(4n+1),
.equal-columns--outside-trim .small-up--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .small-up--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .small-up--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .small-up--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
  .equal-columns--outside-trim .small-up--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .equal-columns--outside-trim .small-up--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
  .equal-columns--outside-trim .small-up--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
  .equal-columns--outside-trim .small-up--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
  .equal-columns--outside-trim .small-up--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
  .equal-columns--outside-trim .small-up--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
  .equal-columns--outside-trim .small-up--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
  .equal-columns--outside-trim .small-up--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
  .equal-columns--outside-trim .small-up--four {
    width: calc(25% - (20px - (20px / 4)));
  }
  .equal-columns--outside-trim .small-up--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
  .equal-columns--outside-trim .small-up--eight {
    width: calc(50% - (20px / 2));
  }
  .equal-columns--outside-trim .small-up--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }

  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .small-up--one-whole,
.has-no-side-gutter .small-up--one-half,
.has-no-side-gutter .small-up--eight,
.has-no-side-gutter .small-up--one-third,
.has-no-side-gutter .small-up--two-thirds,
.has-no-side-gutter .small-up--one-fourth,
.has-no-side-gutter .small-up--four,
.has-no-side-gutter .small-up--one-fifth,
.has-no-side-gutter .small-up--three-fifths,
.has-no-side-gutter .small-up--two-fifths,
.has-no-side-gutter .small-up--one-sixth,
.has-no-side-gutter .small-up--one-seventh,
.has-no-side-gutter .small-up--one-eighth,
.has-no-side-gutter .small-up--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .small-up--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .small-up--one-half {
    width: 50%;
  }
  .has-no-side-gutter .small-up--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .small-up--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .small-up--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .small-up--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .small-up--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .small-up--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .small-up--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .small-up--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .small-up--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .small-up--two {
    width: 12.5%;
  }
  .has-no-side-gutter .small-up--four {
    width: 25%;
  }
  .has-no-side-gutter .small-up--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .small-up--eight {
    width: 50%;
  }
  .has-no-side-gutter .small-up--nine {
    width: 56.25%;
  }

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

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

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

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

  .small-up--text-center {
    text-align: center !important;
  }
}
@media only screen and (min-width: 799px) and (max-width: 1024px) {
  .medium--hidden {
    display: none !important;
  }

  .medium--visible {
    display: block !important;
  }

  .medium--one {
    width: calc(6.25% - 20px);
  }

  .medium--two {
    width: calc(12.5% - 20px);
  }

  .medium--three {
    width: calc(18.75% - 20px);
  }

  .medium--four {
    width: calc(25% - 20px);
  }

  .medium--five {
    width: calc(31.25% - 20px);
  }

  .medium--six {
    width: calc(37.5% - 20px);
  }

  .medium--seven {
    width: calc(43.75% - 20px);
  }

  .medium--eight {
    width: calc(50% - 20px);
  }

  .medium--nine {
    width: calc(56.25% - 20px);
  }

  .medium--ten {
    width: calc(62.5% - 20px);
  }

  .medium--eleven {
    width: calc(68.75% - 20px);
  }

  .medium--twelve {
    width: calc(75% - 20px);
  }

  .medium--thirteen {
    width: calc(81.25% - 20px);
  }

  .medium--fourteen {
    width: calc(87.5% - 20px);
  }

  .medium--fifteen {
    width: calc(93.75% - 20px);
  }

  .medium--sixteen {
    width: calc(100% - 20px);
  }

  .medium--one-whole {
    width: calc(100% - 20px);
  }

  .medium--one-half {
    width: calc(50% - 20px);
  }

  .medium--one-third {
    width: calc(33.3333333333% - 20px);
  }

  .medium--two-thirds {
    width: calc(66.6666666667% - 20px);
  }

  .medium--one-fourth {
    width: calc(25% - 20px);
  }

  .medium--two-fourths {
    width: calc(50% - 20px);
  }

  .medium--three-fourths {
    width: calc(75% - 20px);
  }

  .medium--one-fifth {
    width: calc(20% - 20px);
  }

  .medium--two-fifths {
    width: calc(40% - 20px);
  }

  .medium--three-fifths {
    width: calc(60% - 20px);
  }

  .medium--four-fifths {
    width: calc(80% - 20px);
  }

  .medium--one-sixth {
    width: calc(16.6666666667% - 20px);
  }

  .medium--two-sixths {
    width: calc(33.3333333333% - 20px);
  }

  .medium--three-sixths {
    width: calc(50% - 20px);
  }

  .medium--four-sixths {
    width: calc(66.6666666667% - 20px);
  }

  .medium--five-sixths {
    width: calc(83.3333333333% - 20px);
  }

  .medium--one-seventh {
    width: calc(14.2857142857% - 20px);
  }

  .medium--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }

  .medium--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }

  .medium--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }

  .medium--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }

  .medium--one-eighth {
    width: calc(12.5% - 20px);
  }

  .medium--two-eighths {
    width: calc(25% - 20px);
  }

  .medium--three-eighths {
    width: calc(37.5% - 20px);
  }

  .medium--four-eighths {
    width: calc(50% - 20px);
  }

  .medium--five-eighths {
    width: calc(62.5% - 20px);
  }

  .medium--six-eighths {
    width: calc(75% - 20px);
  }

  .medium--seven-eighths {
    width: calc(87.5% - 20px);
  }

  .medium--one-tenth {
    width: calc(10% - 20px);
  }

  .medium--two-tenths {
    width: calc(20% - 20px);
  }

  .medium--three-tenths {
    width: calc(30% - 20px);
  }

  .medium--four-tenths {
    width: calc(40% - 20px);
  }

  .medium--five-tenths {
    width: calc(50% - 20px);
  }

  .medium--six-tenths {
    width: calc(60% - 20px);
  }

  .medium--seven-tenths {
    width: calc(70% - 20px);
  }

  .medium--eight-tenths {
    width: calc(80% - 20px);
  }

  .medium--nine-tenths {
    width: calc(90% - 20px);
  }

  .medium--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }

  .medium--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }

  .medium--three-twelfths {
    width: calc(25% - 20px);
  }

  .medium--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }

  .medium--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }

  .medium--six-twelfths {
    width: calc(50% - 20px);
  }

  .medium--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }

  .medium--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }

  .medium--nine-twelfths {
    width: calc(75% - 20px);
  }

  .medium--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }

  .medium--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }

  .medium--offset-by-one {
    left: calc(6.25%);
  }

  .medium--offset-by-two {
    left: calc(12.5%);
  }

  .medium--offset-by-three {
    left: calc(18.75%);
  }

  .medium--offset-by-four {
    left: calc(25%);
  }

  .medium--offset-by-five {
    left: calc(31.25%);
  }

  .medium--offset-by-six {
    left: calc(37.5%);
  }

  .medium--offset-by-seven {
    left: calc(43.75%);
  }

  .medium--offset-by-eight {
    left: calc(50%);
  }

  .medium--offset-by-nine {
    left: calc(56.25%);
  }

  .medium--offset-by-ten {
    left: calc(62.5%);
  }

  .medium--offset-by-eleven {
    left: calc(68.75%);
  }

  .medium--offset-by-twelve {
    left: calc(75%);
  }

  .medium--offset-by-thirteen {
    left: calc(81.25%);
  }

  .medium--offset-by-fourteen {
    left: calc(87.5%);
  }

  .medium--offset-by-fifteen {
    left: calc(93.75%);
  }

  .equal-columns--outside-trim .medium--one-half:nth-of-type(2n),
.equal-columns--outside-trim .medium--eight:nth-of-type(2n),
.equal-columns--outside-trim .medium--one-third:nth-of-type(3n),
.equal-columns--outside-trim .medium--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .medium--four:nth-of-type(4n),
.equal-columns--outside-trim .medium--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .medium--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .medium--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .medium--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .medium--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .medium--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .medium--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .medium--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .medium--four:nth-of-type(4n+1),
.equal-columns--outside-trim .medium--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .medium--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .medium--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .medium--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
  .equal-columns--outside-trim .medium--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .equal-columns--outside-trim .medium--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
  .equal-columns--outside-trim .medium--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
  .equal-columns--outside-trim .medium--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
  .equal-columns--outside-trim .medium--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
  .equal-columns--outside-trim .medium--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
  .equal-columns--outside-trim .medium--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
  .equal-columns--outside-trim .medium--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
  .equal-columns--outside-trim .medium--four {
    width: calc(25% - (20px - (20px / 4)));
  }
  .equal-columns--outside-trim .medium--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
  .equal-columns--outside-trim .medium--eight {
    width: calc(50% - (20px / 2));
  }
  .equal-columns--outside-trim .medium--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }

  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .medium--one-whole,
.has-no-side-gutter .medium--one-half,
.has-no-side-gutter .medium--eight,
.has-no-side-gutter .medium--one-third,
.has-no-side-gutter .medium--two-thirds,
.has-no-side-gutter .medium--one-fourth,
.has-no-side-gutter .medium--four,
.has-no-side-gutter .medium--one-fifth,
.has-no-side-gutter .medium--three-fifths,
.has-no-side-gutter .medium--two-fifths,
.has-no-side-gutter .medium--one-sixth,
.has-no-side-gutter .medium--one-seventh,
.has-no-side-gutter .medium--one-eighth,
.has-no-side-gutter .medium--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .medium--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .medium--one-half {
    width: 50%;
  }
  .has-no-side-gutter .medium--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .medium--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .medium--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .medium--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .medium--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .medium--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .medium--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .medium--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .medium--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .medium--two {
    width: 12.5%;
  }
  .has-no-side-gutter .medium--four {
    width: 25%;
  }
  .has-no-side-gutter .medium--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .medium--eight {
    width: 50%;
  }
  .has-no-side-gutter .medium--nine {
    width: 56.25%;
  }

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

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

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

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

  .medium--text-center {
    text-align: center !important;
  }
}
@media only screen and (min-width: 799px) {
  .medium-up--hidden {
    display: none !important;
  }

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

  .medium-up--one {
    width: calc(6.25% - 20px);
  }

  .medium-up--two {
    width: calc(12.5% - 20px);
  }

  .medium-up--three {
    width: calc(18.75% - 20px);
  }

  .medium-up--four {
    width: calc(25% - 20px);
  }

  .medium-up--five {
    width: calc(31.25% - 20px);
  }

  .medium-up--six {
    width: calc(37.5% - 20px);
  }

  .medium-up--seven {
    width: calc(43.75% - 20px);
  }

  .medium-up--eight {
    width: calc(50% - 20px);
  }

  .medium-up--nine {
    width: calc(56.25% - 20px);
  }

  .medium-up--ten {
    width: calc(62.5% - 20px);
  }

  .medium-up--eleven {
    width: calc(68.75% - 20px);
  }

  .medium-up--twelve {
    width: calc(75% - 20px);
  }

  .medium-up--thirteen {
    width: calc(81.25% - 20px);
  }

  .medium-up--fourteen {
    width: calc(87.5% - 20px);
  }

  .medium-up--fifteen {
    width: calc(93.75% - 20px);
  }

  .medium-up--sixteen {
    width: calc(100% - 20px);
  }

  .medium-up--one-whole {
    width: calc(100% - 20px);
  }

  .medium-up--one-half {
    width: calc(50% - 20px);
  }

  .medium-up--one-third {
    width: calc(33.3333333333% - 20px);
  }

  .medium-up--two-thirds {
    width: calc(66.6666666667% - 20px);
  }

  .medium-up--one-fourth {
    width: calc(25% - 20px);
  }

  .medium-up--two-fourths {
    width: calc(50% - 20px);
  }

  .medium-up--three-fourths {
    width: calc(75% - 20px);
  }

  .medium-up--one-fifth {
    width: calc(20% - 20px);
  }

  .medium-up--two-fifths {
    width: calc(40% - 20px);
  }

  .medium-up--three-fifths {
    width: calc(60% - 20px);
  }

  .medium-up--four-fifths {
    width: calc(80% - 20px);
  }

  .medium-up--one-sixth {
    width: calc(16.6666666667% - 20px);
  }

  .medium-up--two-sixths {
    width: calc(33.3333333333% - 20px);
  }

  .medium-up--three-sixths {
    width: calc(50% - 20px);
  }

  .medium-up--four-sixths {
    width: calc(66.6666666667% - 20px);
  }

  .medium-up--five-sixths {
    width: calc(83.3333333333% - 20px);
  }

  .medium-up--one-seventh {
    width: calc(14.2857142857% - 20px);
  }

  .medium-up--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }

  .medium-up--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }

  .medium-up--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }

  .medium-up--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }

  .medium-up--one-eighth {
    width: calc(12.5% - 20px);
  }

  .medium-up--two-eighths {
    width: calc(25% - 20px);
  }

  .medium-up--three-eighths {
    width: calc(37.5% - 20px);
  }

  .medium-up--four-eighths {
    width: calc(50% - 20px);
  }

  .medium-up--five-eighths {
    width: calc(62.5% - 20px);
  }

  .medium-up--six-eighths {
    width: calc(75% - 20px);
  }

  .medium-up--seven-eighths {
    width: calc(87.5% - 20px);
  }

  .medium-up--one-tenth {
    width: calc(10% - 20px);
  }

  .medium-up--two-tenths {
    width: calc(20% - 20px);
  }

  .medium-up--three-tenths {
    width: calc(30% - 20px);
  }

  .medium-up--four-tenths {
    width: calc(40% - 20px);
  }

  .medium-up--five-tenths {
    width: calc(50% - 20px);
  }

  .medium-up--six-tenths {
    width: calc(60% - 20px);
  }

  .medium-up--seven-tenths {
    width: calc(70% - 20px);
  }

  .medium-up--eight-tenths {
    width: calc(80% - 20px);
  }

  .medium-up--nine-tenths {
    width: calc(90% - 20px);
  }

  .medium-up--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }

  .medium-up--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }

  .medium-up--three-twelfths {
    width: calc(25% - 20px);
  }

  .medium-up--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }

  .medium-up--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }

  .medium-up--six-twelfths {
    width: calc(50% - 20px);
  }

  .medium-up--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }

  .medium-up--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }

  .medium-up--nine-twelfths {
    width: calc(75% - 20px);
  }

  .medium-up--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }

  .medium-up--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }

  .medium-up--offset-by-one {
    left: calc(6.25%);
  }

  .medium-up--offset-by-two {
    left: calc(12.5%);
  }

  .medium-up--offset-by-three {
    left: calc(18.75%);
  }

  .medium-up--offset-by-four {
    left: calc(25%);
  }

  .medium-up--offset-by-five {
    left: calc(31.25%);
  }

  .medium-up--offset-by-six {
    left: calc(37.5%);
  }

  .medium-up--offset-by-seven {
    left: calc(43.75%);
  }

  .medium-up--offset-by-eight {
    left: calc(50%);
  }

  .medium-up--offset-by-nine {
    left: calc(56.25%);
  }

  .medium-up--offset-by-ten {
    left: calc(62.5%);
  }

  .medium-up--offset-by-eleven {
    left: calc(68.75%);
  }

  .medium-up--offset-by-twelve {
    left: calc(75%);
  }

  .medium-up--offset-by-thirteen {
    left: calc(81.25%);
  }

  .medium-up--offset-by-fourteen {
    left: calc(87.5%);
  }

  .medium-up--offset-by-fifteen {
    left: calc(93.75%);
  }

  .equal-columns--outside-trim .medium-up--one-half:nth-of-type(2n),
.equal-columns--outside-trim .medium-up--eight:nth-of-type(2n),
.equal-columns--outside-trim .medium-up--one-third:nth-of-type(3n),
.equal-columns--outside-trim .medium-up--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .medium-up--four:nth-of-type(4n),
.equal-columns--outside-trim .medium-up--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .medium-up--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .medium-up--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .medium-up--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .medium-up--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .medium-up--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .medium-up--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .medium-up--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .medium-up--four:nth-of-type(4n+1),
.equal-columns--outside-trim .medium-up--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .medium-up--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .medium-up--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .medium-up--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
  .equal-columns--outside-trim .medium-up--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .equal-columns--outside-trim .medium-up--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
  .equal-columns--outside-trim .medium-up--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
  .equal-columns--outside-trim .medium-up--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
  .equal-columns--outside-trim .medium-up--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
  .equal-columns--outside-trim .medium-up--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
  .equal-columns--outside-trim .medium-up--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
  .equal-columns--outside-trim .medium-up--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
  .equal-columns--outside-trim .medium-up--four {
    width: calc(25% - (20px - (20px / 4)));
  }
  .equal-columns--outside-trim .medium-up--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
  .equal-columns--outside-trim .medium-up--eight {
    width: calc(50% - (20px / 2));
  }
  .equal-columns--outside-trim .medium-up--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }

  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .medium-up--one-whole,
.has-no-side-gutter .medium-up--one-half,
.has-no-side-gutter .medium-up--eight,
.has-no-side-gutter .medium-up--one-third,
.has-no-side-gutter .medium-up--two-thirds,
.has-no-side-gutter .medium-up--one-fourth,
.has-no-side-gutter .medium-up--four,
.has-no-side-gutter .medium-up--one-fifth,
.has-no-side-gutter .medium-up--three-fifths,
.has-no-side-gutter .medium-up--two-fifths,
.has-no-side-gutter .medium-up--one-sixth,
.has-no-side-gutter .medium-up--one-seventh,
.has-no-side-gutter .medium-up--one-eighth,
.has-no-side-gutter .medium-up--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .medium-up--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .medium-up--one-half {
    width: 50%;
  }
  .has-no-side-gutter .medium-up--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .medium-up--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .medium-up--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .medium-up--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .medium-up--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .medium-up--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .medium-up--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .medium-up--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .medium-up--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .medium-up--two {
    width: 12.5%;
  }
  .has-no-side-gutter .medium-up--four {
    width: 25%;
  }
  .has-no-side-gutter .medium-up--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .medium-up--eight {
    width: 50%;
  }
  .has-no-side-gutter .medium-up--nine {
    width: 56.25%;
  }

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

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

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

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

  .medium-up--text-center {
    text-align: center !important;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1400px) {
  .large--hidden {
    display: none !important;
  }

  .large--visible {
    display: block !important;
  }

  .large--one {
    width: calc(6.25% - 20px);
  }

  .large--two {
    width: calc(12.5% - 20px);
  }

  .large--three {
    width: calc(18.75% - 20px);
  }

  .large--four {
    width: calc(25% - 20px);
  }

  .large--five {
    width: calc(31.25% - 20px);
  }

  .large--six {
    width: calc(37.5% - 20px);
  }

  .large--seven {
    width: calc(43.75% - 20px);
  }

  .large--eight {
    width: calc(50% - 20px);
  }

  .large--nine {
    width: calc(56.25% - 20px);
  }

  .large--ten {
    width: calc(62.5% - 20px);
  }

  .large--eleven {
    width: calc(68.75% - 20px);
  }

  .large--twelve {
    width: calc(75% - 20px);
  }

  .large--thirteen {
    width: calc(81.25% - 20px);
  }

  .large--fourteen {
    width: calc(87.5% - 20px);
  }

  .large--fifteen {
    width: calc(93.75% - 20px);
  }

  .large--sixteen {
    width: calc(100% - 20px);
  }

  .large--one-whole {
    width: calc(100% - 20px);
  }

  .large--one-half {
    width: calc(50% - 20px);
  }

  .large--one-third {
    width: calc(33.3333333333% - 20px);
  }

  .large--two-thirds {
    width: calc(66.6666666667% - 20px);
  }

  .large--one-fourth {
    width: calc(25% - 20px);
  }

  .large--two-fourths {
    width: calc(50% - 20px);
  }

  .large--three-fourths {
    width: calc(75% - 20px);
  }

  .large--one-fifth {
    width: calc(20% - 20px);
  }

  .large--two-fifths {
    width: calc(40% - 20px);
  }

  .large--three-fifths {
    width: calc(60% - 20px);
  }

  .large--four-fifths {
    width: calc(80% - 20px);
  }

  .large--one-sixth {
    width: calc(16.6666666667% - 20px);
  }

  .large--two-sixths {
    width: calc(33.3333333333% - 20px);
  }

  .large--three-sixths {
    width: calc(50% - 20px);
  }

  .large--four-sixths {
    width: calc(66.6666666667% - 20px);
  }

  .large--five-sixths {
    width: calc(83.3333333333% - 20px);
  }

  .large--one-seventh {
    width: calc(14.2857142857% - 20px);
  }

  .large--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }

  .large--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }

  .large--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }

  .large--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }

  .large--one-eighth {
    width: calc(12.5% - 20px);
  }

  .large--two-eighths {
    width: calc(25% - 20px);
  }

  .large--three-eighths {
    width: calc(37.5% - 20px);
  }

  .large--four-eighths {
    width: calc(50% - 20px);
  }

  .large--five-eighths {
    width: calc(62.5% - 20px);
  }

  .large--six-eighths {
    width: calc(75% - 20px);
  }

  .large--seven-eighths {
    width: calc(87.5% - 20px);
  }

  .large--one-tenth {
    width: calc(10% - 20px);
  }

  .large--two-tenths {
    width: calc(20% - 20px);
  }

  .large--three-tenths {
    width: calc(30% - 20px);
  }

  .large--four-tenths {
    width: calc(40% - 20px);
  }

  .large--five-tenths {
    width: calc(50% - 20px);
  }

  .large--six-tenths {
    width: calc(60% - 20px);
  }

  .large--seven-tenths {
    width: calc(70% - 20px);
  }

  .large--eight-tenths {
    width: calc(80% - 20px);
  }

  .large--nine-tenths {
    width: calc(90% - 20px);
  }

  .large--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }

  .large--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }

  .large--three-twelfths {
    width: calc(25% - 20px);
  }

  .large--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }

  .large--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }

  .large--six-twelfths {
    width: calc(50% - 20px);
  }

  .large--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }

  .large--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }

  .large--nine-twelfths {
    width: calc(75% - 20px);
  }

  .large--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }

  .large--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }

  .large--offset-by-one {
    left: calc(6.25%);
  }

  .large--offset-by-two {
    left: calc(12.5%);
  }

  .large--offset-by-three {
    left: calc(18.75%);
  }

  .large--offset-by-four {
    left: calc(25%);
  }

  .large--offset-by-five {
    left: calc(31.25%);
  }

  .large--offset-by-six {
    left: calc(37.5%);
  }

  .large--offset-by-seven {
    left: calc(43.75%);
  }

  .large--offset-by-eight {
    left: calc(50%);
  }

  .large--offset-by-nine {
    left: calc(56.25%);
  }

  .large--offset-by-ten {
    left: calc(62.5%);
  }

  .large--offset-by-eleven {
    left: calc(68.75%);
  }

  .large--offset-by-twelve {
    left: calc(75%);
  }

  .large--offset-by-thirteen {
    left: calc(81.25%);
  }

  .large--offset-by-fourteen {
    left: calc(87.5%);
  }

  .large--offset-by-fifteen {
    left: calc(93.75%);
  }

  .equal-columns--outside-trim .large--one-half:nth-of-type(2n),
.equal-columns--outside-trim .large--eight:nth-of-type(2n),
.equal-columns--outside-trim .large--one-third:nth-of-type(3n),
.equal-columns--outside-trim .large--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .large--four:nth-of-type(4n),
.equal-columns--outside-trim .large--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .large--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .large--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .large--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .large--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .large--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .large--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .large--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .large--four:nth-of-type(4n+1),
.equal-columns--outside-trim .large--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .large--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .large--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .large--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
  .equal-columns--outside-trim .large--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .equal-columns--outside-trim .large--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
  .equal-columns--outside-trim .large--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
  .equal-columns--outside-trim .large--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
  .equal-columns--outside-trim .large--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
  .equal-columns--outside-trim .large--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
  .equal-columns--outside-trim .large--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
  .equal-columns--outside-trim .large--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
  .equal-columns--outside-trim .large--four {
    width: calc(25% - (20px - (20px / 4)));
  }
  .equal-columns--outside-trim .large--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
  .equal-columns--outside-trim .large--eight {
    width: calc(50% - (20px / 2));
  }
  .equal-columns--outside-trim .large--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }

  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .large--one-whole,
.has-no-side-gutter .large--one-half,
.has-no-side-gutter .large--eight,
.has-no-side-gutter .large--one-third,
.has-no-side-gutter .large--two-thirds,
.has-no-side-gutter .large--one-fourth,
.has-no-side-gutter .large--four,
.has-no-side-gutter .large--one-fifth,
.has-no-side-gutter .large--three-fifths,
.has-no-side-gutter .large--two-fifths,
.has-no-side-gutter .large--one-sixth,
.has-no-side-gutter .large--one-seventh,
.has-no-side-gutter .large--one-eighth,
.has-no-side-gutter .large--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .large--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .large--one-half {
    width: 50%;
  }
  .has-no-side-gutter .large--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .large--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .large--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .large--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .large--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .large--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .large--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .large--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .large--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .large--two {
    width: 12.5%;
  }
  .has-no-side-gutter .large--four {
    width: 25%;
  }
  .has-no-side-gutter .large--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .large--eight {
    width: 50%;
  }
  .has-no-side-gutter .large--nine {
    width: 56.25%;
  }

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

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

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

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

  .large--text-center {
    text-align: center !important;
  }
}
@media only screen and (min-width: 1025px) {
  .large-up--hidden {
    display: none !important;
  }

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

  .large-up--one {
    width: calc(6.25% - 20px);
  }

  .large-up--two {
    width: calc(12.5% - 20px);
  }

  .large-up--three {
    width: calc(18.75% - 20px);
  }

  .large-up--four {
    width: calc(25% - 20px);
  }

  .large-up--five {
    width: calc(31.25% - 20px);
  }

  .large-up--six {
    width: calc(37.5% - 20px);
  }

  .large-up--seven {
    width: calc(43.75% - 20px);
  }

  .large-up--eight {
    width: calc(50% - 20px);
  }

  .large-up--nine {
    width: calc(56.25% - 20px);
  }

  .large-up--ten {
    width: calc(62.5% - 20px);
  }

  .large-up--eleven {
    width: calc(68.75% - 20px);
  }

  .large-up--twelve {
    width: calc(75% - 20px);
  }

  .large-up--thirteen {
    width: calc(81.25% - 20px);
  }

  .large-up--fourteen {
    width: calc(87.5% - 20px);
  }

  .large-up--fifteen {
    width: calc(93.75% - 20px);
  }

  .large-up--sixteen {
    width: calc(100% - 20px);
  }

  .large-up--one-whole {
    width: calc(100% - 20px);
  }

  .large-up--one-half {
    width: calc(50% - 20px);
  }

  .large-up--one-third {
    width: calc(33.3333333333% - 20px);
  }

  .large-up--two-thirds {
    width: calc(66.6666666667% - 20px);
  }

  .large-up--one-fourth {
    width: calc(25% - 20px);
  }

  .large-up--two-fourths {
    width: calc(50% - 20px);
  }

  .large-up--three-fourths {
    width: calc(75% - 20px);
  }

  .large-up--one-fifth {
    width: calc(20% - 20px);
  }

  .large-up--two-fifths {
    width: calc(40% - 20px);
  }

  .large-up--three-fifths {
    width: calc(60% - 20px);
  }

  .large-up--four-fifths {
    width: calc(80% - 20px);
  }

  .large-up--one-sixth {
    width: calc(16.6666666667% - 20px);
  }

  .large-up--two-sixths {
    width: calc(33.3333333333% - 20px);
  }

  .large-up--three-sixths {
    width: calc(50% - 20px);
  }

  .large-up--four-sixths {
    width: calc(66.6666666667% - 20px);
  }

  .large-up--five-sixths {
    width: calc(83.3333333333% - 20px);
  }

  .large-up--one-seventh {
    width: calc(14.2857142857% - 20px);
  }

  .large-up--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }

  .large-up--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }

  .large-up--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }

  .large-up--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }

  .large-up--one-eighth {
    width: calc(12.5% - 20px);
  }

  .large-up--two-eighths {
    width: calc(25% - 20px);
  }

  .large-up--three-eighths {
    width: calc(37.5% - 20px);
  }

  .large-up--four-eighths {
    width: calc(50% - 20px);
  }

  .large-up--five-eighths {
    width: calc(62.5% - 20px);
  }

  .large-up--six-eighths {
    width: calc(75% - 20px);
  }

  .large-up--seven-eighths {
    width: calc(87.5% - 20px);
  }

  .large-up--one-tenth {
    width: calc(10% - 20px);
  }

  .large-up--two-tenths {
    width: calc(20% - 20px);
  }

  .large-up--three-tenths {
    width: calc(30% - 20px);
  }

  .large-up--four-tenths {
    width: calc(40% - 20px);
  }

  .large-up--five-tenths {
    width: calc(50% - 20px);
  }

  .large-up--six-tenths {
    width: calc(60% - 20px);
  }

  .large-up--seven-tenths {
    width: calc(70% - 20px);
  }

  .large-up--eight-tenths {
    width: calc(80% - 20px);
  }

  .large-up--nine-tenths {
    width: calc(90% - 20px);
  }

  .large-up--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }

  .large-up--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }

  .large-up--three-twelfths {
    width: calc(25% - 20px);
  }

  .large-up--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }

  .large-up--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }

  .large-up--six-twelfths {
    width: calc(50% - 20px);
  }

  .large-up--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }

  .large-up--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }

  .large-up--nine-twelfths {
    width: calc(75% - 20px);
  }

  .large-up--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }

  .large-up--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }

  .large-up--offset-by-one {
    left: calc(6.25%);
  }

  .large-up--offset-by-two {
    left: calc(12.5%);
  }

  .large-up--offset-by-three {
    left: calc(18.75%);
  }

  .large-up--offset-by-four {
    left: calc(25%);
  }

  .large-up--offset-by-five {
    left: calc(31.25%);
  }

  .large-up--offset-by-six {
    left: calc(37.5%);
  }

  .large-up--offset-by-seven {
    left: calc(43.75%);
  }

  .large-up--offset-by-eight {
    left: calc(50%);
  }

  .large-up--offset-by-nine {
    left: calc(56.25%);
  }

  .large-up--offset-by-ten {
    left: calc(62.5%);
  }

  .large-up--offset-by-eleven {
    left: calc(68.75%);
  }

  .large-up--offset-by-twelve {
    left: calc(75%);
  }

  .large-up--offset-by-thirteen {
    left: calc(81.25%);
  }

  .large-up--offset-by-fourteen {
    left: calc(87.5%);
  }

  .large-up--offset-by-fifteen {
    left: calc(93.75%);
  }

  .equal-columns--outside-trim .large-up--one-half:nth-of-type(2n),
.equal-columns--outside-trim .large-up--eight:nth-of-type(2n),
.equal-columns--outside-trim .large-up--one-third:nth-of-type(3n),
.equal-columns--outside-trim .large-up--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .large-up--four:nth-of-type(4n),
.equal-columns--outside-trim .large-up--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .large-up--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .large-up--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .large-up--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .large-up--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .large-up--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .large-up--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .large-up--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .large-up--four:nth-of-type(4n+1),
.equal-columns--outside-trim .large-up--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .large-up--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .large-up--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .large-up--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
  .equal-columns--outside-trim .large-up--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .equal-columns--outside-trim .large-up--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
  .equal-columns--outside-trim .large-up--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
  .equal-columns--outside-trim .large-up--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
  .equal-columns--outside-trim .large-up--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
  .equal-columns--outside-trim .large-up--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
  .equal-columns--outside-trim .large-up--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
  .equal-columns--outside-trim .large-up--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
  .equal-columns--outside-trim .large-up--four {
    width: calc(25% - (20px - (20px / 4)));
  }
  .equal-columns--outside-trim .large-up--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
  .equal-columns--outside-trim .large-up--eight {
    width: calc(50% - (20px / 2));
  }
  .equal-columns--outside-trim .large-up--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }

  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .large-up--one-whole,
.has-no-side-gutter .large-up--one-half,
.has-no-side-gutter .large-up--eight,
.has-no-side-gutter .large-up--one-third,
.has-no-side-gutter .large-up--two-thirds,
.has-no-side-gutter .large-up--one-fourth,
.has-no-side-gutter .large-up--four,
.has-no-side-gutter .large-up--one-fifth,
.has-no-side-gutter .large-up--three-fifths,
.has-no-side-gutter .large-up--two-fifths,
.has-no-side-gutter .large-up--one-sixth,
.has-no-side-gutter .large-up--one-seventh,
.has-no-side-gutter .large-up--one-eighth,
.has-no-side-gutter .large-up--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .large-up--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .large-up--one-half {
    width: 50%;
  }
  .has-no-side-gutter .large-up--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .large-up--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .large-up--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .large-up--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .large-up--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .large-up--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .large-up--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .large-up--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .large-up--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .large-up--two {
    width: 12.5%;
  }
  .has-no-side-gutter .large-up--four {
    width: 25%;
  }
  .has-no-side-gutter .large-up--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .large-up--eight {
    width: 50%;
  }
  .has-no-side-gutter .large-up--nine {
    width: 56.25%;
  }

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

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

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

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

  .large-up--text-center {
    text-align: center !important;
  }
}
@media only screen and (min-width: 1401px) {
  .widescreen-up--hidden {
    display: none !important;
  }

  .widescreen-up--visible {
    display: block !important;
  }

  .widescreen-up--one {
    width: calc(6.25% - 20px);
  }

  .widescreen-up--two {
    width: calc(12.5% - 20px);
  }

  .widescreen-up--three {
    width: calc(18.75% - 20px);
  }

  .widescreen-up--four {
    width: calc(25% - 20px);
  }

  .widescreen-up--five {
    width: calc(31.25% - 20px);
  }

  .widescreen-up--six {
    width: calc(37.5% - 20px);
  }

  .widescreen-up--seven {
    width: calc(43.75% - 20px);
  }

  .widescreen-up--eight {
    width: calc(50% - 20px);
  }

  .widescreen-up--nine {
    width: calc(56.25% - 20px);
  }

  .widescreen-up--ten {
    width: calc(62.5% - 20px);
  }

  .widescreen-up--eleven {
    width: calc(68.75% - 20px);
  }

  .widescreen-up--twelve {
    width: calc(75% - 20px);
  }

  .widescreen-up--thirteen {
    width: calc(81.25% - 20px);
  }

  .widescreen-up--fourteen {
    width: calc(87.5% - 20px);
  }

  .widescreen-up--fifteen {
    width: calc(93.75% - 20px);
  }

  .widescreen-up--sixteen {
    width: calc(100% - 20px);
  }

  .widescreen-up--one-whole {
    width: calc(100% - 20px);
  }

  .widescreen-up--one-half {
    width: calc(50% - 20px);
  }

  .widescreen-up--one-third {
    width: calc(33.3333333333% - 20px);
  }

  .widescreen-up--two-thirds {
    width: calc(66.6666666667% - 20px);
  }

  .widescreen-up--one-fourth {
    width: calc(25% - 20px);
  }

  .widescreen-up--two-fourths {
    width: calc(50% - 20px);
  }

  .widescreen-up--three-fourths {
    width: calc(75% - 20px);
  }

  .widescreen-up--one-fifth {
    width: calc(20% - 20px);
  }

  .widescreen-up--two-fifths {
    width: calc(40% - 20px);
  }

  .widescreen-up--three-fifths {
    width: calc(60% - 20px);
  }

  .widescreen-up--four-fifths {
    width: calc(80% - 20px);
  }

  .widescreen-up--one-sixth {
    width: calc(16.6666666667% - 20px);
  }

  .widescreen-up--two-sixths {
    width: calc(33.3333333333% - 20px);
  }

  .widescreen-up--three-sixths {
    width: calc(50% - 20px);
  }

  .widescreen-up--four-sixths {
    width: calc(66.6666666667% - 20px);
  }

  .widescreen-up--five-sixths {
    width: calc(83.3333333333% - 20px);
  }

  .widescreen-up--one-seventh {
    width: calc(14.2857142857% - 20px);
  }

  .widescreen-up--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }

  .widescreen-up--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }

  .widescreen-up--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }

  .widescreen-up--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }

  .widescreen-up--one-eighth {
    width: calc(12.5% - 20px);
  }

  .widescreen-up--two-eighths {
    width: calc(25% - 20px);
  }

  .widescreen-up--three-eighths {
    width: calc(37.5% - 20px);
  }

  .widescreen-up--four-eighths {
    width: calc(50% - 20px);
  }

  .widescreen-up--five-eighths {
    width: calc(62.5% - 20px);
  }

  .widescreen-up--six-eighths {
    width: calc(75% - 20px);
  }

  .widescreen-up--seven-eighths {
    width: calc(87.5% - 20px);
  }

  .widescreen-up--one-tenth {
    width: calc(10% - 20px);
  }

  .widescreen-up--two-tenths {
    width: calc(20% - 20px);
  }

  .widescreen-up--three-tenths {
    width: calc(30% - 20px);
  }

  .widescreen-up--four-tenths {
    width: calc(40% - 20px);
  }

  .widescreen-up--five-tenths {
    width: calc(50% - 20px);
  }

  .widescreen-up--six-tenths {
    width: calc(60% - 20px);
  }

  .widescreen-up--seven-tenths {
    width: calc(70% - 20px);
  }

  .widescreen-up--eight-tenths {
    width: calc(80% - 20px);
  }

  .widescreen-up--nine-tenths {
    width: calc(90% - 20px);
  }

  .widescreen-up--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }

  .widescreen-up--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }

  .widescreen-up--three-twelfths {
    width: calc(25% - 20px);
  }

  .widescreen-up--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }

  .widescreen-up--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }

  .widescreen-up--six-twelfths {
    width: calc(50% - 20px);
  }

  .widescreen-up--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }

  .widescreen-up--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }

  .widescreen-up--nine-twelfths {
    width: calc(75% - 20px);
  }

  .widescreen-up--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }

  .widescreen-up--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }

  .widescreen-up--offset-by-one {
    left: calc(6.25%);
  }

  .widescreen-up--offset-by-two {
    left: calc(12.5%);
  }

  .widescreen-up--offset-by-three {
    left: calc(18.75%);
  }

  .widescreen-up--offset-by-four {
    left: calc(25%);
  }

  .widescreen-up--offset-by-five {
    left: calc(31.25%);
  }

  .widescreen-up--offset-by-six {
    left: calc(37.5%);
  }

  .widescreen-up--offset-by-seven {
    left: calc(43.75%);
  }

  .widescreen-up--offset-by-eight {
    left: calc(50%);
  }

  .widescreen-up--offset-by-nine {
    left: calc(56.25%);
  }

  .widescreen-up--offset-by-ten {
    left: calc(62.5%);
  }

  .widescreen-up--offset-by-eleven {
    left: calc(68.75%);
  }

  .widescreen-up--offset-by-twelve {
    left: calc(75%);
  }

  .widescreen-up--offset-by-thirteen {
    left: calc(81.25%);
  }

  .widescreen-up--offset-by-fourteen {
    left: calc(87.5%);
  }

  .widescreen-up--offset-by-fifteen {
    left: calc(93.75%);
  }

  .equal-columns--outside-trim .widescreen-up--one-half:nth-of-type(2n),
.equal-columns--outside-trim .widescreen-up--eight:nth-of-type(2n),
.equal-columns--outside-trim .widescreen-up--one-third:nth-of-type(3n),
.equal-columns--outside-trim .widescreen-up--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .widescreen-up--four:nth-of-type(4n),
.equal-columns--outside-trim .widescreen-up--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .widescreen-up--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .widescreen-up--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .widescreen-up--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .widescreen-up--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .widescreen-up--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .widescreen-up--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .widescreen-up--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .widescreen-up--four:nth-of-type(4n+1),
.equal-columns--outside-trim .widescreen-up--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .widescreen-up--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .widescreen-up--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .widescreen-up--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
  .equal-columns--outside-trim .widescreen-up--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .equal-columns--outside-trim .widescreen-up--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
  .equal-columns--outside-trim .widescreen-up--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
  .equal-columns--outside-trim .widescreen-up--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
  .equal-columns--outside-trim .widescreen-up--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
  .equal-columns--outside-trim .widescreen-up--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
  .equal-columns--outside-trim .widescreen-up--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
  .equal-columns--outside-trim .widescreen-up--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
  .equal-columns--outside-trim .widescreen-up--four {
    width: calc(25% - (20px - (20px / 4)));
  }
  .equal-columns--outside-trim .widescreen-up--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
  .equal-columns--outside-trim .widescreen-up--eight {
    width: calc(50% - (20px / 2));
  }
  .equal-columns--outside-trim .widescreen-up--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }

  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .widescreen-up--one-whole,
.has-no-side-gutter .widescreen-up--one-half,
.has-no-side-gutter .widescreen-up--eight,
.has-no-side-gutter .widescreen-up--one-third,
.has-no-side-gutter .widescreen-up--two-thirds,
.has-no-side-gutter .widescreen-up--one-fourth,
.has-no-side-gutter .widescreen-up--four,
.has-no-side-gutter .widescreen-up--one-fifth,
.has-no-side-gutter .widescreen-up--three-fifths,
.has-no-side-gutter .widescreen-up--two-fifths,
.has-no-side-gutter .widescreen-up--one-sixth,
.has-no-side-gutter .widescreen-up--one-seventh,
.has-no-side-gutter .widescreen-up--one-eighth,
.has-no-side-gutter .widescreen-up--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .widescreen-up--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .widescreen-up--one-half {
    width: 50%;
  }
  .has-no-side-gutter .widescreen-up--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .widescreen-up--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .widescreen-up--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .widescreen-up--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .widescreen-up--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .widescreen-up--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .widescreen-up--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .widescreen-up--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .widescreen-up--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .widescreen-up--two {
    width: 12.5%;
  }
  .has-no-side-gutter .widescreen-up--four {
    width: 25%;
  }
  .has-no-side-gutter .widescreen-up--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .widescreen-up--eight {
    width: 50%;
  }
  .has-no-side-gutter .widescreen-up--nine {
    width: 56.25%;
  }

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

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

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

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

  .widescreen-up--text-center {
    text-align: center !important;
  }
}
@media only screen and (max-width: 1400px) {
  .widescreen-down--hidden {
    display: none !important;
  }

  .widescreen-down--visible {
    display: block !important;
  }

  .widescreen-down--one {
    width: calc(6.25% - 20px);
  }

  .widescreen-down--two {
    width: calc(12.5% - 20px);
  }

  .widescreen-down--three {
    width: calc(18.75% - 20px);
  }

  .widescreen-down--four {
    width: calc(25% - 20px);
  }

  .widescreen-down--five {
    width: calc(31.25% - 20px);
  }

  .widescreen-down--six {
    width: calc(37.5% - 20px);
  }

  .widescreen-down--seven {
    width: calc(43.75% - 20px);
  }

  .widescreen-down--eight {
    width: calc(50% - 20px);
  }

  .widescreen-down--nine {
    width: calc(56.25% - 20px);
  }

  .widescreen-down--ten {
    width: calc(62.5% - 20px);
  }

  .widescreen-down--eleven {
    width: calc(68.75% - 20px);
  }

  .widescreen-down--twelve {
    width: calc(75% - 20px);
  }

  .widescreen-down--thirteen {
    width: calc(81.25% - 20px);
  }

  .widescreen-down--fourteen {
    width: calc(87.5% - 20px);
  }

  .widescreen-down--fifteen {
    width: calc(93.75% - 20px);
  }

  .widescreen-down--sixteen {
    width: calc(100% - 20px);
  }

  .widescreen-down--one-whole {
    width: calc(100% - 20px);
  }

  .widescreen-down--one-half {
    width: calc(50% - 20px);
  }

  .widescreen-down--one-third {
    width: calc(33.3333333333% - 20px);
  }

  .widescreen-down--two-thirds {
    width: calc(66.6666666667% - 20px);
  }

  .widescreen-down--one-fourth {
    width: calc(25% - 20px);
  }

  .widescreen-down--two-fourths {
    width: calc(50% - 20px);
  }

  .widescreen-down--three-fourths {
    width: calc(75% - 20px);
  }

  .widescreen-down--one-fifth {
    width: calc(20% - 20px);
  }

  .widescreen-down--two-fifths {
    width: calc(40% - 20px);
  }

  .widescreen-down--three-fifths {
    width: calc(60% - 20px);
  }

  .widescreen-down--four-fifths {
    width: calc(80% - 20px);
  }

  .widescreen-down--one-sixth {
    width: calc(16.6666666667% - 20px);
  }

  .widescreen-down--two-sixths {
    width: calc(33.3333333333% - 20px);
  }

  .widescreen-down--three-sixths {
    width: calc(50% - 20px);
  }

  .widescreen-down--four-sixths {
    width: calc(66.6666666667% - 20px);
  }

  .widescreen-down--five-sixths {
    width: calc(83.3333333333% - 20px);
  }

  .widescreen-down--one-seventh {
    width: calc(14.2857142857% - 20px);
  }

  .widescreen-down--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }

  .widescreen-down--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }

  .widescreen-down--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }

  .widescreen-down--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }

  .widescreen-down--one-eighth {
    width: calc(12.5% - 20px);
  }

  .widescreen-down--two-eighths {
    width: calc(25% - 20px);
  }

  .widescreen-down--three-eighths {
    width: calc(37.5% - 20px);
  }

  .widescreen-down--four-eighths {
    width: calc(50% - 20px);
  }

  .widescreen-down--five-eighths {
    width: calc(62.5% - 20px);
  }

  .widescreen-down--six-eighths {
    width: calc(75% - 20px);
  }

  .widescreen-down--seven-eighths {
    width: calc(87.5% - 20px);
  }

  .widescreen-down--one-tenth {
    width: calc(10% - 20px);
  }

  .widescreen-down--two-tenths {
    width: calc(20% - 20px);
  }

  .widescreen-down--three-tenths {
    width: calc(30% - 20px);
  }

  .widescreen-down--four-tenths {
    width: calc(40% - 20px);
  }

  .widescreen-down--five-tenths {
    width: calc(50% - 20px);
  }

  .widescreen-down--six-tenths {
    width: calc(60% - 20px);
  }

  .widescreen-down--seven-tenths {
    width: calc(70% - 20px);
  }

  .widescreen-down--eight-tenths {
    width: calc(80% - 20px);
  }

  .widescreen-down--nine-tenths {
    width: calc(90% - 20px);
  }

  .widescreen-down--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }

  .widescreen-down--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }

  .widescreen-down--three-twelfths {
    width: calc(25% - 20px);
  }

  .widescreen-down--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }

  .widescreen-down--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }

  .widescreen-down--six-twelfths {
    width: calc(50% - 20px);
  }

  .widescreen-down--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }

  .widescreen-down--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }

  .widescreen-down--nine-twelfths {
    width: calc(75% - 20px);
  }

  .widescreen-down--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }

  .widescreen-down--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }

  .widescreen-down--offset-by-one {
    left: calc(6.25%);
  }

  .widescreen-down--offset-by-two {
    left: calc(12.5%);
  }

  .widescreen-down--offset-by-three {
    left: calc(18.75%);
  }

  .widescreen-down--offset-by-four {
    left: calc(25%);
  }

  .widescreen-down--offset-by-five {
    left: calc(31.25%);
  }

  .widescreen-down--offset-by-six {
    left: calc(37.5%);
  }

  .widescreen-down--offset-by-seven {
    left: calc(43.75%);
  }

  .widescreen-down--offset-by-eight {
    left: calc(50%);
  }

  .widescreen-down--offset-by-nine {
    left: calc(56.25%);
  }

  .widescreen-down--offset-by-ten {
    left: calc(62.5%);
  }

  .widescreen-down--offset-by-eleven {
    left: calc(68.75%);
  }

  .widescreen-down--offset-by-twelve {
    left: calc(75%);
  }

  .widescreen-down--offset-by-thirteen {
    left: calc(81.25%);
  }

  .widescreen-down--offset-by-fourteen {
    left: calc(87.5%);
  }

  .widescreen-down--offset-by-fifteen {
    left: calc(93.75%);
  }

  .equal-columns--outside-trim .widescreen-down--one-half:nth-of-type(2n),
.equal-columns--outside-trim .widescreen-down--eight:nth-of-type(2n),
.equal-columns--outside-trim .widescreen-down--one-third:nth-of-type(3n),
.equal-columns--outside-trim .widescreen-down--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .widescreen-down--four:nth-of-type(4n),
.equal-columns--outside-trim .widescreen-down--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .widescreen-down--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .widescreen-down--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .widescreen-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .widescreen-down--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .widescreen-down--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .widescreen-down--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .widescreen-down--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .widescreen-down--four:nth-of-type(4n+1),
.equal-columns--outside-trim .widescreen-down--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .widescreen-down--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .widescreen-down--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .widescreen-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
  .equal-columns--outside-trim .widescreen-down--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .equal-columns--outside-trim .widescreen-down--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
  .equal-columns--outside-trim .widescreen-down--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
  .equal-columns--outside-trim .widescreen-down--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
  .equal-columns--outside-trim .widescreen-down--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
  .equal-columns--outside-trim .widescreen-down--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
  .equal-columns--outside-trim .widescreen-down--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
  .equal-columns--outside-trim .widescreen-down--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
  .equal-columns--outside-trim .widescreen-down--four {
    width: calc(25% - (20px - (20px / 4)));
  }
  .equal-columns--outside-trim .widescreen-down--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
  .equal-columns--outside-trim .widescreen-down--eight {
    width: calc(50% - (20px / 2));
  }
  .equal-columns--outside-trim .widescreen-down--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }

  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .widescreen-down--one-whole,
.has-no-side-gutter .widescreen-down--one-half,
.has-no-side-gutter .widescreen-down--eight,
.has-no-side-gutter .widescreen-down--one-third,
.has-no-side-gutter .widescreen-down--two-thirds,
.has-no-side-gutter .widescreen-down--one-fourth,
.has-no-side-gutter .widescreen-down--four,
.has-no-side-gutter .widescreen-down--one-fifth,
.has-no-side-gutter .widescreen-down--three-fifths,
.has-no-side-gutter .widescreen-down--two-fifths,
.has-no-side-gutter .widescreen-down--one-sixth,
.has-no-side-gutter .widescreen-down--one-seventh,
.has-no-side-gutter .widescreen-down--one-eighth,
.has-no-side-gutter .widescreen-down--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .widescreen-down--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .widescreen-down--one-half {
    width: 50%;
  }
  .has-no-side-gutter .widescreen-down--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .widescreen-down--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .widescreen-down--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .widescreen-down--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .widescreen-down--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .widescreen-down--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .widescreen-down--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .widescreen-down--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .widescreen-down--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .widescreen-down--two {
    width: 12.5%;
  }
  .has-no-side-gutter .widescreen-down--four {
    width: 25%;
  }
  .has-no-side-gutter .widescreen-down--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .widescreen-down--eight {
    width: 50%;
  }
  .has-no-side-gutter .widescreen-down--nine {
    width: 56.25%;
  }

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

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

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

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

  .widescreen-down--text-center {
    text-align: center !important;
  }
}
/*================ Build Grid Push Classes ================*/
.page-width, .grid, :root {
  --base-gutter: 30px;
  --base-gutter--double: calc( var(--base-gutter) * 2 );
  --base-gutter--trip: calc( var(--base-gutter) * 3 );
  --base-gutter--quad: calc( var(--base-gutter) * 4 );
  --base-gutter--half: calc( var(--base-gutter) / 2 );
  --base-gutter--quarter: calc( var(--base-gutter) / 4 );
  --grid-gutter: var(--base-gutter);
  --grid-gutter--mobile: var(--base-gutter--half);
  --grid-gutter--neg: calc(var(--grid-gutter) * -1);
}

.grid {
  *zoom: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: var(--grid-gutter--neg);
  font-size: 0;
}
.grid::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 481px) and (max-width: 798px) {
  .grid {
    --grid-gutter: var(--grid-gutter--mobile);
  }
}
.grid > .grid__item {
  padding-left: var(--grid-gutter);
  display: inline-block;
  font-size: 16px;
}
.grid > .grid__item[class*="--push"] {
  position: relative;
}

.grid.no_gutter,
.grid_no_gutter {
  *zoom: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.grid.no_gutter::after,
.grid_no_gutter::after {
  content: "";
  display: table;
  clear: both;
}
.grid.no_gutter > .grid__item,
.grid_no_gutter > .grid__item {
  display: inline-block;
  font-size: 16px;
}

.grid__item {
  width: 100%;
  display: inline-block;
  font-size: 16px;
}
.grid__item[class*="--push"] {
  position: relative;
}

.grid .grid__item,
.grid_no_gutter .grid__item {
  vertical-align: top;
}
.grid.vert-top > .grid__item,
.grid_no_gutter.vert-top > .grid__item {
  vertical-align: top;
}
.grid.vert-mid > .grid__item, .grid.vert-middle > .grid__item,
.grid_no_gutter.vert-mid > .grid__item,
.grid_no_gutter.vert-middle > .grid__item {
  vertical-align: middle;
}
.grid.vert-bot > .grid__item, .grid.vert-bottom > .grid__item,
.grid_no_gutter.vert-bot > .grid__item,
.grid_no_gutter.vert-bottom > .grid__item {
  vertical-align: bottom;
}
.grid.half_gutter,
.grid_no_gutter.half_gutter {
  --grid-gutter: var(--base-gutter--half);
}
.grid.double_gutter,
.grid_no_gutter.double_gutter {
  --grid-gutter: var(--base-gutter--double);
}
.grid.grid_margin_bottom, .grid.grid_bottom_margin,
.grid_no_gutter.grid_margin_bottom,
.grid_no_gutter.grid_bottom_margin {
  margin-bottom: var(--grid-gutter--neg);
}
.grid.grid_margin_bottom > .grid__item, .grid.grid_bottom_margin > .grid__item,
.grid_no_gutter.grid_margin_bottom > .grid__item,
.grid_no_gutter.grid_bottom_margin > .grid__item {
  margin-bottom: var(--grid-gutter);
}

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

.page-width {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.page-width.with-padding {
  padding: 0 var(--grid-gutter--mobile);
}
@media only screen and (min-width: 799px) {
  .page-width.with-padding {
    padding: 0 var(--grid-gutter);
  }
}

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

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

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

.grid__item.two-thirds {
  width: 66.6666666667%;
}

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

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

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

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

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

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

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

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

.grid__item.two-sixths {
  width: 33.3333333333%;
}

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

.grid__item.four-sixths {
  width: 66.6666666667%;
}

.grid__item.five-sixths {
  width: 83.3333333333%;
}

/* Sevenths */
.grid__item.one-seventh {
  width: 14.2857142857%;
}

.grid__item.two-sevenths {
  width: 28.5714285714%;
}

.grid__item.three-sevenths {
  width: 42.8571428571%;
}

.grid__item.four-sevenths {
  width: 57.1428571429%;
}

.grid__item.five-sevenths {
  width: 71.4285714286%;
}

.grid__item.five-sevenths {
  width: 85.7142857143%;
}

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

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

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

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

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

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

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

/* Ninths */
.grid__item.one-ninth {
  width: 11.1111111111%;
}

.grid__item.two-ninths {
  width: 22.2222222222%;
}

.grid__item.three-ninths {
  width: 33.3333333333%;
}

.grid__item.four-ninths {
  width: 44.4444444444%;
}

.grid__item.five-ninths {
  width: 55.5555555556%;
}

.grid__item.six-ninths {
  width: 66.6666666667%;
}

.grid__item.seven-ninths {
  width: 77.7777777778%;
}

.grid__item.seven-ninths {
  width: 88.8888888889%;
}

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

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

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

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

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

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

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

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

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

/* Elevenths */
.grid__item.one-eleventh {
  width: 9.0909090909%;
}

.grid__item.two-elevenths {
  width: 18.1818181818%;
}

.grid__item.three-elevenths {
  width: 27.2727272727%;
}

.grid__item.four-elevenths {
  width: 36.3636363636%;
}

.grid__item.five-elevenths {
  width: 45.4545454545%;
}

.grid__item.six-elevenths {
  width: 54.5454545455%;
}

.grid__item.seven-elevenths {
  width: 63.6363636364%;
}

.grid__item.eight-elevenths {
  width: 72.7272727273%;
}

.grid__item.nine-elevenths {
  width: 81.8181818182%;
}

.grid__item.nine-elevenths {
  width: 90.9090909091%;
}

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

.grid__item.two-twelfths {
  width: 16.6666666667%;
}

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

.grid__item.four-twelfths {
  width: 33.3333333333%;
}

.grid__item.five-twelfths {
  width: 41.6666666667%;
}

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

.grid__item.seven-twelfths {
  width: 58.3333333333%;
}

.grid__item.eight-twelfths {
  width: 66.6666666667%;
}

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

.grid__item.ten-twelfths {
  width: 83.3333333333%;
}

.grid__item.eleven-twelfths {
  width: 91.6666666667%;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

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

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

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

/*================ Build Responsive Grid Classes ================*/
@media only screen and (max-width: 1024px) {
  /* Whole */
  .grid__item.large-down--one-whole {
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Sevenths */
  .grid__item.large-down--one-seventh {
    width: 14.2857142857%;
  }

  .grid__item.large-down--two-sevenths {
    width: 28.5714285714%;
  }

  .grid__item.large-down--three-sevenths {
    width: 42.8571428571%;
  }

  .grid__item.large-down--four-sevenths {
    width: 57.1428571429%;
  }

  .grid__item.large-down--five-sevenths {
    width: 71.4285714286%;
  }

  .grid__item.large-down--five-sevenths {
    width: 85.7142857143%;
  }

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

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

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

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

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

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

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

  /* Ninths */
  .grid__item.large-down--one-ninth {
    width: 11.1111111111%;
  }

  .grid__item.large-down--two-ninths {
    width: 22.2222222222%;
  }

  .grid__item.large-down--three-ninths {
    width: 33.3333333333%;
  }

  .grid__item.large-down--four-ninths {
    width: 44.4444444444%;
  }

  .grid__item.large-down--five-ninths {
    width: 55.5555555556%;
  }

  .grid__item.large-down--six-ninths {
    width: 66.6666666667%;
  }

  .grid__item.large-down--seven-ninths {
    width: 77.7777777778%;
  }

  .grid__item.large-down--seven-ninths {
    width: 88.8888888889%;
  }

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

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

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

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

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

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

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

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

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

  /* Elevenths */
  .grid__item.large-down--one-eleventh {
    width: 9.0909090909%;
  }

  .grid__item.large-down--two-elevenths {
    width: 18.1818181818%;
  }

  .grid__item.large-down--three-elevenths {
    width: 27.2727272727%;
  }

  .grid__item.large-down--four-elevenths {
    width: 36.3636363636%;
  }

  .grid__item.large-down--five-elevenths {
    width: 45.4545454545%;
  }

  .grid__item.large-down--six-elevenths {
    width: 54.5454545455%;
  }

  .grid__item.large-down--seven-elevenths {
    width: 63.6363636364%;
  }

  .grid__item.large-down--eight-elevenths {
    width: 72.7272727273%;
  }

  .grid__item.large-down--nine-elevenths {
    width: 81.8181818182%;
  }

  .grid__item.large-down--nine-elevenths {
    width: 90.9090909091%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Thirds */
  .grid__item.medium-down--one-third {
    width: 33.3333333333%;
  }

  .grid__item.medium-down--two-thirds {
    width: 66.6666666667%;
  }

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

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

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

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

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

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

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

  /* Sixths */
  .grid__item.medium-down--one-sixth {
    width: 16.6666666667%;
  }

  .grid__item.medium-down--two-sixths {
    width: 33.3333333333%;
  }

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

  .grid__item.medium-down--four-sixths {
    width: 66.6666666667%;
  }

  .grid__item.medium-down--five-sixths {
    width: 83.3333333333%;
  }

  /* Sevenths */
  .grid__item.medium-down--one-seventh {
    width: 14.2857142857%;
  }

  .grid__item.medium-down--two-sevenths {
    width: 28.5714285714%;
  }

  .grid__item.medium-down--three-sevenths {
    width: 42.8571428571%;
  }

  .grid__item.medium-down--four-sevenths {
    width: 57.1428571429%;
  }

  .grid__item.medium-down--five-sevenths {
    width: 71.4285714286%;
  }

  .grid__item.medium-down--five-sevenths {
    width: 85.7142857143%;
  }

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

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

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

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

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

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

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

  /* Ninths */
  .grid__item.medium-down--one-ninth {
    width: 11.1111111111%;
  }

  .grid__item.medium-down--two-ninths {
    width: 22.2222222222%;
  }

  .grid__item.medium-down--three-ninths {
    width: 33.3333333333%;
  }

  .grid__item.medium-down--four-ninths {
    width: 44.4444444444%;
  }

  .grid__item.medium-down--five-ninths {
    width: 55.5555555556%;
  }

  .grid__item.medium-down--six-ninths {
    width: 66.6666666667%;
  }

  .grid__item.medium-down--seven-ninths {
    width: 77.7777777778%;
  }

  .grid__item.medium-down--seven-ninths {
    width: 88.8888888889%;
  }

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

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

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

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

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

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

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

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

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

  /* Elevenths */
  .grid__item.medium-down--one-eleventh {
    width: 9.0909090909%;
  }

  .grid__item.medium-down--two-elevenths {
    width: 18.1818181818%;
  }

  .grid__item.medium-down--three-elevenths {
    width: 27.2727272727%;
  }

  .grid__item.medium-down--four-elevenths {
    width: 36.3636363636%;
  }

  .grid__item.medium-down--five-elevenths {
    width: 45.4545454545%;
  }

  .grid__item.medium-down--six-elevenths {
    width: 54.5454545455%;
  }

  .grid__item.medium-down--seven-elevenths {
    width: 63.6363636364%;
  }

  .grid__item.medium-down--eight-elevenths {
    width: 72.7272727273%;
  }

  .grid__item.medium-down--nine-elevenths {
    width: 81.8181818182%;
  }

  .grid__item.medium-down--nine-elevenths {
    width: 90.9090909091%;
  }

  /* Twelfths */
  .grid__item.medium-down--one-twelfth {
    width: 8.3333333333%;
  }

  .grid__item.medium-down--two-twelfths {
    width: 16.6666666667%;
  }

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

  .grid__item.medium-down--four-twelfths {
    width: 33.3333333333%;
  }

  .grid__item.medium-down--five-twelfths {
    width: 41.6666666667%;
  }

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

  .grid__item.medium-down--seven-twelfths {
    width: 58.3333333333%;
  }

  .grid__item.medium-down--eight-twelfths {
    width: 66.6666666667%;
  }

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

  .grid__item.medium-down--ten-twelfths {
    width: 83.3333333333%;
  }

  .grid__item.medium-down--eleven-twelfths {
    width: 91.6666666667%;
  }

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

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

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

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

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

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

  /* Thirds */
  .grid__item.small-down--one-third {
    width: 33.3333333333%;
  }

  .grid__item.small-down--two-thirds {
    width: 66.6666666667%;
  }

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

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

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

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

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

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

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

  /* Sixths */
  .grid__item.small-down--one-sixth {
    width: 16.6666666667%;
  }

  .grid__item.small-down--two-sixths {
    width: 33.3333333333%;
  }

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

  .grid__item.small-down--four-sixths {
    width: 66.6666666667%;
  }

  .grid__item.small-down--five-sixths {
    width: 83.3333333333%;
  }

  /* Sevenths */
  .grid__item.small-down--one-seventh {
    width: 14.2857142857%;
  }

  .grid__item.small-down--two-sevenths {
    width: 28.5714285714%;
  }

  .grid__item.small-down--three-sevenths {
    width: 42.8571428571%;
  }

  .grid__item.small-down--four-sevenths {
    width: 57.1428571429%;
  }

  .grid__item.small-down--five-sevenths {
    width: 71.4285714286%;
  }

  .grid__item.small-down--five-sevenths {
    width: 85.7142857143%;
  }

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

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

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

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

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

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

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

  /* Ninths */
  .grid__item.small-down--one-ninth {
    width: 11.1111111111%;
  }

  .grid__item.small-down--two-ninths {
    width: 22.2222222222%;
  }

  .grid__item.small-down--three-ninths {
    width: 33.3333333333%;
  }

  .grid__item.small-down--four-ninths {
    width: 44.4444444444%;
  }

  .grid__item.small-down--five-ninths {
    width: 55.5555555556%;
  }

  .grid__item.small-down--six-ninths {
    width: 66.6666666667%;
  }

  .grid__item.small-down--seven-ninths {
    width: 77.7777777778%;
  }

  .grid__item.small-down--seven-ninths {
    width: 88.8888888889%;
  }

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

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

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

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

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

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

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

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

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

  /* Elevenths */
  .grid__item.small-down--one-eleventh {
    width: 9.0909090909%;
  }

  .grid__item.small-down--two-elevenths {
    width: 18.1818181818%;
  }

  .grid__item.small-down--three-elevenths {
    width: 27.2727272727%;
  }

  .grid__item.small-down--four-elevenths {
    width: 36.3636363636%;
  }

  .grid__item.small-down--five-elevenths {
    width: 45.4545454545%;
  }

  .grid__item.small-down--six-elevenths {
    width: 54.5454545455%;
  }

  .grid__item.small-down--seven-elevenths {
    width: 63.6363636364%;
  }

  .grid__item.small-down--eight-elevenths {
    width: 72.7272727273%;
  }

  .grid__item.small-down--nine-elevenths {
    width: 81.8181818182%;
  }

  .grid__item.small-down--nine-elevenths {
    width: 90.9090909091%;
  }

  /* Twelfths */
  .grid__item.small-down--one-twelfth {
    width: 8.3333333333%;
  }

  .grid__item.small-down--two-twelfths {
    width: 16.6666666667%;
  }

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

  .grid__item.small-down--four-twelfths {
    width: 33.3333333333%;
  }

  .grid__item.small-down--five-twelfths {
    width: 41.6666666667%;
  }

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

  .grid__item.small-down--seven-twelfths {
    width: 58.3333333333%;
  }

  .grid__item.small-down--eight-twelfths {
    width: 66.6666666667%;
  }

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

  .grid__item.small-down--ten-twelfths {
    width: 83.3333333333%;
  }

  .grid__item.small-down--eleven-twelfths {
    width: 91.6666666667%;
  }

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

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

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

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

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

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

  /* Thirds */
  .grid__item.small--one-third {
    width: 33.3333333333%;
  }

  .grid__item.small--two-thirds {
    width: 66.6666666667%;
  }

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

  .grid__item.small--two-quarters {
    width: 50%;
  }

  .grid__item.small--three-quarters {
    width: 75%;
  }

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

  .grid__item.small--two-fifths {
    width: 40%;
  }

  .grid__item.small--three-fifths {
    width: 60%;
  }

  .grid__item.small--four-fifths {
    width: 80%;
  }

  /* Sixths */
  .grid__item.small--one-sixth {
    width: 16.6666666667%;
  }

  .grid__item.small--two-sixths {
    width: 33.3333333333%;
  }

  .grid__item.small--three-sixths {
    width: 50%;
  }

  .grid__item.small--four-sixths {
    width: 66.6666666667%;
  }

  .grid__item.small--five-sixths {
    width: 83.3333333333%;
  }

  /* Sevenths */
  .grid__item.small--one-seventh {
    width: 14.2857142857%;
  }

  .grid__item.small--two-sevenths {
    width: 28.5714285714%;
  }

  .grid__item.small--three-sevenths {
    width: 42.8571428571%;
  }

  .grid__item.small--four-sevenths {
    width: 57.1428571429%;
  }

  .grid__item.small--five-sevenths {
    width: 71.4285714286%;
  }

  .grid__item.small--five-sevenths {
    width: 85.7142857143%;
  }

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

  .grid__item.small--two-eighths {
    width: 25%;
  }

  .grid__item.small--three-eighths {
    width: 37.5%;
  }

  .grid__item.small--four-eighths {
    width: 50%;
  }

  .grid__item.small--five-eighths {
    width: 62.5%;
  }

  .grid__item.small--six-eighths {
    width: 75%;
  }

  .grid__item.small--seven-eighths {
    width: 87.5%;
  }

  /* Ninths */
  .grid__item.small--one-ninth {
    width: 11.1111111111%;
  }

  .grid__item.small--two-ninths {
    width: 22.2222222222%;
  }

  .grid__item.small--three-ninths {
    width: 33.3333333333%;
  }

  .grid__item.small--four-ninths {
    width: 44.4444444444%;
  }

  .grid__item.small--five-ninths {
    width: 55.5555555556%;
  }

  .grid__item.small--six-ninths {
    width: 66.6666666667%;
  }

  .grid__item.small--seven-ninths {
    width: 77.7777777778%;
  }

  .grid__item.small--seven-ninths {
    width: 88.8888888889%;
  }

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

  .grid__item.small--two-tenths {
    width: 20%;
  }

  .grid__item.small--three-tenths {
    width: 30%;
  }

  .grid__item.small--four-tenths {
    width: 40%;
  }

  .grid__item.small--five-tenths {
    width: 50%;
  }

  .grid__item.small--six-tenths {
    width: 60%;
  }

  .grid__item.small--seven-tenths {
    width: 70%;
  }

  .grid__item.small--eight-tenths {
    width: 80%;
  }

  .grid__item.small--nine-tenths {
    width: 90%;
  }

  /* Elevenths */
  .grid__item.small--one-eleventh {
    width: 9.0909090909%;
  }

  .grid__item.small--two-elevenths {
    width: 18.1818181818%;
  }

  .grid__item.small--three-elevenths {
    width: 27.2727272727%;
  }

  .grid__item.small--four-elevenths {
    width: 36.3636363636%;
  }

  .grid__item.small--five-elevenths {
    width: 45.4545454545%;
  }

  .grid__item.small--six-elevenths {
    width: 54.5454545455%;
  }

  .grid__item.small--seven-elevenths {
    width: 63.6363636364%;
  }

  .grid__item.small--eight-elevenths {
    width: 72.7272727273%;
  }

  .grid__item.small--nine-elevenths {
    width: 81.8181818182%;
  }

  .grid__item.small--nine-elevenths {
    width: 90.9090909091%;
  }

  /* Twelfths */
  .grid__item.small--one-twelfth {
    width: 8.3333333333%;
  }

  .grid__item.small--two-twelfths {
    width: 16.6666666667%;
  }

  .grid__item.small--three-twelfths {
    width: 25%;
  }

  .grid__item.small--four-twelfths {
    width: 33.3333333333%;
  }

  .grid__item.small--five-twelfths {
    width: 41.6666666667%;
  }

  .grid__item.small--six-twelfths {
    width: 50%;
  }

  .grid__item.small--seven-twelfths {
    width: 58.3333333333%;
  }

  .grid__item.small--eight-twelfths {
    width: 66.6666666667%;
  }

  .grid__item.small--nine-twelfths {
    width: 75%;
  }

  .grid__item.small--ten-twelfths {
    width: 83.3333333333%;
  }

  .grid__item.small--eleven-twelfths {
    width: 91.6666666667%;
  }

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

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

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

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

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

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

  /* Thirds */
  .grid__item.small-up--one-third {
    width: 33.3333333333%;
  }

  .grid__item.small-up--two-thirds {
    width: 66.6666666667%;
  }

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

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

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

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

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

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

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

  /* Sixths */
  .grid__item.small-up--one-sixth {
    width: 16.6666666667%;
  }

  .grid__item.small-up--two-sixths {
    width: 33.3333333333%;
  }

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

  .grid__item.small-up--four-sixths {
    width: 66.6666666667%;
  }

  .grid__item.small-up--five-sixths {
    width: 83.3333333333%;
  }

  /* Sevenths */
  .grid__item.small-up--one-seventh {
    width: 14.2857142857%;
  }

  .grid__item.small-up--two-sevenths {
    width: 28.5714285714%;
  }

  .grid__item.small-up--three-sevenths {
    width: 42.8571428571%;
  }

  .grid__item.small-up--four-sevenths {
    width: 57.1428571429%;
  }

  .grid__item.small-up--five-sevenths {
    width: 71.4285714286%;
  }

  .grid__item.small-up--five-sevenths {
    width: 85.7142857143%;
  }

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

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

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

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

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

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

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

  /* Ninths */
  .grid__item.small-up--one-ninth {
    width: 11.1111111111%;
  }

  .grid__item.small-up--two-ninths {
    width: 22.2222222222%;
  }

  .grid__item.small-up--three-ninths {
    width: 33.3333333333%;
  }

  .grid__item.small-up--four-ninths {
    width: 44.4444444444%;
  }

  .grid__item.small-up--five-ninths {
    width: 55.5555555556%;
  }

  .grid__item.small-up--six-ninths {
    width: 66.6666666667%;
  }

  .grid__item.small-up--seven-ninths {
    width: 77.7777777778%;
  }

  .grid__item.small-up--seven-ninths {
    width: 88.8888888889%;
  }

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

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

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

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

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

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

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

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

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

  /* Elevenths */
  .grid__item.small-up--one-eleventh {
    width: 9.0909090909%;
  }

  .grid__item.small-up--two-elevenths {
    width: 18.1818181818%;
  }

  .grid__item.small-up--three-elevenths {
    width: 27.2727272727%;
  }

  .grid__item.small-up--four-elevenths {
    width: 36.3636363636%;
  }

  .grid__item.small-up--five-elevenths {
    width: 45.4545454545%;
  }

  .grid__item.small-up--six-elevenths {
    width: 54.5454545455%;
  }

  .grid__item.small-up--seven-elevenths {
    width: 63.6363636364%;
  }

  .grid__item.small-up--eight-elevenths {
    width: 72.7272727273%;
  }

  .grid__item.small-up--nine-elevenths {
    width: 81.8181818182%;
  }

  .grid__item.small-up--nine-elevenths {
    width: 90.9090909091%;
  }

  /* Twelfths */
  .grid__item.small-up--one-twelfth {
    width: 8.3333333333%;
  }

  .grid__item.small-up--two-twelfths {
    width: 16.6666666667%;
  }

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

  .grid__item.small-up--four-twelfths {
    width: 33.3333333333%;
  }

  .grid__item.small-up--five-twelfths {
    width: 41.6666666667%;
  }

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

  .grid__item.small-up--seven-twelfths {
    width: 58.3333333333%;
  }

  .grid__item.small-up--eight-twelfths {
    width: 66.6666666667%;
  }

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

  .grid__item.small-up--ten-twelfths {
    width: 83.3333333333%;
  }

  .grid__item.small-up--eleven-twelfths {
    width: 91.6666666667%;
  }

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

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

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

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

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

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

  /* Thirds */
  .grid__item.medium--one-third {
    width: 33.3333333333%;
  }

  .grid__item.medium--two-thirds {
    width: 66.6666666667%;
  }

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

  .grid__item.medium--two-quarters {
    width: 50%;
  }

  .grid__item.medium--three-quarters {
    width: 75%;
  }

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

  .grid__item.medium--two-fifths {
    width: 40%;
  }

  .grid__item.medium--three-fifths {
    width: 60%;
  }

  .grid__item.medium--four-fifths {
    width: 80%;
  }

  /* Sixths */
  .grid__item.medium--one-sixth {
    width: 16.6666666667%;
  }

  .grid__item.medium--two-sixths {
    width: 33.3333333333%;
  }

  .grid__item.medium--three-sixths {
    width: 50%;
  }

  .grid__item.medium--four-sixths {
    width: 66.6666666667%;
  }

  .grid__item.medium--five-sixths {
    width: 83.3333333333%;
  }

  /* Sevenths */
  .grid__item.medium--one-seventh {
    width: 14.2857142857%;
  }

  .grid__item.medium--two-sevenths {
    width: 28.5714285714%;
  }

  .grid__item.medium--three-sevenths {
    width: 42.8571428571%;
  }

  .grid__item.medium--four-sevenths {
    width: 57.1428571429%;
  }

  .grid__item.medium--five-sevenths {
    width: 71.4285714286%;
  }

  .grid__item.medium--five-sevenths {
    width: 85.7142857143%;
  }

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

  .grid__item.medium--two-eighths {
    width: 25%;
  }

  .grid__item.medium--three-eighths {
    width: 37.5%;
  }

  .grid__item.medium--four-eighths {
    width: 50%;
  }

  .grid__item.medium--five-eighths {
    width: 62.5%;
  }

  .grid__item.medium--six-eighths {
    width: 75%;
  }

  .grid__item.medium--seven-eighths {
    width: 87.5%;
  }

  /* Ninths */
  .grid__item.medium--one-ninth {
    width: 11.1111111111%;
  }

  .grid__item.medium--two-ninths {
    width: 22.2222222222%;
  }

  .grid__item.medium--three-ninths {
    width: 33.3333333333%;
  }

  .grid__item.medium--four-ninths {
    width: 44.4444444444%;
  }

  .grid__item.medium--five-ninths {
    width: 55.5555555556%;
  }

  .grid__item.medium--six-ninths {
    width: 66.6666666667%;
  }

  .grid__item.medium--seven-ninths {
    width: 77.7777777778%;
  }

  .grid__item.medium--seven-ninths {
    width: 88.8888888889%;
  }

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

  .grid__item.medium--two-tenths {
    width: 20%;
  }

  .grid__item.medium--three-tenths {
    width: 30%;
  }

  .grid__item.medium--four-tenths {
    width: 40%;
  }

  .grid__item.medium--five-tenths {
    width: 50%;
  }

  .grid__item.medium--six-tenths {
    width: 60%;
  }

  .grid__item.medium--seven-tenths {
    width: 70%;
  }

  .grid__item.medium--eight-tenths {
    width: 80%;
  }

  .grid__item.medium--nine-tenths {
    width: 90%;
  }

  /* Elevenths */
  .grid__item.medium--one-eleventh {
    width: 9.0909090909%;
  }

  .grid__item.medium--two-elevenths {
    width: 18.1818181818%;
  }

  .grid__item.medium--three-elevenths {
    width: 27.2727272727%;
  }

  .grid__item.medium--four-elevenths {
    width: 36.3636363636%;
  }

  .grid__item.medium--five-elevenths {
    width: 45.4545454545%;
  }

  .grid__item.medium--six-elevenths {
    width: 54.5454545455%;
  }

  .grid__item.medium--seven-elevenths {
    width: 63.6363636364%;
  }

  .grid__item.medium--eight-elevenths {
    width: 72.7272727273%;
  }

  .grid__item.medium--nine-elevenths {
    width: 81.8181818182%;
  }

  .grid__item.medium--nine-elevenths {
    width: 90.9090909091%;
  }

  /* Twelfths */
  .grid__item.medium--one-twelfth {
    width: 8.3333333333%;
  }

  .grid__item.medium--two-twelfths {
    width: 16.6666666667%;
  }

  .grid__item.medium--three-twelfths {
    width: 25%;
  }

  .grid__item.medium--four-twelfths {
    width: 33.3333333333%;
  }

  .grid__item.medium--five-twelfths {
    width: 41.6666666667%;
  }

  .grid__item.medium--six-twelfths {
    width: 50%;
  }

  .grid__item.medium--seven-twelfths {
    width: 58.3333333333%;
  }

  .grid__item.medium--eight-twelfths {
    width: 66.6666666667%;
  }

  .grid__item.medium--nine-twelfths {
    width: 75%;
  }

  .grid__item.medium--ten-twelfths {
    width: 83.3333333333%;
  }

  .grid__item.medium--eleven-twelfths {
    width: 91.6666666667%;
  }

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

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

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

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

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

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

  /* Thirds */
  .grid__item.medium-up--one-third {
    width: 33.3333333333%;
  }

  .grid__item.medium-up--two-thirds {
    width: 66.6666666667%;
  }

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

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

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

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

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

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

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

  /* Sixths */
  .grid__item.medium-up--one-sixth {
    width: 16.6666666667%;
  }

  .grid__item.medium-up--two-sixths {
    width: 33.3333333333%;
  }

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

  .grid__item.medium-up--four-sixths {
    width: 66.6666666667%;
  }

  .grid__item.medium-up--five-sixths {
    width: 83.3333333333%;
  }

  /* Sevenths */
  .grid__item.medium-up--one-seventh {
    width: 14.2857142857%;
  }

  .grid__item.medium-up--two-sevenths {
    width: 28.5714285714%;
  }

  .grid__item.medium-up--three-sevenths {
    width: 42.8571428571%;
  }

  .grid__item.medium-up--four-sevenths {
    width: 57.1428571429%;
  }

  .grid__item.medium-up--five-sevenths {
    width: 71.4285714286%;
  }

  .grid__item.medium-up--five-sevenths {
    width: 85.7142857143%;
  }

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

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

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

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

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

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

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

  /* Ninths */
  .grid__item.medium-up--one-ninth {
    width: 11.1111111111%;
  }

  .grid__item.medium-up--two-ninths {
    width: 22.2222222222%;
  }

  .grid__item.medium-up--three-ninths {
    width: 33.3333333333%;
  }

  .grid__item.medium-up--four-ninths {
    width: 44.4444444444%;
  }

  .grid__item.medium-up--five-ninths {
    width: 55.5555555556%;
  }

  .grid__item.medium-up--six-ninths {
    width: 66.6666666667%;
  }

  .grid__item.medium-up--seven-ninths {
    width: 77.7777777778%;
  }

  .grid__item.medium-up--seven-ninths {
    width: 88.8888888889%;
  }

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

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

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

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

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

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

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

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

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

  /* Elevenths */
  .grid__item.medium-up--one-eleventh {
    width: 9.0909090909%;
  }

  .grid__item.medium-up--two-elevenths {
    width: 18.1818181818%;
  }

  .grid__item.medium-up--three-elevenths {
    width: 27.2727272727%;
  }

  .grid__item.medium-up--four-elevenths {
    width: 36.3636363636%;
  }

  .grid__item.medium-up--five-elevenths {
    width: 45.4545454545%;
  }

  .grid__item.medium-up--six-elevenths {
    width: 54.5454545455%;
  }

  .grid__item.medium-up--seven-elevenths {
    width: 63.6363636364%;
  }

  .grid__item.medium-up--eight-elevenths {
    width: 72.7272727273%;
  }

  .grid__item.medium-up--nine-elevenths {
    width: 81.8181818182%;
  }

  .grid__item.medium-up--nine-elevenths {
    width: 90.9090909091%;
  }

  /* Twelfths */
  .grid__item.medium-up--one-twelfth {
    width: 8.3333333333%;
  }

  .grid__item.medium-up--two-twelfths {
    width: 16.6666666667%;
  }

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

  .grid__item.medium-up--four-twelfths {
    width: 33.3333333333%;
  }

  .grid__item.medium-up--five-twelfths {
    width: 41.6666666667%;
  }

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

  .grid__item.medium-up--seven-twelfths {
    width: 58.3333333333%;
  }

  .grid__item.medium-up--eight-twelfths {
    width: 66.6666666667%;
  }

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

  .grid__item.medium-up--ten-twelfths {
    width: 83.3333333333%;
  }

  .grid__item.medium-up--eleven-twelfths {
    width: 91.6666666667%;
  }

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

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

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

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

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

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

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

  .grid__item.large--two-thirds {
    width: 66.6666666667%;
  }

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

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

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

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

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

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

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

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

  .grid__item.large--two-sixths {
    width: 33.3333333333%;
  }

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

  .grid__item.large--four-sixths {
    width: 66.6666666667%;
  }

  .grid__item.large--five-sixths {
    width: 83.3333333333%;
  }

  /* Sevenths */
  .grid__item.large--one-seventh {
    width: 14.2857142857%;
  }

  .grid__item.large--two-sevenths {
    width: 28.5714285714%;
  }

  .grid__item.large--three-sevenths {
    width: 42.8571428571%;
  }

  .grid__item.large--four-sevenths {
    width: 57.1428571429%;
  }

  .grid__item.large--five-sevenths {
    width: 71.4285714286%;
  }

  .grid__item.large--five-sevenths {
    width: 85.7142857143%;
  }

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

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

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

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

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

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

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

  /* Ninths */
  .grid__item.large--one-ninth {
    width: 11.1111111111%;
  }

  .grid__item.large--two-ninths {
    width: 22.2222222222%;
  }

  .grid__item.large--three-ninths {
    width: 33.3333333333%;
  }

  .grid__item.large--four-ninths {
    width: 44.4444444444%;
  }

  .grid__item.large--five-ninths {
    width: 55.5555555556%;
  }

  .grid__item.large--six-ninths {
    width: 66.6666666667%;
  }

  .grid__item.large--seven-ninths {
    width: 77.7777777778%;
  }

  .grid__item.large--seven-ninths {
    width: 88.8888888889%;
  }

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

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

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

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

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

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

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

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

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

  /* Elevenths */
  .grid__item.large--one-eleventh {
    width: 9.0909090909%;
  }

  .grid__item.large--two-elevenths {
    width: 18.1818181818%;
  }

  .grid__item.large--three-elevenths {
    width: 27.2727272727%;
  }

  .grid__item.large--four-elevenths {
    width: 36.3636363636%;
  }

  .grid__item.large--five-elevenths {
    width: 45.4545454545%;
  }

  .grid__item.large--six-elevenths {
    width: 54.5454545455%;
  }

  .grid__item.large--seven-elevenths {
    width: 63.6363636364%;
  }

  .grid__item.large--eight-elevenths {
    width: 72.7272727273%;
  }

  .grid__item.large--nine-elevenths {
    width: 81.8181818182%;
  }

  .grid__item.large--nine-elevenths {
    width: 90.9090909091%;
  }

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

  .grid__item.large--two-twelfths {
    width: 16.6666666667%;
  }

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

  .grid__item.large--four-twelfths {
    width: 33.3333333333%;
  }

  .grid__item.large--five-twelfths {
    width: 41.6666666667%;
  }

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

  .grid__item.large--seven-twelfths {
    width: 58.3333333333%;
  }

  .grid__item.large--eight-twelfths {
    width: 66.6666666667%;
  }

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

  .grid__item.large--ten-twelfths {
    width: 83.3333333333%;
  }

  .grid__item.large--eleven-twelfths {
    width: 91.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Sevenths */
  .grid__item.large-up--one-seventh {
    width: 14.2857142857%;
  }

  .grid__item.large-up--two-sevenths {
    width: 28.5714285714%;
  }

  .grid__item.large-up--three-sevenths {
    width: 42.8571428571%;
  }

  .grid__item.large-up--four-sevenths {
    width: 57.1428571429%;
  }

  .grid__item.large-up--five-sevenths {
    width: 71.4285714286%;
  }

  .grid__item.large-up--five-sevenths {
    width: 85.7142857143%;
  }

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

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

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

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

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

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

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

  /* Ninths */
  .grid__item.large-up--one-ninth {
    width: 11.1111111111%;
  }

  .grid__item.large-up--two-ninths {
    width: 22.2222222222%;
  }

  .grid__item.large-up--three-ninths {
    width: 33.3333333333%;
  }

  .grid__item.large-up--four-ninths {
    width: 44.4444444444%;
  }

  .grid__item.large-up--five-ninths {
    width: 55.5555555556%;
  }

  .grid__item.large-up--six-ninths {
    width: 66.6666666667%;
  }

  .grid__item.large-up--seven-ninths {
    width: 77.7777777778%;
  }

  .grid__item.large-up--seven-ninths {
    width: 88.8888888889%;
  }

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

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

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

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

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

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

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

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

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

  /* Elevenths */
  .grid__item.large-up--one-eleventh {
    width: 9.0909090909%;
  }

  .grid__item.large-up--two-elevenths {
    width: 18.1818181818%;
  }

  .grid__item.large-up--three-elevenths {
    width: 27.2727272727%;
  }

  .grid__item.large-up--four-elevenths {
    width: 36.3636363636%;
  }

  .grid__item.large-up--five-elevenths {
    width: 45.4545454545%;
  }

  .grid__item.large-up--six-elevenths {
    width: 54.5454545455%;
  }

  .grid__item.large-up--seven-elevenths {
    width: 63.6363636364%;
  }

  .grid__item.large-up--eight-elevenths {
    width: 72.7272727273%;
  }

  .grid__item.large-up--nine-elevenths {
    width: 81.8181818182%;
  }

  .grid__item.large-up--nine-elevenths {
    width: 90.9090909091%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Thirds */
  .grid__item.widescreen-up--one-third {
    width: 33.3333333333%;
  }

  .grid__item.widescreen-up--two-thirds {
    width: 66.6666666667%;
  }

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

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

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

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

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

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

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

  /* Sixths */
  .grid__item.widescreen-up--one-sixth {
    width: 16.6666666667%;
  }

  .grid__item.widescreen-up--two-sixths {
    width: 33.3333333333%;
  }

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

  .grid__item.widescreen-up--four-sixths {
    width: 66.6666666667%;
  }

  .grid__item.widescreen-up--five-sixths {
    width: 83.3333333333%;
  }

  /* Sevenths */
  .grid__item.widescreen-up--one-seventh {
    width: 14.2857142857%;
  }

  .grid__item.widescreen-up--two-sevenths {
    width: 28.5714285714%;
  }

  .grid__item.widescreen-up--three-sevenths {
    width: 42.8571428571%;
  }

  .grid__item.widescreen-up--four-sevenths {
    width: 57.1428571429%;
  }

  .grid__item.widescreen-up--five-sevenths {
    width: 71.4285714286%;
  }

  .grid__item.widescreen-up--five-sevenths {
    width: 85.7142857143%;
  }

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

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

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

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

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

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

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

  /* Ninths */
  .grid__item.widescreen-up--one-ninth {
    width: 11.1111111111%;
  }

  .grid__item.widescreen-up--two-ninths {
    width: 22.2222222222%;
  }

  .grid__item.widescreen-up--three-ninths {
    width: 33.3333333333%;
  }

  .grid__item.widescreen-up--four-ninths {
    width: 44.4444444444%;
  }

  .grid__item.widescreen-up--five-ninths {
    width: 55.5555555556%;
  }

  .grid__item.widescreen-up--six-ninths {
    width: 66.6666666667%;
  }

  .grid__item.widescreen-up--seven-ninths {
    width: 77.7777777778%;
  }

  .grid__item.widescreen-up--seven-ninths {
    width: 88.8888888889%;
  }

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

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

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

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

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

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

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

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

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

  /* Elevenths */
  .grid__item.widescreen-up--one-eleventh {
    width: 9.0909090909%;
  }

  .grid__item.widescreen-up--two-elevenths {
    width: 18.1818181818%;
  }

  .grid__item.widescreen-up--three-elevenths {
    width: 27.2727272727%;
  }

  .grid__item.widescreen-up--four-elevenths {
    width: 36.3636363636%;
  }

  .grid__item.widescreen-up--five-elevenths {
    width: 45.4545454545%;
  }

  .grid__item.widescreen-up--six-elevenths {
    width: 54.5454545455%;
  }

  .grid__item.widescreen-up--seven-elevenths {
    width: 63.6363636364%;
  }

  .grid__item.widescreen-up--eight-elevenths {
    width: 72.7272727273%;
  }

  .grid__item.widescreen-up--nine-elevenths {
    width: 81.8181818182%;
  }

  .grid__item.widescreen-up--nine-elevenths {
    width: 90.9090909091%;
  }

  /* Twelfths */
  .grid__item.widescreen-up--one-twelfth {
    width: 8.3333333333%;
  }

  .grid__item.widescreen-up--two-twelfths {
    width: 16.6666666667%;
  }

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

  .grid__item.widescreen-up--four-twelfths {
    width: 33.3333333333%;
  }

  .grid__item.widescreen-up--five-twelfths {
    width: 41.6666666667%;
  }

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

  .grid__item.widescreen-up--seven-twelfths {
    width: 58.3333333333%;
  }

  .grid__item.widescreen-up--eight-twelfths {
    width: 66.6666666667%;
  }

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

  .grid__item.widescreen-up--ten-twelfths {
    width: 83.3333333333%;
  }

  .grid__item.widescreen-up--eleven-twelfths {
    width: 91.6666666667%;
  }

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

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

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

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

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

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

  /* Thirds */
  .grid__item.widescreen-down--one-third {
    width: 33.3333333333%;
  }

  .grid__item.widescreen-down--two-thirds {
    width: 66.6666666667%;
  }

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

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

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

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

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

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

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

  /* Sixths */
  .grid__item.widescreen-down--one-sixth {
    width: 16.6666666667%;
  }

  .grid__item.widescreen-down--two-sixths {
    width: 33.3333333333%;
  }

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

  .grid__item.widescreen-down--four-sixths {
    width: 66.6666666667%;
  }

  .grid__item.widescreen-down--five-sixths {
    width: 83.3333333333%;
  }

  /* Sevenths */
  .grid__item.widescreen-down--one-seventh {
    width: 14.2857142857%;
  }

  .grid__item.widescreen-down--two-sevenths {
    width: 28.5714285714%;
  }

  .grid__item.widescreen-down--three-sevenths {
    width: 42.8571428571%;
  }

  .grid__item.widescreen-down--four-sevenths {
    width: 57.1428571429%;
  }

  .grid__item.widescreen-down--five-sevenths {
    width: 71.4285714286%;
  }

  .grid__item.widescreen-down--five-sevenths {
    width: 85.7142857143%;
  }

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

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

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

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

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

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

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

  /* Ninths */
  .grid__item.widescreen-down--one-ninth {
    width: 11.1111111111%;
  }

  .grid__item.widescreen-down--two-ninths {
    width: 22.2222222222%;
  }

  .grid__item.widescreen-down--three-ninths {
    width: 33.3333333333%;
  }

  .grid__item.widescreen-down--four-ninths {
    width: 44.4444444444%;
  }

  .grid__item.widescreen-down--five-ninths {
    width: 55.5555555556%;
  }

  .grid__item.widescreen-down--six-ninths {
    width: 66.6666666667%;
  }

  .grid__item.widescreen-down--seven-ninths {
    width: 77.7777777778%;
  }

  .grid__item.widescreen-down--seven-ninths {
    width: 88.8888888889%;
  }

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

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

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

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

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

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

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

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

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

  /* Elevenths */
  .grid__item.widescreen-down--one-eleventh {
    width: 9.0909090909%;
  }

  .grid__item.widescreen-down--two-elevenths {
    width: 18.1818181818%;
  }

  .grid__item.widescreen-down--three-elevenths {
    width: 27.2727272727%;
  }

  .grid__item.widescreen-down--four-elevenths {
    width: 36.3636363636%;
  }

  .grid__item.widescreen-down--five-elevenths {
    width: 45.4545454545%;
  }

  .grid__item.widescreen-down--six-elevenths {
    width: 54.5454545455%;
  }

  .grid__item.widescreen-down--seven-elevenths {
    width: 63.6363636364%;
  }

  .grid__item.widescreen-down--eight-elevenths {
    width: 72.7272727273%;
  }

  .grid__item.widescreen-down--nine-elevenths {
    width: 81.8181818182%;
  }

  .grid__item.widescreen-down--nine-elevenths {
    width: 90.9090909091%;
  }

  /* Twelfths */
  .grid__item.widescreen-down--one-twelfth {
    width: 8.3333333333%;
  }

  .grid__item.widescreen-down--two-twelfths {
    width: 16.6666666667%;
  }

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

  .grid__item.widescreen-down--four-twelfths {
    width: 33.3333333333%;
  }

  .grid__item.widescreen-down--five-twelfths {
    width: 41.6666666667%;
  }

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

  .grid__item.widescreen-down--seven-twelfths {
    width: 58.3333333333%;
  }

  .grid__item.widescreen-down--eight-twelfths {
    width: 66.6666666667%;
  }

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

  .grid__item.widescreen-down--ten-twelfths {
    width: 83.3333333333%;
  }

  .grid__item.widescreen-down--eleven-twelfths {
    width: 91.6666666667%;
  }

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

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

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

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

  .widescreen-down--text-center {
    text-align: center !important;
  }
}
/*================ Build Grid Push Classes ================*/
@media only screen and (max-width: 1024px) {
  /* Halves */
  .grid__item.large-down--push-one-half {
    left: 50%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .grid__item.large-down--push-eleven-twelfths {
    left: 91.6666666667%;
  }
}
@media only screen and (max-width: 798px) {
  /* Halves */
  .grid__item.medium-down--push-one-half {
    left: 50%;
  }

  /* Thirds */
  .grid__item.medium-down--push-one-third {
    left: 33.3333333333%;
  }

  .grid__item.medium-down--push-two-thirds {
    left: 66.6666666667%;
  }

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

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

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

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

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

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

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

  /* Sixths */
  .grid__item.medium-down--push-one-sixth {
    left: 16.6666666667%;
  }

  .grid__item.medium-down--push-two-sixths {
    left: 33.3333333333%;
  }

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

  .grid__item.medium-down--push-four-sixths {
    left: 66.6666666667%;
  }

  .grid__item.medium-down--push-five-sixths {
    left: 83.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Twelfths */
  .grid__item.medium-down--push-one-twelfth {
    left: 8.3333333333%;
  }

  .grid__item.medium-down--push-two-twelfths {
    left: 16.6666666667%;
  }

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

  .grid__item.medium-down--push-four-twelfths {
    left: 33.3333333333%;
  }

  .grid__item.medium-down--push-five-twelfths {
    left: 41.6666666667%;
  }

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

  .grid__item.medium-down--push-seven-twelfths {
    left: 58.3333333333%;
  }

  .grid__item.medium-down--push-eight-twelfths {
    left: 66.6666666667%;
  }

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

  .grid__item.medium-down--push-ten-twelfths {
    left: 83.3333333333%;
  }

  .grid__item.medium-down--push-eleven-twelfths {
    left: 91.6666666667%;
  }
}
@media only screen and (max-width: 480px) {
  /* Halves */
  .grid__item.small-down--push-one-half {
    left: 50%;
  }

  /* Thirds */
  .grid__item.small-down--push-one-third {
    left: 33.3333333333%;
  }

  .grid__item.small-down--push-two-thirds {
    left: 66.6666666667%;
  }

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

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

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

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

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

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

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

  /* Sixths */
  .grid__item.small-down--push-one-sixth {
    left: 16.6666666667%;
  }

  .grid__item.small-down--push-two-sixths {
    left: 33.3333333333%;
  }

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

  .grid__item.small-down--push-four-sixths {
    left: 66.6666666667%;
  }

  .grid__item.small-down--push-five-sixths {
    left: 83.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Twelfths */
  .grid__item.small-down--push-one-twelfth {
    left: 8.3333333333%;
  }

  .grid__item.small-down--push-two-twelfths {
    left: 16.6666666667%;
  }

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

  .grid__item.small-down--push-four-twelfths {
    left: 33.3333333333%;
  }

  .grid__item.small-down--push-five-twelfths {
    left: 41.6666666667%;
  }

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

  .grid__item.small-down--push-seven-twelfths {
    left: 58.3333333333%;
  }

  .grid__item.small-down--push-eight-twelfths {
    left: 66.6666666667%;
  }

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

  .grid__item.small-down--push-ten-twelfths {
    left: 83.3333333333%;
  }

  .grid__item.small-down--push-eleven-twelfths {
    left: 91.6666666667%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 798px) {
  /* Halves */
  .grid__item.small--push-one-half {
    left: 50%;
  }

  /* Thirds */
  .grid__item.small--push-one-third {
    left: 33.3333333333%;
  }

  .grid__item.small--push-two-thirds {
    left: 66.6666666667%;
  }

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

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

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

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

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

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

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

  /* Sixths */
  .grid__item.small--push-one-sixth {
    left: 16.6666666667%;
  }

  .grid__item.small--push-two-sixths {
    left: 33.3333333333%;
  }

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

  .grid__item.small--push-four-sixths {
    left: 66.6666666667%;
  }

  .grid__item.small--push-five-sixths {
    left: 83.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Twelfths */
  .grid__item.small--push-one-twelfth {
    left: 8.3333333333%;
  }

  .grid__item.small--push-two-twelfths {
    left: 16.6666666667%;
  }

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

  .grid__item.small--push-four-twelfths {
    left: 33.3333333333%;
  }

  .grid__item.small--push-five-twelfths {
    left: 41.6666666667%;
  }

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

  .grid__item.small--push-seven-twelfths {
    left: 58.3333333333%;
  }

  .grid__item.small--push-eight-twelfths {
    left: 66.6666666667%;
  }

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

  .grid__item.small--push-ten-twelfths {
    left: 83.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Thirds */
  .grid__item.medium--push-one-third {
    left: 33.3333333333%;
  }

  .grid__item.medium--push-two-thirds {
    left: 66.6666666667%;
  }

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

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

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

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

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

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

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

  /* Sixths */
  .grid__item.medium--push-one-sixth {
    left: 16.6666666667%;
  }

  .grid__item.medium--push-two-sixths {
    left: 33.3333333333%;
  }

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

  .grid__item.medium--push-four-sixths {
    left: 66.6666666667%;
  }

  .grid__item.medium--push-five-sixths {
    left: 83.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Twelfths */
  .grid__item.medium--push-one-twelfth {
    left: 8.3333333333%;
  }

  .grid__item.medium--push-two-twelfths {
    left: 16.6666666667%;
  }

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

  .grid__item.medium--push-four-twelfths {
    left: 33.3333333333%;
  }

  .grid__item.medium--push-five-twelfths {
    left: 41.6666666667%;
  }

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

  .grid__item.medium--push-seven-twelfths {
    left: 58.3333333333%;
  }

  .grid__item.medium--push-eight-twelfths {
    left: 66.6666666667%;
  }

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

  .grid__item.medium--push-ten-twelfths {
    left: 83.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Thirds */
  .grid__item.widescreen-up--push-one-third {
    left: 33.3333333333%;
  }

  .grid__item.widescreen-up--push-two-thirds {
    left: 66.6666666667%;
  }

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

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

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

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

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

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

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

  /* Sixths */
  .grid__item.widescreen-up--push-one-sixth {
    left: 16.6666666667%;
  }

  .grid__item.widescreen-up--push-two-sixths {
    left: 33.3333333333%;
  }

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

  .grid__item.widescreen-up--push-four-sixths {
    left: 66.6666666667%;
  }

  .grid__item.widescreen-up--push-five-sixths {
    left: 83.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Twelfths */
  .grid__item.widescreen-up--push-one-twelfth {
    left: 8.3333333333%;
  }

  .grid__item.widescreen-up--push-two-twelfths {
    left: 16.6666666667%;
  }

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

  .grid__item.widescreen-up--push-four-twelfths {
    left: 33.3333333333%;
  }

  .grid__item.widescreen-up--push-five-twelfths {
    left: 41.6666666667%;
  }

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

  .grid__item.widescreen-up--push-seven-twelfths {
    left: 58.3333333333%;
  }

  .grid__item.widescreen-up--push-eight-twelfths {
    left: 66.6666666667%;
  }

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

  .grid__item.widescreen-up--push-ten-twelfths {
    left: 83.3333333333%;
  }

  .grid__item.widescreen-up--push-eleven-twelfths {
    left: 91.6666666667%;
  }
}
@media only screen and (max-width: 1400px) {
  /* Halves */
  .grid__item.widescreen-down--push-one-half {
    left: 50%;
  }

  /* Thirds */
  .grid__item.widescreen-down--push-one-third {
    left: 33.3333333333%;
  }

  .grid__item.widescreen-down--push-two-thirds {
    left: 66.6666666667%;
  }

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

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

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

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

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

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

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

  /* Sixths */
  .grid__item.widescreen-down--push-one-sixth {
    left: 16.6666666667%;
  }

  .grid__item.widescreen-down--push-two-sixths {
    left: 33.3333333333%;
  }

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

  .grid__item.widescreen-down--push-four-sixths {
    left: 66.6666666667%;
  }

  .grid__item.widescreen-down--push-five-sixths {
    left: 83.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .grid__item.widescreen-down--push-six-tenths {
    left: 60%;
  }

  .grid__item.widescreen-down--push-seven-tenths {
    left: 70%;
  }

  .grid__item.widescreen-down--push-eight-tenths {
    left: 80%;
  }

  .grid__item.widescreen-down--push-nine-tenths {
    left: 90%;
  }

  /* Twelfths */
  .grid__item.widescreen-down--push-one-twelfth {
    left: 8.3333333333%;
  }

  .grid__item.widescreen-down--push-two-twelfths {
    left: 16.6666666667%;
  }

  .grid__item.widescreen-down--push-three-twelfths {
    left: 25%;
  }

  .grid__item.widescreen-down--push-four-twelfths {
    left: 33.3333333333%;
  }

  .grid__item.widescreen-down--push-five-twelfths {
    left: 41.6666666667%;
  }

  .grid__item.widescreen-down--push-six-twelfths {
    left: 50%;
  }

  .grid__item.widescreen-down--push-seven-twelfths {
    left: 58.3333333333%;
  }

  .grid__item.widescreen-down--push-eight-twelfths {
    left: 66.6666666667%;
  }

  .grid__item.widescreen-down--push-nine-twelfths {
    left: 75%;
  }

  .grid__item.widescreen-down--push-ten-twelfths {
    left: 83.3333333333%;
  }

  .grid__item.widescreen-down--push-eleven-twelfths {
    left: 91.6666666667%;
  }
}
/* # Control
================================================== */
.pagination-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis, .file-cta,
.file-name, .select select, .input,
.textarea,
.cf-field input, .button {
  -webkit-appearance: none;
          appearance: none;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;
  display: inline-flex;
  font-size: 1rem;
  height: 2.25em;
  justify-content: flex-start;
  line-height: 1.5;
  padding-bottom: calc(0.375em - 1px);
  padding-left: calc(0.625em - 1px);
  padding-right: calc(0.625em - 1px);
  padding-top: calc(0.375em - 1px);
  position: relative;
  vertical-align: top;
}
.pagination-previous:focus,
.pagination-next:focus,
.pagination-link:focus,
.pagination-ellipsis:focus, .file-cta:focus,
.file-name:focus, .select select:focus, .input:focus,
.textarea:focus,
.cf-field input:focus, .button:focus, .is-focused.pagination-previous,
.is-focused.pagination-next,
.is-focused.pagination-link,
.is-focused.pagination-ellipsis, .is-focused.file-cta,
.is-focused.file-name, .select select.is-focused, .is-focused.input,
.is-focused.textarea,
.cf-field input.is-focused, .is-focused.button, .pagination-previous:active,
.pagination-next:active,
.pagination-link:active,
.pagination-ellipsis:active, .file-cta:active,
.file-name:active, .select select:active, .input:active,
.textarea:active,
.cf-field input:active, .button:active, .is-active.pagination-previous,
.is-active.pagination-next,
.is-active.pagination-link,
.is-active.pagination-ellipsis, .is-active.file-cta,
.is-active.file-name, .select select.is-active, .is-active.input,
.is-active.textarea,
.cf-field input.is-active, .is-active.button {
  outline: none;
}
[disabled].pagination-previous,
[disabled].pagination-next,
[disabled].pagination-link,
[disabled].pagination-ellipsis, [disabled].file-cta,
[disabled].file-name, .select select[disabled], [disabled].input,
[disabled].textarea,
.cf-field input[disabled], [disabled].button, fieldset[disabled] .pagination-previous,
fieldset[disabled] .pagination-next,
fieldset[disabled] .pagination-link,
fieldset[disabled] .pagination-ellipsis, fieldset[disabled] .file-cta,
fieldset[disabled] .file-name, fieldset[disabled] .select select, .select fieldset[disabled] select, fieldset[disabled] .input,
fieldset[disabled] .textarea,
fieldset[disabled] .cf-field input,
.cf-field fieldset[disabled] input, fieldset[disabled] .button {
  cursor: not-allowed;
}

/* # Media
================================================== */
.media {
  align-items: flex-start;
  display: flex;
  text-align: left;
}
.media .content:not(:last-child) {
  margin-bottom: 0.75rem;
}
.media .media {
  border-top: 1px solid rgba(240, 237, 234, 0.5);
  display: flex;
  padding-top: 0.75rem;
}
.media .media .content:not(:last-child),
.media .media .control:not(:last-child) {
  margin-bottom: 0.5rem;
}
.media .media .media {
  padding-top: 0.5rem;
}
.media .media .media + .media {
  margin-top: 0.5rem;
}
.media + .media {
  border-top: 1px solid rgba(240, 237, 234, 0.5);
  margin-top: 1rem;
  padding-top: 1rem;
}
.media.is-large + .media {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.media-left,
.media-right {
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
}

.media-left {
  margin-right: 1rem;
}

.media-right {
  margin-left: 1rem;
}

.media-content {
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  text-align: left;
}

/* # Tile
================================================== */
.tile {
  display: flex;
  align-items: stretch;
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  min-height: min-content;
  overflow: hidden;
}
.tile .tile-image {
  display: block;
}
.tile.is-ancestor {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}
.tile.is-ancestor:last-child {
  margin-bottom: -0.75rem;
}
.tile.is-ancestor:not(:last-child) {
  margin-bottom: 0.75rem;
}
.tile.is-child {
  margin: 0 !important;
}
.tile.is-parent {
  padding: 0.75rem;
}
.tile.is-vertical {
  flex-direction: column;
}
.tile.is-vertical > .tile.is-child:not(:last-child) {
  margin-bottom: 1.5rem !important;
}
@media only screen and (min-width: 481px) {
  .tile:not(.is-child) {
    display: flex;
  }
  .tile.is-1 {
    flex: none;
    width: 8.3333333333%;
  }
  .tile.is-2 {
    flex: none;
    width: 16.6666666667%;
  }
  .tile.is-3 {
    flex: none;
    width: 25%;
  }
  .tile.is-4 {
    flex: none;
    width: 33.3333333333%;
  }
  .tile.is-5 {
    flex: none;
    width: 41.6666666667%;
  }
  .tile.is-6 {
    flex: none;
    width: 50%;
  }
  .tile.is-7 {
    flex: none;
    width: 58.3333333333%;
  }
  .tile.is-8 {
    flex: none;
    width: 66.6666666667%;
  }
  .tile.is-9 {
    flex: none;
    width: 75%;
  }
  .tile.is-10 {
    flex: none;
    width: 83.3333333333%;
  }
  .tile.is-11 {
    flex: none;
    width: 91.6666666667%;
  }
  .tile.is-12 {
    flex: none;
    width: 100%;
  }
}

/* # Badge
================================================== */
.header-cart__icon {
  display: flex;
  justify-content: center;
  position: relative;
  width: max-content;
  margin: 0 auto;
}

.badge {
  height: 1rem;
  width: 1rem;
  position: absolute;
  top: calc(1rem * -0.3);
  left: calc(65% - 0.2rem);
  font-size: 0.7rem;
  background: #ce8069;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  letter-spacing: 0;
}

.swatch-element .swatch__badge {
  font-size: 6px;
  line-height: 8px;
  letter-spacing: 1px;
  position: absolute;
  padding: 2px;
  top: 4px;
  left: 4px;
}
.swatch-element .swatch__badge .icon {
  max-width: 34px;
}
.swatch-element .swatch__badge--sale {
  background-color: #ffffff;
  color: #414042;
  font-size: 7px;
}
.swatch-element .swatch__badge--new {
  background-color: #ffffff;
  color: #414042;
  font-size: 7px;
}
.swatch-element .swatch__badge--oos {
  position: absolute;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background-color: #979797;
  border: unset;
  line-height: 0;
  left: 0px;
  top: 0px;
  height: 40px;
  width: 40px;
}
.swatch-element .swatch__badge--oos .icon {
  border: unset;
  width: 100%;
  height: 100%;
  max-width: 40px;
  color: #414042;
}
.swatch-element .swatch__badge--oos span {
  color: rgba(65, 64, 66, 0.5);
}

/* # Button
================================================== */
.button {
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 1px;
  background-color: white;
  border-color: #dbdbdb;
  border-width: 1px;
  color: #363636;
  cursor: pointer;
  justify-content: center;
  padding-bottom: calc(0.375em - 1px);
  padding-left: 1em;
  padding-right: 1em;
  padding-top: calc(0.375em - 1px);
  text-align: center;
  text-transform: uppercase;
  transition: background 0.2s ease-in-out;
  white-space: nowrap;
}
.button strong {
  color: inherit;
}
.button .icon, .button .icon.is-small, .button .icon.is-medium, .button .icon.is-large {
  height: 1.5em;
  width: 1.5em;
}
.button .icon:first-child:not(:last-child) {
  margin-left: calc(-0.375em - 1px);
  margin-right: 10px;
}
.button .icon.icon--cart {
  font-size: 14px;
}
.button .icon.icon--right {
  margin-left: 10px;
  margin-right: calc(-0.375em - 1px);
}
.button .icon:first-child:last-child {
  margin-left: calc(-0.375em - 1px);
  margin-right: calc(-0.375em - 1px);
}
.button:hover, .button.is-hovered {
  border-color: #5b4f7b;
  color: #5b4f7b;
}
.button:focus, .button.is-focused {
  border-color: #5b4f7b;
  color: #5b4f7b;
}
.button:focus:not(:active), .button.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(105, 88, 141, 0.25);
}
.button:active, .button.is-active {
  border-color: #5b4f7b;
  color: #5b4f7b;
}
.button.is-inverse {
  background-color: #363636;
  border-color: transparent;
  color: white;
}
.button.is-text {
  background-color: transparent;
  border-color: transparent;
  color: #414042;
  text-decoration: underline;
}
.button.is-text:hover, .button.is-text.is-hovered, .button.is-text:focus, .button.is-text.is-focused {
  background-color: #ffffff;
  color: #363636;
}
.button.is-text:active, .button.is-text.is-active {
  background-color: #f2f2f2;
  color: #363636;
}
.button.is-text[disabled], fieldset[disabled] .button.is-text {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}
.button.is-small {
  font-size: 0.75rem;
}
.button.is-normal {
  font-size: 1rem;
}
.button.is-medium {
  font-size: 1.25rem;
}
.button.is-large {
  font-size: 1.5rem;
  line-height: 1.25em;
  width: 100%;
}
.button[disabled], fieldset[disabled] .button {
  box-shadow: none;
  opacity: 0.5;
}
.button.is-fullwidth {
  display: flex;
  width: 100%;
}
.button.is-loading {
  color: transparent !important;
  pointer-events: none;
}
.button.is-loading::after {
  position: absolute;
  left: calc(50% - (1em / 2));
  top: calc(50% - (1em / 2));
  position: absolute !important;
}
.button.is-loading--icon-only {
  background: transparent !important;
  border: transparent !important;
  font-size: 2rem !important;
  outline: none;
}
.button.is-loading--icon-only::after {
  color: #414042;
}
.button.is-static {
  background-color: whitesmoke;
  border-color: #dbdbdb;
  color: #7a7a7a;
  box-shadow: none;
  pointer-events: none;
}
.button.is-rounded {
  border-radius: 290486px;
  padding-left: 1em;
  padding-right: 1em;
}

.buttons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large) {
  font-size: 0.75rem;
}
.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large) {
  font-size: 1.25rem;
}
.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium) {
  font-size: 1.5rem;
  line-height: 1.25em;
  width: 100%;
}
.buttons.has-addons .button:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.buttons.has-addons .button:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  margin-right: -1px;
}
.buttons.has-addons .button:last-child {
  margin-right: 0;
}
.buttons.has-addons .button:hover, .buttons.has-addons .button.is-hovered {
  z-index: 2;
}
.buttons.has-addons .button:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .button.is-active, .buttons.has-addons .button.is-selected {
  z-index: 3;
}
.buttons.has-addons .button:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.is-selected:hover {
  z-index: 4;
}
.buttons.has-addons .button.is-expanded {
  flex-grow: 1;
}
.buttons.is-center {
  justify-content: center;
}
.buttons.is-right {
  justify-content: flex-end;
}


  
  
  







.button--primary,
a.button--primary.button {
  font-size: 1rem;
  border-radius: ;
  width: auto;
  line-height: inherit;
  height: auto;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
}
.button--primary, .button--primary:link, .button--primary:visited,
a.button--primary.button,
a.button--primary.button:link,
a.button--primary.button:visited {
  color: #ffffff;
  background-color: #c97b64;
  border-color: rgba(0,0,0,0);
}
.button--primary:hover, .button--primary.is-hovered,
a.button--primary.button:hover,
a.button--primary.button.is-hovered {
  color: #ffffff;
  border-color: rgba(0,0,0,0);
  background-color: #d79f8e;
}
.button--primary:focus, .button--primary.is-focused,
a.button--primary.button:focus,
a.button--primary.button.is-focused {
  color: #ffffff;
  border-color: rgba(0,0,0,0);
  background-color: #d79f8e;
}
.button--primary:focus:not(:active), .button--primary.is-focused:not(:active),
a.button--primary.button:focus:not(:active),
a.button--primary.button.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(105, 88, 141, 0.25);
}
.button--primary:active, .button--primary.is-active,
a.button--primary.button:active,
a.button--primary.button.is-active {
  color: #ffffff;
  border-color: rgba(0,0,0,0);
  background-color: #d79f8e;
}
.button--primary.is-inverted,
a.button--primary.button.is-inverted {
  color: #c97b64;
  background-color: #ffffff;
  border-color: #c97b64;
}
.button--primary.is-small,
a.button--primary.button.is-small {
  font-size: 0.75rem;
}
.button--primary.is-normal,
a.button--primary.button.is-normal {
  font-size: 1rem;
}
.button--primary.is-medium,
a.button--primary.button.is-medium {
  font-size: 1.25rem;
}
.button--primary.is-large,
a.button--primary.button.is-large {
  font-size: 1.5rem;
  line-height: 1.25em;
  width: 100%;
}

.button--secondary,
.action_button--secondary,
a.button--secondary.button {
  font-size: 1rem;
  border-radius: 0px;
  line-height: inherit;
  width: auto;
  height: auto;
  max-width: 100%;
  white-space: normal;
}
.button--secondary, .button--secondary:link, .button--secondary:visited,
.action_button--secondary,
.action_button--secondary:link,
.action_button--secondary:visited,
a.button--secondary.button,
a.button--secondary.button:link,
a.button--secondary.button:visited {
  color: #ffffff;
  background-color: #8c8b8b;
  border-color: rgba(0,0,0,0);
}
.button--secondary:hover, .button--secondary.is-hovered,
.action_button--secondary:hover,
.action_button--secondary.is-hovered,
a.button--secondary.button:hover,
a.button--secondary.button.is-hovered {
  color: #ffffff;
  border-color: rgba(0,0,0,0);
  background-color: #d4d4d4;
}
.button--secondary:focus, .button--secondary.is-focused,
.action_button--secondary:focus,
.action_button--secondary.is-focused,
a.button--secondary.button:focus,
a.button--secondary.button.is-focused {
  color: #ffffff;
  border-color: rgba(0,0,0,0);
  background-color: #d4d4d4;
}
.button--secondary:focus:not(:active), .button--secondary.is-focused:not(:active),
.action_button--secondary:focus:not(:active),
.action_button--secondary.is-focused:not(:active),
a.button--secondary.button:focus:not(:active),
a.button--secondary.button.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(105, 88, 141, 0.25);
}
.button--secondary:active, .button--secondary.is-active,
.action_button--secondary:active,
.action_button--secondary.is-active,
a.button--secondary.button:active,
a.button--secondary.button.is-active {
  color: #ffffff;
  border-color: rgba(0,0,0,0);
  background-color: #d4d4d4;
}
.button--secondary.is-inverted,
.action_button--secondary.is-inverted,
a.button--secondary.button.is-inverted {
  color: #8c8b8b;
  background-color: #ffffff;
  border-color: #8c8b8b;
}
.button--secondary.is-small,
.action_button--secondary.is-small,
a.button--secondary.button.is-small {
  font-size: 0.75rem;
}
.button--secondary.is-normal,
.action_button--secondary.is-normal,
a.button--secondary.button.is-normal {
  font-size: 1rem;
}
.button--secondary.is-medium,
.action_button--secondary.is-medium,
a.button--secondary.button.is-medium {
  font-size: 1.25rem;
}
.button--secondary.is-large,
.action_button--secondary.is-large,
a.button--secondary.button.is-large {
  font-size: 1.5rem;
  line-height: 1.25em;
  width: 100%;
}

.button--tertiary,
a.button--tertiary.button {
  font-size: ;
  border-radius: ;
  line-height: ;
  width: ;
  height: auto;
  max-width: 100%;
  white-space: normal;
}
.button--tertiary, .button--tertiary:link, .button--tertiary:visited,
a.button--tertiary.button,
a.button--tertiary.button:link,
a.button--tertiary.button:visited {
  color: #fff;
  background-color: Liquid error: Alpha must be a float between 0 and 1;
  border-color: rgb(140,139,139);
}
.button--tertiary:hover, .button--tertiary.is-hovered,
a.button--tertiary.button:hover,
a.button--tertiary.button.is-hovered {
  color: #ffffff;
  border-color: #b3b2b2;
  background-color: Liquid error: Alpha must be a float between 0 and 1;
}
.button--tertiary:focus, .button--tertiary.is-focused,
a.button--tertiary.button:focus,
a.button--tertiary.button.is-focused {
  color: #ffffff;
  border-color: #b3b2b2;
  background-color: Liquid error: Alpha must be a float between 0 and 1;
}
.button--tertiary:focus:not(:active), .button--tertiary.is-focused:not(:active),
a.button--tertiary.button:focus:not(:active),
a.button--tertiary.button.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(105, 88, 141, 0.25);
}
.button--tertiary:active, .button--tertiary.is-active,
a.button--tertiary.button:active,
a.button--tertiary.button.is-active {
  color: #ffffff;
  border-color: #b3b2b2;
  background-color: Liquid error: Alpha must be a float between 0 and 1;
}
.button--tertiary.is-inverted,
a.button--tertiary.button.is-inverted {
  color: Liquid error: Alpha must be a float between 0 and 1;
  background-color: #fff;
  border-color: Liquid error: Alpha must be a float between 0 and 1;
}
.button--tertiary.is-small,
a.button--tertiary.button.is-small {
  font-size: 0.75rem;
}
.button--tertiary.is-normal,
a.button--tertiary.button.is-normal {
  font-size: 1rem;
}
.button--tertiary.is-medium,
a.button--tertiary.button.is-medium {
  font-size: 1.25rem;
}
.button--tertiary.is-large,
a.button--tertiary.button.is-large {
  font-size: 1.5rem;
  line-height: 1.25em;
  width: 100%;
}

.button--disabled,
a.button--disabled.button {
  font-size: ;
  border-radius: ;
  line-height: ;
  width: ;
  height: auto;
  max-width: 100%;
  white-space: normal;
}
.button--disabled, .button--disabled:link, .button--disabled:visited,
a.button--disabled.button,
a.button--disabled.button:link,
a.button--disabled.button:visited {
  color: rgb(140,139,139);
  background-color: Liquid error: Alpha must be a float between 0 and 1;
  border-color: #8c8b8b;
}
.button--disabled.is-inverted,
a.button--disabled.button.is-inverted {
  color: Liquid error: Alpha must be a float between 0 and 1;
  background-color: rgb(140,139,139);
  border-color: Liquid error: Alpha must be a float between 0 and 1;
}
.button--disabled.is-small,
a.button--disabled.button.is-small {
  font-size: 0.75rem;
}
.button--disabled.is-normal,
a.button--disabled.button.is-normal {
  font-size: 1rem;
}
.button--disabled.is-medium,
a.button--disabled.button.is-medium {
  font-size: 1.25rem;
}
.button--disabled.is-large,
a.button--disabled.button.is-large {
  font-size: 1.5rem;
  line-height: 1.25em;
  width: 100%;
}

.button--over_image,
a.button--over_image.button {
  font-size: ;
  border-radius: ;
  line-height: ;
  width: ;
  height: auto;
  max-width: 100%;
  white-space: normal;
}
.button--over_image, .button--over_image:link, .button--over_image:visited,
a.button--over_image.button,
a.button--over_image.button:link,
a.button--over_image.button:visited {
  color: #ffffff;
  background-color: Liquid error: Alpha must be a float between 0 and 1;
  border-color: #fff;
}
.button--over_image:hover, .button--over_image.is-hovered,
a.button--over_image.button:hover,
a.button--over_image.button.is-hovered {
  color: #ffffff;
  border-color: #000000;
  background-color: Liquid error: Alpha must be a float between 0 and 1;
}
.button--over_image:focus, .button--over_image.is-focused,
a.button--over_image.button:focus,
a.button--over_image.button.is-focused {
  color: #ffffff;
  border-color: #000000;
  background-color: Liquid error: Alpha must be a float between 0 and 1;
}
.button--over_image:focus:not(:active), .button--over_image.is-focused:not(:active),
a.button--over_image.button:focus:not(:active),
a.button--over_image.button.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(105, 88, 141, 0.25);
}
.button--over_image:active, .button--over_image.is-active,
a.button--over_image.button:active,
a.button--over_image.button.is-active {
  color: #ffffff;
  border-color: #000000;
  background-color: Liquid error: Alpha must be a float between 0 and 1;
}
.button--over_image.is-inverted,
a.button--over_image.button.is-inverted {
  color: Liquid error: Alpha must be a float between 0 and 1;
  background-color: #ffffff;
  border-color: Liquid error: Alpha must be a float between 0 and 1;
}
.button--over_image.is-small,
a.button--over_image.button.is-small {
  font-size: 0.75rem;
}
.button--over_image.is-normal,
a.button--over_image.button.is-normal {
  font-size: 1rem;
}
.button--over_image.is-medium,
a.button--over_image.button.is-medium {
  font-size: 1.25rem;
}
.button--over_image.is-large,
a.button--over_image.button.is-large {
  font-size: 1.5rem;
  line-height: 1.25em;
  width: 100%;
}

.button--blog {
  padding: 20px 30px 20px 30px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 14px;
  letter-spacing: 2px;
  color: #414042;
}

.button--link-style,
a.button--link-style.button {
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid;
  height: auto;
  line-height: inherit;
  padding: 0;
  transition: 0.3s linear;
  background: transparent;
  max-width: 100%;
  white-space: normal;
}
.button--link-style, .button--link-style:link, .button--link-style:visited,
a.button--link-style.button,
a.button--link-style.button:link,
a.button--link-style.button:visited {
  color: #67359f;
  border-bottom-color: #67359f;
}
.button--link-style:focus, .button--link-style.is-focused,
a.button--link-style.button:focus,
a.button--link-style.button.is-focused {
  color: #432367;
  border-bottom-color: #432367;
}
.button--link-style:active, .button--link-style.is-active,
a.button--link-style.button:active,
a.button--link-style.button.is-active {
  color: #432367;
  border-bottom-color: #432367;
}
.button--link-style.is-within-form,
a.button--link-style.button.is-within-form {
  padding-bottom: calc(0.375em - 1px);
  padding-left: 1em;
  padding-right: 1em;
  padding-top: calc(0.375em - 1px);
}

.button--add-to-cart,
a.button--add-to-cart.button {
  font-size: 1rem;
  border-radius: 2px;
  width: 100%;
  line-height: inherit;
}
.button--add-to-cart, .button--add-to-cart:link, .button--add-to-cart:visited,
a.button--add-to-cart.button,
a.button--add-to-cart.button:link,
a.button--add-to-cart.button:visited {
  color: #fff;
  background-color: #ce8069;
  border-color: rgba(0,0,0,0);
}
.button--add-to-cart:hover, .button--add-to-cart.is-hovered,
a.button--add-to-cart.button:hover,
a.button--add-to-cart.button.is-hovered {
  color: #fff;
  border-color: rgba(0,0,0,0) !important;
  background-color: #d79f8e;
}
.button--add-to-cart:focus, .button--add-to-cart.is-focused,
a.button--add-to-cart.button:focus,
a.button--add-to-cart.button.is-focused {
  color: #fff;
  border-color: rgba(0,0,0,0);
  background-color: #d79f8e;
}
.button--add-to-cart:focus:not(:active), .button--add-to-cart.is-focused:not(:active),
a.button--add-to-cart.button:focus:not(:active),
a.button--add-to-cart.button.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(105, 88, 141, 0.25);
}
.button--add-to-cart:active, .button--add-to-cart.is-active,
a.button--add-to-cart.button:active,
a.button--add-to-cart.button.is-active {
  color: #fff;
  border-color: rgba(0,0,0,0);
  background-color: #d79f8e;
}
.button--add-to-cart.is-inverted,
a.button--add-to-cart.button.is-inverted {
  color: #ce8069;
  background-color: #fff;
  border-color: #ce8069;
}
.button--add-to-cart.is-small,
a.button--add-to-cart.button.is-small {
  font-size: 0.75rem;
}
.button--add-to-cart.is-normal,
a.button--add-to-cart.button.is-normal {
  font-size: 1rem;
}
.button--add-to-cart.is-medium,
a.button--add-to-cart.button.is-medium {
  font-size: 1.25rem;
}
.button--add-to-cart.is-large,
a.button--add-to-cart.button.is-large {
  font-size: 1.5rem;
  line-height: 1.25em;
  width: 100%;
}

.shopify-challenge__button {
  font-size: 1rem;
  border-radius: ;
  width: auto;
  line-height: inherit;
  height: auto;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
  padding: 0.5em 4em;
}
.shopify-challenge__button, .shopify-challenge__button:link, .shopify-challenge__button:visited {
  color: #ffffff;
  background-color: #c97b64;
  border-color: rgba(0,0,0,0);
}
.shopify-challenge__button:hover, .shopify-challenge__button.is-hovered {
  color: #ffffff;
  border-color: rgba(0,0,0,0);
  background-color: #d79f8e;
}
.shopify-challenge__button:focus, .shopify-challenge__button.is-focused {
  color: #ffffff;
  border-color: rgba(0,0,0,0);
  background-color: #d79f8e;
}
.shopify-challenge__button:focus:not(:active), .shopify-challenge__button.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(105, 88, 141, 0.25);
}
.shopify-challenge__button:active, .shopify-challenge__button.is-active {
  color: #ffffff;
  border-color: rgba(0,0,0,0);
  background-color: #d79f8e;
}
.shopify-challenge__button.is-inverted {
  color: #c97b64;
  background-color: #ffffff;
  border-color: #c97b64;
}
.shopify-challenge__button.is-small {
  font-size: 0.75rem;
}
.shopify-challenge__button.is-normal {
  font-size: 1rem;
}
.shopify-challenge__button.is-medium {
  font-size: 1.25rem;
}
.shopify-challenge__button.is-large {
  font-size: 1.5rem;
  line-height: 1.25em;
  width: 100%;
}

.button--secondary,
.button--primary {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 2px;
  padding: 15px 30px 14px;
}

.quick-shop__buttons .quick_shop {
  font-size: 13px;
  padding-left: 12px;
  padding-right: 12px;
}
.quick-shop__buttons .button--secondary {
  background: #8C8B8B;
}

.pz-popup .pz-close-button {
  cursor: pointer;
  height: 25px;
  width: 25px !important;
  background-color: rgba(216, 217, 220, 0.7);
  border-radius: 50%;
  padding: 4px;
  position: fixed;
  top: 5px !important;
  right: 10px;
  margin-right: 6px;
  margin-top: 4px;
}

/* # Content
================================================== */

.content li + li {
  margin-top: 0.25em;
}
.content p:not(:last-child),
.content dl:not(:last-child),
.content ol:not(:last-child),
.content ul:not(:last-child),
.content blockquote:not(:last-child),
.content pre:not(:last-child),
.content table:not(:last-child) {
  margin-bottom: 1em;
}
.content h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
  word-wrap: break-word;
}
.content h1:not(:first-child) {
  margin-top: 1em;
}
.content h2 {
  font-size: 1.75em;
  margin-bottom: 0.5714em;
  word-wrap: break-word;
}
.content h2:not(:first-child) {
  margin-top: 1.1428em;
}
.content h3 {
  font-size: 1.5em;
  margin-bottom: 0.6666em;
  word-wrap: break-word;
}
.content h3:not(:first-child) {
  margin-top: 1.3333em;
}
.content h4 {
  font-size: 1.25em;
  margin-bottom: 0.8em;
  word-wrap: break-word;
}
.content h5 {
  font-size: 1.125em;
  margin-bottom: 0.8888em;
  word-wrap: break-word;
}
.content h6 {
  font-size: 1em;
  margin-bottom: 1em;
  word-wrap: break-word;
}
.content blockquote {
  background-color: #ffffff;
  border-left: 5px solid #f0edea;
  padding: 1.25em 1.5em;
}
.content ol {
  list-style-position: outside;
  margin-left: 2em;
  margin-top: 1em;
}
.content ol:not([type]) {
  list-style-type: decimal;
}
.content ol:not([type]).is-lower-alpha {
  list-style-type: lower-alpha;
}
.content ol:not([type]).is-lower-roman {
  list-style-type: lower-roman;
}
.content ol:not([type]).is-upper-alpha {
  list-style-type: upper-alpha;
}
.content ol:not([type]).is-upper-roman {
  list-style-type: upper-roman;
}
.content ul {
  list-style: disc outside;
  margin-left: 2em;
  margin-top: 1em;
}
.content ul ul {
  list-style-type: circle;
  margin-top: 0.5em;
}
.content ul ul ul {
  list-style-type: square;
}
.content dd {
  margin-left: 2em;
}
.content figure {
  margin-left: 2em;
  margin-right: 2em;
  text-align: center;
}
.content figure:not(:first-child) {
  margin-top: 2em;
}
.content figure:not(:last-child) {
  margin-bottom: 2em;
}
.content figure img {
  display: inline-block;
}
.content figure figcaption {
  font-style: italic;
}
.content pre {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  padding: 1.25em 1.5em;
  white-space: pre;
  word-wrap: normal;
}
.content sup,
.content sub {
  font-size: 75%;
}
.content table {
  width: 100%;
}
.content table td,
.content table th {
  border: 1px solid #f0edea;
  border-width: 1px;
  padding: 0.5em 0.75em;
  vertical-align: top;
}
.content table th {
  color: #363636;
  text-align: left;
}
.content table thead td,
.content table thead th {
  border-width: 0 0 2px;
  color: #363636;
}
.content table tfoot td,
.content table tfoot th {
  border-width: 2px 0 0;
  color: #363636;
}
.content.is-small {
  font-size: 0.75rem;
}
.content.is-medium {
  font-size: 1.25rem;
}
.content.is-large {
  font-size: 1.5rem;
}

/* #Currency / Language switcher
================================================== */
.selectors-form {
  margin-bottom: 0;
}

.selectors-form__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (min-width: 799px) and (max-width: 1024px) {
  .selectors-form__wrap {
    margin-bottom: 10px;
    width: 100%;
  }
}

.selectors-form__item {
  margin-right: 20px;
}
.selectors-form__item:last-child {
  margin-right: 0;
}

.disclosure {
  position: relative;
}

.disclosure .disclosure__list-wrap {
  min-width: 100%;
}

@media only screen and (min-width: 799px) and (max-width: 1024px) {
  .disclosure--i18n,
.disclosure--currency {
    margin-right: 0;
  }
}

.disclosure-text-style-none button.disclosure__toggle,
.disclosure-text-style-none button.disclosure__button {
  text-transform: capitalize;
}

.disclosure-text-style-uppercase button.disclosure__toggle,
.disclosure-text-style-uppercase button.disclosure__button {
  text-transform: uppercase;
}

.disclosure-text-style-lowercase button.disclosure__toggle,
.disclosure-text-style-lowercase button.disclosure__button {
  text-transform: lowercase;
}

.disclosure__toggle {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #f0edea;
  border-radius: 2px;
  color: #414042;
  cursor: pointer;
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  margin-top: 5px;
  padding: 10px;
  position: relative;
  text-transform: none;
  white-space: nowrap;
  z-index: 2;
}
.disclosure__toggle:active {
  border-color: #f0edea;
  box-shadow: none;
}
.disclosure__toggle.is-clicked, .disclosure__toggle:focus, .disclosure__toggle:hover, .disclosure__toggle:focus-within {
  background-color: #ffffff;
  border-color: #f0edea;
  color: rgba(65, 64, 66, 0.33);
}
.disclosure__toggle.is-clicked .icon, .disclosure__toggle:focus .icon, .disclosure__toggle:hover .icon, .disclosure__toggle:focus-within .icon {
  transform: rotate(180deg);
}
.disclosure__toggle.is-clicked + .disclosure__list-wrap, .disclosure__toggle:focus + .disclosure__list-wrap, .disclosure__toggle:focus-within + .disclosure__list-wrap {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.disclosure__toggle .icon {
  height: 1rem;
  margin-left: 10px;
  pointer-events: none;
  transform: rotate(0deg);
  transition: transform 0.2s linear;
  width: 1rem;
}

.disclosure-list {
  background-color: #ffffff;
  border: 1px solid #f0edea;
  border-radius: 2px;
  list-style: none;
  margin-bottom: 0;
  margin-left: 0;
  padding: 0 10px;
  white-space: nowrap;
}

li.disclosure-list__item {
  line-height: 1;
  list-style: none;
  padding: 0;
  text-transform: uppercase;
}

.disclosure__list-wrap {
  bottom: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding-bottom: 10px;
  position: absolute;
  z-index: 10;
}
.disclosure__list-wrap.animated {
  animation-duration: 0.5s;
}

button.disclosure__button {
  background-color: transparent;
  border: 0;
  color: #414042;
  cursor: pointer;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  padding: 10px 0;
  text-align: left;
  text-transform: none;
  width: 100%;
}
button.disclosure__button:hover, button.disclosure__button[aria-current=true] {
  color: rgba(65, 64, 66, 0.33);
}

/* Mobile currency/language switcher */
.selectors-form--mobile {
  padding: 0.5rem 1.5rem;
}
.selectors-form--mobile .selectors-wrap {
  justify-content: flex-start;
}
.selectors-form--mobile .disclosure {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #f0edea;
  border-radius: 2px;
  color: #414042;
  cursor: pointer;
  margin-top: 5px;
  position: relative;
  white-space: nowrap;
  z-index: 2;
}
.selectors-form--mobile .disclosure:hover, .selectors-form--mobile .disclosure[aria-current=true] {
  color: rgba(65, 64, 66, 0.33);
}
.selectors-form--mobile .disclosure.is-clicked .icon {
  transform: rotate(180deg);
}
.selectors-form--mobile .disclosure select {
  -webkit-appearance: none;
          appearance: none;
  text-indent: 1px;
  text-overflow: "";
  background-color: transparent;
  border: 0;
  padding: 10px 30px 10px 10px;
  text-transform: capitalize;
  z-index: 2;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
}
.selectors-form--mobile .disclosure select option {
  text-transform: capitalize;
}
.selectors-form--mobile .disclosure .icon {
  position: absolute;
  right: 10px;
  transform: rotate(0deg);
  transition: transform 0.2s linear;
}

/* # Icon
================================================== */
.icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  height: 1.2rem;
  width: 1.2rem;
  fill: currentColor;
}
.is-large .icon {
  height: 1.8rem;
  width: 1.8rem;
}
.is-medium .icon {
  height: 1.2rem;
  width: 1.2rem;
}
.is-small .icon {
  height: 1rem;
  width: 1rem;
}
.icon svg {
  height: 100%;
  width: 100%;
}

/* # Image
================================================== */
/* Lazyloading styles */.transition--fade-in {
    opacity: 0;
    transition: opacity 0.3s ease-in;
  }
.transition--fade-in.lazyloaded {
    opacity: 1;
  }.image__container {
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-size: 0;
}
.image__container img {
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .image__container img {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .image__container img {
    max-width: 100%;
  }
}

.image-element__wrap {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.image-element__wrap img {
  height: auto;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.has-image-crop .image-element__wrap {
  height: 100%;
}
.has-image-crop img {
  height: 100% !important;
  object-fit: cover;
}
.has-image-crop.image-crop--left img {
  object-fit: cover;
  object-position: left;
}
.has-image-crop.image-crop--right img {
  object-fit: cover;
  object-position: right;
}
.has-image-crop.image-crop--center img {
  object-fit: cover;
  object-position: center;
}
.has-image-crop.image-crop--none {
  height: auto;
}
.has-image-crop.image-crop--none img {
  position: static;
  height: auto !important;
  object-fit: fill;
}

/* # Notification
================================================== */
.notification {
  background-color: #dbdbdb;
  border-radius: 4px;
  padding: 1.25rem 2.5rem 1.25rem 1.5rem;
  position: relative;
}
.notification a:not(.button):not(.dropdown-item) {
  color: currentColor;
  text-decoration: underline;
}
.notification strong {
  color: currentColor;
}
.notification code,
.notification pre {
  background: white;
}
.notification pre code {
  background: transparent;
}
.notification > .delete {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}
.notification .title,
.notification .subtitle,
.notification .content {
  color: currentColor;
}

/* # Other
================================================== */
.highlight {
  font-weight: 400;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
}
.highlight pre {
  overflow: auto;
  max-width: 100%;
}

.number {
  align-items: center;
  background-color: #ffffff;
  border-radius: 290486px;
  display: inline-flex;
  font-size: 1.25rem;
  height: 2em;
  justify-content: center;
  margin-right: 1.5rem;
  min-width: 2.5em;
  padding: 0.25rem 0.5rem;
  text-align: center;
  vertical-align: top;
}

/* # Placeholder
================================================== */
.placeholder-svg {
  display: block;
  fill: rgba(65, 64, 66, 0.35);
  background-color: rgba(65, 64, 66, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(65, 64, 66, 0.2);
}

.placeholder-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.placeholder-background .icon {
  border: 0;
}

/* # Social share
================================================== */
.share-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.share-btn span {
  display: flex;
  justify-content: center;
}
.share-btn.share-btn--twitter .button, .share-btn.share-btn-blog--twitter .button {
  color: #1DA1F1;
}
.share-btn.share-btn--twitter .button:hover, .share-btn.share-btn-blog--twitter .button:hover {
  border-color: #1DA1F1;
  background-color: #1DA1F1;
}
.share-btn.share-btn--facebook .button {
  color: #4266B2;
}
.share-btn.share-btn--facebook .button:hover {
  border-color: #4266B2;
  background-color: #4266B2;
}
.share-btn.share-btn--pinterest .button {
  color: #E50122;
}
.share-btn.share-btn--pinterest .button:hover {
  border-color: #E50122;
  background-color: #E50122;
}
.share-btn.share-btn--mail .button, .share-btn.share-btn-blog--mail .button {
  color: #F14336;
}
.share-btn.share-btn--mail .button:hover, .share-btn.share-btn-blog--mail .button:hover {
  border-color: #F14336;
  background-color: #F14336;
}
.share-btn.share-btn--instagram .button {
  color: #000;
}
.share-btn.share-btn--instagram .button:hover {
  border-color: #000;
  background-color: #000;
}
.share-btn.share-btn-blog--instagram .button, .share-btn.share-btn-blog--pinterest .button, .share-btn.share-btn-blog--facebook .button {
  background-color: #414042;
  max-height: 26px;
  max-width: 26px;
  margin-right: 16px;
}
.share-btn .button {
  width: 38px;
  height: 38px;
}
.share-btn .button:hover {
  color: #FFFFFF;
}

.social-share-buttons--rounded .button {
  border-radius: 50%;
}

.product__social-share {
  max-width: 430px;
}
@media only screen and (max-width: 480px) {
  .product__social-share {
    padding-top: 15px;
  }
}
.product__social-share > a, .product__social-share > p {
  font-size: 15px;
  line-height: 23px;
  color: #673595;
  float: left;
  margin-top: 10px;
  margin-right: 10px;
}
@media only screen and (max-width: 1024px) {
  .product__social-share .social-share-buttons {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) {
  .product__social-share .social-share-buttons {
    float: left;
  }
}

@media only screen and (min-width: 1280px) {
  .product__social-share > p {
    margin-right: 30px;
  }
  .product__social-share .social-share-buttons {
    float: none;
  }
}
@media only screen and (max-width: 1067px) {
  .product__social-share > .social-share-buttons {
    padding-top: 10px;
  }

  .product__social-share > a, .product__social-share > p {
    margin-bottom: 10px;
    margin-top: 0;
  }
}
/* # Section Titles
================================================== */
.section--title {
  margin: 0 0 60px;
}
.section--title:last-child {
  margin-bottom: 0;
}
.section--title *:not(:last-child) {
  margin-bottom: 15px;
}
.section--title h2 {
  font-family: var(--font--header-stack);
  font-weight: 300;
  font-size: 34px;
  color: var(--color--brand-black);
  line-height: 1.1;
}
.section--title h2 b, .section--title h2 strong {
  font-weight: 300;
}
.section--title .rte {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color--brand-black);
  font-weight: 300;
  line-height: 1.7;
  font-size: 18px;
}
.section--title .rte b, .section--title .rte strong {
  font-weight: 700;
}
@media only screen and (min-width: 799px) {
  .section--title.inline--link {
    display: flex;
    flex-direction: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .section--title.inline--link h2 {
    margin: 0 0 15px;
  }
  .section--title.inline--link .text-link {
    margin: 0 0 15px;
    display: block;
  }
}
@media only screen and (min-width: 799px) {
  .section--title:not(.inline--link) h2 {
    font-size: 55px;
  }
  .section--title:not(.inline--link) .rte * {
    font-size: 18px;
  }
}

/* # Tag
================================================== */
.tags {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.tags .tag {
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  font-size: 12px;
}
.tags .tag.tag--solid {
  background-color: rgba(105, 88, 141, 0.1);
}
.tags .tag.tag--solid a {
  color: #69588d;
}
.tags .tag.tag--solid:hover {
  background-color: #69588d;
}
.tags .tag.tag--solid:hover a {
  color: #ffffff;
}
.tags .tag.tag--capital {
  padding: 0px;
  background-color: transparent;
}
.tags .tag.tag--capital a {
  color: #69588d;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tags .tag.tag--outline {
  background-color: transparent;
  border: 1px solid #69588d;
}
.tags .tag.tag--outline a {
  color: #69588d;
}
.tags .tag.tag--outline:hover {
  background-color: #69588d;
}
.tags .tag.tag--outline:hover a {
  color: #ffffff;
}
.tags .tag:not(:last-child) {
  margin-right: 0.5rem;
}
.tags:last-child {
  margin-bottom: -0.5rem;
}
.tags:not(:last-child) {
  margin-bottom: 0;
}
.tags.are-medium .tag:not(.is-normal):not(.is-large) {
  font-size: 1rem;
}
.tags.are-large .tag:not(.is-normal):not(.is-medium) {
  font-size: 1.25rem;
}
.tags.are-outline .tag:not(.is-regular) {
  background-color: transparent;
  border: 1px solid #414042;
}
.tags.has-addons .tag {
  margin-right: 0;
}
.tags.has-addons .tag:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.tags.has-addons .tag:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.tags.is-center {
  justify-content: center;
}
.tags.is-center .tag {
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}
.tags.is-right {
  justify-content: flex-end;
}
.tags.is-right .tag:not(:first-child) {
  margin-left: 0.5rem;
}
.tags.is-right .tag:not(:last-child) {
  margin-right: 0;
}
.tags.has-addons .tag {
  margin-right: 0;
}
.tags.has-addons .tag:not(:first-child) {
  margin-left: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.tags.has-addons .tag:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.tag:not(body) {
  align-items: center;
  background-color: #dbdbdb;
  border-radius: 4px;
  color: #414042;
  display: inline-flex;
  font-size: 0.75rem;
  height: 2em;
  justify-content: center;
  line-height: 1.5;
  padding-left: 0.75em;
  padding-right: 0.75em;
  white-space: nowrap;
  margin-bottom: 0.3em;
  transition: background-color 0.3s ease-in-out;
}
.tag:not(body) a {
  color: #414042;
}
.tag:not(body) .delete {
  margin-left: 0.25rem;
  margin-right: -0.375rem;
}
.tag:not(body).is-normal {
  font-size: 0.75rem;
}
.tag:not(body).is-medium {
  font-size: 1rem;
}
.tag:not(body).is-large {
  font-size: 1.25rem;
}
.tag:not(body) .icon:first-child:not(:last-child) {
  margin-left: -0.375em;
  margin-right: 0.1875em;
}
.tag:not(body) .icon:last-child:not(:first-child) {
  margin-left: 0.1875em;
  margin-right: -0.375em;
}
.tag:not(body) .icon:first-child:last-child {
  margin-left: -0.375em;
  margin-right: -0.375em;
}
.tag:not(body).is-delete {
  margin-left: 1px;
  padding: 0;
  position: relative;
  width: 2em;
}
.tag:not(body).is-delete::before, .tag:not(body).is-delete::after {
  background-color: currentColor;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform-origin: center center;
}
.tag:not(body).is-delete::before {
  height: 1px;
  width: 50%;
}
.tag:not(body).is-delete::after {
  height: 50%;
  width: 1px;
}
.tag:not(body).is-delete:hover, .tag:not(body).is-delete:focus {
  background-color: #cfcfcf;
}
.tag:not(body).is-delete:active {
  background-color: #c2c2c2;
}
.tag:not(body).is-rounded {
  border-radius: 290486px;
}
.tag:not(body).is-outline {
  background-color: transparent;
  border: 1px solid #414042;
}

a.tag:hover {
  text-decoration: underline;
}

.tag--sale:not(body) {
  border: 1px solid #c97b64;
  color: #c97b64;
}

.tag--new:not(body) {
  border: 1px solid #8eaa6b;
  color: #8eaa6b;
}

.tag--best-seller:not(body) {
  border: 1px solid #8eaa6b;
  color: #8eaa6b;
}

.tag--coming-soon:not(body) {
  border: 1px solid #ce8069;
  color: #ce8069;
}

.tag--staff-pick:not(body) {
  border: 1px solid #414042;
  color: #414042;
}

.tag--pre-order:not(body) {
  border: 1px solid #6e6e6f;
  color: #6e6e6f;
}

/* # AJAX cart - mini and drawer
================================================== */.header-cart {
    position: relative;
  }.cart__count--text::before {
  content: "(";
}
.cart__count--text::after {
  content: ")";
}

#theme-ajax-cart {
  z-index: 50;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
}
@media only screen and (max-width: 1024px) {
  #theme-ajax-cart {
    max-height: calc(100vh - 52px);
  }
}
@media only screen and (max-width: 798px) {
  #theme-ajax-cart {
    z-index: 70;
    max-height: calc(100vh - 100px);
  }
}

.ajax-cart__list {
  overflow-y: scroll;
  max-height: 400px;
}
@media only screen and (max-width: 480px) {
  .ajax-cart__list {
    max-height: 200px;
  }
}

.ajax-cart {
  width: 100%;
  font-size: 12px;
  letter-spacing: 2;
  text-transform: none;
  text-shadow: none;
  color: #414042;
}
.ajax-cart a,
.ajax-cart a:active,
.ajax-cart a:visited {
  color: #414042;
}
.ajax-cart a:hover {
  color: #5b4f7b;
}

.is-drawer,
.is-mini-cart .card {
  background-color: #fff;
}

.ajax-cart__close-icon {
  position: absolute;
  right: 0;
  margin: 15px 10px;
  cursor: pointer;
}

.ajax-cart__cart-title {
  padding: 1rem 1rem;
  font-weight: bold;
  border-bottom: 2px solid rgba(240, 237, 234, 0.5);
}

.ajax-cart__product {
  align-items: center;
  padding: 1rem 1rem 0;
  margin-top: 0;
  position: relative;
  min-height: 120px;
}
.ajax-cart__product:last-child {
  margin-bottom: 1rem;
}

.ajax-cart__product-image {
  width: 20%;
}

.ajax-cart__quantity-box {
  max-width: 150px;
  margin-top: 10px;
}
.ajax-cart__quantity-box .quantity-wrapper.quantity-style--box .quantity-input-control--fill {
  width: auto;
}

.ajax-cart__right-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  align-self: flex-start;
}

.ajax-cart__price {
  padding: 5px 0;
}
.ajax-cart__price .was-price {
  margin-left: 3px;
}

.ajax-cart__line-items-discount .ajax-cart__price-comparison {
  display: flex;
}
.ajax-cart__line-items-discount .ajax-cart__price-comparison p, .ajax-cart__line-items-discount .ajax-cart__price-comparison s {
  padding: 5px 5px 5px 0;
}
.ajax-cart__line-items-discount .line-item-discount__container {
  background: none;
  padding: 0;
  margin: 0;
}

.ajax-cart__details-wrapper {
  border-top: 2px solid rgba(240, 237, 234, 0.5);
  padding: 1rem 1rem;
}
.ajax-cart__details-wrapper .ajax-cart__details-row {
  padding: 10px 0;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__details-wrapper .ajax-cart__row-description {
    max-width: 50%;
  }
}

.ajax-cart__note {
  width: 100%;
  padding: 0.625em;
  min-height: 80px;
  margin-top: 20px;
  font-size: inherit;
}

.ajax-cart__tos-checkbox {
  margin-top: 20px;
}

.ajax-cart__cart-message {
  margin-top: 20px;
}

.ajax-cart__empty-cart-message .icon {
  height: 2.4rem;
  width: 2.4rem;
}

.ajax-cart__empty-text {
  margin: 10px 0;
}

.ajax-cart__button {
  margin-top: 20px;
  width: 100%;
}

.ajax-cart__cart-link {
  margin-top: 20px;
  display: block;
  text-decoration: underline;
}

.ajax-cart__delete .close,
.ajax-cart__delete:hover .close {
  color: #414042;
}

.show-mini-cart #theme-ajax-cart.is-mini-cart {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in;
}

#theme-ajax-cart.is-mini-cart {
  position: absolute;
  top: 100%;
  width: 420px;
  visibility: hidden;
  right: -20px;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}
#theme-ajax-cart.is-mini-cart .ajax-cart__empty-cart-message {
  padding-bottom: 1rem;
}
#theme-ajax-cart.is-mini-cart.theme-ajax-cart--header-vertical {
  top: 60%;
  left: 0;
  max-height: 50vh;
  overflow-y: auto;
}
@media only screen and (max-width: 798px) {
  #theme-ajax-cart.is-mini-cart.theme-ajax-cart--header-vertical {
    top: 100%;
    left: auto;
    right: 0;
    max-height: 80vh;
  }
}
#theme-ajax-cart.is-mini-cart.theme-ajax-cart--header-vertical a {
  color: #69588d;
}
#theme-ajax-cart.is-mini-cart.theme-ajax-cart--header-vertical a:hover {
  color: #5b4f7b;
}
@media only screen and (max-width: 1024px) {
  #theme-ajax-cart.is-mini-cart {
    top: 52px;
  }
}
@media only screen and (max-width: 798px) {
  #theme-ajax-cart.is-mini-cart {
    top: 100%;
  }
}

@media only screen and (max-width: 480px) {
  #theme-ajax-cart.is-mini-cart {
    min-width: 100vw;
  }
}
.ajax-cart--mini-cart .ajax-cart__close-icon {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .touchevents .ajax-cart--mini-cart .ajax-cart__close-icon {
    display: block;
  }
}

.ajax-cart--drawer {
  position: relative;
  z-index: 50;
}

.ajax-cart__overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 49;
  background-color: rgba(0, 0, 0, 0.8);
  right: -100%;
  opacity: 0;
  transition: opacity 0.2s;
}
.ajax-cart__overlay.is-visible {
  right: 0;
  opacity: 1;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__overlay {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

#theme-ajax-cart.is-drawer {
  position: fixed;
  top: 0;
  height: 100%;
  bottom: 0;
  width: 40%;
  right: -40%;
  transition: right 0.3s ease-in-out;
}
@media only screen and (max-width: 798px) {
  #theme-ajax-cart.is-drawer {
    width: 60%;
    right: -60%;
  }
}
@media only screen and (max-width: 480px) {
  #theme-ajax-cart.is-drawer {
    width: 100%;
    right: -100%;
  }
}
#theme-ajax-cart.is-drawer.is-visible {
  right: 0;
}
@media only screen and (min-width: 799px) {
  #theme-ajax-cart.is-drawer.theme-ajax-cart--header-vertical {
    width: 30%;
    right: auto;
    left: -30%;
    margin-left: 20%;
    transition: left 0.3s ease-in-out;
  }
  #theme-ajax-cart.is-drawer.theme-ajax-cart--header-vertical.is-visible {
    left: 0;
  }
}

/* # Breadcrumb
================================================== */
.breadcrumb {
  font-size: 1rem;
  white-space: nowrap;
}
.breadcrumb a {
  align-items: center;
  color: #69588d;
  display: flex;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.breadcrumb a:hover {
  color: #5b4f7b;
}
.breadcrumb li {
  align-items: center;
  display: flex;
  line-height: 2;
  white-space: normal;
}
.breadcrumb li:not(.tag):first-child span {
  padding-left: 0;
}
.breadcrumb li.is-active a {
  color: #5b4f7b;
  cursor: default;
  pointer-events: none;
}
.breadcrumb ul,
.breadcrumb ol {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media only screen and (max-width: 480px) {
  .breadcrumb ul,
.breadcrumb ol {
    justify-content: center;
  }
}
.breadcrumb .icon:first-child {
  margin-right: 0.5em;
}
.breadcrumb .icon:last-child {
  margin-left: 0.5em;
}
.breadcrumb.is-center ol,
.breadcrumb.is-center ul {
  justify-content: center;
}
.breadcrumb.is-right ol,
.breadcrumb.is-right ul {
  justify-content: flex-end;
}
.breadcrumb.is-small {
  font-size: 0.75rem;
}
.breadcrumb.is-small .icon {
  height: 0.75rem;
  width: 0.75rem;
}
.breadcrumb.is-regular {
  font-size: 1rem;
}
.breadcrumb.is-regular .icon {
  height: 1rem;
  width: 1rem;
}
.breadcrumb.is-large {
  font-size: 1.2rem;
}
.breadcrumb.is-large .icon {
  height: 1.2rem;
  width: 1.2rem;
}
.breadcrumb .page-navigation-arrows a {
  display: inline;
}

.page-navigation-arrows {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 480px) {
  .page-navigation-arrows {
    justify-content: center;
    text-align: center;
    width: 100%;
    padding-top: 0;
  }
}
.page-navigation-arrows .page-navigation__divider {
  padding: 0 5px;
}

.breadcrumb-separator {
  display: flex;
  align-items: flex-end;
}

@media only screen and (max-width: 480px) {
  .breadcrumb__container {
    flex-direction: column-reverse;
    flex-wrap: wrap;
    padding-bottom: 20px;
  }
}
.breadcrumb__container a {
  color: #414042;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}
.breadcrumb__container svg {
  height: 10px;
  width: 15px;
}

/* # Card
================================================== */
.card {
  background-color: #ffffff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1);
  color: #414042;
  max-width: 100%;
  position: relative;
}

.card-header {
  background-color: transparent;
  align-items: stretch;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  width: 100%;
}

.card-header-title {
  align-items: center;
  display: flex;
  flex-grow: 1;
  font-weight: 700;
  padding: 0.75rem;
}
.card-header-title.is-center {
  justify-content: center;
}

.card-header-icon {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 0.75rem;
}

.card-image {
  display: block;
  position: relative;
}

.card-content {
  background-color: transparent;
  padding: 1.5rem;
}

.card-footer {
  background-color: transparent;
  border-top: 1px solid #f0edea;
  align-items: stretch;
  display: flex;
}

.card-footer-item {
  align-items: center;
  display: flex;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: center;
  padding: 0.75rem;
}
.card-footer-item:not(:last-child) {
  border-right: 1px solid #f0edea;
}

/* # Commerce
================================================== */
.was-price {
  text-decoration: line-through;
  opacity: 0.6;
}

/* # Form
================================================== */

.input,
.textarea,
.cf-field input {
  background-color: white;
  border-color: #f0edea;
  color: #363636;
  box-shadow: none;
  max-width: 100%;
  width: 100%;
}
.input::-moz-placeholder,
.textarea::-moz-placeholder,
.cf-field input::-moz-placeholder {
  color: rgba(54, 54, 54, 0.5);
}
.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder,
.cf-field input::-webkit-input-placeholder {
  color: rgba(54, 54, 54, 0.5);
}
.input:-moz-placeholder,
.textarea:-moz-placeholder,
.cf-field input:-moz-placeholder {
  color: rgba(54, 54, 54, 0.5);
}
.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder,
.cf-field input:-ms-input-placeholder {
  color: rgba(54, 54, 54, 0.5);
}
.input:hover, .input.is-hovered,
.textarea:hover,
.textarea.is-hovered,
.cf-field input:hover,
.cf-field input.is-hovered {
  border-color: #b5b5b5;
}
.input:focus, .input.is-focused, .input:active, .input.is-active,
.textarea:focus,
.textarea.is-focused,
.textarea:active,
.textarea.is-active,
.cf-field input:focus,
.cf-field input.is-focused,
.cf-field input:active,
.cf-field input.is-active {
  border-color: #69588d;
  box-shadow: 0 0 0 0.125em rgba(105, 88, 141, 0.25);
}
.input[disabled], fieldset[disabled] .input,
.textarea[disabled],
fieldset[disabled] .textarea,
.cf-field input[disabled],
fieldset[disabled] .cf-field input {
  background-color: #ffffff;
  border-color: #ffffff;
  box-shadow: none;
  color: #7a7a7a;
}
.input[disabled]::-moz-placeholder, fieldset[disabled] .input::-moz-placeholder,
.textarea[disabled]::-moz-placeholder,
fieldset[disabled] .textarea::-moz-placeholder,
.cf-field input[disabled]::-moz-placeholder,
fieldset[disabled] .cf-field input::-moz-placeholder {
  color: rgba(122, 122, 122, 0.3);
}
.input[disabled]::-webkit-input-placeholder, fieldset[disabled] .input::-webkit-input-placeholder,
.textarea[disabled]::-webkit-input-placeholder,
fieldset[disabled] .textarea::-webkit-input-placeholder,
.cf-field input[disabled]::-webkit-input-placeholder,
fieldset[disabled] .cf-field input::-webkit-input-placeholder {
  color: rgba(122, 122, 122, 0.3);
}
.input[disabled]:-moz-placeholder, fieldset[disabled] .input:-moz-placeholder,
.textarea[disabled]:-moz-placeholder,
fieldset[disabled] .textarea:-moz-placeholder,
.cf-field input[disabled]:-moz-placeholder,
fieldset[disabled] .cf-field input:-moz-placeholder {
  color: rgba(122, 122, 122, 0.3);
}
.input[disabled]:-ms-input-placeholder, fieldset[disabled] .input:-ms-input-placeholder,
.textarea[disabled]:-ms-input-placeholder,
fieldset[disabled] .textarea:-ms-input-placeholder,
.cf-field input[disabled]:-ms-input-placeholder,
fieldset[disabled] .cf-field input:-ms-input-placeholder {
  color: rgba(122, 122, 122, 0.3);
}
.input[readonly],
.textarea[readonly],
.cf-field input[readonly] {
  box-shadow: none;
}
.input.is-small,
.textarea.is-small,
.cf-field input.is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}
.input.is-medium,
.textarea.is-medium,
.cf-field input.is-medium {
  font-size: 1.25rem;
}
.input.is-large,
.textarea.is-large,
.cf-field input.is-large {
  font-size: 1.25rem;
  height: 2em;
}
.input.is-fullwidth,
.textarea.is-fullwidth,
.cf-field input.is-fullwidth {
  display: block;
  width: 100%;
}
.input.is-inline,
.textarea.is-inline,
.cf-field input.is-inline {
  display: inline;
  width: auto;
}

.input.is-rounded {
  border-radius: 290486px;
  padding-left: 1em;
  padding-right: 1em;
}
.input.is-static {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}
.input.is-primary-btn-style {
  border-radius: 0px;
  padding-left: 1em;
  padding-right: 1em;
}
.input.is-secondary-btn-style {
  border-radius: 0px;
  padding-left: 1em;
  padding-right: 1em;
}

.textarea {
  display: block;
  max-width: 100%;
  min-width: 100%;
  padding: 0.625em;
  resize: vertical;
}
.textarea:not([rows]) {
  max-height: 600px;
  min-height: 120px;
}
.textarea[rows] {
  height: initial;
}
.textarea.has-fixed-size {
  resize: none;
}
.textarea.is-rounded {
  border-radius: 5px;
}
.textarea.is-primary-btn-style {
  border-radius: 0px;
  padding-left: 1em;
  padding-right: 1em;
}
.textarea.is-secondary-btn-style {
  border-radius: 0px;
  padding-left: 1em;
  padding-right: 1em;
}

.checkbox,
.radio {
  cursor: pointer;
  display: inline-block;
  line-height: 1.25;
  position: relative;
}
.checkbox input,
.radio input {
  cursor: pointer;
}
.checkbox:hover,
.radio:hover {
  color: #363636;
}
.checkbox[disabled], fieldset[disabled] .checkbox,
.radio[disabled],
fieldset[disabled] .radio {
  color: #7a7a7a;
  cursor: not-allowed;
}

.radio + .radio {
  margin-left: 0.5em;
}

.select {
  display: inline-block;
  max-width: 100%;
  position: relative;
  vertical-align: top;
}
.select:not(.is-multiple) {
  height: 2.25em;
}
.select:not(.is-multiple):not(.is-loading):not(.is-arrowless)::after {
  border-color: #69588d;
  right: 1.125em;
  z-index: 4;
}
.select.is-rounded select {
  border-radius: 290486px;
  padding-left: 1em;
}
.select.is-primary-btn-style select {
  border-radius: 0px;
  padding-left: 1em;
}
.select.is-secondary-btn-style select {
  border-radius: 0px;
  padding-left: 1em;
}
.select.is-wide {
  width: 100%;
}
.select.is-wide select {
  width: inherit;
}
.select select {
  background-color: white;
  border-color: #f0edea;
  color: #363636;
  cursor: pointer;
  display: block;
  font-size: 1em;
  max-width: 100%;
  outline: none;
}
.select select::-moz-placeholder {
  color: rgba(54, 54, 54, 0.5);
}
.select select::-webkit-input-placeholder {
  color: rgba(54, 54, 54, 0.5);
}
.select select:-moz-placeholder {
  color: rgba(54, 54, 54, 0.5);
}
.select select:-ms-input-placeholder {
  color: rgba(54, 54, 54, 0.5);
}
.select select:hover, .select select.is-hovered {
  border-color: #b5b5b5;
}
.select select:focus, .select select.is-focused, .select select:active, .select select.is-active {
  border-color: #69588d;
  box-shadow: 0 0 0 0.125em rgba(105, 88, 141, 0.25);
}
.select select[disabled], fieldset[disabled] .select select {
  background-color: #ffffff;
  border-color: #ffffff;
  box-shadow: none;
  color: #7a7a7a;
}
.select select[disabled]::-moz-placeholder, fieldset[disabled] .select select::-moz-placeholder {
  color: rgba(122, 122, 122, 0.3);
}
.select select[disabled]::-webkit-input-placeholder, fieldset[disabled] .select select::-webkit-input-placeholder {
  color: rgba(122, 122, 122, 0.3);
}
.select select[disabled]:-moz-placeholder, fieldset[disabled] .select select:-moz-placeholder {
  color: rgba(122, 122, 122, 0.3);
}
.select select[disabled]:-ms-input-placeholder, fieldset[disabled] .select select:-ms-input-placeholder {
  color: rgba(122, 122, 122, 0.3);
}
.select select::-ms-expand {
  display: none;
}
.select select[disabled]:hover, fieldset[disabled] .select select:hover {
  border-color: #ffffff;
}
.select select:not([multiple]):not(.is-arrowless) {
  padding-right: 2.5em;
  width: 100%;
}
.select select[multiple] {
  height: auto;
  padding: 0;
}
.select select[multiple] option {
  padding: 0.5em 1em;
}
.select:not(.is-multiple):not(.is-loading):hover::after {
  border-color: #363636;
}
.select.is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}
.select.is-medium {
  font-size: 1.25rem;
}
.select.is-large {
  font-size: 1.25rem;
}
.select.is-disabled::after {
  border-color: #7a7a7a;
}
.select.is-fullwidth {
  width: 100%;
}
.select.is-fullwidth select {
  width: 100%;
}
.select.is-loading::after {
  margin-top: 0;
  position: absolute;
  right: 0.625em;
  top: 0.625em;
  transform: none;
}
.select.is-loading.is-small:after {
  font-size: 0.75rem;
}
.select.is-loading.is-medium:after {
  font-size: 1.25rem;
}
.select.is-loading.is-large:after {
  font-size: 1.5rem;
}

.file {
  align-items: stretch;
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.file.is-small {
  font-size: 0.75rem;
}
.file.is-medium {
  font-size: 1.25rem;
}
.file.is-medium .file-icon .fa {
  font-size: 21px;
}
.file.is-large {
  font-size: 1.5rem;
}
.file.is-large .file-icon .fa {
  font-size: 28px;
}
.file.has-name .file-cta {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.file.has-name .file-name {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.file.has-name.is-empty .file-cta {
  border-radius: 4px;
}
.file.has-name.is-empty .file-name {
  display: none;
}
.file.is-boxed .file-label {
  flex-direction: column;
}
.file.is-boxed .file-cta {
  flex-direction: column;
  height: auto;
  padding: 1em 3em;
}
.file.is-boxed .file-name {
  border-width: 0 1px 1px;
}
.file.is-boxed .file-icon {
  height: 1.5em;
  width: 1.5em;
}
.file.is-boxed .file-icon .fa {
  font-size: 21px;
}
.file.is-boxed.is-small .file-icon .fa {
  font-size: 14px;
}
.file.is-boxed.is-medium .file-icon .fa {
  font-size: 28px;
}
.file.is-boxed.is-large .file-icon .fa {
  font-size: 35px;
}
.file.is-boxed.has-name .file-cta {
  border-radius: 4px 4px 0 0;
}
.file.is-boxed.has-name .file-name {
  border-radius: 0 0 4px 4px;
  border-width: 0 1px 1px;
}
.file.is-center {
  justify-content: center;
}
.file.is-fullwidth .file-label {
  width: 100%;
}
.file.is-fullwidth .file-name {
  flex-grow: 1;
  max-width: none;
}
.file.is-right {
  justify-content: flex-end;
}
.file.is-right .file-cta {
  border-radius: 0 4px 4px 0;
}
.file.is-right .file-name {
  border-radius: 4px 0 0 4px;
  border-width: 1px 0 1px 1px;
  order: -1;
}

.file-label {
  align-items: stretch;
  display: flex;
  cursor: pointer;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}
.file-label:hover .file-cta {
  background-color: #eeeeee;
  color: #363636;
}
.file-label:hover .file-name {
  border-color: #ebe7e3;
}
.file-label:active .file-cta {
  background-color: #e8e8e8;
  color: #363636;
}
.file-label:active .file-name {
  border-color: #e5e0db;
}

.file-input {
  height: 100%;
  left: 0;
  opacity: 0;
  outline: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.file-cta,
.file-name {
  border-color: #f0edea;
  border-radius: 4px;
  font-size: 1em;
  padding-left: 1em;
  padding-right: 1em;
  white-space: nowrap;
}

.file-cta {
  background-color: whitesmoke;
  color: #4a4a4a;
}

.file-name {
  border-color: #f0edea;
  border-style: solid;
  border-width: 1px 1px 1px 0;
  display: block;
  max-width: 16em;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
}

.file-icon {
  align-items: center;
  display: flex;
  height: 1em;
  justify-content: center;
  margin-right: 0.5em;
  width: 1em;
}
.file-icon .fa {
  font-size: 14px;
}

.label,
.cf-field label,
.selector-wrapper label {
  color: #363636;
  display: block;
  font-size: 1rem;
  font-weight: 300;
}
.label:not(:last-child),
.cf-field label:not(:last-child),
.selector-wrapper label:not(:last-child) {
  margin-bottom: 0.5em;
}
.label.is-small,
.cf-field label.is-small,
.selector-wrapper label.is-small {
  font-size: 0.75rem;
}
.label.is-medium,
.cf-field label.is-medium,
.selector-wrapper label.is-medium {
  font-size: 1.25rem;
}
.label.is-large,
.cf-field label.is-large,
.selector-wrapper label.is-large {
  font-size: 1.5rem;
}

.help {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.field:not(:last-child) {
  margin-bottom: 0.75rem;
}
.field.has-addons {
  display: flex;
  justify-content: flex-start;
}
.field.has-addons .control:not(:last-child) {
  margin-right: -1px;
}
.field.has-addons .control:not(:first-child):not(:last-child) .button,
.field.has-addons .control:not(:first-child):not(:last-child) .input,
.field.has-addons .control:not(:first-child):not(:last-child) .select select {
  border-radius: 0;
}
.field.has-addons .control:first-child:not(:only-child) .button,
.field.has-addons .control:first-child:not(:only-child) .input,
.field.has-addons .control:first-child:not(:only-child) .select select {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.field.has-addons .control:last-child:not(:only-child) .button,
.field.has-addons .control:last-child:not(:only-child) .input,
.field.has-addons .control:last-child:not(:only-child) .select select {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.field.has-addons .control .button:not([disabled]):hover, .field.has-addons .control .button:not([disabled]).is-hovered,
.field.has-addons .control .input:not([disabled]):hover,
.field.has-addons .control .input:not([disabled]).is-hovered,
.field.has-addons .control .select select:not([disabled]):hover,
.field.has-addons .control .select select:not([disabled]).is-hovered {
  z-index: 2;
}
.field.has-addons .control .button:not([disabled]):focus, .field.has-addons .control .button:not([disabled]).is-focused, .field.has-addons .control .button:not([disabled]):active, .field.has-addons .control .button:not([disabled]).is-active,
.field.has-addons .control .input:not([disabled]):focus,
.field.has-addons .control .input:not([disabled]).is-focused,
.field.has-addons .control .input:not([disabled]):active,
.field.has-addons .control .input:not([disabled]).is-active,
.field.has-addons .control .select select:not([disabled]):focus,
.field.has-addons .control .select select:not([disabled]).is-focused,
.field.has-addons .control .select select:not([disabled]):active,
.field.has-addons .control .select select:not([disabled]).is-active {
  z-index: 3;
}
.field.has-addons .control .button:not([disabled]):focus:hover, .field.has-addons .control .button:not([disabled]).is-focused:hover, .field.has-addons .control .button:not([disabled]):active:hover, .field.has-addons .control .button:not([disabled]).is-active:hover,
.field.has-addons .control .input:not([disabled]):focus:hover,
.field.has-addons .control .input:not([disabled]).is-focused:hover,
.field.has-addons .control .input:not([disabled]):active:hover,
.field.has-addons .control .input:not([disabled]).is-active:hover,
.field.has-addons .control .select select:not([disabled]):focus:hover,
.field.has-addons .control .select select:not([disabled]).is-focused:hover,
.field.has-addons .control .select select:not([disabled]):active:hover,
.field.has-addons .control .select select:not([disabled]).is-active:hover {
  z-index: 4;
}
.field.has-addons .control.is-expanded {
  flex-grow: 1;
}
.field.has-addons.has-addons-center {
  justify-content: center;
}
.field.has-addons.has-addons-right {
  justify-content: flex-end;
}
.field.has-addons.has-addons-fullwidth .control {
  flex-grow: 1;
  flex-shrink: 0;
}
.field.is-grouped {
  display: flex;
  justify-content: flex-start;
}
.field.is-grouped > .control {
  flex-shrink: 0;
}
.field.is-grouped > .control:not(:last-child) {
  margin-bottom: 0;
  margin-right: 0.75rem;
}
.field.is-grouped > .control.is-expanded {
  flex-grow: 1;
  flex-shrink: 1;
}
.field.is-grouped.is-grouped-center {
  justify-content: center;
}
.field.is-grouped.is-grouped-right {
  justify-content: flex-end;
}
.field.is-grouped.is-grouped-multiline {
  flex-wrap: wrap;
}
.field.is-grouped.is-grouped-multiline > .control:last-child, .field.is-grouped.is-grouped-multiline > .control:not(:last-child) {
  margin-bottom: 0.75rem;
}
.field.is-grouped.is-grouped-multiline:last-child {
  margin-bottom: -0.75rem;
}
.field.is-grouped.is-grouped-multiline:not(:last-child) {
  margin-bottom: 0;
}
@media only screen and (min-width: 799px) {
  .field.is-horizontal {
    display: flex;
  }
}

.field-label .label {
  font-size: inherit;
}
@media only screen and (min-width: 481px) {
  .field-label {
    margin-bottom: 0.5rem;
  }
}
@media only screen and (min-width: 799px) {
  .field-label {
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 0;
    margin-right: 1.5rem;
    text-align: right;
  }
  .field-label.is-small {
    font-size: 0.75rem;
    padding-top: 0.375em;
  }
  .field-label.is-normal {
    padding-top: 0.375em;
  }
  .field-label.is-medium {
    font-size: 1.25rem;
    padding-top: 0.375em;
  }
  .field-label.is-large {
    font-size: 1.5rem;
    padding-top: 0.375em;
  }
}

.field-body .field .field {
  margin-bottom: 0;
}
@media only screen and (min-width: 799px) {
  .field-body {
    display: flex;
    flex-basis: 0;
    flex-grow: 5;
    flex-shrink: 1;
  }
  .field-body .field {
    margin-bottom: 0;
  }
  .field-body > .field {
    flex-shrink: 1;
  }
  .field-body > .field:not(.is-narrow) {
    flex-grow: 1;
  }
  .field-body > .field:not(:last-child) {
    margin-right: 0.75rem;
  }
}

.control {
  box-sizing: border-box;
  clear: both;
  font-size: 1rem;
  position: relative;
  text-align: left;
}
.control.has-icons-left .input:focus ~ .icon,
.control.has-icons-left .select:focus ~ .icon, .control.has-icons-right .input:focus ~ .icon,
.control.has-icons-right .select:focus ~ .icon {
  color: #7a7a7a;
}
.control.has-icons-left .input.is-small ~ .icon,
.control.has-icons-left .select.is-small ~ .icon, .control.has-icons-right .input.is-small ~ .icon,
.control.has-icons-right .select.is-small ~ .icon {
  font-size: 0.5rem;
}
.control.has-icons-left .input.is-regular ~ .icon,
.control.has-icons-left .select.is-regular ~ .icon, .control.has-icons-right .input.is-regular ~ .icon,
.control.has-icons-right .select.is-regular ~ .icon {
  font-size: 0.75rem;
}
.control.has-icons-left .input.is-medium ~ .icon,
.control.has-icons-left .select.is-medium ~ .icon, .control.has-icons-right .input.is-medium ~ .icon,
.control.has-icons-right .select.is-medium ~ .icon {
  font-size: 1rem;
}
.control.has-icons-left .input.is-large ~ .icon,
.control.has-icons-left .select.is-large ~ .icon, .control.has-icons-right .input.is-large ~ .icon,
.control.has-icons-right .select.is-large ~ .icon {
  font-size: 1.25rem;
}
.control.has-icons-left .icon, .control.has-icons-right .icon {
  color: #dbdbdb;
  height: 1.5em;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 1.8em;
  z-index: 4;
}
.control.has-icons-left .input,
.control.has-icons-left .select select {
  padding-left: 2.25em;
}
.control.has-icons-left .icon {
  left: 0;
  top: 50%;
  transform: translate(40%, -50%);
}
.control.has-icons-right .input,
.control.has-icons-right .select select {
  padding-right: 2.25em;
}
.control.has-icons-right .icon {
  right: 0;
}
.control.has-icons-right .icon.is-right {
  left: initial;
}
.control.is-loading::after {
  position: absolute !important;
  right: 0.625em;
  top: 0.625em;
  z-index: 4;
}
.control.is-loading.is-small:after {
  font-size: 0.75rem;
}
.control.is-loading.is-medium:after {
  font-size: 1.25rem;
}
.control.is-loading.is-large:after {
  font-size: 1.5rem;
}

.newsletter-section.has-background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media only screen and (max-width: 798px) {
  .newsletter-section.newsletter-section--is-width-half {
    height: auto;
  }
}
.newsletter-section .dark-overlay-true {
  position: static;
}
@media only screen and (min-width: 799px) {
  .newsletter-section.has-full-width-crop {
    padding: 0;
  }
  .newsletter-section.has-full-width-crop .column {
    margin: 0;
    width: 100%;
  }
  .newsletter-section.has-full-width-crop .newsletter__wrapper {
    max-width: 100%;
  }
}
.newsletter-section.newsletter-section--popup {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
}
.newsletter-section.newsletter-section--popup .newsletter__wrapper {
  max-width: 100%;
  padding: 2em 2em 0 2em;
}

.newsletter__image--mobile-wrapper {
  display: none;
}
.newsletter__image--mobile-wrapper.has-image-crop {
  padding-bottom: 100%;
}
.newsletter__image--mobile-wrapper.has-image-crop img {
  position: absolute;
}
@media only screen and (max-width: 798px) {
  .newsletter__image--mobile-wrapper {
    display: block;
    overflow: hidden;
    position: relative;
  }
}

.newsletter-container {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  -ms-grid-row-align: normal;
      align-self: normal;
  width: 100%;
  z-index: 3;
  position: relative;
}

.newsletter-form.is-responsive {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form .field {
  justify-content: center;
  flex: 1 0 100%;
  margin-bottom: 20px;
}
.newsletter-form .field.is-stretched-width {
  flex: 3 0 50%;
  min-width: 200px;
  max-width: 100%;
}
.newsletter-form .field.is-default-width {
  flex: 1 0 auto;
  min-width: 150px;
}
.newsletter-form .field.is-default-width .button {
  width: 100%;
}
.newsletter-form .field.is-full-width {
  flex-basis: 100%;
}
.newsletter-form .field label {
  text-align: left;
}
.newsletter-form .field .control {
  width: calc(100% - 12px);
}
@media only screen and (max-width: 798px) {
  .newsletter-form .field .control {
    width: 100%;
  }
}

.newsletter__image {
  position: relative;
}
.newsletter__image img {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}
@media only screen and (max-width: 798px) {
  .newsletter__image img {
    position: static;
  }
}
.newsletter__image.image-crop--none img {
  object-fit: contain;
  object-position: center;
}
@media only screen and (max-width: 798px) {
  .newsletter__image {
    display: none;
  }
}

@media only screen and (min-width: 799px) {
  .is-active-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.newsletter__wrapper {
  padding: 40px;
  max-width: 55%;
}
@media only screen and (max-width: 480px) {
  .newsletter__wrapper {
    max-width: 100%;
  }
}

.newsletter__text-wrapper {
  width: 100%;
}

.newsletter__subheading {
  margin-bottom: 20px;
}

.contact-form__form-errors .form__error {
  margin-bottom: 15px;
  background: #ffdd57;
}
.contact-form__form-errors .form__error strong {
  font-weight: 400;
}

@media only screen and (max-width: 480px) {
  .button,
.input,
.textarea,
.select select {
    font-size: 16px !important;
  }
}

.customers-login .login__divider {
  width: 20px;
  height: 226px;
  background-image: linear-gradient(180deg, #9c9a98 33%, rgba(255, 255, 255, 0) 0);
  background-size: 2px 5px;
  background-repeat: repeat-y;
  background-position: 100%;
  float: left;
}
@media only screen and (max-width: 798px) {
  .customers-login .login__divider {
    display: none;
  }
}

.customers-login .login__register-content {
  margin-left: 50px;
}
@media only screen and (max-width: 798px) {
  .customers-login .login__register-content {
    margin-left: 0;
  }
}

.customers-login .login__register-content ol {
  color: #414042;
  font-size: 13px;
  margin: 1em;
  padding: 0 0 12px 10px;
}

.customers-activate_account .form-success,
.customers-login .form-success {
  display: block;
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

form .errors {
  color: #721c24;
  background-color: #f8d7da;
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  border-color: #f5c6cb;
}

.newsletter-container .newsletter__wrapper {
  padding: 58px 0;
  max-width: 580px;
}
@media only screen and (max-width: 480px) {
  .newsletter-container .newsletter__wrapper {
    padding: 25px 0;
  }
}
.newsletter-container h2.title {
  text-transform: lowercase;
  font-size: 20px !important;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 22px;
  color: #414042 !important;
  margin-bottom: 0;
}
.newsletter-container .newsletter-form__wrapper .newsletter-form--newsletter-section {
  padding-top: 24px;
}
.newsletter-container .newsletter__text {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1.71px;
}
.newsletter-container .newsletter__subheading p {
  font-size: 12px;
  text-transform: none;
  line-height: 16px;
  letter-spacing: normal;
  color: #414042;
  text-align: center;
}
.newsletter-container .form__success-message {
  margin: 20px 0;
  color: #414042;
}
.newsletter-container .newsletter-form .field {
  margin-bottom: 16px;
}
.newsletter-container .newsletter-form .field .control {
  width: calc(100% - 8px);
}
.newsletter-container .contact-form .is-primary-btn-style.input {
  border-color: #E1DCD5;
  height: 35px;
  outline: none;
}
.newsletter-container .contact-form .quote {
  margin-bottom: 20px;
  color: #414042;
  text-align: center;
}
.newsletter-container .contact-form .button--primary {
  height: 35px;
  font-size: 14px !important;
  line-height: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* #Message
================================================== */
.message {
  font-size: 1rem;
}
.message strong {
  color: currentColor;
}
.message a:not(.button):not(.tag):not(.dropdown-item) {
  color: currentColor;
  text-decoration: underline;
}
.message.is-small {
  font-size: 0.75rem;
}
.message.is-medium {
  font-size: 1.25rem;
}
.message.is-large {
  font-size: 1.5rem;
}

.message-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  line-height: 1.25;
  padding: 0.75em 1em;
  position: relative;
}
.message-header .delete {
  flex-grow: 0;
  flex-shrink: 0;
  margin-left: 0.75em;
}
.message-header + .message-body {
  border-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.message-body {
  border-radius: 4px;
  border-style: solid;
  border-width: 0 0 0 4px;
  padding: 1.25em 1.5em;
}
.message-body code,
.message-body pre {
  background-color: white;
}
.message-body pre code {
  background-color: transparent;
}

/* # Navbar
================================================== */

.navbar {
  min-height: 3.25rem;
  position: relative;
}
.navbar > .container {
  align-items: stretch;
  display: flex;
  min-height: 3.25rem;
  width: 100%;
}
.navbar.has-shadow {
  box-shadow: 0 2px 0 0 #ffffff;
}
.navbar.is-transparent {
  background-color: transparent;
}

.is-fixed-bottom,
.is-fixed-top {
  left: 0;
  position: fixed;
  right: 0;
  z-index: 70;
}

.is-fixed-bottom {
  bottom: 0;
}
.is-fixed-bottom.has-shadow {
  box-shadow: 0 -2px 0 0 #ffffff;
}

.is-fixed-top {
  top: 0;
}

html.has-fixed-bottom,
body.has-fixed-bottom {
  padding-bottom: var(--header-height);
}

.fixed-message__text {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
@media only screen and (max-width: 798px) {
  .fixed-message__text {
    width: 100%;
  }
}

@media only screen and (max-width: 798px) {
  .fixed-message__button {
    padding-bottom: 20px;
    width: 100%;
  }
}
.fixed-message__button .button {
  min-height: 2.25em;
  height: auto;
}

.navbar-brand,
.navbar-tabs {
  align-items: stretch;
  display: flex;
  flex-shrink: 0;
  min-height: 3.25rem;
}

.navbar-tabs {
  -webkit-overflow-scrolling: touch;
  max-width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
}

.navbar-burger {
  color: inherit;
  cursor: pointer;
  display: block;
  height: 3.25rem;
  position: relative;
  width: 3.25rem;
  margin-left: auto;
}
.navbar-burger span {
  background-color: currentColor;
  display: block;
  height: 1px;
  left: calc(50% - 8px);
  position: absolute;
  transform-origin: center;
  transition-duration: 86ms;
  transition-property: background-color, opacity, transform;
  transition-timing-function: ease-out;
  width: 16px;
}
.navbar-burger span:nth-child(1) {
  top: calc(50% - 6px);
}
.navbar-burger span:nth-child(2) {
  top: calc(50% - 1px);
}
.navbar-burger span:nth-child(3) {
  top: calc(50% + 4px);
}
.navbar-burger:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.navbar-menu {
  display: none;
}

.navbar-item {
  display: block;
  line-height: 1.5;
  padding: 0;
  position: relative;
}

.navbar-link {
  display: block;
  line-height: 1.5;
  padding: 1rem 0.75rem;
  position: relative;
}

a.navbar-item,
.navbar-link {
  cursor: pointer;
}

.navbar-item {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
}
.navbar-item img {
  max-height: 1.75rem;
}
.navbar-item.is-expanded {
  flex-grow: 1;
  flex-shrink: 1;
}
.navbar-item.is-tab {
  border-bottom: 1px solid transparent;
  min-height: 3.25rem;
  padding-bottom: calc(0.5rem - 1px);
}
.navbar-item.is-tab:hover {
  border-bottom-color: #69588d;
}
.navbar-item.is-tab.is-active {
  border-bottom-color: #69588d;
  border-bottom-style: solid;
  border-bottom-width: 3px;
  padding-bottom: calc(0.5rem - 3px);
}

.navbar-content {
  flex-grow: 1;
  flex-shrink: 1;
}

.navbar-link:not(.is-arrowless) {
  padding-right: 2.5em;
}
.navbar-link:not(.is-arrowless)::after {
  right: 1em;
}

.navbar-dropdown {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.navbar-dropdown .navbar-link,
.navbar-dropdown .navbar-item {
  color: #414042;
  font-size: 12px;
  text-transform: none;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.navbar-dropdown .navbar-link:hover,
.navbar-dropdown .navbar-item:hover {
  color: #5b4f7b;
}
.navbar-dropdown .navbar-link {
  padding-top: 0;
}

.navbar-divider {
  background-color: #ffffff;
  border: none;
  display: none;
  height: 2px;
  margin: 0.5rem 0;
}

@media only screen and (max-width: 798px) {
  .navbar > .container {
    display: block;
  }

  .navbar-brand .navbar-item,
.navbar-tabs .navbar-item {
    align-items: center;
    display: flex;
  }

  .navbar-link::after {
    display: none;
  }

  .navbar-menu {
    background-color: white;
    box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
    padding: 0.5rem 0;
  }

  .navbar.is-fixed-bottom-touch, .navbar.is-fixed-top-touch {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 70;
  }
  .navbar.is-fixed-bottom-touch {
    bottom: 0;
  }
  .navbar.is-fixed-bottom-touch.has-shadow {
    box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
  }
  .navbar.is-fixed-top-touch {
    top: 0;
  }
  .navbar.is-fixed-top .navbar-menu, .navbar.is-fixed-top-touch .navbar-menu {
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 3.25rem);
    overflow: auto;
  }

  html.has-navbar-fixed-top-touch,
body.has-navbar-fixed-top-touch {
    padding-top: 3.25rem;
  }
  html.has-navbar-fixed-bottom-touch,
body.has-navbar-fixed-bottom-touch {
    padding-bottom: 3.25rem;
  }
}
@media only screen and (min-width: 799px) {
  .navbar,
.navbar-menu,
.navbar-start,
.navbar-end {
    align-items: stretch;
    display: flex;
  }

  .navbar {
    min-height: 3.25rem;
  }
  .navbar.is-spaced {
    padding: 1rem 2rem;
  }
  .navbar.is-spaced .navbar-start,
.navbar.is-spaced .navbar-end {
    align-items: center;
  }
  .navbar.is-spaced a.navbar-item,
.navbar.is-spaced .navbar-link {
    border-radius: 4px;
  }
  .navbar.is-transparent a.navbar-item:hover, .navbar.is-transparent a.navbar-item.is-active,
.navbar.is-transparent .navbar-link:hover,
.navbar.is-transparent .navbar-link.is-active {
    background-color: transparent !important;
  }
  .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link {
    background-color: transparent !important;
  }

  .navbar-burger {
    display: none;
  }

  .navbar-item,
.navbar-link {
    align-items: center;
    display: flex;
  }

  .navbar-item {
    display: flex;
  }
  .navbar-item.has-dropdown, .navbar-item.has-mega-menu {
    align-items: stretch;
  }
  .navbar-item.has-dropdown:hover .navbar-dropdown, .navbar-item.has-mega-menu:hover .navbar-dropdown {
    visibility: visible;
    opacity: 1;
    display: block;
  }
  .navbar-item.has-dropdown a:after, .navbar-item.has-mega-menu a:after {
    font-size: 15px;
  }
  .navbar-item.has-dropdown-up .navbar-link::after {
    transform: rotate(135deg) translate(0.25em, -0.25em);
  }
  .navbar-item.has-dropdown-up .navbar-dropdown {
    border-top: none;
    bottom: 100%;
    box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1);
    top: auto;
  }
  .navbar-item.is-active:hover .navbar-dropdown .navbar.is-spaced, .navbar-item.is-active:hover .navbar-dropdown.is-boxed, .navbar-item.is-hoverable:hover .navbar-dropdown .navbar.is-spaced, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .has-submenu input:checked ~ .navbar-submenu {
    display: block;
  }

  .has-submenu label .navbar-link::after {
    top: 37%;
  }

  .has-submenu input:checked + label .navbar-link::after {
    transform: translateY(-60%) rotate(180deg);
  }

  .dropdown-style-horizontal .navbar-item.is-active, .dropdown-style-horizontal .navbar-item.is-hoverable:hover .navbar-dropdown .section {
    display: flex;
    flex-wrap: wrap;
  }

  .navbar-menu {
    flex-grow: 1;
    flex-shrink: 0;
  }

  .navbar-start {
    justify-content: flex-start;
    margin-right: auto;
  }

  .navbar-end {
    justify-content: flex-end;
    margin-left: auto;
  }

  .navbar-dropdown {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: none;
    background-color: #ffffff;
    box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
    display: none;
    left: 0;
    position: absolute;
    top: 100%;
    z-index: 20;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
  }
  .navbar-dropdown.navbar-dropdown--below-parent {
    top: 90%;
  }
  .navbar-dropdown.is-right {
    left: auto;
    right: 0;
  }
  .navbar-dropdown.is-vertical {
    padding: 1rem 0.8em;
    max-width: 300px;
    min-width: 200px;
  }
  .navbar-dropdown.is-horizontal {
    padding: 1.2em 0;
    width: 100%;
  }
  .navbar-dropdown .navbar-link span {
    max-width: 80%;
  }

  .show-nested-dropdown .has-submenu .navbar-submenu {
    display: block;
  }

  .navbar-link::after {
    transition: transform 0.2s linear;
  }

  .has-dropdown:hover > .header__link,
.has-dropdown:hover > .header__link > a,
.has-mega-menu:hover > .header__link,
.has-mega-menu:hover > .header__link > a {
    color: #69588d;
  }
  .has-dropdown:hover > .navbar-link::after,
.has-mega-menu:hover > .navbar-link::after {
    transform: translateY(-60%) rotate(180deg);
  }

  .horizontal-dropdown__column .navbar-submenu {
    margin-bottom: 0;
  }

  .navbar-submenu {
    display: none;
    margin-left: 20px;
    margin-top: 0;
    margin-bottom: 10px;
    border-left: 2px solid rgba(65, 64, 66, 0.3);
  }
  .navbar-submenu li:first-child .navbar-item {
    padding-top: 0;
  }
  .navbar-submenu li:last-child .navbar-item {
    padding-bottom: 0;
  }
  .navbar-submenu .navbar-item,
.navbar-submenu .navbar-link {
    white-space: normal;
    padding: 10px 15px;
  }

  .has-small-vertical-spacing .menu__heading {
    padding-bottom: 5px;
  }
  .has-small-vertical-spacing .navbar-item {
    padding-top: 0;
    padding-bottom: 5px;
  }
  .has-small-vertical-spacing .navbar-link {
    padding-bottom: 5px;
  }
  .has-small-vertical-spacing > .navbar-item:last-child {
    padding-bottom: 0;
  }

  .has-medium-vertical-spacing .menu__heading {
    padding-bottom: 10px;
  }
  .has-medium-vertical-spacing .navbar-item {
    padding-top: 0;
    padding-bottom: 10px;
  }
  .has-medium-vertical-spacing .navbar-link {
    padding-bottom: 10px;
  }
  .has-medium-vertical-spacing > .navbar-item:last-child {
    padding-bottom: 0;
  }

  .has-large-vertical-spacing .menu__heading {
    padding-bottom: 15px;
  }
  .has-large-vertical-spacing .navbar-item {
    padding-top: 0;
    padding-bottom: 15px;
  }
  .has-large-vertical-spacing .navbar-link {
    padding-bottom: 15px;
  }
  .has-large-vertical-spacing > .navbar-item:last-child {
    padding-bottom: 0;
  }

  .navbar-divider {
    display: block;
  }

  .navbar > .container .navbar-brand,
.container > .navbar .navbar-brand {
    margin-left: -0.75rem;
  }
  .navbar > .container .navbar-menu,
.container > .navbar .navbar-menu {
    margin-right: -0.75rem;
  }

  .navbar.is-fixed-bottom-desktop, .navbar.is-fixed-top-desktop {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 70;
  }
  .navbar.is-fixed-bottom-desktop {
    bottom: 0;
  }
  .navbar.is-fixed-bottom-desktop.has-shadow {
    box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
  }
  .navbar.is-fixed-top-desktop {
    top: 0;
  }

  html.has-navbar-fixed-top-desktop,
body.has-navbar-fixed-top-desktop {
    padding-top: 3.25rem;
  }
  html.has-navbar-fixed-bottom-desktop,
body.has-navbar-fixed-bottom-desktop {
    padding-bottom: 3.25rem;
  }
  html.has-spaced-navbar-fixed-top,
body.has-spaced-navbar-fixed-top {
    padding-top: 5.25rem;
  }
  html.has-spaced-navbar-fixed-bottom,
body.has-spaced-navbar-fixed-bottom {
    padding-bottom: 5.25rem;
  }

  .navbar-item.has-dropdown:hover .navbar-link, .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: transparent;
  }
}
.box-shadow-false .navbar-dropdown,
.box-shadow-false .mega-menu {
  box-shadow: none;
}

/* # Pagination
================================================== */
.paginate {
  display: inline-block;
}
@media only screen and (max-width: 798px) {
  .paginate {
    width: 100%;
    margin-bottom: 20px;
  }
}

.pagination {
  font-size: 1rem;
  margin: -0.25rem;
}
.pagination .pagination-previous {
  margin-right: 16px;
}
.pagination .pagination-next {
  margin-left: 16px;
}
.pagination.is-small {
  font-size: 0.75rem;
}
.pagination.is-medium {
  font-size: 1.25rem;
}
.pagination.is-large {
  font-size: 1.5rem;
}
.pagination.is-rounded .pagination-previous,
.pagination.is-rounded .pagination-next {
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 290486px;
}
.pagination.is-rounded .pagination-link {
  border-radius: 290486px;
}

.pagination,
.pagination-list {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
}

.pagination-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis {
  font-size: 1em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  justify-content: center;
  margin: 0.25rem;
  text-align: center;
}

.pagination-previous,
.pagination-next,
.pagination-link {
  border-color: rgba(65, 64, 66, 0.2);
  color: #414042;
  min-width: 2.25em;
}
.pagination-previous:hover,
.pagination-next:hover,
.pagination-link:hover {
  border-color: #5b4f7b;
  color: #5b4f7b;
}
.pagination-previous:focus,
.pagination-next:focus,
.pagination-link:focus {
  border-color: #5b4f7b;
}
.pagination-previous:active,
.pagination-next:active,
.pagination-link:active {
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2);
}
.pagination-previous[disabled],
.pagination-next[disabled],
.pagination-link[disabled] {
  background-color: #dbdbdb;
  border-color: #dbdbdb;
  box-shadow: none;
  color: #7a7a7a;
  opacity: 0.5;
}

.pagination-previous,
.pagination-next {
  padding-left: 0.75em;
  padding-right: 0.75em;
  white-space: nowrap;
}

.pagination-link.is-current {
  background-color: #69588d;
  border-color: #69588d;
  color: #ffffff;
}

.pagination-ellipsis {
  color: #b5b5b5;
  pointer-events: none;
}

@media only screen and (max-width: 798px) {
  .pagination .pagination-previous,
.pagination .pagination-next {
    width: calc(50% - 10px);
    margin-left: 5px;
    margin-right: 5px;
  }
  .pagination.paginate--both {
    flex-wrap: wrap;
  }
  .pagination.paginate--both .pagination-previous,
.pagination.paginate--both .pagination-next {
    order: 2;
  }
}
@media only screen and (min-width: 799px) {
  .pagination-list {
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: flex-start;
  }

  .pagination {
    justify-content: space-between;
  }
  .pagination.is-center .pagination-previous {
    order: 1;
  }
  .pagination.is-center .pagination-list {
    justify-content: center;
    order: 2;
  }
  .pagination.is-center .pagination-next {
    order: 3;
  }
  .pagination.is-right .pagination-previous {
    order: 1;
  }
  .pagination.is-right .pagination-next {
    order: 2;
  }
  .pagination.is-right .pagination-list {
    justify-content: flex-end;
    order: 3;
  }
}
.pagination-button__infinite-scroll:not(.is-loading) {
  display: none;
}

/* # Tabs
================================================== */
.tabs {
  -webkit-overflow-scrolling: touch;
  align-items: stretch;
  display: flex;
  justify-content: flex-start;
}
.tabs a {
  align-items: center;
  border-bottom-color: #f0edea;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  color: #414042;
  display: flex;
  justify-content: center;
  margin-bottom: -1px;
  padding: 0.5em 1em;
  vertical-align: top;
}
.tabs a:hover {
  border-bottom-color: #363636;
  color: #363636;
}
.tabs a:hover * {
  color: #363636;
}
.tabs li {
  display: block;
  margin-top: 0.25em;
}
.tabs li.active a, .tabs li.is-active a {
  border-bottom-color: #69588d;
  color: #69588d;
}
.tabs li.active a *, .tabs li.is-active a * {
  color: #363636;
}
.tabs li a * {
  margin-bottom: 0;
  font-size: 1rem;
}
.tabs ul {
  align-items: center;
  border-bottom-color: #f0edea;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: flex-start;
  margin-left: 0;
}
.tabs ul.is-left {
  padding-right: 0.75em;
}
.tabs ul.is-center {
  flex: none;
  justify-content: center;
  padding-left: 0.75em;
  padding-right: 0.75em;
}
.tabs ul.is-right {
  justify-content: flex-end;
  padding-left: 0.75em;
}
.tabs .icon:first-child {
  margin-right: 0.5em;
}
.tabs .icon:last-child {
  margin-left: 0.5em;
}
.tabs.is-center ul {
  justify-content: center;
}
.tabs.is-right ul {
  justify-content: flex-end;
}
.tabs.is-small {
  font-size: 0.75rem;
}
.tabs.is-medium {
  font-size: 1.25rem;
}
.tabs.is-large {
  font-size: 1.5rem;
}

.tabs-content {
  padding-left: 0;
  margin-left: 0;
  list-style: none;
  width: 100%;
}
.tabs-content > li {
  display: none;
  width: 100%;
}
.tabs-content > li.is-active, .tabs-content > li.active {
  display: block;
}

ul.tabs {
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom-color: #f0edea;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding-left: 0;
  margin-left: 0;
}
ul.tabs a {
  align-items: center;
  border-bottom-color: #f0edea;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  color: #414042;
  display: flex;
  justify-content: center;
  margin-bottom: -1px;
  padding: 0.5em 1em;
  vertical-align: top;
}
ul.tabs a:hover {
  border-bottom-color: #363636;
  color: #363636;
}
ul.tabs li {
  display: block;
  margin-top: 0.25em;
}
ul.tabs li.active a, ul.tabs li.is-active a {
  border-bottom-color: #69588d;
  color: #69588d;
}
ul.tabs li a.active,
ul.tabs li a.is-active {
  border-bottom-color: #69588d;
  color: #69588d;
}
ul.tabs li a.active *,
ul.tabs li a.is-active * {
  color: #69588d;
}

ul.tabs-content {
  margin-left: 0;
}ul.tabs a {
    padding-left: 0;
  }ul.tabs.is-fullwidth li {
  flex-grow: 1;
  flex-shrink: 0;
}
ul.tabs.is-toggle a {
  border-color: #f0edea;
  border-style: solid;
  border-width: 1px;
  margin-bottom: 0;
  position: relative;
}
ul.tabs.is-toggle a:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  z-index: 2;
}
ul.tabs.is-toggle li + li {
  margin-left: -1px;
}
ul.tabs.is-toggle li:first-child a {
  border-radius: 4px 0 0 4px;
}
ul.tabs.is-toggle li:last-child a {
  border-radius: 0 4px 4px 0;
}
ul.tabs.is-toggle li.is-active a {
  background-color: #69588d;
  border-color: #69588d;
  color: #ffffff;
  z-index: 1;
}
ul.tabs.is-toggle ul {
  border-bottom: none;
}
ul.tabs.is-toggle.is-toggle-rounded li:first-child a {
  border-bottom-left-radius: 290486px;
  border-top-left-radius: 290486px;
  padding-left: 1.25em;
}
ul.tabs.is-toggle.is-toggle-rounded li:last-child a {
  border-bottom-right-radius: 290486px;
  border-top-right-radius: 290486px;
  padding-right: 1.25em;
}

.product_section [data-bv-show=rating_summary] {
  height: auto;
  margin-top: 14px;
}
@media (min-width: 1025px) {
  .product_section [data-bv-show=rating_summary] {
    min-height: 19px;
  }
}
@media (max-width: 1024px) {
  .product_section [data-bv-show=rating_summary] {
    min-height: 35px;
  }
}

/* Reviews and Questions */
@media only screen and (min-width: 799px) {
  .product__blocks .bv-reviews .tabs {
    margin-bottom: 0px;
  }
  .product__blocks .bv-reviews .tabs li a {
    border: 1px solid transparent;
    font-size: 22px;
    min-width: 188px;
    height: 40px;
    background-color: #f1ede9;
    color: #414042;
  }
  .product__blocks .bv-reviews .tabs li a:hover {
    border-color: #eee #eee #ddd;
    background-color: #eee;
  }
  .product__blocks .bv-reviews .tabs li.is-active a {
    background-color: #fff;
    color: #433e3a;
    border-color: #f1ede9 transparent transparent;
  }
  .product__blocks .bv-reviews .tabs li.is-active:last-child a {
    border-right-color: #f1ede9;
  }
  .product__blocks .bv-reviews .tabs li.is-active:first-child a {
    border-left-color: #f1ede9;
  }
  .product__blocks .bv-reviews .tabs-content {
    border: 1px solid #f1ede9;
    border-top: none;
  }
}
@media only screen and (max-width: 798px) {
  .product__blocks .bv-reviews .tabs {
    display: none;
  }
  .product__blocks .bv-reviews .tabs-content > a {
    display: block !important;
    position: relative;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 15px;
    margin-top: 5px;
    border-top: 1px solid #f1ede9;
    color: #414042;
  }
  .product__blocks .bv-reviews .tabs-content > a.tab-active:after {
    transform: translateY(-60%) rotate(180deg);
  }
  .product__blocks .bv-reviews .tabs-content > a:after {
    font-family: "flex-icon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    display: block;
    pointer-events: none;
    position: absolute;
    transform-origin: center;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 0.8em;
  }
  .product__blocks .bv-reviews .tabs-content > a:first-child {
    margin-top: 0px;
  }
  .product__blocks .bv-reviews .tabs-content > li {
    display: block !important;
  }
  .product__blocks .bv-reviews .tabs-content > li.is-active > div {
    display: block;
  }
  .product__blocks .bv-reviews .tabs-content > li > div {
    display: none;
  }
}

/* # Product
================================================== */
.shopify-product-reviews-badge {
  height: 30px;
  display: block;
}

.reviews-visibility-false {
  display: none;
}

@media only screen and (max-width: 798px) {
  .product__images {
    margin-bottom: 40px;
  }
}
.product__images .product-gallery.not-active-flickity .largecommonclass {
  display: block !important;
}
.product__images .product-gallery.not-active-flickity .thumbcommonclass {
  display: block !important;
}

.product-gallery__main,
.product-gallery__thumbnails.is-slide-nav--true {
  opacity: 0;
  transition: ease-in-out 0.2s opacity;
}
.product-gallery__main.flickity-enabled, .product-gallery__main.vertical-slider-enabled,
.product-gallery__thumbnails.is-slide-nav--true.flickity-enabled,
.product-gallery__thumbnails.is-slide-nav--true.vertical-slider-enabled {
  opacity: 1;
}
.product-gallery__main .largecommonclass,
.product-gallery__thumbnails.is-slide-nav--true .largecommonclass {
  display: none !important;
}
.product-gallery__main .largecommonclass.flickity-active,
.product-gallery__thumbnails.is-slide-nav--true .largecommonclass.flickity-active {
  display: block !important;
}

.product-gallery__image {
  width: 100%;
  height: auto;
}
.product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
}
.product-gallery__image video {
  display: block;
}

.product-gallery__link {
  display: block;
}

.zoom-container {
  width: 100%;
  display: block;
}

.product-gallery__nav .gallery-cell,
.is-slide-nav--true .product-gallery__thumbnail {
  opacity: 0.3;
}
.product-gallery__nav .gallery-cell.is-nav-selected,
.is-slide-nav--true .product-gallery__thumbnail.is-nav-selected {
  opacity: 1;
}

.product-thumbnail {
  padding-top: 10px;
  line-height: 1.2;
}

.product-thumbnail__vendor,
.product-thumbnail__price {
  display: block;
}

.thumbnail__caption {
  padding: 0 3px;
}
@media screen and (max-width: 780px) {
  .thumbnail__caption .product-thumbnail > a {
    word-break: break-word;
  }
}

.thumbnail-swatch {
  min-height: 33px;
  display: flex;
  padding: 3px 3px 0;
}
.thumbnail-swatch.is-justify-left {
  margin-left: -5px;
}
.thumbnail-swatch.is-justify-right {
  margin-right: -5px;
}
.thumbnail-swatch .swatch {
  display: flex;
  box-sizing: border-box;
  border: 1px solid transparent;
  padding: 2px;
  margin: 0 3px;
}
.thumbnail-swatch .swatch:hover {
  border: 1px solid #000;
}
.thumbnail-swatch .swatch__style--circle,
.thumbnail-swatch .swatch__style--circle span,
.thumbnail-swatch .swatch__style--circle img {
  border-radius: 50%;
}
.thumbnail-swatch span {
  min-height: 20px;
  min-width: 20px;
  display: inline-block;
}
.thumbnail-swatch span img {
  max-width: 20px;
  max-height: 20px;
  display: block;
}
.thumbnail-swatch span .swatch__image--empty {
  display: none;
}

.product-gallery__thumbnails--bottom-slider {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.product-gallery__thumbnails--bottom-slider .flickity-button:disabled {
  display: none;
}
.product-gallery__thumbnails--bottom-slider .product-gallery__thumbnail {
  margin-right: 20px;
  width: 20%;
  text-align: center;
}

.product-gallery__thumbnails--bottom-thumbnails {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.product-gallery__thumbnails--bottom-thumbnails .product-gallery__thumbnail {
  cursor: pointer;
}
.product-gallery__thumbnails--bottom-thumbnails.is-slide-nav--false .product-gallery__thumbnail {
  margin-bottom: 20px;
  line-height: 0;
}
.product-gallery__thumbnails--bottom-thumbnails .flickity-button {
  display: none;
}
.product-gallery__thumbnails--bottom-thumbnails .thumbcommonclass {
  display: none !important;
}
.product-gallery__thumbnails--bottom-thumbnails .thumbcommonclass.flickity-active {
  display: block !important;
}

.product-gallery--right-thumbnails:not(.product-gallery--image-amount-1) {
  display: flex;
}
.product-gallery--right-thumbnails:not(.product-gallery--image-amount-1) .product-gallery__main {
  width: 85%;
  height: 100%;
}
.product-gallery--right-thumbnails:not(.product-gallery--image-amount-1) .product-gallery__thumbnails {
  width: 15%;
  margin-left: 20px;
}
.product-gallery--right-thumbnails:not(.product-gallery--image-amount-1) .product-gallery__thumbnail {
  width: 100%;
  margin-bottom: 20px;
}
.product-gallery--right-thumbnails:not(.product-gallery--image-amount-1) .product-gallery__thumbnail:last-child {
  margin-bottom: 0;
}

.product-gallery--left-thumbnails:not(.product-gallery--image-amount-1) {
  display: flex;
}
.product-gallery--left-thumbnails:not(.product-gallery--image-amount-1) .product-gallery__main {
  width: 85%;
  height: 100%;
  order: 2;
}
.product-gallery--left-thumbnails:not(.product-gallery--image-amount-1) .product-gallery__thumbnails {
  width: 15%;
  margin-right: 20px;
  order: 1;
}
.product-gallery--left-thumbnails:not(.product-gallery--image-amount-1) .product-gallery__thumbnail {
  width: 100%;
  margin-bottom: 20px;
}
.product-gallery--left-thumbnails:not(.product-gallery--image-amount-1) .product-gallery__thumbnail:last-child {
  margin-bottom: 0;
}

.product-gallery__thumbnails--right-thumbnails,
.product-gallery__thumbnails--left-thumbnails {
  width: 100%;
  margin: 10px;
  justify-content: center;
}
.product-gallery__thumbnails--right-thumbnails.is-slide-nav--true,
.product-gallery__thumbnails--left-thumbnails.is-slide-nav--true {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
.product-gallery__thumbnails--right-thumbnails.is-slide-nav--true::-webkit-scrollbar,
.product-gallery__thumbnails--left-thumbnails.is-slide-nav--true::-webkit-scrollbar {
  /* WebKit */
  width: 0;
  height: 0;
}
.product-gallery__thumbnails--right-thumbnails .product-gallery__thumbnail,
.product-gallery__thumbnails--left-thumbnails .product-gallery__thumbnail {
  width: 100%;
  margin: 0;
}
.product-gallery__thumbnails--right-thumbnails .product-gallery__thumbnail:last-child,
.product-gallery__thumbnails--left-thumbnails .product-gallery__thumbnail:last-child {
  margin-bottom: 0;
}
.product-gallery__thumbnails--right-thumbnails .product-gallery__thumbnail:before,
.product-gallery__thumbnails--left-thumbnails .product-gallery__thumbnail:before {
  line-height: 0;
  color: transparent;
  display: block;
  text-align: center;
  content: counter(carousel-cell);
}

.product__collections-list,
.product__type-list,
.product__tags-list {
  padding-bottom: 5px;
}
.product__collections-list.tags,
.product__type-list.tags,
.product__tags-list.tags {
  margin-bottom: 0;
}
.product__collections-list.tags .tag,
.product__type-list.tags .tag,
.product__tags-list.tags .tag {
  margin-bottom: 1rem;
}
.product__collections-list .product__classification-title,
.product__type-list .product__classification-title,
.product__tags-list .product__classification-title {
  margin-right: 0.5rem;
  margin-bottom: 1rem;
}

.savings {
  display: block;
}

.sold-out {
  color: rgba(65, 64, 66, 0.3);
}

.products-slider .flickity-button {
  display: flex;
}

/* # Product - image scroll
================================================== */
.product-template--image-scroll .product-gallery__main {
  opacity: 1;
}
.product-template--image-scroll .product-gallery__main:after {
  content: "flickity";
  display: none;
}
@media only screen and (min-width: 799px) {
  .product-template--image-scroll .product-gallery__main:after {
    content: "";
  }
}
.product-template--image-scroll .product-gallery__image {
  margin-bottom: 20px;
  opacity: 1 !important;
}
@media only screen and (min-width: 799px) {
  .product-template--image-scroll .product-gallery__thumbnails {
    display: none;
  }
}

/* # Product - Gallery
================================================== */
.product-gallery:hover .flickity-prev-next-button {
  opacity: 1;
}
@media only screen and (min-width: 799px) {
  .product-gallery .flickity-prev-next-button {
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
}
@media only screen and (max-width: 798px) {
  .product-gallery .flickity-prev-next-button.previous {
    left: -10px;
  }
  .product-gallery .flickity-prev-next-button.next {
    right: -10px;
  }
}
.product-gallery .flickity-page-dots {
  display: none;
}

@media only screen and (max-width: 798px) {
  .product-gallery--no-thumbnails .flickity-page-dots {
    display: block;
  }
}

.product-gallery__nav .gallery-cell {
  width: calc(20% - 10px);
  margin: 0 5px;
}

/* # Product - featured slideshow
================================================== */
.product-template--featured-slideshow .product-gallery__main {
  height: 90vh;
}
.product-template--featured-slideshow .product-gallery__link,
.product-template--featured-slideshow .image__container {
  height: 100%;
}
.product-template--featured-slideshow .product-gallery__image.is-selected img {
  height: 100%;
  opacity: 1;
}
.product-template--featured-slideshow .product-gallery__image {
  margin: 0 20px;
  width: 50%;
  height: 100%;
}
.product-template--featured-slideshow .product-gallery__image img {
  transition: height 0.2s linear;
  opacity: 0.8;
  height: 50%;
  width: 100%;
  object-fit: contain;
}
.product-template--featured-slideshow .product-gallery__image .image__container {
  display: flex;
  align-items: center;
}
.product-template--featured-slideshow .product__information.one-column-layout {
  max-width: calc(0.75 * 1200px);
  margin: 0 auto;
}
.product-template--featured-slideshow .product__information .description.bottom {
  padding-top: 20px;
}

.product-gallery__main.is-fade .flickity-slider .product-gallery__image {
  opacity: 0 !important;
  transition: opacity 1s ease !important;
}
.product-gallery__main.is-fade .flickity-slider .product-gallery__image.is-selected {
  opacity: 1 !important;
}

/* # Product - blocks
================================================== */
.block__related-products {
  width: 100%;
}

.block__product-reviews {
  min-width: 50%;
}

.dynamic-blocks--has-limit .section {
  width: 100%;
}
.dynamic-blocks--has-limit .section.has-background {
  width: calc(100% - 20px);
}

.section.product-info__block,
.section.product-gallery__block {
  display: flex;
  align-items: flex-start;
}

.block__product-gallery .product-gallery__container {
  width: 100%;
}

.product_section .has-product-sticker .sticker-holder__content {
  font-size: 16px;
}

/* # Related products
================================================== */
.related-products .products-slider .gallery-cell {
  padding: 0 10px;
}
@media only screen and (max-width: 798px) {
  .related-products .products-slider .gallery-cell {
    width: calc(50% - 20px);
  }
}

.recommended-products-section {
  visibility: hidden !important;
}

@media only screen and (min-width: 481px) {
  #shopify-section-product__main-0.block__recommended-products {
    padding-top: 64px;
  }
}
#shopify-section-product__main-0.block__recommended-products .recommended-products__title {
  font-size: 20px;
  color: #433E3A;
  line-height: 26px;
  letter-spacing: 3.5px;
}

/* # Product form
================================================== */

/* calculate button height with border from input */
.product__size-chart {
  float: right;
}

.product__notify-form {
  margin-bottom: 1.5rem;
  max-width: 350px;
}

.notify-form__success-message {
  margin: 0;
}

.select-container .selector-wrapper > select, .select-container .selector-wrapper > option {
  width: 50%;
  padding: 6px 12px;
}

.selector-wrapper {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.selector-wrapper:last-of-type {
  margin-bottom: 1.5rem;
}
.selector-wrapper label {
  margin-right: 10px;
  margin-bottom: 0;
}
.selector-wrapper label:not(:last-child) {
  margin-bottom: 0;
}

.items_left {
  margin-bottom: 1.5rem;
}

.quantity-wrapper .quantity-element {
  min-height: calc(44px - 2px);
}
.quantity-wrapper .quantity-input {
  text-align: center;
  width: 100%;
}
.quantity-wrapper .quantity-plus .icon,
.quantity-wrapper .quantity-minus .icon {
  padding: 0.3em;
}

.cart-warning {
  margin-top: 20px;
}

.add_to_cart.action_button {
  margin-bottom: 0;
}

.shopify-payment-button {
  position: relative;
}

.shopify-payment-button button {
  line-height: 1.2;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 0;
}div.shopify-payment-button__button {
    border-radius: 0;
  }.shopify-payment-button__button--branded,
.shopify-payment-button__button--unbranded {
  overflow: hidden;
  min-height: 44px;
}

button.shopify-payment-button__more-options {
  color: #414042;
  box-shadow: none;
  text-transform: none;
  font-size: 0.8rem;
  letter-spacing: 0;
  padding: 16px 0 28px;
  max-width: 80%;
  margin: 0 auto;
  font-weight: normal;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-style: normal;
}
button.shopify-payment-button__more-options:hover {
  background-color: transparent;
  border: none;
}

.purchase-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.product_section .smart-payment-button--true.product_form {
  max-width: 100%;
}

.product-quantity-box.purchase-details__quantity {
  margin-top: 12px;
}

@media only screen and (max-width: 798px) {
  .smart-payment-button--true .purchase-details {
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 798px) {
  .smart-payment-button--true .product-quantity-box.purchase-details__quantity {
    width: 100%;
    margin-right: 0;
  }
  .smart-payment-button--true .product-quantity-box.purchase-details__quantity .input.quantity {
    width: calc(100% - 88px);
  }
}

.smart-payment-button--false .purchase-details {
  align-items: flex-start;
}

.quantity-input.input {
  -moz-appearance: textfield;
  box-shadow: none;
  border: 0;
}
.quantity-input.input::-webkit-inner-spin-button, .quantity-input.input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

.quantity-plus.button,
.quantity-minus.button {
  background-color: #f2f2f2;
}
.quantity-plus.button:hover,
.quantity-minus.button:hover {
  background-color: #e0ddda;
}
.quantity-plus.button:hover .icon,
.quantity-minus.button:hover .icon {
  fill: #69588d;
}
.quantity-plus.button .icon,
.quantity-minus.button .icon {
  fill: #414042;
}

.quantity-plus.button[disabled],
.quantity-minus.button[disabled] {
  opacity: 1;
  background-color: rgba(242, 242, 242, 0.5);
}

.quantity-wrapper.field.has-addons .control:not(:last-child) {
  margin-right: 0;
}

.quantity-wrapper.quantity-style--box {
  border-radius: 0px;
}
.quantity-wrapper.quantity-style--box .quantity-minus {
  width: 44px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.quantity-wrapper.quantity-style--box .minus-control {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.quantity-wrapper.quantity-style--box .quantity-plus {
  width: 44px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.quantity-wrapper.quantity-style--box .plus-control {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.quantity-wrapper.quantity-style--box .quantity-input-control {
  width: 100%;
}
.quantity-wrapper.quantity-style--box .quantity-input-control input {
  border-top: thin solid #f0edea;
  border-bottom: thin solid #f0edea;
}
.quantity-wrapper.quantity-style--box .quantity-input-control--fill {
  width: 100%;
}
.quantity-wrapper.quantity-style--box .quantity-input {
  width: 100%;
}
.quantity-wrapper.quantity-style--box.is-medium .quantity-element {
  min-height: auto;
  min-width: 38px;
  height: 38px;
}
.quantity-wrapper.quantity-style--box.is-medium .quantity-plus,
.quantity-wrapper.quantity-style--box.is-medium .quantity-minus {
  width: 38px;
}

.quantity-wrapper.quantity-style--stacked {
  position: relative;
  border-radius: 0px !important;
}
.quantity-wrapper.quantity-style--stacked .quantity-input-control {
  width: calc(100% - 48px);
}
.quantity-wrapper.quantity-style--stacked .minus-control {
  position: absolute;
  height: calc(44px / 2);
  bottom: 0;
  right: 0;
  z-index: 3;
  margin-right: 0;
  width: 48px;
}
.quantity-wrapper.quantity-style--stacked .plus-control {
  position: absolute;
  min-height: calc(44px / 2);
  top: 0;
  right: 0;
  z-index: 3;
  width: 48px;
}
.quantity-wrapper.quantity-style--stacked .quantity-input {
  border-left: thin solid #f0edea;
  border-top: thin solid #f0edea;
  border-bottom: thin solid #f0edea;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  text-align: center;
  width: 100%;
}
.quantity-wrapper.quantity-style--stacked .quantity-minus {
  height: calc(44px / 2);
  min-height: calc(44px / 2);
  width: 48px;
  border-radius: 0;
  border-left: 0;
  border-bottom: thin solid #f0edea;
  border-right: thin solid #f0edea;
  border-bottom-right-radius: 0px !important;
  margin-right: 1px;
  z-index: 4;
  opacity: 1 !important;
}
.quantity-wrapper.quantity-style--stacked .quantity-plus {
  height: calc(44px / 2);
  min-height: calc(44px / 2);
  width: 48px;
  border: 0;
  border-left: 0;
  border-top: thin solid #f0edea;
  border-right: thin solid #f0edea;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  z-index: 4;
}

.product-quantity-box.purchase-details__quantity {
  margin-right: 10px;
  width: calc(50% - 12px);
}
@media only screen and (max-width: 480px) {
  .product-quantity-box.purchase-details__quantity {
    width: 100%;
    margin-right: 0;
  }
}
.product-quantity-box.purchase-details__quantity input.quantity {
  padding-top: 11px;
  padding-bottom: 11px;
  line-height: 1.4;
  margin-bottom: 0;
  width: calc(100% - 88px);
  min-height: 44px;
}

@media only screen and (max-width: 798px) {
  .smart-payment-button--true .product-quantity-box.purchase-details__quantity {
    width: 100%;
    margin-right: 0;
  }
  .smart-payment-button--true .product-quantity-box.purchase-details__quantity .input.quantity {
    width: calc(100% - 88px);
  }
}

.purchase-details__buttons {
  display: flex;
  flex: 1 0 calc(50% - 12px);
  align-items: flex-end;
  flex-wrap: wrap;
  margin-left: 6px;
}
@media only screen and (max-width: 798px) {
  .purchase-details__buttons {
    margin-top: 20px;
    margin-left: 12px;
    flex: 1 0 calc(50% - 12px);
  }
}
@media only screen and (max-width: 480px) {
  .purchase-details__buttons {
    margin-top: 12px;
    margin-left: 0;
    flex: 1 0 100%;
  }
}
.purchase-details__buttons .button {
  width: 100%;
  height: auto;
  align-items: center;
  min-height: 44px;
}.purchase-details__buttons .shopify-payment-button {
  flex: 1 0 100%;
  margin-bottom: 0;
  max-width: 100%;
}
@media only screen and (min-width: 1401px) {
  .purchase-details__buttons .shopify-payment-button {
    flex: 1 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
.purchase-details__buttons .action_button.action_button--secondary {
  background-color: transparent;
  border: 1px solid #f0edea;
  color: #414042;
  box-shadow: none;
  line-height: 1.2;
  padding: 10px 0;
  flex: 1 0 100%;
  margin: 0;
  max-width: 100%;
}
@media only screen and (min-width: 1401px) {
  .purchase-details__buttons .action_button.action_button--secondary {
    flex: 1 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
    margin-right: 8px;
  }
}
@media only screen and (max-width: 798px) {
  .purchase-details__buttons .action_button.action_button--secondary {
    margin-bottom: 12px;
  }
}
.purchase-details__buttons .action_button.action_button--secondary:hover, .purchase-details__buttons .action_button.action_button--secondary:focus {
  border: 1px solid #ce8069;
  background-color: #ce8069;
  color: #fff;
}

.purchase-details .purchase-details__spb--true {
  flex: 1 0 100%;
  align-items: flex-start;
  margin-top: 12px;
  margin-left: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .purchase-details .purchase-details__spb--true {
    width: 100%;
  }
}
@media only screen and (max-width: 798px) {
  .purchase-details .purchase-details__spb--true {
    margin-left: 0;
    margin-bottom: 0;
  }
}
.purchase-details .purchase-details__spb--true .action_button.action_button--secondary {
  flex: 1 0 calc(50% - 12px);
  margin: 0 6px 0 0;
  max-width: calc(calc(50% - 12px));
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .purchase-details .purchase-details__spb--true .action_button.action_button--secondary {
    width: 100% !important;
    max-width: calc(50% - 12px) !important;
  }
}
@media only screen and (max-width: 798px) {
  .purchase-details .purchase-details__spb--true .action_button.action_button--secondary {
    flex: 1 0 100%;
    margin-right: 0px;
    margin-top: 0;
    margin-bottom: 12px;
    max-width: 100%;
  }
}
.purchase-details .purchase-details__spb--true .shopify-payment-button {
  margin: 0 0 0 6px;
  max-width: calc(calc(50% - 12px));
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .purchase-details .purchase-details__spb--true .shopify-payment-button {
    width: 100% !important;
    max-width: calc(50% - 12px) !important;
  }
}
@media only screen and (max-width: 798px) {
  .purchase-details .purchase-details__spb--true .shopify-payment-button {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 10px;
    max-width: 100%;
  }
}
.purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded {
  font-size: 1rem;
  border-radius: 2px;
  width: 100%;
  line-height: inherit;
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0);
}
.purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded, .purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded:link, .purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded:visited {
  color: #fff;
  background-color: #ce8069;
  border-color: rgba(0,0,0,0);
}
.purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded:hover, .purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded.is-hovered {
  color: #fff;
  border-color: rgba(0,0,0,0) !important;
  background-color: #d79f8e;
}
.purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded:focus, .purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded.is-focused {
  color: #fff;
  border-color: rgba(0,0,0,0);
  background-color: #d79f8e;
}
.purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded:focus:not(:active), .purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(105, 88, 141, 0.25);
}
.purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded:active, .purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded.is-active {
  color: #fff;
  border-color: rgba(0,0,0,0);
  background-color: #d79f8e;
}
.purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded.is-inverted {
  color: #ce8069;
  background-color: #fff;
  border-color: #ce8069;
}
.purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded.is-small {
  font-size: 0.75rem;
}
.purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded.is-normal {
  font-size: 1rem;
}
.purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded.is-medium {
  font-size: 1.25rem;
}
.purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded.is-large {
  font-size: 1.5rem;
  line-height: 1.25em;
  width: 100%;
}
.purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-paymeny-button__button--branded {
  border-radius: 2px;
}
.purchase-details .purchase-details__spb--false {
  height: 44px;
  margin: 12px 0 0;
  display: inline-block;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .purchase-details .purchase-details__spb--false {
    width: 100%;
  }
}
.purchase-details .purchase-details__spb--false .button--add-to-cart {
  height: inherit;
  width: 50%;
}
@media only screen and (max-width: 798px) {
  .purchase-details .purchase-details__spb--false .button--add-to-cart {
    width: 100%;
  }
}
.purchase-details.has-quantity-box .purchase-details__spb--false {
  max-width: 50%;
}
@media only screen and (max-width: 798px) {
  .purchase-details.has-quantity-box .purchase-details__spb--false {
    max-width: 100%;
  }
}
.purchase-details.has-quantity-box .purchase-details__spb--false .button--add-to-cart {
  width: 100%;
}

/* Animation for checkmark on add to cart button */
.button--add-to-cart {
  position: relative;
}
.button--add-to-cart .text {
  display: block;
  animation-duration: 0.5s;
}
.button--add-to-cart .fadeInDown.text {
  animation-duration: 0.8s;
}
.button--add-to-cart .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.button--add-to-cart .checkmark path {
  stroke-dasharray: 19.79 19.79;
  stroke-dashoffset: 19.79;
  stroke: #fff;
  opacity: 0;
}
.button--add-to-cart .checkmark.checkmark-active path {
  animation: drawCheckmark 0.5s linear alternate forwards;
}

@keyframes drawCheckmark {
  from {
    stroke-dashoffset: 19.79;
    opacity: 1;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
.ie button .checkmark path {
  stroke-dashoffset: 0;
  opacity: 0;
}
.ie button .checkmark.checkmark-active path {
  animation: fadeCheckmark 0.5s linear alternate forwards;
}
@keyframes fadeCheckmark {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  button .checkmark path {
    stroke-dashoffset: 0;
    opacity: 0;
  }
  button .checkmark.checkmark-active path {
    animation: fadeCheckmark 0.5s linear alternate forwards;
  }

  @keyframes fadeCheckmark {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
.egift-qty {
  display: none;
}

.product-egift .shopify-product-form .select-container > label {
  display: none;
}
@media only screen and (max-width: 480px) {
  .product-egift .shopify-product-form .purchase-details.has-quantity-box .purchase-details__buttons {
    max-width: 80%;
  }
}
.product-egift .shopify-product-form .product-quantity-box.purchase-details__quantity {
  border: 0;
  max-width: 55px;
}
.product-egift .shopify-product-form .product-quantity-box.purchase-details__quantity .quantity-wrapper {
  display: none;
}
.product-egift .pdp-tabs {
  border: 0;
}
.product-egift .egift-qty {
  display: block;
  font-size: 15px;
  line-height: 45px;
  color: #414042;
}

.product_section {
  justify-content: space-between;
}
.product_section .base-img,
.product_section .selected-swatch {
  display: none;
}
.product_section .description.content {
  margin-bottom: 0;
}

.e-gift {
  height: auto;
  width: 100%;
}
@media only screen and (min-width: 481px) {
  .e-gift {
    max-width: 324px;
  }
}
.e-gift:after {
  display: none !important;
}
.e-gift .nice-select {
  position: relative;
  outline: none;
}
.e-gift .nice-select .current {
  border: 1px solid #E1DCD5;
  width: 100%;
  display: block;
  height: 46px;
  font-size: 15px;
  line-height: 23px;
  color: #414042;
  padding: 11px 0 11px 16px;
  position: relative;
  cursor: pointer;
}
.e-gift .nice-select .current:after {
  position: absolute;
  top: 50%;
  transform: tranlateY(-50%);
  right: 18px;
  color: #414042;
}
.e-gift .nice-select .list {
  position: absolute;
  width: 100%;
  background: #FFF;
  border: 1px solid #E2E2E2;
  z-index: 9;
  padding: 0 0 16px 16px;
  border-top: 0;
  display: none;
}
.e-gift .nice-select .list li {
  font-size: 15px;
  line-height: 23px;
  color: #414042;
  padding-top: 16px;
  cursor: pointer;
}
.e-gift .nice-select .list li:hover {
  color: #673595;
}
.e-gift .nice-select.open .list {
  display: block;
}

#rc_container {
  margin-bottom: 30px;
}

.rc_popup__hover {
  cursor: pointer;
  display: flex;
  padding-left: 8px;
}

@media not all and (min-resolution: 0.001dpcm) {
  .rc_popup__hover {
    width: 452px;
    height: 21px;
  }
}
.rc_popup__icon {
  margin-right: 4px;
}

@media only screen and (max-width: 850px) {
  .rc_popup__hover {
    max-height: 22px;
  }

  img.rc_popup__icon {
    width: 18px;
    height: 22px;
  }
}
.rc_block {
  padding: 8px;
}
.rc_block label {
  color: #433e3a;
}
.rc_block select {
  border-radius: 0;
  font-size: 14px;
  margin-left: 4px;
}

.rc_block__type--active {
  background-color: #f8f8f8;
}
.rc_block__type--active label {
  color: #777777;
}

.rc-control {
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 16px;
}
.rc-control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.rc-control input:checked ~ .rc-control-indicator:after {
  display: block;
}
.rc-control input:checked ~ .rc-control-indicator {
  background: #67359f;
}
.rc-control input:disabled ~ .rc-control-indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.rc-control:hover input:not([disabled]):checked ~ .rc-control-indicator {
  background: #67359f;
}
.rc-control:hover input ~ .rc-control-indicator {
  background: #cccccc;
}
.rc-control input:checked:focus ~ .rc-control-indicator {
  background: #67359f;
}
.rc-control input:focus ~ .rc-control-indicator {
  background: #cccccc;
}

.rc-control-indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 16px;
  width: 16px;
  background: #ffffff;
  border: 1px solid #433e3a;
}
.rc-control-indicator:after {
  box-sizing: unset;
  content: "";
  position: absolute;
  display: none;
}

.rc_block__type__options {
  padding-left: 30px;
}

.rc-control-radio .rc-control-indicator {
  border-radius: 50%;
}
.rc-control-radio .rc-control-indicator:after {
  left: 5px;
  top: 5px;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #ffffff;
  transition: background 250ms;
}
.rc-control-radio input:disabled ~ .rc-control-indicator:after {
  background: #7b7b7b;
}

.rc-lightbox-content {
  display: none;
  text-align: center;
}
.rc-lightbox-content .fancybox-button svg {
  background-color: rgba(10, 10, 10, 0.2);
  border-radius: 50%;
}
.rc-lightbox-content h4 {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 3.5px;
}
.rc-lightbox-content hr {
  background-color: rgba(10, 10, 10, 0.2);
  height: 1px;
  margin: 20px auto;
  max-width: 400px;
}
.rc-lightbox-content .how-it-works-text {
  font-size: 15px;
  line-height: 23px;
  color: #414042;
  margin: 0 auto;
  max-width: 575px;
  padding-bottom: 16px;
}

.rc-hidden {
  display: none;
}

.rc_block__type__onetime,
.rc_block__type__autodeliver {
  padding-bottom: 8px;
}

.rc_block__type__autodeliver {
  margin-bottom: 8px;
}

/* # Product media
================================================== */

 
.product-gallery__model model-viewer,
.product-gallery__video iframe {
  width: 100%;
}

.product-gallery__model {
  position: relative;
}
.product-gallery__model model-viewer {
  width: 100%;
  min-height: 300px;
}

.view-in-your-space {
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  background: #e6e6e6;
  color: #414042;
  font: inherit;
  text-transform: none;
  border-radius: 0px;
  border: 0;
}
.view-in-your-space svg path:first-child {
  stroke: #414042;
}
.view-in-your-space svg path:last-child {
  fill: #414042;
}

.plyr--video .plyr__controls {
  background: rgba(255, 255, 255, 0.6);
  padding: 10px;
}
.plyr--video .plyr__control {
  background: transparent;
  color: #414042;
}
.plyr--video .plyr__control:hover {
  background: #ffffff;
  color: #414042;
}
.plyr--video .plyr__controls__item.plyr__time,
.plyr--video input[type=range],
.plyr--video .plyr__controls__item {
  color: #414042;
}
.plyr--video .plyr__progress input[type=range] + .thumb {
  background-color: #414042;
  color: #414042;
}
.plyr--video input[type=range]::-webkit-slider-thumb {
  background-color: #414042;
}
.plyr--video input[type=range]::-moz-range-thumb {
  background-color: #414042;
}
.plyr--video input[type=range]::-ms-thumb {
  background-color: #414042;
}
.plyr--video .plyr__progress__buffer,
.plyr--video .plyr__control[aria-expanded=true] {
  background-color: rgba(65, 64, 66, 0.6);
}
.plyr--video .plyr__control.plyr__tab-focus {
  background-color: #414042;
}
.plyr--video .plyr__control--overlaid {
  background: #ffffff;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 3px;
}
.plyr--video .plyr__control--overlaid svg {
  left: auto;
}
.plyr--video .plyr__control--overlaid:hover {
  background: #ffffff;
}
.plyr--video .plyr__control--overlaid:hover .play-icon-button-control rect {
  opacity: 0.75;
}
.plyr--video .plyr__control .play-icon-button-control {
  width: 52px;
  height: 52px;
}
.plyr--video .plyr__control .play-icon-button-control rect {
  fill: #ffffff;
}
.plyr--video .plyr__control .play-icon-button-control path {
  fill: #414042;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-right: 10px;
  padding-left: 10px;
}

.plyr--full-ui .plyr__volume {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  bottom: 105px;
  height: 40px;
  opacity: 0;
  padding: 10px 15px !important;
  position: absolute;
  transform: rotate(270deg);
  transition: visibility 0.4s linear 0.4s, opacity 0.4s linear 0.3s;
  width: 140px;
}
.plyr--full-ui .plyr__volume:before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.25);
  bottom: 18px;
  content: "";
  left: -6px;
  position: absolute;
  transform: rotate(90deg);
  z-index: 2;
}
.plyr--full-ui .plyr__volume:hover {
  opacity: 1;
  visibility: visible;
}
.plyr--full-ui .plyr__volume.plyr__volume--is-visible {
  opacity: 1;
  transition: visibility 0.4s linear, opacity 0.4s linear;
}
.plyr--full-ui .plyr__volume input[type=range] {
  color: #414042;
  margin: 0 auto;
}

.plyr--full-ui .plyr__volume input[type=range]::-webkit-slider-runnable-track,
.plyr--full-ui .plyr__volume input[type=range]::-moz-range-track,
.plyr--full-ui .plyr__volume input[type=range]::-webkit-slider-thumb,
.plyr--full-ui .plyr__volume input[type=range]::-moz-range-thumb {
  box-shadow: none;
}

.plyr--full-ui .plyr__volume input[type=range]::-ms-fill-upper,
.plyr--full-ui .plyr__volume input[type=range]::-ms-thumb,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-webkit-slider-runnable-track,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-moz-range-track,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-webkit-slider-thumb,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-moz-range-thumb,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-ms-thumb,
.plyr--full-ui .plyr__volume input[type=range]:active::-webkit-slider-thumb,
.plyr--full-ui .plyr__volume input[type=range]:active::-moz-range-thumb,
.plyr--full-ui .plyr__volume input[type=range]:active::-ms-thumb {
  box-shadow: none;
}

.plyr--audio .plyr--full-ui .plyr__volume {
  bottom: 125px;
  right: -37px;
}

.plyr--is-ios .plyr__volume {
  display: none !important;
}

.plyr__control[data-plyr=mute]:hover + .plyr__volume {
  opacity: 1;
  transition: visibility 0.4s linear, opacity 0.4s linear;
}

@media (min-width: 480px) {
  .plyr--full-ui .plyr__volume input[type=range] {
    max-width: 90px;
  }
}
@media (min-width: 750px) {
  .plyr--full-ui .plyr__volume input[type=range] {
    max-width: 110px;
  }
}
@media only screen and (max-width: 989px) {
  .plyr--is-touch .plyr__volume {
    display: none !important;
  }
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button {
  color: #414042;
  background: #ffffff;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button[hidden] {
  display: none;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:hover,
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:focus {
  color: rgba(65, 64, 66, 0.55);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  background: #ffffff;
  border: 1px solid rgba(65, 64, 66, 0.05);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:not(:last-child):after {
  border-bottom: 1px solid rgba(65, 64, 66, 0.05);
}

@media only screen and (min-width: 799px) {
  .video-on-hover .plyr__controls,
.video-on-hover .plyr__control--overlaid,
.swap-true .plyr--youtube .plyr__controls,
.swap-true .plyr--youtube .plyr__control--overlaid,
.video-controls-enabled--false .plyr__controls,
.video-controls-enabled--false .plyr__control--overlaid {
    opacity: 0;
  }
  .video-on-hover .plyr__controls > *,
.video-on-hover .plyr__control--overlaid > *,
.swap-true .plyr--youtube .plyr__controls > *,
.swap-true .plyr--youtube .plyr__control--overlaid > *,
.video-controls-enabled--false .plyr__controls > *,
.video-controls-enabled--false .plyr__control--overlaid > * {
    pointer-events: none;
    cursor: auto;
  }
}

.product-template:not(.product-template--image-scroll) .product-gallery .product-gallery__image {
  visibility: hidden;
}
.product-template:not(.product-template--image-scroll) .product-gallery .product-gallery__image.is-selected {
  visibility: visible;
}

.plyr.plyr--stopped .plyr__controls {
  display: none;
}

.product_slider.product-height-set model-viewer {
  margin: 0 auto;
}
.product_slider.product-height-set .product-gallery__main img,
.product_slider.product-height-set .product-gallery__main .plyr--html5 video,
.product_slider.product-height-set .product-gallery__main .plyr--youtube {
  width: 100%;
  object-fit: contain;
}

.product-gallery__thumbnails .product-gallery__thumbnail {
  position: relative;
}
.product-gallery__thumbnails .media-badge {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 33%;
  max-height: 33%;
  min-width: 20px;
  width: 25px;
  height: 25px;
}
.product-gallery__thumbnails .media-badge svg {
  width: 100%;
  height: 100%;
}
.product-gallery__thumbnails .media-badge path:first-child {
  fill: #ffffff;
}
.product-gallery__thumbnails .media-badge path:last-child {
  fill: #414042;
}
.product-gallery__thumbnails .media-badge g path:first-child {
  stroke: #414042;
}
.product-gallery__thumbnails .media-badge .media-badge__outline {
  stroke: rgba(65, 64, 66, 0.05);
}

/* # Product thumbnail
================================================== */
.product-wrap .newbadge,
.product-wrap .salebadge {
  font-size: 12px;
  line-height: 16px;
  padding: 3px 9px;
  z-index: 10;
  position: absolute;
}
.product-wrap .newbadge {
  font-family: ivypresto-display, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  line-height: initial;
  color: #c97b64;
}
.product-wrap .salebadge {
  color: #E37F75;
  border: 1px solid #E37F75;
}

@media only screen and (max-width: 798px) {
  .product__thumbnail.has-padding-bottom {
    padding-bottom: 40px;
  }
}
.product__thumbnail.has-padding-bottom .padding-top-22 {
  padding-top: 22px;
}

.product__thumbnail > .product-wrap > .thumbnail__caption > .product-thumbnail > a.product-thumbnail__title {
  text-transform: none;
  color: #414042;
}

.product-image__wrapper {
  position: relative;
}
.product-image__wrapper video,
.product-image__wrapper iframe {
  width: 100%;
}
.product-image__wrapper:hover .thumbnail-overlay__container {
  display: flex;
  display: none;
}
.product-image__wrapper:hover .thumbnail-overlay__container .quick-shop__buttons,
.product-image__wrapper:hover .thumbnail-overlay__container .quick-shop__info {
  display: flex;
}
.thumbnail-overlay__container {
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  display: none;
  position: absolute;
  padding: 20px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  color: #414042;
  z-index: 10;
}
.thumbnail-overlay__container a,
.thumbnail-overlay__container a:visited {
  color: #414042;
}
.thumbnail-overlay__container .spr-icon-star:before {
  color: #414042;
}
.thumbnail-overlay__container .product-thumbnail__title,
.thumbnail-overlay__container .product-thumbnail__price {
  color: #414042;
}
.thumbnail-overlay__container .quick-shop__info,
.thumbnail-overlay__container .quick-shop__buttons {
  display: flex;
  justify-content: center;
  display: none;
  width: 100%;
}
.thumbnail-overlay__container .quick-shop__info {
  align-items: center;
}
.thumbnail-overlay__container .quick-shop__buttons {
  align-items: flex-start;
  padding-top: 20px;
  position: relative;
}
.thumbnail-overlay__container .animated {
  animation-duration: 0.5s;
}
.thumbnail-overlay__container .sold-out {
  color: #414042;
}

@media only screen and (max-width: 798px) {
  .thumbnail__hover-overlay--true .quick-shop__info {
    display: none;
  }
}
.thumbnail__hover-overlay--true .thumbnail__caption {
  display: none;
}
@media only screen and (max-width: 798px) {
  .thumbnail__hover-overlay--true .thumbnail__caption {
    display: block;
  }
}

.hidden-product-link {
  line-height: 0;
  font-size: 0;
  color: transparent;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
}

.has-thumbnail-sticker .image__container {
  position: relative;
}
.has-thumbnail-sticker .sticker-holder {
  display: flex;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.has-thumbnail-sticker .sticker-position-right {
  justify-content: flex-end;
  text-align: right;
}
.has-thumbnail-sticker .sticker-position-bottom-left {
  align-items: flex-end;
}
.has-thumbnail-sticker .sticker-position-bottom-right {
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}
.has-thumbnail-sticker .spr-badge {
  display: flex;
  flex-direction: column;
  padding-top: 3px;
  padding-right: 3px;
}
.has-thumbnail-sticker .spr-badge .spr-badge-starrating,
.has-thumbnail-sticker .spr-badge .spr-badge-caption {
  text-align: center;
}
.has-thumbnail-sticker .thumbnail-overlay__container .spr-badge-starrating,
.has-thumbnail-sticker .thumbnail-overlay__container .spr-badge-caption {
  justify-content: center;
  text-align: center;
}
.has-thumbnail-sticker .spr-badge-starrating .spr-icon-star,
.has-thumbnail-sticker .spr-badge-starrating .spr-icon-star-empty,
.has-thumbnail-sticker .spr-badge-caption {
  font-size: 80%;
}
.has-thumbnail-sticker .spr-icon-star:before {
  color: #F8E71C;
}
.has-thumbnail-sticker .product-thumbnail__title,
.has-thumbnail-sticker .product-thumbnail__price {
  display: block;
  padding-top: 3px;
}
.has-thumbnail-sticker .thumbnail-sticker:nth-child(1n+4) {
  display: none;
}
.has-thumbnail-sticker a.product-thumbnail__title {
  text-transform: none;
}

.thumbnail-sticker {
  display: flex;
  width: 100%;
  padding: 5px 10px;
  text-align: center;
}
.thumbnail-sticker.sale-sticker {
  border: 1px solid #c97b64;
  color: #c97b64;
}
.thumbnail-sticker.new-sticker {
  color: #c97b64;
  padding: 0;
}
.thumbnail-sticker.best-seller-sticker {
  border: 1px solid #8eaa6b;
  color: #8eaa6b;
}
.thumbnail-sticker.coming-soon-sticker {
  border: 1px solid #ce8069;
  color: #ce8069;
}
.thumbnail-sticker.staff-pick-sticker {
  border: 1px solid #414042;
  color: #414042;
}
.thumbnail-sticker.pre-order-sticker {
  border: 1px solid #6e6e6f;
  color: #6e6e6f;
}

.sticker-text {
  font-size: 1.33em;
  font-family: ivypresto-display, serif;
  font-weight: 300;
  font-style: italic;
}
@media only screen and (max-width: 1024px) {
  .sticker-text {
    font-size: 1.33em;
  }
}

.sticker-holder.sticker-shape-square {
  flex-wrap: wrap;
}
.sticker-holder.sticker-shape-square .sticker-text {
  width: 100%;
}

.one-seventh .sticker-shape-square .sticker-holder__content,
.one-sixth .sticker-shape-square .sticker-holder__content,
.one-fifth .sticker-shape-square .sticker-holder__content,
.sticker-shape-square .sticker-holder__content {
  max-width: 50%;
  font-size: 12px;
}
@media only screen and (max-width: 480px) {
  .one-seventh .sticker-shape-square .sticker-holder__content,
.one-sixth .sticker-shape-square .sticker-holder__content,
.one-fifth .sticker-shape-square .sticker-holder__content,
.sticker-shape-square .sticker-holder__content {
    max-width: 60%;
  }
}

.one-fourth .sticker-shape-square .sticker-holder__content {
  max-width: 40%;
  font-size: 14px;
}
@media only screen and (max-width: 480px) {
  .one-fourth .sticker-shape-square .sticker-holder__content {
    max-width: 60%;
  }
}

.one-third .sticker-shape-square .sticker-holder__content {
  max-width: 33.3334%;
  font-size: 14px;
}
@media only screen and (max-width: 480px) {
  .one-third .sticker-shape-square .sticker-holder__content {
    max-width: 60%;
  }
}

.one-half .sticker-shape-square .sticker-holder__content {
  max-width: 25%;
  font-size: 16px;
}
@media only screen and (max-width: 480px) {
  .one-half .sticker-shape-square .sticker-holder__content {
    max-width: 60%;
  }
}

.sticker-shape-round.sticker-position-bottom-right .thumbnail-sticker,
.sticker-shape-round.sticker-position-right .thumbnail-sticker {
  float: right;
  margin-right: 5px;
  margin-left: 0;
}

.sticker-shape-round .thumbnail-sticker {
  border-radius: 50%;
  display: inline-block;
  width: calc(33.3333% - 5px);
  padding: calc(33.3333% - 5px) 0 0;
  margin-left: 5px;
  margin-bottom: 5px;
  margin-top: 5px;
  position: relative;
}
.sticker-shape-round .thumbnail-sticker .sticker-text {
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 1.1;
  transform: translateX(-50%) translateY(-50%);
  word-wrap: break-word;
  font-size: 0.7em;
}
@media only screen and (max-width: 798px) {
  .sticker-shape-round .thumbnail-sticker .sticker-text {
    font-size: 1em;
  }
}

.one-seventh .sticker-shape-round .sticker-holder__content,
.one-sixth .sticker-shape-round .sticker-holder__content,
.one-fifth .sticker-shape-round .sticker-holder__content,
.sticker-shape-round .sticker-holder__content {
  width: 75%;
  font-size: 12px;
}
@media only screen and (max-width: 1024px) {
  .one-seventh .sticker-shape-round .sticker-holder__content,
.one-sixth .sticker-shape-round .sticker-holder__content,
.one-fifth .sticker-shape-round .sticker-holder__content,
.sticker-shape-round .sticker-holder__content {
    width: 80%;
  }
}
@media only screen and (max-width: 480px) {
  .one-seventh .sticker-shape-round .sticker-holder__content,
.one-sixth .sticker-shape-round .sticker-holder__content,
.one-fifth .sticker-shape-round .sticker-holder__content,
.sticker-shape-round .sticker-holder__content {
    width: 100%;
  }
}

.has-vertical-header .one-fourth .sticker-shape-round .sticker-holder__content {
  width: 90%;
}
@media only screen and (min-width: 1401px) {
  .has-vertical-header .one-fourth .sticker-shape-round .sticker-holder__content {
    max-width: 60%;
  }
}

.one-fourth .sticker-shape-round .sticker-holder__content {
  width: 60%;
  font-size: 14px;
}
@media only screen and (max-width: 1024px) {
  .one-fourth .sticker-shape-round .sticker-holder__content {
    width: 80%;
  }
}
@media only screen and (max-width: 480px) {
  .one-fourth .sticker-shape-round .sticker-holder__content {
    width: 100%;
  }
}

.one-third .sticker-shape-round .sticker-holder__content,
.one-half .sticker-shape-round .sticker-holder__content {
  width: 50%;
  font-size: 18px;
}
.one-third .sticker-shape-round .sticker-holder__content .thumbnail-sticker,
.one-half .sticker-shape-round .sticker-holder__content .thumbnail-sticker {
  margin: 5px;
  width: 100%;
  max-width: 60px;
  padding: 30px;
}
@media only screen and (max-width: 1024px) {
  .one-third .sticker-shape-round .sticker-holder__content,
.one-half .sticker-shape-round .sticker-holder__content {
    width: 80%;
  }
}
@media only screen and (max-width: 480px) {
  .one-third .sticker-shape-round .sticker-holder__content,
.one-half .sticker-shape-round .sticker-holder__content {
    width: 100%;
  }
}

.one-third .sticker-shape-round.sticker-position-bottom-right .thumbnail-sticker,
.one-half .sticker-shape-round.sticker-position-bottom-right .thumbnail-sticker {
  margin-right: 10px;
  margin-left: 0;
}
@media only screen and (max-width: 798px) {
  .one-third .sticker-shape-round.sticker-position-bottom-right .thumbnail-sticker,
.one-half .sticker-shape-round.sticker-position-bottom-right .thumbnail-sticker {
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 798px) {
  .one-third .sticker-shape-round.sticker-position-bottom-right .thumbnail-sticker,
.one-half .sticker-shape-round.sticker-position-bottom-right .thumbnail-sticker {
    font-size: 0.6em;
  }
}

@media only screen and (max-width: 1024px) {
  .one-half .sticker-shape-round .sticker-holder__content {
    width: 65%;
  }
}

@media only screen and (max-width: 480px) {
  .small-down--one-whole .sticker-shape-round .thumbnail-sticker {
    font-size: 0.9em;
    width: calc(22% - 10px);
    padding: calc(22% - 10px) 0 0;
  }
}

.product_section .product__information .thumbnail-sticker:nth-child(1n+4) {
  display: none;
}

.has-product-sticker .sticker-holder__content--product-center {
  display: flex;
  justify-content: center;
  margin: 0px auto;
  max-width: 30%;
  padding-top: 20px;
  font-size: 16px;
}
@media only screen and (max-width: 798px) {
  .has-product-sticker .sticker-holder__content--product-center {
    font-size: 13px;
  }
}
.has-product-sticker .sticker-holder__content--product-center .thumbnail-sticker {
  margin: 0 5px;
}
.has-product-sticker .sticker-shape-round .sticker-holder__content--product {
  display: flex;
  flex-wrap: wrap;
  max-width: 45%;
  width: 100%;
  font-size: 14px;
}
@media only screen and (max-width: 798px) {
  .has-product-sticker .sticker-shape-round .sticker-holder__content--product {
    max-width: 80%;
  }
}
.has-product-sticker .sticker-shape-round .is-product-slideshow {
  max-width: 30%;
}
@media only screen and (max-width: 798px) {
  .has-product-sticker .sticker-shape-round .sticker-holder__content--product-center {
    max-width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .has-product-sticker .sticker-shape-round .sticker-holder__content--product-center {
    max-width: 80%;
  }
}
.has-product-sticker .sticker-shape-round .thumbnail-sticker {
  width: calc(33.333% - 10px);
  padding: calc(33.3333% - 10px) 0 0;
  margin: 0 10px 0 0;
  display: inline-block;
  float: none;
}
.has-product-sticker .sticker-shape-round .thumbnail-sticker .sticker-text {
  font-size: 1em;
}
.has-product-sticker .sticker-shape-square .sticker-holder__content--product {
  display: flex;
  max-width: 75%;
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .has-product-sticker .sticker-shape-square .sticker-holder__content--product {
    max-width: 100%;
    font-size: 13px;
  }
}
.has-product-sticker .sticker-shape-square .is-product-slideshow {
  max-width: 45%;
}
@media only screen and (max-width: 798px) {
  .has-product-sticker .sticker-shape-square .sticker-holder__content--product-center {
    max-width: 100%;
    font-size: 13px;
  }
}
.has-product-sticker .sticker-shape-square .thumbnail-sticker {
  width: calc(33.333% - 10px);
  margin-right: 10px;
  display: inline-block;
  float: none;
}
.has-product-sticker .sticker-shape-square .thumbnail-sticker .sticker-text {
  font-size: 1em;
}
.has-product-sticker .sticker-holder {
  display: block;
  padding-bottom: 20px;
  font-size: 14px;
}

.has-secondary-image-swap img {
  visibility: visible;
  height: auto;
}
.has-secondary-image-swap .swap--visible {
  opacity: 0;
  visibility: hidden;
  height: 0 !important;
}

.has-thumbnail-sticker .product-thumbnail__title {
  letter-spacing: 1px;
  color: #414042;
}
.has-thumbnail-sticker .product-thumbnail__price {
  letter-spacing: 1px;
  color: #414042;
}

.product-gallery .sticker-shape-square .sticker-holder__content {
  display: inline-block;
  width: auto;
}
.product-gallery .sticker-shape-square .sticker-holder__content .thumbnail-sticker {
  padding: 0px;
}
.product-gallery .sticker-shape-square .sticker-holder__content .sticker-text {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 2px;
  padding: 3px 9px;
  z-index: 10;
  width: auto;
  position: relative;
  display: inline-block;
}

/* # Quick shop
================================================== */
.quick-shop__popup,
.quickshop-forms__container {
  display: none;
}

.quick-shop .product-gallery,
.quick-shop .product-gallery__nav {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.quick-shop.quick-shop--loaded .product-gallery,
.quick-shop.quick-shop--loaded .product-gallery__nav {
  opacity: 1;
}

.quick-shop__buttons {
  z-index: 12;
}

.quickshop__gallery--right {
  flex-direction: row-reverse;
}

.quick-shop__popup {
  padding: 40px 10px;
}
.quick-shop__popup .fancybox-close-small svg {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.quick-shop__popup .modal_price {
  font-size: 1.2em;
}
.quick-shop__popup .product_form {
  padding: 20px 0;
}
@media only screen and (max-width: 798px) {
  .quick-shop__popup .purchase-details__buttons {
    margin-top: 12px;
  }
}
@media only screen and (max-width: 798px) {
  .quick-shop__popup .select,
.quick-shop__popup .select select {
    width: auto;
  }
}
.quick-shop__popup .select-container {
  clear: both;
  overflow: hidden;
}
.quick-shop__popup .select {
  display: block;
  float: left;
  clear: both;
  margin-bottom: 10px;
}

.quick-shop__gallery {
  padding-right: 10px;
}

.quick-shop__text-wrap {
  padding-left: 10px;
}

.quick-shop .product-gallery__thumbnails--bottom-thumbnails {
  margin-top: 20px;
}

@media only screen and (max-width: 798px) {
  .quick-shop .product-gallery__nav {
    margin-top: 60px;
  }
}

@media only screen and (min-width: 799px) {
  .quick-shop .quickshop__arrows--false .flickity-viewport:hover .flickity-prev-next-button,
.quick-shop .quickshop__arrows--false .flickity-prev-next-button {
    display: none !important;
  }
}

.quick-shop__lightbox .fancybox-content {
  width: 90%;
  max-width: 900px;
  background-color: #fff;
  cursor: pointer !important;
}

.quick-shop__popup .sticker-shape-square .sticker-holder__content,
.quick-shop__popup .sticker-shape-round .sticker-holder__content {
  max-width: 100%;
  font-size: 13px;
}

/* # Size chart
================================================== */
.size-chart {
  display: none;
}
@media only screen and (max-width: 798px) {
  .size-chart {
    width: 100%;
    padding: 0;
  }
}
.size-chart .fancybox-close-small svg {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.size-chart-wrap {
  flex: 1 0 60%;
  max-width: 900px;
  position: relative;
  padding: 40px;
}
@media only screen and (max-width: 798px) {
  .size-chart-wrap {
    padding: 10px;
  }
}
.size-chart-wrap.animated {
  opacity: 0;
}

.product__size-chart {
  font-size: 1rem;
}
.product__size-chart.size-chart--medium-down {
  float: left;
  width: 100%;
  display: none;
  padding-bottom: 20px;
}
@media only screen and (max-width: 798px) {
  .product__size-chart.size-chart--medium-down {
    display: block;
  }
}
.product__size-chart .icon {
  position: relative;
  top: 2px;
  width: 0.9rem;
  height: 0.9rem;
}

/* #Swatch Styles
================================================== */.swatch-element.swatch--active {
    border-color: black;
    box-shadow: 0px 0px 0px 2px white;
  }
.selector-wrapper label {
    margin-bottom: 0.5rem;
  }
.swatch-element {
    cursor: pointer;
  }
.selector-wrapper label {
    margin-bottom: 0.5rem;
  }
.swatch_options {
    margin-bottom: 1.5rem;
  }
.swatch .option-title {
    margin-bottom: 0.5rem;
    width: 100%;
  }
.swatch input {
    display: none;
  }
.swatch label {
    float: left;
    min-width: 40px;
    height: 40px;
    margin: 0;
    font-size: 13px;
    text-align: center;
    line-height: 40px;
    white-space: nowrap;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0 10px;
  }
.swatch .color label {
    min-width: 34px;
    height: 34px !important;
    line-height: 34px;
    background-position: center;
    background-size: cover;
  }
.swatch-element {
    border: #e2e2e2 thin solid;
    min-width: 40px;
    min-height: 40px;
  }.swatch-element.color {
    padding: 3px;
  }
.swatch-element.color,
.swatch-element.color label {
    border: #e2e2e2 thin solid;
  }.swatch-element.color label {
    padding: 0;
    margin: 0;
    width: 34px;
    height: 34px;
    overflow: hidden;
  }
.swatch_options input:checked + .swatch-element {
    border-color: black;
    box-shadow: 0px 0px 0px 2px white;
  }
.swatch .swatch-element {
    float: left;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0px 8px 8px 0;
    position: relative;
    outline: none;
  }
.swatch .variant {
    position: relative;
    margin: 0;
  }
.crossed-out {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
.swatch .swatch-element .crossed-out {
    display: none;
  }
.swatch .swatch-element.soldout .crossed-out {
    display: block;
    height: 100%;
    width: 100%;
    pointer-events: none;
  }.swatch .swatch-element.soldout label {
    opacity: 0.6;
  }
.swatch .tooltip {
    text-align: center;
    background: #333;
    background: rgba(51, 51, 51, 0.9);
    color: #fff;
    bottom: 100%;
    padding: 5px 10px;
    display: block;
    position: absolute;
    width: 120px;
    font-size: 13px;
    left: -35px;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease-out;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    z-index: 60;
  }
.swatch .tooltip:before {
    bottom: -20px;
    content: " ";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%;
  }
.swatch .tooltip:after {
    border-left: solid transparent 10px;
    border-right: solid transparent 10px;
    border-top: solid rgba(51, 51, 51, 0.9) 10px;
    bottom: -10px;
    content: " ";
    height: 0;
    left: 50%;
    margin-left: -13px;
    position: absolute;
    width: 0;
  }
.swatch .swatch-element:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }
.soldout {
    opacity: 0.5;
  }
.swatch-element img[src*=no-image-50],
.swatch__image--empty {
    opacity: 0;
  }
.swatch-element .swatch__image {
    height: 100%;
    object-fit: cover;
  }/* # Announcement bar
================================================== */
.announcement-bar {
  width: 100%;
  position: absolute;
}
.announcement-bar.is-small {
  font-size: 0.75rem;
}
.announcement-bar.is-regular {
  font-size: 1rem;
}
.announcement-bar.is-large {
  font-size: 1.5rem;
}
@media only screen and (max-width: 480px) {
  .announcement-bar.is-large {
    font-size: 1rem;
  }
}
.announcement-bar .is-width-standard .message-header {
  padding-left: 0;
  padding-right: 0;
}
.announcement-bar > .section {
  max-width: calc(1200px - 20px);
}

.announcement-bar__text {
  display: flex;
  align-items: center;
}

.announcement-bar__icon {
  line-height: 0;
}

.show-close-icon-true {
  padding-left: 20px;
}

.announcement-bar__content {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}
.announcement-bar__content p {
  padding: 0 0.5em;
  display: inline-block;
}

.announcement-bar__shadow {
  opacity: 0;
  visibility: hidden;
  min-height: 20px;
}

.announcement-bar--visible .announcement-container {
  transition: all 0s linear;
}

.announcement-container {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 799px) {
  .announcement-container {
    min-height: 52px;
    height: auto;
  }
}
@media only screen and (max-width: 798px) {
  .announcement-container {
    height: 42px;
  }
}.announcement-bar__container {
  display: flex;
  align-items: center;
  min-height: 52px;
}
@media only screen and (max-width: 798px) {
  .announcement-bar__container {
    min-height: 41px;
  }
}

.message-header {
  padding: 10px 1em 9px;
}
.message-header .announcement-bar__content {
  justify-content: center;
  display: block;
}
@media only screen and (min-width: 799px) {
  .message-header .announcement-bar__content {
    justify-content: space-between;
  }
}
.message-header .announcement-bar__content .announcement-bar__link {
  float: right;
  height: 22px;
  line-height: 22px;
}
@media only screen and (max-width: 798px) {
  .message-header .announcement-bar__content .announcement-bar__link {
    display: none;
  }
}
.message-header .announcement-bar__content .announcement-bar__text {
  position: relative;
  height: 22px;
  overflow: hidden;
  display: block;
}
.message-header .announcement-bar__content .announcement-bar__text p {
  font-family: sofia-pro, serif !important;
  font-size: 15px;
  color: #ffffff;
  text-transform: none;
  line-height: 22px;
}
@media only screen and (min-width: 1025px) {
  .message-header .announcement-bar__content .announcement-bar__text p {
    letter-spacing: 1px;
  }
}
.message-header .announcement-bar__content .announcement-bar__text em {
  font-family: ivypresto-display;
  font-size: 19px;
  font-style: normal;
  letter-spacing: 0.88px;
}
@media only screen and (max-width: 798px) {
  .message-header .announcement-bar__content .announcement-bar__text em {
    font-size: 19px;
  }
}
.message-header .announcement-bar__content .announcement-bar__text .ticker-wrapper {
  visibility: hidden;
}
@media only screen and (max-width: 798px) {
  .message-header .announcement-bar__content .announcement-bar__text .ticker-wrapper {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }
}
.message-header .announcement-bar__content .promo-bar-links li {
  margin-right: 16px;
}
.message-header .announcement-bar__content .promo-bar-links li:last-child {
  margin-right: 0;
}
.message-header .announcement-bar__content .promo-bar-links a {
  font-family: sofia-pro, sans-serif;
  font-size: 15px;
  text-transform: lowercase;
  letter-spacing: 1px;
  line-height: initial;
  color: #ffffff;
}

/* # Article (blog posts)
================================================== */
@media only screen and (min-width: 799px) {
  .author-share-wrap .blog-share > div {
    justify-content: flex-end;
  }
}

.comment-section {
  display: block;
}

.blog-author {
  padding-left: 0;
}
.blog-author img {
  width: 100px;
  height: 100px;
}
.blog-author p {
  font-size: 0.9rem;
}

@media only screen and (max-width: 798px) {
  .comment-section--cards img {
    width: 100px;
  }
}

/* # Banner
================================================== */
.banner__wrapper {
  overflow: hidden;
  position: relative;
  max-height: 100vh;
}
.banner__wrapper img {
  object-fit: cover;
  height: 335px;
  width: 100%;
}
.banner__wrapper.is-small .image-element__wrap {
  height: 30vh;
}
@media only screen and (max-width: 798px) {
  .banner__wrapper.is-small .image-element__wrap {
    height: auto;
  }
}
@media only screen and (max-width: 798px) {
  .banner__wrapper.is-medium .image-element__wrap {
    height: auto;
  }
}
.banner__wrapper.is-medium .banner__content {
  margin: auto;
  z-index: 3;
  width: 100%;
}
.banner__wrapper.is-large .image-element__wrap {
  height: 90vh;
}
@media only screen and (max-width: 798px) {
  .banner__wrapper.is-large .image-element__wrap {
    height: auto;
  }
}

.banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  z-index: 3;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .banner__wrapper {
    position: relative;
    max-height: 335px;
  }
  .banner__wrapper img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .banner__wrapper.is-medium .image-element__wrap {
    height: 335px;
    width: 92vw;
  }
  .banner__wrapper #blog--card-content {
    top: 70%;
    left: 55%;
  }
  .banner__wrapper #blog--card-content .subtitle {
    padding-bottom: 15px;
    letter-spacing: 2px;
    font-size: 0.8rem;
  }
  .banner__wrapper #blog--card-content .title {
    width: 80%;
    font-size: 1rem;
    line-height: 30px;
  }
  .banner__wrapper .button--blog {
    padding: 25px 35px 25px 35px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 100;
  }
  .banner__wrapper h1.title {
    margin-bottom: 16px;
  }

  .banner__content {
    top: unset;
    bottom: 0px;
    transform: translate(0%, 0);
    padding-bottom: 0;
    width: 100%;
    left: unset;
    padding: 0;
    margin: 0 auto;
  }
  .banner__content .banner__text .collection_wrapper {
    height: auto;
    padding: 20px;
    left: 0px;
    width: 100%;
  }
  .banner__content .banner__text .collection_wrapper .collection_heading {
    font-size: 18px;
  }
  .banner__content .banner__text .collection_wrapper p.banner__heading.title {
    font-family: ivypresto-display, serif;
    font-size: 18px;
    width: auto;
  }
  .banner__content .banner__text .collection_wrapper p.collection_heading:not(.banner__heading.title) {
    width: 80vw;
    font-family: sofia-pro;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 300;
  }
}
#blog--card-content {
  top: 60%;
  left: 42%;
  transform: translate(-50%, -50%);
}
#blog--card-content .subtitle {
  padding-bottom: 29px;
  letter-spacing: 2px;
  font-size: 15px;
  line-height: 16px;
  max-width: 40vw;
}
#blog--card-content .title {
  line-height: 24px;
}

@media (max-width: 1200px) and (min-width: 1000px) {
  #blog--card-content {
    top: 60%;
    left: 46%;
    transform: translate(-50%, -50%);
  }
}
.banner__text {
  margin: auto;
  max-width: 900px;
}
.banner__text p.collection_heading {
  font-size: 16px;
  line-height: 20px;
  color: #414042;
  width: 436px;
  word-wrap: normal;
  padding-top: 16px;
  display: inline-block;
  letter-spacing: 1px;
}
.banner__text .collection_heading.banner__heading {
  color: #414042;
  font-size: 24px;
  line-height: 22px;
  letter-spacing: 1px;
  padding-top: 0;
  padding-bottom: 22.5px;
  margin-bottom: 0;
}
.banner__text .collection_wrapper {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.85);
  height: 192px;
  width: 608px;
  display: inline-block;
}

.banner__heading {
  font-family: ivypresto-display, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  text-transform: none;
  color: #ffffff;
  letter-spacing: 1px;
}
@media only screen and (max-width: 480px) {
  .banner__heading {
    font-size: 2em;
  }
}

.banner__subheading {
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0px;
  color: #ffffff;
}

.dark-overlay-true {
  position: relative;
}
.dark-overlay-true:after {
  content: "";
  position: absolute;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* # Contact form
================================================== */
.contact-form .contact-form__form {
  padding: 40px;
}
@media only screen and (max-width: 798px) {
  .contact-form .contact-form__form {
    margin: 30px 0;
  }
}
.contact-form .contact-form__image {
  margin-bottom: 25px;
}
.contact-form .contact-form__blocks .contact-form__block {
  margin-bottom: 20px;
}
.contact-form .contact-form__blocks .contact-form__block label {
  color: inherit !important;
}
.contact-form .contact-form__block--radio .contact-form__list,
.contact-form .contact-form__block--checkbox .contact-form__list {
  margin: 0;
  list-style: none;
}
.contact-form .contact-form__block--radio .contact-form__list li,
.contact-form .contact-form__block--checkbox .contact-form__list li {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}
.contact-form .contact-form__block--radio .contact-form__list li input,
.contact-form .contact-form__block--checkbox .contact-form__list li input {
  top: 2px;
  margin-right: 7px;
  position: relative;
}
.contact-form .contact-form__social .social-icons {
  list-style: none;
  margin: 20px 0 0 0;
  align-items: baseline;
}
.contact-form .contact-form__social .social-icons li {
  padding-right: 10px;
}
.contact-form .text-align-right .social-icons {
  justify-content: flex-end;
}
.contact-form .text-align-center .social-icons {
  justify-content: center;
}

.contact-form--left {
  flex-direction: row-reverse;
}

.contact-form--right .contact-form__offset .contact-form__form,
.contact-form--left .contact-form__offset .contact-form__form {
  margin: 0;
}
@media only screen and (max-width: 798px) {
  .contact-form--right .contact-form__form,
.contact-form--left .contact-form__form {
    margin-left: 0;
    margin-right: 0;
  }
}

/* # Featured collection
================================================== */
.featured-collection-section .slider-gallery,
.block__featured-collection .slider-gallery {
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .featured-collection-section .flickity-prev-next-button.previous,
.block__featured-collection .flickity-prev-next-button.previous {
    left: -10px;
  }
  .featured-collection-section .flickity-prev-next-button.next,
.block__featured-collection .flickity-prev-next-button.next {
    right: -10px;
  }
}
.featured-collection-section .newbadge,
.featured-collection-section .salebadge,
.block__featured-collection .newbadge,
.block__featured-collection .salebadge {
  font-size: 12px;
  line-height: 16px;
  padding: 3px 9px;
  z-index: 10;
  position: relative;
}
.featured-collection-section .newbadge,
.block__featured-collection .newbadge {
  font-family: ivypresto-display, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  line-height: initial;
  color: #c97b64;
}
.featured-collection-section .salebadge,
.block__featured-collection .salebadge {
  color: #E37F75;
  border: 1px solid #E37F75;
}
.featured-collection-section .padding-top-22,
.block__featured-collection .padding-top-22 {
  padding-top: 22px;
}

/* # Featured promotions
================================================== */
.featured-promotions .has-gutter-enabled .flickity-enabled .featured-promotions__block {
  margin-left: 10px;
  margin-right: 10px;
}
@media only screen and (max-width: 480px) {
  .featured-promotions .has-gutter-enabled .featured-promotions__block--2:first-child {
    margin-bottom: 20px;
  }
}

.featured-promotions__nav-wrapper {
  justify-content: flex-end;
}
@media only screen and (max-width: 480px) {
  .featured-promotions__nav-wrapper {
    justify-content: space-between;
  }
}

.featured-promotions__nav {
  color: #69588d;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.featured-promotions__nav:first-child {
  margin-right: 10px;
}
.featured-promotions__nav:hover {
  color: #5b4f7b;
}

.is-width-wide .featured-promotions__nav:last-child {
  margin-right: 10px;
}

.featured-promotions__block {
  position: relative;
}

.featured-promotions__block--has-link:hover .featured-promotions__content img,
.featured-promotions__block--has-link:hover .featured-promotions__content svg {
  transform: scale(1.1);
}
.featured-promotions__block--has-link:hover .has-border {
  border-width: 3px;
}

.featured-promotions__block.has-image-crop:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.featured-promotions__block.has-image-crop .featured-promotions__content {
  position: absolute;
  width: 100%;
  height: 100%;
}

.featured-promotions__content {
  position: relative;
  overflow: hidden;
  font-size: 1rem;
}
.featured-promotions__content img,
.featured-promotions__content svg {
  transition: all 0.3s ease-in-out;
}
.featured-promotions__content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.featured-promotions__overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s linear;
  padding: 0 20px;
  text-align: center;
}
.featured-promotions__overlay span {
  width: 50px;
  height: 50px;
}
.featured-promotions__overlay.has-border {
  border: thin solid;
}

.featured-promotions__title {
  margin: 10px 0;
  text-align: center;
  line-height: 1.2;
}

.featured-promotions__subtitle p {
  padding: 5px 0;
}

.featured-promotions__wrapper:after {
  content: "flickity";
  display: none;
}

@media only screen and (min-width: 799px) {
  .mobile-slider .featured-promotions__nav-wrapper {
    display: none;
  }
}
@media only screen and (min-width: 799px) {
  .mobile-slider .featured-promotions__wrapper:after {
    content: "";
  }
}

/* # Featured product
================================================== */
.featured-product .product-thumbnail__title {
  display: block;
  padding-top: 0.5em;
}
.featured-product .slideshow-enabled--false .product-gallery__image:not(:first-child) {
  display: none;
}

.featured-product-section .select,
.featured-product-section .select select {
  height: 44px;
}

/* # Footer
================================================== */

  
  
.footer__container {
  width: 100%;
}

.footer__content {
  background-color: #ffffff;
  color: #414042;
  font-size: 13px;
}
.footer__content a,
.footer__content a:visited {
  color: #414042;
}
.footer__content a:hover,
.footer__content a:active {
  color: #5b4f7b;
}

.footer__heading {
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 15px;
  color: #414042;
  margin-bottom: 10px;
}

@media only screen and (max-width: 480px) {
  .footer__block {
    padding-bottom: 20px;
  }
}
.footer__block.block__logo .footer__heading {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  text-transform: none;
}

.footer .social-icons li {
  padding-right: 5px;
}

.footer__logo-wrapper {
  width: 100%;
}
.footer__logo-wrapper.is-small {
  max-width: 60%;
}
@media only screen and (max-width: 798px) {
  .footer__logo-wrapper.is-small {
    max-width: 30%;
  }
}
.footer__logo-wrapper.is-medium {
  max-width: 80%;
}
@media only screen and (max-width: 798px) {
  .footer__logo-wrapper.is-medium {
    max-width: 50%;
  }
}
.footer__logo-wrapper.is-large {
  max-width: 100%;
}
@media only screen and (max-width: 798px) {
  .footer__logo-wrapper.is-large {
    max-width: 70%;
  }
}
.footer__logo-wrapper .image-element__wrap {
  margin-right: 0;
  margin-left: 0;
}

.footer__credits {
  font-size: smaller;
  flex-basis: 25%;
  margin: 0;
}
@media only screen and (max-width: 480px) {
  .footer__credits {
    flex-basis: auto;
  }
}

.footer__credits p {
  display: inline;
}.footer__content {
    border-bottom: 0;
    border-top: 0;
  }
.footer__block.one-fifth .is-stretched-width {
    min-width: 100% !important;
  }
@media only screen and (max-width: 1024px) {
    .footer__block .is-stretched-width {
      min-width: 100% !important;
    }
  }
@media only screen and (max-width: 480px) {
    .footer__credits + .footer__payment-methods {
      margin-top: 20px;
    }
  }
@media only screen and (max-width: 480px) {
    .footer__credits {
      text-align: center;
    }
  }
@media only screen and (max-width: 480px) {
    .footer__payment-methods {
      text-align: center;
      justify-content: center;
    }
  }.footer__logo-wrapper {
  display: block;
}
.footer__logo-wrapper:hover .footer__heading, .footer__logo-wrapper:hover img {
  opacity: 0.7;
}
.footer__logo-wrapper .footer__heading,
.footer__logo-wrapper img {
  transition: opacity 0.3s ease-in;
}

.footer__container .footer__content {
  padding-top: 85px;
  padding-bottom: 85px;
  background: transparent !important;
}
@media only screen and (max-width: 480px) {
  .footer__container .footer__content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.footer__container .footer__content p:not(.footer__heading) {
  font-size: 15px;
}
.footer__container .footer__content a {
  color: #414042;
}
@media only screen and (min-width: 481px) {
  .footer__container .footer__content .footer__block {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 799px) {
  .footer__container .footer__content .footer__block {
    margin: 0;
  }
}
.footer__container .footer__content .footer__block:nth-child(4) {
  position: relative;
}
.footer__container .footer__content .footer__block p > a {
  display: block;
  margin-bottom: 12px;
}
.footer__container .footer__content .footer__block p br {
  display: none;
}
@media only screen and (min-width: 799px) {
  .footer__container .footer__content .footer__block .footer__heading {
    margin-bottom: 20px;
  }
}
.footer__container .footer__content .footer__block-country {
  margin-top: 10px;
}
@media only screen and (min-width: 799px) {
  .footer__container .footer__content .footer__block-country {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-top: 0;
  }
}
.footer__container .footer__content .footer__block-country .footer__heading {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer__container .footer__content .footer__block-country .country-wrapper select {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer__container .footer__heading {
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 17px;
}
.footer__container .footer__menu-link {
  font-size: 15px;
  line-height: 33px;
  color: #414042;
  position: relative;
  color: #433E3A;
}
.footer__container .footer__extra-content {
  background: #E1DCD5;
  max-width: none;
  width: 100%;
  color: #433E3A;
}
.footer__container .footer__extra-content > .container {
  display: flex;
  max-width: 1200px;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 7px;
}
.footer__container .footer__extra-content > .container p {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 1px;
}
@media only screen and (max-width: 1024px) {
  .footer__container .footer__extra-content > .container {
    justify-content: center;
  }
}
.footer__container .footer__extra-content a {
  color: #433E3A;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer__container .footer__extra-content .extra-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-basis: auto;
  width: auto;
}
@media only screen and (max-width: 1024px) {
  .footer__container .footer__extra-content .extra-links {
    flex-basis: auto;
  }
}
@media only screen and (max-width: 480px) {
  .footer__container .footer__extra-content .extra-links {
    text-align: center;
  }
}
.footer__container .footer__extra-content .extra-links li {
  display: inline-block;
  padding-right: 12px;
}
.footer__container .footer__extra-content .extra-links li a {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media only screen and (max-width: 480px) {
  .footer__container .footer__extra-content .extra-links {
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {
  ul.extra-links {
    flex-wrap: wrap;
    width: 115px;
  }
}
@media only screen and (min-width: 1280px) {
  .footer__container .container.has-limit {
    justify-content: unset;
  }
  .footer__container .footer__block-country {
    min-width: 240px;
  }
  .footer__container .footer__content {
    padding-left: 0;
    padding-right: 0;
  }
  .footer__container .footer__content .footer__block {
    margin: 0 11% 0 0;
    width: auto;
  }
  .footer__container .footer__content .footer__block:nth-child(4) {
    margin: 0;
  }
}
/* # Gallery
================================================== */
.has-no-side-gutter .gallery__item {
  margin: 0;
}

.gallery-type--classic {
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 798px) {
  .has-gutter-enabled .gallery__item {
    margin-bottom: 20px;
  }
}

.gallery-type--horizontal-masonry {
  display: flex;
  flex-wrap: wrap;
}
.gallery-type--horizontal-masonry img {
  width: 100%;
}

.gallery__item {
  position: relative;
}
.gallery__item:hover .gallery-item__overlay {
  opacity: 1;
}

.has-image-crop .gallery__item-wrap {
  height: 100%;
}

.gallery-item__overlay {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery-item__overlay .icon {
  margin: 20px;
  width: 2.4rem;
  height: 2.4rem;
}

/* # Header - Centered
================================================== *//* # Header - Classic
================================================== */.header {
    background-color: #ffffff;
    transition: background-color 0.3s linear, height 0.2s linear;
  }
.header__brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 1rem 0.75rem;
  }
.primary-logo {
    transition: all 0.1s linear;
  }
.primary-logo + .header__logo-text {
    display: none;
  }
.header__logo {
    transition: all 0.3s ease;
  }
.header__menu {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
  }
.action-area__link.has-cart-count {
    padding-right: 1.8em;
  }
[data-enable_overlay=false] .overlay-logo {
    display: none;
  }
[data-enable_overlay=true] {
    position: absolute;
    width: 100%;
  }
[data-enable_overlay=true] .header {
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 10;
  }
[data-enable_overlay=true] .overlay-logo {
    display: block;
  }
[data-enable_overlay=true] .overlay-logo + .primary-logo {
    display: none;
  }
[data-enable_overlay=true] .overlay-logo + .header__logo-text {
    display: none;
  }
[data-enable_sticky=true] .header {
    z-index: 50;
  }
.has-overlaid-header {
    position: absolute;
    width: 100%;
  }/* # Header - Search focus
================================================== *//* # Header - Vertical
================================================== *//* # Header
================================================== */
@media only screen and (max-width: 798px) {
  header.header {
    display: none;
  }
}

.header,
.mobile-header {
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 1px;
  font-size: 15px;
  text-transform: none;
}

.header__currency-dropdown select {
  border: none;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 1px;
  font-size: 15px;
  text-transform: none;
  height: inherit;
  background: transparent;
  color: currentColor;
}

.dropdown-style-horizontal {
  position: relative;
}

.dropdown-style-horizontal .navbar,
.dropdown-style-horizontal .navbar-item {
  position: initial;
}

.dropdown-style-horizontal .header__menu-items,
.header__dropdown--below-header.header__menu-items {
  height: 100%;
}
.dropdown-style-horizontal .header__menu-items .navbar-item.has-dropdown,
.header__dropdown--below-header.header__menu-items .navbar-item.has-dropdown {
  -ms-grid-row-align: stretch;
      align-self: stretch;
}

.vertical-alignment-center .header__item {
  align-items: center;
}
.vertical-alignment-top .header__item {
  align-items: flex-start;
}
.vertical-alignment-bottom .header__item {
  align-items: flex-end;
}

.header__link,
.header__link > a {
  color: #414042;
  fill: #414042;
}
.header__link:hover, .header__link.is-active,
.header__link > a:hover,
.header__link > a.is-active {
  color: #69588d;
  fill: #69588d;
}

.header__logo-text {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  text-transform: none;
}

.header__logo-text,
h1.header__logo-text > a {
  color: #ffffff;
}
.header__logo-text:hover,
h1.header__logo-text > a:hover {
  color: #ffffff;
}

.header__icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header__icon-style-text .header__icon,
.header__icon-style-text .header-cart__count--badge {
  display: none;
}

.header__icon-style-icons .icon-caption {
  display: none;
}
.header__icon-style-icons .header__currency-dropdown .icon-caption {
  display: block;
  position: absolute;
  opacity: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header__icon-style-icons .header__currency-dropdown .icon-caption {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.header__icon-style-icons-text {
  text-transform: uppercase;
}
.header__icon-style-icons-text .select {
  height: auto;
}
.header__icon-style-icons-text .icon-caption {
  padding: 0.3em 0 0;
  font-size: 0.7em;
}
.header__icon-style-icons-text .action-area__link.has-cart-count {
  padding-right: 1.8em;
}
.header__icon-style-icons-text .header-cart__caption {
  display: block;
}
.header__icon-style-icons-text .header__currency-dropdown .icon {
  margin-bottom: 1.2rem;
}
.header__icon-style-icons-text .header__currency-dropdown .icon-caption {
  display: block;
  position: absolute;
}
.header__icon-style-icons-text .header__currency-dropdown select {
  font-size: 1em;
  padding: 0;
  max-width: none;
  padding-top: 1.2rem;
}

@-moz-document url-prefix() {
  .header__currency-dropdown select,
.header__currency-dropdown select:hover {
    color: #FFF !important;
  }
}
.header__currency-dropdown {
  position: relative;
  overflow: hidden;
}
.header__currency-dropdown select {
  color: #414042;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header__currency-dropdown select {
    color: transparent;
  }
}
.header__currency-dropdown select:hover {
  color: #69588d;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header__currency-dropdown select:hover {
    color: transparent;
  }
}

.action-area__link:not(.has-cart-count) .header-cart__count {
  display: none;
}

.action-area__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 5px;
  height: 100%;
}
.action-area__link:last-child {
  padding-right: 0;
}
.vertical-alignment-center .action-area__link {
  justify-content: center;
}
.vertical-alignment-top .action-area__link {
  justify-content: flex-start;
}
.vertical-alignment-bottom .action-area__link {
  justify-content: flex-end;
}

.has-submenu label {
  display: block;
  position: relative;
}
.has-submenu .close-dropdown,
.has-submenu .close-sub-dropdown {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  height: 100%;
  width: 25%;
}
.has-submenu .has-no-link .close-dropdown,
.has-submenu .has-no-link .close-sub-dropdown {
  width: 100%;
}

[data-enable_overlay=false] .overlay-logo__content {
  display: none;
}
[data-enable_overlay=false] .logo__content {
  display: block;
}

[data-enable_overlay=true] .overlay-logo__content {
  display: block;
}
[data-enable_overlay=true] .logo__content {
  display: none;
}

.header__logo:hover img {
  opacity: 0.7;
}
.header__logo img {
  transition: opacity 0.3s ease-in;
}

/* # Heading
================================================== */
.heading-section__preheading {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
}

.heading-section__subheading {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
}

.heading-section__content {
  padding: 1.5rem 0;
}

.vertical-spacing-medium .heading-section__preheading + .heading-section__heading {
  padding-top: 10px;
}
.vertical-spacing-medium .heading-section__preheading + .heading-section__subheading {
  padding-top: 10px;
}
.vertical-spacing-medium .heading-section__heading + .heading-section__subheading {
  padding-top: 10px;
}
.vertical-spacing-medium .heading-divider {
  margin-top: 10px;
}

.vertical-spacing-large .heading-section__preheading + .heading-section__heading {
  padding-top: 20px;
}
.vertical-spacing-large .heading-section__preheading + .heading-section__subheading {
  padding-top: 20px;
}
.vertical-spacing-large .heading-section__heading + .heading-section__subheading {
  padding-top: 20px;
}
.vertical-spacing-large .heading-divider {
  margin-top: 20px;
}

.heading-wrapper {
  margin-bottom: 40px;
}
@media only screen and (max-width: 798px) {
  .heading-wrapper {
    margin-bottom: 20px;
  }
}
.heading-wrapper.text-align-center .heading-divider {
  margin: 0 auto;
}
.heading-wrapper.text-align-right .heading-divider {
  margin: 0 0 0 auto;
}

@media only screen and (min-width: 799px) {
  .has-heading-divider-below .heading-wrapper:not(.heading-divider-below) {
    margin-bottom: 0;
  }
  .has-heading-divider-below .heading-wrapper:not(.heading-divider-below) .heading-divider {
    display: none;
  }
}

@media only screen and (max-width: 798px) {
  .heading-divider-below {
    display: none;
  }
}

/* # Icon bar
================================================== */
.icon-bar__block {
  padding: 0.5rem 0.75rem;
}
@media only screen and (min-width: 799px) {
  .icon-bar__block:first-child {
    padding-left: 0;
  }
  .icon-bar__block:last-child {
    padding-right: 0;
  }
}
.icon-bar__block.is-small {
  font-size: 0.75rem;
}
.icon-bar__block.is-medium {
  font-size: 15px;
}
.icon-bar__block.is-large {
  font-size: 1.5rem;
}
.icon-bar__block .icon-bar__text {
  padding: 0 5px;
}

/* # Icon with text column
================================================== */
.icon-with-text-column .icon {
  margin-bottom: 20px;
}
@media only screen and (max-width: 798px) {
  .icon-with-text-column .icon {
    margin-bottom: 0;
    margin-top: 20px;
  }
}
.icon-with-text-column .icon.is-small {
  height: 2.8rem;
  width: 2.8rem;
}
.icon-with-text-column .icon.is-medium {
  height: 3.6rem;
  width: 3.6rem;
}
.icon-with-text-column .icon.is-large {
  height: 5.4rem;
  width: 5.4rem;
}

/* # Image with text
================================================== */
@media only screen and (max-width: 767px) {
  .home-content {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media only screen and (max-width: 798px) {
  .image-with-text .has-gutter-enabled .image-with-text__column:not(:last-child) {
    margin-bottom: 20px;
  }
}

.image-with-text__image-column .image-element__wrap {
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .image-with-text__image-column.has-image-crop:not(.image-crop--none) {
    height: 100vw;
  }
}

.image-with-text__text-column {
  padding-left: 20px;
  padding-right: 20px;
}
.image-with-text__text-column.has-background {
  padding: 30px;
}
@media only screen and (max-width: 798px) {
  .image-with-text__text-column {
    order: 1;
  }
}

.image-with-text__heading {
  padding-bottom: 20px;
  line-height: 1.2;
}
.image-with-text__heading.is-small {
  font-size: 16px;
}
.image-with-text__heading.is-regular {
  font-size: 20px;
}
.image-with-text__heading.is-large {
  font-size: 30px;
}

.image-with-text__link {
  width: 100%;
  display: block;
  overflow: hidden;
}

.image-with-text__link:hover .image-with-text__image,
.image-with-text__link:hover svg {
  transform: scale(1.1);
}

.image-with-text__image,
.image-with-text__link svg {
  transition: transform 0.3s ease-in-out;
}

@media only screen and (max-width: 798px) {
  .block__image-with-text .has-gutter-enabled .image-with-text__column {
    margin-bottom: 20px;
  }
}

.image-with-text-2-col .equal-columns--outside-trim .one-half {
  width: calc(50% - (10px - (10px / 2)));
}
.image-with-text-2-col.container .column {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
@media only screen and (min-width: 799px) {
  .image-with-text-2-col.container .column {
    width: calc(50% - 7px);
  }
  .image-with-text-2-col.container .column:first-child {
    margin-left: 0;
    margin-right: 7px;
  }
  .image-with-text-2-col.container .column:last-child {
    margin-left: 7px;
    margin-right: 0;
  }
}
.image-with-text-2-col .image-with-text__wrapper {
  text-align: center;
  max-width: 510px;
  margin: 20px auto 0;
}
@media only screen and (max-width: 480px) {
  .image-with-text-2-col .image-with-text__wrapper {
    padding: 0 20px;
  }
}
.image-with-text-2-col .image-with-text__wrapper p {
  font-size: 14px;
}

.image-blocks-3 {
  margin: 40px auto;
}
.image-blocks-3 .ctaboxes {
  text-align: center;
}
.image-blocks-3 .ctaboxes h2 {
  margin-top: 33px;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 3px;
  color: #414042;
}
@media only screen and (min-width: 481px) {
  .image-blocks-3 .ctaboxes h2 {
    font-size: 16px;
    letter-spacing: 0px;
  }
}
@media only screen and (min-width: 799px) {
  .image-blocks-3 .ctaboxes h2 {
    font-size: 18px;
    letter-spacing: 3px;
  }
}
.image-blocks-3 .ctaboxes p {
  font-size: 14px;
  line-height: 16px;
  color: #414042;
  word-break: break-word;
  margin-top: 5px;
}
@media only screen and (max-width: 480px) {
  .image-blocks-3 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .image-blocks-3 .ctaboxes {
    margin-bottom: 25px;
  }
  .image-blocks-3 .ctaboxes img {
    width: 100%;
  }
}
@media only screen and (min-width: 481px) {
  .image-blocks-3 {
    text-align: justify;
    font-size: 0;
  }
  .image-blocks-3:after {
    content: "";
    display: inline-block;
    width: 100%;
    vertical-align: top;
  }
  .image-blocks-3 .ctaboxes {
    display: inline-block;
    width: calc(33.33333% - 1%);
    max-width: 390px;
    vertical-align: top;
  }
}
@media only screen and (min-width: 481px) and (min-width: 799px) {
  .image-blocks-3 .ctaboxes {
    width: calc(33.33333% - 2%);
  }
}
.custom-banner {
  margin: 30px 0;
}
.custom-banner .container {
  max-width: 886px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
.custom-banner .custom-banner-content,
.custom-banner .custom-banner-image {
  width: 100%;
}
@media only screen and (min-width: 799px) {
  .custom-banner .custom-banner-content,
.custom-banner .custom-banner-image {
    width: 50%;
  }
}
.custom-banner .custom-banner-top-image {
  width: 75px;
  height: auto;
  top: -35%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  position: absolute;
  opacity: 75%;
}
@media only screen and (max-width: 768px) {
  .custom-banner img.custom-banner-top-image {
    width: 65px;
    height: auto;
    top: -1%;
  }
  .custom-banner .custom-banner-bottom-image {
    max-width: 50%;
  }
}
@media only screen and (max-width: 798px) {
  .custom-banner .custom-banner-image .image-element__wrap {
    max-width: 100% !important;
  }
}
.custom-banner .custom-banner-content {
  text-align: center;
  position: relative;
}
@media only screen and (min-width: 799px) {
  .custom-banner .custom-banner-content {
    max-width: 340px;
  }
}
@media only screen and (max-width: 798px) {
  .custom-banner .custom-banner-content {
    order: 2;
    padding: 40px 20px;
  }
}
.custom-banner .custom-banner-content p {
  margin: 15px 0;
  color: #414042;
}
.custom-banner .custom-banner-content h2 {
  letter-spacing: 2px;
  line-height: 1;
  font-size: 15px;
  font-weight: 600;
}
@media only screen and (max-width: 890px) {
  .custom-banner .custom-banner-content {
    margin: auto;
  }
}
.custom-banner .custom-block-logo .image-element__wrap {
  max-width: 160px !important;
}

@media only screen and (max-width: 767px) {
  .custom-banner-block {
    margin-left: 20px;
    margin-right: 20px;
  }
}
/* # Image with text overlay
================================================== */
.block__image-with-overlay .image-with-text-overlay__container,
.image-with-text-overlay .image-with-text-overlay__container,
.image-slideshow .image-with-text-overlay__container {
  width: 100%;
}
.block__image-with-overlay .caption-content,
.image-with-text-overlay .caption-content,
.image-slideshow .caption-content {
  padding: 30px;
  min-width: 350px;
}
@media only screen and (max-width: 480px) {
  .block__image-with-overlay .caption-content,
.image-with-text-overlay .caption-content,
.image-slideshow .caption-content {
    min-width: auto;
  }
}
@media only screen and (max-width: 480px) {
  .block__image-with-overlay .mobile-text--below-media > .container,
.image-with-text-overlay .mobile-text--below-media > .container,
.image-slideshow .mobile-text--below-media > .container {
    display: block;
  }
  .block__image-with-overlay .mobile-text--below-media .caption,
.image-with-text-overlay .mobile-text--below-media .caption,
.image-slideshow .mobile-text--below-media .caption {
    position: static;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .block__image-with-overlay .mobile-text--below-media .caption-content,
.image-with-text-overlay .mobile-text--below-media .caption-content,
.image-slideshow .mobile-text--below-media .caption-content {
    padding: 20px 0;
  }
  .block__image-with-overlay .mobile-text--below-media.has-background .caption-content, .block__image-with-overlay .mobile-text--below-media.has-border .caption-content,
.image-with-text-overlay .mobile-text--below-media.has-background .caption-content,
.image-with-text-overlay .mobile-text--below-media.has-border .caption-content,
.image-slideshow .mobile-text--below-media.has-background .caption-content,
.image-slideshow .mobile-text--below-media.has-border .caption-content {
    padding: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .block__image-with-overlay .mobile-text--below-media .is-width-half .caption,
.image-with-text-overlay .mobile-text--below-media .is-width-half .caption,
.image-slideshow .mobile-text--below-media .is-width-half .caption {
    position: static;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    top: 0;
    transform: none;
  }
  .block__image-with-overlay .mobile-text--below-media .is-width-half .caption-content,
.image-with-text-overlay .mobile-text--below-media .is-width-half .caption-content,
.image-slideshow .mobile-text--below-media .is-width-half .caption-content {
    padding: 20px 0;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .block__image-with-overlay .mobile-text--over-media .caption,
.image-with-text-overlay .mobile-text--over-media .caption,
.image-slideshow .mobile-text--over-media .caption {
    top: 50%;
    bottom: auto;
    transform: translate(0, -50%);
  }
  .block__image-with-overlay .mobile-text--over-media .caption .caption-content,
.image-with-text-overlay .mobile-text--over-media .caption .caption-content,
.image-slideshow .mobile-text--over-media .caption .caption-content {
    width: calc(100% - 20px);
  }
}
.block__image-with-overlay .image-crop-left img,
.image-with-text-overlay .image-crop-left img,
.image-slideshow .image-crop-left img {
  min-height: 60vh;
  object-fit: cover;
  object-position: left;
}
.block__image-with-overlay .image-crop-center img,
.image-with-text-overlay .image-crop-center img,
.image-slideshow .image-crop-center img {
  min-height: 60vh;
  object-fit: cover;
  object-position: center;
}
.block__image-with-overlay .image-crop-right img,
.image-with-text-overlay .image-crop-right img,
.image-slideshow .image-crop-right img {
  min-height: 60vh;
  object-fit: cover;
  object-position: right;
}
.block__image-with-overlay .pretext,
.block__image-with-overlay .subtitle,
.image-with-text-overlay .pretext,
.image-with-text-overlay .subtitle,
.image-slideshow .pretext,
.image-slideshow .subtitle {
  font-size: 15px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 400;
  letter-spacing: 0px;
}
.block__image-with-overlay .subtitle.image-with-text-overlay__subheading,
.image-with-text-overlay .subtitle.image-with-text-overlay__subheading,
.image-slideshow .subtitle.image-with-text-overlay__subheading {
  padding-top: 10px;
}
.block__image-with-overlay .title,
.image-with-text-overlay .title,
.image-slideshow .title {
  padding-top: 10px;
}
.block__image-with-overlay .image-with-text-overlay__banner,
.image-with-text-overlay .image-with-text-overlay__banner,
.image-slideshow .image-with-text-overlay__banner {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 798px) {
  .block__image-with-overlay .image-with-text-overlay__banner,
.image-with-text-overlay .image-with-text-overlay__banner,
.image-slideshow .image-with-text-overlay__banner {
    overflow: visible;
  }
}
.block__image-with-overlay .image-with-text-overlay__banner h1.title,
.image-with-text-overlay .image-with-text-overlay__banner h1.title,
.image-slideshow .image-with-text-overlay__banner h1.title {
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 300;
  font-style: normal;
  font-size: 40.0px;
  text-transform: none;
  line-height: 1.5;
  color: #414042;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 798px) {
  .block__image-with-overlay .image-with-text-overlay__banner h1.title,
.image-with-text-overlay .image-with-text-overlay__banner h1.title,
.image-slideshow .image-with-text-overlay__banner h1.title {
    font-size: 32px;
  }
}
.block__image-with-overlay .image-with-text-overlay__banner h1.title > a,
.block__image-with-overlay .image-with-text-overlay__banner h1.title > a:link,
.block__image-with-overlay .image-with-text-overlay__banner h1.title > a:visited,
.image-with-text-overlay .image-with-text-overlay__banner h1.title > a,
.image-with-text-overlay .image-with-text-overlay__banner h1.title > a:link,
.image-with-text-overlay .image-with-text-overlay__banner h1.title > a:visited,
.image-slideshow .image-with-text-overlay__banner h1.title > a,
.image-slideshow .image-with-text-overlay__banner h1.title > a:link,
.image-slideshow .image-with-text-overlay__banner h1.title > a:visited {
  color: #414042;
}
.block__image-with-overlay .image-with-text-overlay__banner h1.title > a:hover,
.block__image-with-overlay .image-with-text-overlay__banner h1.title > a:focus,
.image-with-text-overlay .image-with-text-overlay__banner h1.title > a:hover,
.image-with-text-overlay .image-with-text-overlay__banner h1.title > a:focus,
.image-slideshow .image-with-text-overlay__banner h1.title > a:hover,
.image-slideshow .image-with-text-overlay__banner h1.title > a:focus {
  color: #5b4f7b;
}
.block__image-with-overlay .image-with-text-overlay__banner .placeholder-svg,
.image-with-text-overlay .image-with-text-overlay__banner .placeholder-svg,
.image-slideshow .image-with-text-overlay__banner .placeholder-svg {
  min-height: 400px;
}
.block__image-with-overlay .caption,
.image-with-text-overlay .caption,
.image-slideshow .caption {
  position: absolute;
  width: 100%;
  top: 50%;
  display: block;
  padding: 1%;
  pointer-events: none;
}
@media only screen and (min-width: 799px) {
  .block__image-with-overlay .caption,
.image-with-text-overlay .caption,
.image-slideshow .caption {
    transform: translateY(-50%);
  }
}
@media only screen and (min-width: 481px) {
  .block__image-with-overlay .caption.align-middle,
.image-with-text-overlay .caption.align-middle,
.image-slideshow .caption.align-middle {
    top: 50%;
    transform: translate(0, -50%);
  }
}
.block__image-with-overlay .caption.align-top,
.image-with-text-overlay .caption.align-top,
.image-slideshow .caption.align-top {
  top: 0;
  transform: none;
}
.block__image-with-overlay .caption.align-bottom,
.image-with-text-overlay .caption.align-bottom,
.image-slideshow .caption.align-bottom {
  bottom: 0;
  top: auto;
  transform: none;
}
.block__image-with-overlay .caption-content,
.image-with-text-overlay .caption-content,
.image-slideshow .caption-content {
  pointer-events: all;
  display: inline-block;
}
.block__image-with-overlay .caption-overlay-true,
.image-with-text-overlay .caption-overlay-true,
.image-slideshow .caption-overlay-true {
  z-index: 3;
}
.block__image-with-overlay .dark-overlay-true:after,
.image-with-text-overlay .dark-overlay-true:after,
.image-slideshow .dark-overlay-true:after {
  content: "";
  position: absolute;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.block__image-with-overlay .banner--full-link,
.image-with-text-overlay .banner--full-link,
.image-slideshow .banner--full-link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  font-size: 0;
  line-height: 0;
}

.image-with-text-overlay__buttons {
  justify-content: space-between;
}
.image-with-text-overlay__buttons.are-small {
  max-width: 300px;
}
.image-with-text-overlay__buttons.are-regular {
  max-width: 400px;
}
.image-with-text-overlay__buttons.are-large {
  max-width: 500px;
}
.image-with-text-overlay__buttons.is-justify-left {
  justify-content: flex-start;
}
.image-with-text-overlay__buttons.is-justify-right {
  justify-content: flex-end;
}
.image-with-text-overlay__buttons.is-justify-center {
  justify-content: center;
}
.image-with-text-overlay__buttons .button {
  flex: 0 0 calc(50% - 6px);
  margin-bottom: 12px;
  white-space: normal;
  margin-left: 0;
  margin-right: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .image-with-text-overlay__buttons .button {
    width: 100% !important;
    max-width: calc(50% - 6px) !important;
    margin: 0px auto;
  }
}
@media only screen and (max-width: 480px) {
  .image-with-text-overlay__buttons .button {
    flex: 1 0 100%;
  }
}

/* # List of collections page
================================================== */
.list-collection-wrapper .list-collection__thumbnail {
  display: block;
  margin-bottom: 30px;
}

.collection-list .has-no-side-gutter .list-collection__thumbnail {
  margin-bottom: 0;
}

.list-collection__thumbnail {
  overflow: hidden;
}
.list-collection__thumbnail .product-wrap {
  position: relative;
  overflow: hidden;
}
.list-collection__thumbnail .product-wrap:hover img, .list-collection__thumbnail .product-wrap:hover svg {
  transform: scale(1.1);
}
.list-collection__thumbnail img,
.list-collection__thumbnail svg {
  transition: all 0.3s ease-in-out;
}

.collection-thumbnail-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.collection-info__caption {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  z-index: 2;
}
.collection-info__caption .title {
  display: block;
  margin-bottom: 20px;
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  text-transform: none;
  line-height: 1.5;
  color: #414042;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 798px) {
  .collection-info__caption .title {
    font-size: 16px;
  }
}
.collection-info__caption .title > a,
.collection-info__caption .title > a:link,
.collection-info__caption .title > a:visited {
  color: #414042;
}
.collection-info__caption .title > a:hover,
.collection-info__caption .title > a:focus {
  color: #5b4f7b;
}

.collection-info__caption--below-image {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.collection-info__caption--below-image .title {
  text-align: center;
}

.pdp-tabs {
  border-bottom: 1px solid #E1DCD5;
  margin-left: 10px;
  margin-right: 10px;
}
.pdp-tabs .accordion > a {
  padding: 35px 0;
  display: block;
  border-top: 1px solid #E1DCD5;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 2px;
  color: #414042;
}
.pdp-tabs .accordion > a:after, .pdp-tabs .accordion > a:before {
  content: "";
  float: right;
  background-color: #414042;
  width: 1px;
  height: 11px;
  opacity: 0.6;
  margin-right: 5px;
}
.pdp-tabs .accordion > a:before {
  margin-left: -7px;
}
.pdp-tabs .accordion > a:after {
  transform: rotate(90deg);
}
.pdp-tabs .accordion > a.active::before {
  display: none;
}
.pdp-tabs .accordion .content {
  display: none;
  font-size: 15px;
  line-height: 23px;
  color: #414042;
  padding-bottom: 24px;
}

/* # Logo list
================================================== */
.logo-list .logo-list__item {
  width: 100px;
  height: 101px;
}
.logo-list .logo-list__item:nth-child(-n+2) {
  padding-top: 11px;
}
.logo-list .has-background {
  padding-top: 20px;
}
.logo-list p.logo_text {
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 1px;
  color: #414042;
  text-align: center;
  margin-top: 8px;
  text-transform: uppercase;
}
@media only screen and (max-width: 480px) {
  .logo-list .logo-list__wrapper {
    max-width: 1200px;
    width: 95%;
  }
}
.logo-list .logo-list__wrapper .image-element__wrap:nth-child(n+3) {
  width: 69px !important;
  height: 69px !important;
}
@media only screen and (max-width: 480px) {
  .logo-list .small-down--one-half {
    width: calc(33% - 20px);
  }
}

/* # Map
================================================== */
.maps {
  width: 100%;
}

.map {
  height: 100%;
  width: 100%;
}

/* # Mobile Header
================================================== */
.mobile-menu--opened {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  height: 100vh;
}

#mobile-header .mobile-header__logo {
  width: 100%;
  max-height: 60px;
  height: auto;
}

.mobile-header {
  background-color: #ffffff;
  transition: background-color 0.3s linear, height 0.2s linear;
  width: 100%;
}
@media only screen and (min-width: 799px) {
  .mobile-header {
    display: none;
  }
}

.mobile-header__content {
  display: flex;
  align-items: center;
  min-height: 68px;
  height: auto;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 798px) {
  .mobile-header__content {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 480px) {
  .mobile-header__content {
    padding: 0 10px;
  }
}

.mobile-menu__toggle-icon {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: visibility 0s linear, opacity 0.33s linear 0.1s;
  padding: 10px 5px 10px 0;
}
.mobile-menu__toggle-icon .icon {
  fill: #414042;
}
.mobile-menu__toggle-icon .mobile-header__open-menu {
  transition: visibility 0s linear, opacity 0.33s linear 0.1s;
}
.mobile-menu__toggle-icon .mobile-header__close-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: visibility 0s linear, opacity 0.33s linear 0.1s;
}
.mobile-menu__toggle-icon.is-active .mobile-header__open-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.mobile-menu__toggle-icon.is-active .mobile-header__close-menu {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.mobile-layout--left .mobile-logo {
  width: calc(50% - 10px);
}
.mobile-layout--left .mobile-dropdown,
.mobile-layout--left .mobile-icons {
  width: calc(25% - 10px);
}
.mobile-layout--left .mobile-icons {
  justify-content: flex-end;
}
.mobile-layout--left.mobile-logo__position--left .mobile-dropdown,
.mobile-layout--left.mobile-logo__position--left .mobile-icons {
  width: auto;
}

.mobile-logo,
.mobile-dropdown,
.mobile-icons {
  display: flex;
  align-items: center;
  padding: 0 5px;
}

.mobile-icons {
  order: 2;
}

.mobile-dropdown {
  order: 0;
}

.mobile-logo {
  order: 1;
  justify-content: center;
  flex-grow: 1;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}
.mobile-logo .image-element__wrap {
  max-width: 200px !important;
}

.mobile-logo__position--left .mobile-logo {
  order: 0;
  justify-content: left;
  text-align: left;
}

.mobile-layout--left.mobile-logo__position--below {
  flex-wrap: wrap;
}
.mobile-layout--left.mobile-logo__position--below .mobile-dropdown,
.mobile-layout--left.mobile-logo__position--below .mobile-icons {
  width: 50%;
}
.mobile-layout--left.mobile-logo__position--below .mobile-logo {
  display: none;
}

.mobile-layout--right .action-area__link.has-cart-count {
  padding-right: 5px;
}

.mobile-layout--right.mobile-logo__position--below {
  flex-wrap: wrap;
}
.mobile-layout--right.mobile-logo__position--below .mobile-icons {
  flex-grow: 1;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.mobile-layout--right.mobile-logo__position--below .mobile-logo {
  display: none;
}

.mobile-dropdown__position--left {
  order: 0;
}

.mobile-dropdown__position--right {
  order: 3;
  padding-top: 5px;
}

.mobile-logo__outer {
  justify-content: center;
  display: flex;
  background-color: #ffffff;
  padding: 10px 0;
  width: 100%;
}
.mobile-logo__outer a {
  color: #414042;
}
.mobile-logo__outer .image-element__wrap {
  max-width: 200px !important;
}

.mobile-menu a {
  color: #414042;
}
.mobile-menu a:hover {
  color: #69588d;
}

.submenu__label:hover a {
  color: #5b4f7b;
}

.mobile-menu__submenu {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: none;
}

.mobile-menu__toggle-icon.is-active + .mobile-menu {
  transition: left 0.5s;
  left: 0;
}

.mobile-menu {
  max-height: 100%;
  min-height: 100vh;
  left: -100%;
  position: absolute;
  top: 100%;
  transition: left 0.3s ease-in-out;
  width: 100%;
  z-index: 40;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu .mobile-menu__item {
  align-items: center;
}
.mobile-menu .mobile-menu__item .icon {
  fill: rgba(0,0,0,0);
  margin-right: 12px;
}
.mobile-menu .mobile-menu__item .icon:hover {
  fill: rgba(0,0,0,0);
}
.mobile-menu .mobile-menu__item select {
  color: #414042;
}
.mobile-menu .mobile-menu__item select:hover {
  color: #69588d;
}
.mobile-menu .mobile-menu-link,
.mobile-menu .mobile-menu__item {
  display: flex;
  line-height: 1.5;
  padding: 0.5rem 1.5rem;
}

.mobile-menu__first-level label {
  display: block;
  position: relative;
}
.mobile-menu__first-level .close-dropdown,
.mobile-menu__first-level .close-sub-dropdown {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  height: 100%;
  width: 25%;
  z-index: 2;
}
.mobile-menu__first-level .has-no-link .close-dropdown,
.mobile-menu__first-level .has-no-link .close-sub-dropdown {
  width: 100%;
}

.mobile-menu__content {
  padding-bottom: 100px;
}
.mobile-menu__content .icon-caption {
  padding: 0;
  font-size: 1em;
}

.mobile__currency-dropdown {
  align-items: center;
  position: relative;
}
.mobile__currency-dropdown .icon-caption {
  position: absolute;
}
.mobile__currency-dropdown select {
  border: none;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: none;
  height: inherit;
  background: transparent;
  color: currentColor;
}

.mobile-menu-icons {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 75vh;
  width: 100%;
  padding: 0;
}

.mobile-menu-link {
  position: relative;
}
.mobile-menu-link::after {
  border-color: #69588d;
  right: 1.125em;
  z-index: 4;
  font-size: 1.1em;
}

.mobile-menu__submenu {
  transition: max-height 0.5s;
  border-left: 1px solid #f0edea;
  margin-left: 20px;
  max-height: 0;
  overflow: hidden;
  padding-left: 0;
}
.mobile-menu__submenu.has-mega-menu {
  margin-left: 0;
  max-height: none;
  display: none;
}
.mobile-menu__submenu .mega-menu {
  display: block;
  position: relative;
  background-color: #ffffff !important;
  left: 0;
}

.submenu__input:checked ~ .mobile-menu__submenu {
  transition: max-height 0.8s;
  max-height: 100vh;
}
.submenu__input:checked ~ .mobile-menu__submenu.has-dropdown {
  max-height: 100vh;
}
.submenu__input:checked ~ .mobile-menu__submenu.has-mega-menu {
  max-height: none;
  display: block;
  border-left: 0;
}
.submenu__input:checked + label a:after {
  transform: translateY(-60%) rotate(180deg);
}
.submenu__input + label a:after {
  transition: transform 0.2s linear;
}

.header__icon-style-text .mobile-icons,
.header__icon-style-icons-text .mobile-icons {
  flex-wrap: wrap;
  justify-content: center;
}
.header__icon-style-text .mobile-icons.has-one-icon,
.header__icon-style-icons-text .mobile-icons.has-one-icon {
  justify-content: flex-end;
}
.header__icon-style-text .mobile-icons .action-area__link,
.header__icon-style-icons-text .mobile-icons .action-area__link {
  padding: 5px;
}
.header__icon-style-text .header-cart__caption,
.header__icon-style-icons-text .header-cart__caption {
  white-space: nowrap;
}

.header__icon-style-icons .mobile__currency-dropdown .icon-caption {
  display: block;
  opacity: 0;
}

.header__icon-style-text .mobile__currency-dropdown {
  line-height: 1.5;
  padding: 0.5rem 1.5rem;
}
.header__icon-style-text .mobile__currency-dropdown .icon-caption {
  position: relative;
}
.header__icon-style-text .mobile__currency-dropdown select,
.header__icon-style-text .mobile__currency-dropdown option {
  padding-left: 0px;
}

@-moz-document url-prefix() {
  .header__icon-style-text .mobile__currency-dropdown select {
    text-indent: -2px;
  }
}
.header__icon-style-icons-text .mobile__currency-dropdown select {
  padding-left: 25px;
}

.mobile-menu__toggle-button {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  z-index: 50;
  bottom: 0;
}
.mobile-menu__toggle-button.mobile-toggle__position--right {
  right: 0;
  left: initial;
}
@media only screen and (max-width: 798px) {
  .mobile-menu__toggle-button {
    display: block;
  }
}

/* # Mega menu
================================================== */
.mega-menu-section {
  display: none;
}

#header {
  min-height: 88px;
}

#header .is-width-wide .mega-menu {
  width: calc(100% + 20px);
  left: calc(-20px / 2);
}

.header--search-focus .mega-menu {
  overflow: auto;
}

.mega-menu {
  display: none;
  left: 0;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: none;
  position: absolute;
  top: 100%;
  width: 100%;
  min-width: 100%;
  z-index: 20;
  box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
}
@media only screen and (max-width: 798px) {
  .mega-menu {
    box-shadow: 0;
  }
}
.mega-menu.mega-menu--show {
  display: block;
}
.mega-menu.mega-menu--force-show {
  display: block !important;
  z-index: 30 !important;
}
.mega-menu a,
.mega-menu a:active,
.mega-menu a:visited {
  color: #414042;
}
.mega-menu a:hover {
  color: #5b4f7b;
}
.mega-menu .menu__heading {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.2;
}
.mega-menu .mega-menu__linklist-link {
  display: inline-block;
  padding: 0.5em 0;
  line-height: 1;
}
.mega-menu .mega-menu__image {
  max-height: none;
}

.mega-menu__block {
  padding: 20px;
}
@media only screen and (max-width: 798px) {
  .mega-menu__block.block__empty-column {
    display: none;
  }
}
.mega-menu__block.block__featured-promo .button {
  width: 100%;
}
.mega-menu__block .mega-menu__content {
  margin-top: 10px;
}
.mega-menu__block .mega-menu__content:first-child {
  margin-top: 0;
}
.mega-menu__block.block__featured-product .price {
  font-size: 0.9em;
}

.mega-menu__banner {
  padding: 0.75em 1em;
  width: 100%;
  transition: background-color 0.2s linear;
}
.mega-menu__banner .icon {
  flex-shrink: 0;
}
.mega-menu__banner .mega-menu__sticker-text {
  padding: 0 0.5em;
}
.mega-menu__banner.is-small {
  font-size: 0.8rem;
}
.mega-menu__banner.is-regular {
  font-size: 1rem;
}
.mega-menu__banner.is-large {
  font-size: 1.2rem;
}

.navbar-item.has-mega-menu {
  position: static;
}

.mega-menu__section.is-active .mega-menu {
  display: block;
}

.mega-menu__content {
  position: relative;
  width: 100%;
}
.mega-menu__content .has-thumbnail-sticker .sticker-holder__content {
  font-size: 14px;
}

/* # Popup
================================================== */
.popup-modal .fancybox-bg {
  opacity: 1;
}
.popup-modal .fancybox-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
@media only screen and (max-width: 480px) {
  .popup-modal .fancybox-slide {
    align-items: flex-end;
    padding: 0;
  }
}

.popup__wrapper {
  display: none;
  padding: 0;
  max-width: 900px;
  width: 90%;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 480px) {
  .popup__wrapper {
    width: 100%;
  }
}
.popup__wrapper.animated {
  opacity: 0;
}
.popup__wrapper.has-image .newsletter-form {
  max-width: 100%;
}

.popup__text {
  font-size: 1rem;
}

.popup__close {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  cursor: pointer;
}
.popup__close .icon--vertical-align {
  display: flex;
  justify-content: center;
  margin: auto;
}

.newsletter-section--popup {
  margin: 0;
  padding-top: 20px;
  width: 100%;
  max-width: none;
}
.newsletter-section--popup .newsletter__wrapper {
  max-width: 100%;
  padding: 0;
}

.popup__image {
  align-items: center;
  position: relative;
  min-width: 200px;
  width: 40%;
}
.popup__image.has-image-crop img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .popup__image {
    display: none;
  }
}

.image-position-right .popup__image {
  order: 1;
}
.image-position-right .popup__close {
  left: 0;
  right: auto;
}

.popup__content {
  max-width: calc(75% - 80px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 0 60%;
  padding: 40px;
}
@media only screen and (max-width: 798px) {
  .popup__content {
    max-width: 100%;
    padding: 20px;
  }
}

.popup__header {
  width: calc(100% - 12px);
}
@media only screen and (max-width: 798px) {
  .popup__header {
    margin: 0 10px;
  }
}

/* # Rich text
================================================== */
.mobile-shrink-text span,
.mobile-shrink-text p {
  font-size: 1em;
  display: block;
}
@media only screen and (max-width: 798px) {
  .mobile-shrink-text span,
.mobile-shrink-text p {
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 798px) {
  .mobile-shrink-text span,
.mobile-shrink-text p {
    font-size: 0.5em;
  }
}

.rich-text__content a.button {
  max-width: 50%;
}
@media only screen and (max-width: 798px) {
  .rich-text__content a.button {
    max-width: 100%;
  }
}

.rich-text__content a.button--secondary {
  color: #fff;
}

/* # Search
================================================== */
@media only screen and (max-width: 798px) {
  .search-form {
    padding-top: 20px;
  }
}
.search-form .search__fields input[type=text] {
  outline: none;
  border-radius: 0;
  border: thin solid #f0edea;
  color: #7a7a7a;
}
.search-form .search__fields input[type=text]:active, .search-form .search__fields input[type=text]:focus {
  color: #0a0a0a;
  box-shadow: none;
}
.search-form .search__fields [data-icon=search] {
  padding: 5px;
  color: #0a0a0a;
}

/* # Search page - default view and results
================================================== */
@media only screen and (max-width: 480px) {
  .search-result__image-container {
    padding-bottom: 20px;
  }
}

/* # Search overlay & Popup
================================================== */

[data-show-search-trigger] {
  cursor: pointer;
}
[data-show-search-trigger] * {
  pointer-events: none;
}

.search-overlay__title {
  font-size: 20px;
}

.search-overlay__title,
.search-popup__title {
  color: #414042;
}

.search-overlay__form,
.search-popup__form {
  padding: 20px 0;
}
.search-overlay__form .field:not(:last-child),
.search-popup__form .field:not(:last-child) {
  padding-bottom: 0;
}

.search-menu__list {
  display: inline;
  list-style: none;
  padding-left: 5px;
}
@media only screen and (max-width: 798px) {
  .search-menu__list {
    padding-left: 0;
    padding-top: 5px;
  }
}

.search-menu__item {
  display: inline-block;
  padding: 0 5px;
}
@media only screen and (max-width: 798px) {
  .search-menu__item {
    width: 100%;
    padding: 0;
  }
}
.search-menu__item a,
.search-menu__item a:visited {
  color: #414042;
}
.search-menu__item a:hover, .search-menu__item a:focus,
.search-menu__item a:visited:hover,
.search-menu__item a:visited:focus {
  color: #5b4f7b;
}

.search-overlay {
  background-color: #ffffff;
  color: #414042;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  z-index: 5;
  box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
}
.search-overlay.sticky-search {
  position: fixed;
}
.search-overlay.is-opened {
  display: block;
}
@media only screen and (min-width: 1025px) {
  .search-overlay .search-menu {
    max-width: 70%;
    margin: 0px auto;
  }
}

.search-overlay__close {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
}
.search-overlay__close:hover {
  opacity: 0.5;
}

.search-overlay__wrapper {
  padding: 30px 0 10px;
}

.search-popup {
  display: none;
  background-color: #ffffff;
  color: #414042;
  max-width: 600px;
  padding: 60px 0 45px;
  font-size: 1.2em;
}
.search-popup .search-overlay__wrapper {
  padding: 0 45px;
}
.search-popup .search-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.search-popup .search-menu__title {
  padding-bottom: 20px;
}
@media only screen and (max-width: 798px) {
  .search-popup .search-menu__title {
    padding-bottom: 0;
  }
}
.search-popup .search-menu__item {
  width: 45%;
  padding: 0;
  display: block;
}
@media only screen and (max-width: 798px) {
  .search-popup .search-menu__item {
    width: 100%;
    text-align: center;
  }
}

@media only screen and (min-width: 1025px) {
  .search-popup__form {
    margin: 0px auto;
  }
}

.predictive-results {
  opacity: 0;
  list-style: none;
  background-color: white;
  padding: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 10;
  transition: opacity 0.25s ease-in-out;
  box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
}
.predictive-results li {
  border-top: 1px solid #f0edea;
  padding: 10px;
}
.predictive-results li a,
.predictive-results li a:visited {
  color: #414042;
}
.predictive-results li a:hover,
.predictive-results li a:active {
  color: rgba(65, 64, 66, 0.3);
}
.predictive-results li:first-child {
  border-top: 0;
}

.result-link {
  display: flex;
  align-items: center;
}

.result-image {
  max-width: 40px;
  margin-right: 10px;
}

.result-info {
  display: flex;
  flex-direction: column;
}
.result-info .money {
  font-weight: bold;
}

.search__lightbox .predictive-results {
  position: relative;
}

.search-blog-wrapper {
  margin-top: 32px;
}
@media only screen and (min-width: 1025px) {
  .search-blog-wrapper .blog-card__content {
    padding: 0 0 0 35px !important;
  }
}
.search-blog-wrapper .meta-tag-list {
  margin-top: 23px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 798px) {
  .search-blog-wrapper .meta-tag-list {
    margin: 0;
  }
}
.search-blog-wrapper .meta-tag-list a {
  font-size: 12px;
  line-height: 23px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.search-blog-wrapper .search-result__title {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 3px;
}
@media only screen and (max-width: 798px) {
  .search-blog-wrapper .search-result__title {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 2px;
  }
}
.search-blog-wrapper .meta-info-list {
  margin: 16px 0;
}
@media only screen and (max-width: 798px) {
  .search-blog-wrapper .meta-info-list {
    margin: 15px 0 0;
  }
}
@media only screen and (min-width: 1025px) {
  .search-blog-wrapper .blog-card__read-more {
    margin-left: 35px !important;
  }
}
.search-blog-wrapper .blog-card__read-more a {
  font-size: 15px;
  text-decoration: underline;
  line-height: 23px;
}
@media only screen and (min-width: 1025px) {
  .search-blog-wrapper .social-share-buttons {
    margin-left: 35px;
  }
}

.blog-author {
  width: 100%;
  padding-bottom: 32px;
  border-bottom: 1px solid #E1DCD5;
}
.blog-author .media {
  align-items: center;
}
.blog-author .media-left {
  width: 100%;
  margin-right: 54px;
  max-width: 240px;
}
.blog-author .media-left img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.blog-author .media-content {
  width: 100%;
  max-width: 680px;
}
.blog-author .media-content .comment__author {
  margin-bottom: 16px;
}
.blog-author .media-content .comment__author a {
  color: #433E3A;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.blog-author .media-content .subtitle {
  margin: 0 !important;
  font-size: 15px;
  line-height: 23px;
  color: #414042;
}

@media only screen and (max-width: 767px) {
  .blog-author .media {
    flex-wrap: wrap;
    position: relative;
  }
  .blog-author .media-left {
    max-width: 90px;
  }
  .blog-author .media-content {
    margin-top: 24px;
  }
  .blog-author .media-content .comment__author {
    position: absolute;
    top: 30px;
    left: 122px;
  }
  .blog-author .media-content .subtitle {
    padding-right: 20px;
  }
}
/* # Sidebar
================================================== */
@media only screen and (max-width: 798px) {
  .sidebar-section {
    width: 100% !important;
  }.sidebar-section {
      order: 1;
    }.sidebar-section + .has-sidebar-option {
    width: 100% !important;
  }
}

.sidebar-block__heading {
  cursor: default;
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar-block__heading + .sidebar-block__content {
  padding-top: 0.9rem;
}

.sidebar__block.sidebar-toggle-active {
  padding-top: 10px;
  padding-bottom: 10px;
}
.sidebar__block:first-child {
  padding-top: 0;
}
.sidebar__block:last-child {
  padding-bottom: 0;
}

.sidebar-block__toggle-icon {
  position: absolute;
  right: 0;
  border: none;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  background: transparent;
}
.sidebar-block__toggle-icon:focus {
  outline: 0;
}
.sidebar-block__toggle-icon .icon {
  color: #0a0a0a;
  transition: transform 0.2s linear;
}

.icon-style--plus_and_minus .icon.icon--active + .icon {
  display: none;
}

.sidebar-toggle-active.is-active .icon-style--carets .icon {
  transform: rotate(180deg);
}
.sidebar-toggle-active.is-active .icon-style--plus_and_minus .icon.icon--active {
  display: none;
}
.sidebar-toggle-active.is-active .icon-style--plus_and_minus .icon.icon--active + .icon {
  display: block;
}

[data-sidebar-block__content--collapsible] {
  display: none;
}

.sidebar-block__recent-post {
  margin-bottom: 10px;
}
.sidebar-block__recent-post .label {
  font-weight: normal;
}

@media only screen and (min-width: 799px) {
  .block__featured-promo {
    width: 75%;
  }
}
.block__featured-promo .card-content {
  padding: 20px;
}
.block__featured-promo .sidebar__promo-content {
  margin-left: 0;
}

.block__newsletter .newsletter-section {
  width: 100%;
}
.block__newsletter .newsletter__wrapper {
  max-width: 100%;
}
.block__newsletter .newsletter__text {
  color: inherit !important;
}

.block__menu .sidebar-block__item {
  margin-bottom: 5px;
}

.block__tag-filter .tag-filter__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.block__tag-filter .tag-filter__label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  color: #69588d;
  transition: 0.2s linear;
  display: flex;
  align-items: center;
}
.block__tag-filter .tag-filter__label:hover {
  color: #5b4f7b;
}
.block__tag-filter .tag-filter__item.is-active .tag-filter__label {
  cursor: initial;
  color: initial;
}
.block__tag-filter .tag-filter__item.is-active .tag-filter__label:hover {
  color: initial;
}
.block__tag-filter .tag-filter__checkbox--regular {
  display: none;
}
.block__tag-filter .tag-filter__swatch {
  -webkit-appearance: none;
          appearance: none;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  vertical-align: top;
  background-size: cover;
  margin-right: 10px;
  font-size: 0;
}.block__tag-filter .tag-filter__swatch input[style*=no-image-50],
.block__tag-filter .tag-filter__swatch input.swatch__image--empty {
  opacity: 0;
}
.block__tag-filter .tag-filter__checkbox--swatch {
  -webkit-appearance: none;
          appearance: none;
  width: 100%;
  height: 20px;
  background-size: cover;
  background-position: center;
}/* # Slideshow with text
================================================== */
@media only screen and (max-width: 798px) {
  .slideshow-with-text .has-gutter-enabled .image-slideshow {
    margin-bottom: 20px;
  }
}
.slideshow-with-text .flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  top: 50%;
  width: 45%;
  height: 45%;
  transform: translateX(-50%) translateY(-50%);
}
.slideshow-with-text .text-slideshow__heading.banner__subheading {
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 15px;
  font-weight: 300;
  font-style: normal;
}
.slideshow-with-text .text-slideshow__heading.banner__heading {
  font-family: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
}

.image-slideshow {
  opacity: 0;
  transition: opacity 0.4s;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 798px) {
  .image-slideshow {
    order: 1;
  }
}
.image-slideshow .placeholder-svg {
  height: 500px;
}
@media only screen and (max-width: 798px) {
  .image-slideshow .placeholder-svg {
    height: 300px;
  }
}
.image-slideshow .flickity-buttons-container {
  position: absolute;
  display: flex;
  bottom: 20px;
  right: 20px;
}
@media only screen and (max-width: 798px) {
  .image-slideshow .flickity-buttons-container {
    display: none;
  }
}
.image-slideshow .flickity-button {
  position: relative;
  transform: none;
}
.image-slideshow .flickity-button:first-child {
  margin-right: 10px;
}

.image-slideshow-position--left .flickity-buttons-container {
  left: 5%;
  right: auto;
}

.image-slideshow-position--right {
  order: 2;
}
@media only screen and (max-width: 798px) {
  .image-slideshow-position--right {
    order: 0;
  }
}

.image-slideshow.flickity-enabled {
  opacity: 1;
  height: auto;
}

.image-slideshow__slide {
  width: 100%;
}
.image-slideshow__slide .image-element__wrap {
  width: 100%;
  height: auto;
}

.text-slideshow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.text-slideshow .flickity-viewport,
.text-slideshow .flickity-slider {
  height: 100%;
}
.text-slideshow .flickity-page-dots {
  align-self: flex-end;
  position: static;
  padding-bottom: 3em;
}
@media only screen and (max-width: 798px) {
  .text-slideshow .flickity-page-dots {
    padding-top: 3em;
    padding-bottom: 0;
    order: -1;
  }
}
.text-slideshow.flickity-page-dots--hidden .flickity-page-dots {
  display: none;
}
@media only screen and (max-width: 798px) {
  .text-slideshow.flickity-page-dots--hidden .flickity-page-dots {
    display: block;
  }
}

.text-slideshow__slide {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 3em;
}

.text-slideshow__content {
  width: 100%;
  opacity: 0;
  animation-delay: 0.2s;
}
.text-slideshow__content.animated.none {
  opacity: 1;
}
.text-slideshow__content .button {
  margin-top: 10px;
}

.text-slideshow__heading {
  padding-bottom: 20px;
  line-height: 1.5;
  margin: 0;
}
.text-slideshow__heading.subtitle {
  font-size: 15px;
}

/* # Slideshow - classic
================================================== */
.slideshow-classic {
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .slideshow-classic.page-dots--true {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}
.slideshow-classic .flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 45%;
  height: 45%;
  transform: translateX(-50%) translateY(-50%);
}
.slideshow-classic .mobile-text--over-media .caption {
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 480px) {
  .slideshow-classic .mobile-text--below-media .caption {
    position: static;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.slideshow-classic .gallery-cell {
  width: 100%;
}
.slideshow-classic .gallery-cell .image-element__wrap {
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .slideshow-classic .gallery-cell {
    display: block;
  }
}
.slideshow-classic .flickity-button,
.slideshow-classic .flickity-page-dots {
  position: absolute;
  top: auto;
  bottom: 25px;
}
.slideshow-classic .flickity-button {
  z-index: 10;
}
@media only screen and (max-width: 480px) {
  .slideshow-classic .flickity-button {
    display: none;
  }
}
.slideshow-classic .flickity-page-dots {
  bottom: 40px;
}
@media only screen and (max-width: 480px) {
  .slideshow-classic .flickity-page-dots {
    bottom: 0;
  }
}

.slideshow-classic__buttons {
  justify-content: space-between;
}
.slideshow-classic__buttons.are-small {
  max-width: 300px;
}
.slideshow-classic__buttons.are-regular {
  max-width: 400px;
}
.slideshow-classic__buttons.are-large {
  max-width: 500px;
}
.slideshow-classic__buttons.is-justify-left {
  justify-content: flex-start;
}
.slideshow-classic__buttons.is-justify-right {
  justify-content: flex-end;
}
.slideshow-classic__buttons.is-justify-center {
  justify-content: center;
}
.slideshow-classic__buttons .button {
  flex: 0 0 calc(50% - 6px);
  margin-bottom: 12px;
  white-space: normal;
  margin-left: 0;
  margin-right: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .slideshow-classic__buttons .button {
    width: 100% !important;
    max-width: calc(50% - 6px) !important;
    margin: 0px auto;
  }
}
@media only screen and (max-width: 480px) {
  .slideshow-classic__buttons .button {
    flex: 1 0 100%;
  }
}

.slideshow-classic__banner {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 798px) {
  .slideshow-classic__banner {
    overflow: visible;
  }
}
.slideshow-classic__banner h2.title {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  text-transform: none;
}
.slideshow-classic__banner .slideshow-classic__subheading {
  padding-top: 10px;
}
.slideshow-classic__banner .placeholder-svg {
  min-height: 400px;
}

.index .shopify-section:first-child .flickity-page-dots {
  padding-left: 7px;
  text-align: left;
}
.index .shopify-section:first-child .text-slideshow__content .button--primary {
  height: 45px;
  padding: 15px 30px 14px;
}
.index .shopify-section:first-child .slideshow-with-text__container > .image-slideshow-column {
  max-width: 100%;
}
@media only screen and (min-width: 799px) {
  .index .shopify-section:first-child .slideshow-with-text__container > .image-slideshow-column {
    max-width: 624px;
  }
}
.index .shopify-section:first-child .slideshow-with-text__container > .image-slideshow-column .image-slideshow__slide .image-element__wrap {
  max-width: 100% !important;
}
@media only screen and (min-width: 799px) {
  .index .shopify-section:first-child .slideshow-with-text__container > .image-slideshow-column .image-slideshow__slide .image-element__wrap {
    max-width: 624px !important;
  }
}
@media only screen and (min-width: 799px) {
  .index .slideshow-with-text .text-slideshow__heading.banner__heading {
    max-width: 270px;
  }
  .index .slideshow-with-text .text-slideshow__heading.banner__subheading {
    max-width: 300px;
  }
}
.index .featured-collection__title {
  font-size: 18px;
}

@media only screen and (max-width: 798px) {
  .index .shopify-section:first-child .flickity-page-dots {
    padding-left: 0;
    padding-top: 5px;
  }
  .index .shopify-section:first-child .flickity-page-dots li:first-child {
    margin-left: 0px;
  }
  .index .shopify-section:first-child .text-slideshow__slide {
    padding-left: 0;
    padding-top: 15px;
  }
  .index .shopify-section:first-child .text-slideshow__slide .text-slideshow__heading {
    margin: 0 !important;
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 799px) {
  .index .shopify-section:first-child .text-slideshow__slide {
    padding-left: 15px;
  }
  .index .shopify-section:first-child .slideshow-with-text .text-slideshow__heading.banner__heading {
    max-width: 300px;
  }
  .index .shopify-section:first-child .slideshow-with-text__container {
    justify-content: space-between;
  }
}
/* # Testimonial
================================================== */
.testimonials {
  display: flex;
}
.testimonials:after {
  content: "flickity";
  display: none;
}

.testimonial-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 798px) {
  .testimonial-block {
    margin-bottom: 20px;
    min-height: initial;
  }
}
.testimonial-block.testimonial-border--true {
  border: thin solid #f0edea;
}
.testimonial-block.testimonial-align--center .testimonial__description,
.testimonial-block.testimonial-align--center .testimonial__name {
  justify-content: center;
  text-align: center;
}
.testimonial-block.testimonial-align--center .testimonial__image {
  left: 50%;
  margin-left: -50px;
}

.testimonial__description,
.testimonial__name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  width: 100%;
  position: relative;
}

.testimonial__name {
  align-self: flex-end;
  padding: 70px 40px 25px;
  max-height: 175px;
  height: 175px;
}
@media only screen and (max-width: 1024px) {
  .testimonial__name {
    font-size: 0.85rem;
  }
}
@media only screen and (max-width: 798px) {
  .testimonial__name {
    font-size: 1rem;
    max-height: 23vh;
    height: 23vh;
  }
}

.testimonial__description {
  -ms-grid-row-align: center;
      align-self: center;
  padding: 40px;
  height: 100%;
  min-height: 250px;
}

.testimonial__image {
  position: absolute;
  margin-top: -50px;
  height: 100px;
  width: 100px;
  max-width: 100px;
  max-height: 100px;
  top: 0;
}
.testimonial__image.image-style--circle img, .testimonial__image.image-style--circle svg {
  border-radius: 50%;
}

.testimonial__nav-wrapper {
  justify-content: flex-end;
}
@media only screen and (max-width: 480px) {
  .testimonial__nav-wrapper {
    justify-content: space-between;
  }
}

.testimonial__nav {
  color: #69588d;
  margin-bottom: 10px;
  cursor: pointer;
}
.testimonial__nav:first-child {
  margin-right: 10px;
}
.testimonial__nav:hover {
  color: #5b4f7b;
}

.testimonial-block.has-images-enabled-true .testimonial__name {
  margin-top: 40px;
}

.testimonial-block.has-images-enabled-false .testimonial__name .testimonial__description {
  padding: 40px;
}

.is-width-wide .testimonial__nav:last-child {
  margin-right: 10px;
}

@media only screen and (min-width: 799px) {
  .mobile-slider .testimonials:after {
    content: "";
  }
}

@media only screen and (min-width: 799px) {
  .desktop-slider--disabled .testimonial__nav-wrapper {
    display: none;
  }
}
.desktop-slider--disabled .testimonial__description {
  height: initial;
}

/* # Top bar
================================================== */
@media only screen and (max-width: 798px) {
  .top-bar {
    display: none;
  }
}

.top-bar .navbar-item {
  font-family: sofia-pro, sans-serif;
  flex: 1 1 auto;
  text-align: center;
}

.top-bar__text {
  padding-left: 0.75rem;
  min-width: 25%;
}

.top-bar.disclosure-enabled .top-bar__item {
  flex: 0 0 auto;
}
.top-bar.disclosure-enabled .top-bar__item.top-bar__social-media {
  flex: 1 1 auto;
  justify-content: flex-end;
}
.top-bar.disclosure-enabled .top-bar__item.top-bar__social-media .navbar-item {
  padding-right: 20px;
  flex: 0 0 auto;
}

.top-bar__item,
.top-bar.disclosure-enabled .top-bar__item {
  display: flex;
  align-items: center;
}
.top-bar__item:first-child,
.top-bar.disclosure-enabled .top-bar__item:first-child {
  flex: 0 0 auto;
  justify-content: flex-start;
}
.top-bar__item:last-child,
.top-bar.disclosure-enabled .top-bar__item:last-child {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.top-bar__menu {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 798px) {
  .top-bar__menu {
    justify-content: center;
  }
}

.top-bar__social-media a {
  line-height: 0;
  margin-left: 5px;
  margin-right: 5px;
  display: block;
}
@media only screen and (max-width: 798px) {
  .top-bar__social-media .social-icons {
    justify-content: center;
  }
}

.top-bar__icons.cart--hidden {
  padding-right: 20px;
}

.top-bar__content .header__currency-dropdown select {
  color: inherit;
}
.top-bar__content .header__currency-dropdown select:hover {
  color: inherit;
}
.top-bar__content .header__icon-style-text .header__currency-dropdown select {
  padding-top: 0;
  padding-bottom: 0;
  height: auto;
  line-height: inherit;
}

/* # Video
================================================== */
@media only screen and (max-width: 480px) {
  .featured-video.is-width-half.has-video-added {
    background-color: transparent;
  }
}
.featured-video.is-width-half.has-video-added .video-wrapper {
  flex: 1;
}

.video__container {
  width: 100%;
}

.video-wrapper {
  position: relative;
}
.video-wrapper.overlay--text_only .video__text-wrapper {
  position: relative;
}
.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
}
.video-wrapper video[poster] {
  object-fit: cover;
}
.video-wrapper .poster-enabled {
  background-size: cover;
}
.video-wrapper .poster-enabled iframe {
  z-index: -1;
}
@media only screen and (max-width: 480px) {
  .video-wrapper .video-element {
    order: 2;
  }
}
.video-wrapper .video__text-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
}
.video-wrapper .video__text-container .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.video-wrapper .video__text {
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.video-wrapper .video__text-wrapper {
  margin: 0;
  padding: 30px;
}
.video-wrapper .video__text-wrapper .button {
  max-width: 50%;
}
@media only screen and (max-width: 480px) {
  .video-wrapper .video__text-wrapper .button {
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .video-wrapper {
    display: flex;
    flex-direction: column;
  }
}

@media only screen and (max-width: 480px) {
  .mobile-text--over-media .video__text-container {
    position: absolute;
  }
}

@media only screen and (max-width: 480px) {
  .mobile-text--below-media .video__text-container {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.nine15--two-grid {
  --left-grid: 1 / 1 / 1 / 1;
  --right-grid: 1 / 2 / 1 / 2;
  padding: 0;
}
.nine15--two-grid h3 {
  margin-bottom: 10px;
  font-weight: 700;
}
.nine15--two-grid h2 {
  font-size: 35px;
  font-weight: 300;
  line-height: 1;
  font-family: var(--font--header-stack);
  margin: 0 0 15px;
}
.nine15--two-grid h2 b, .nine15--two-grid h2 strong {
  font-weight: 300;
}
.nine15--two-grid .rte * {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 300;
}
.nine15--two-grid .rte * b, .nine15--two-grid .rte * strong {
  font-weight: 700;
}
.nine15--two-grid .rte * p {
  margin-bottom: 15px;
}
.nine15--two-grid .rte * p:last-of-type {
  margin-bottom: 0;
}
.nine15--two-grid .btn {
  margin-top: 1.5em;
}
.nine15--two-grid .grid_no_gutter .text-block {
  padding: 2em 1em;
}
.nine15--two-grid.hide-images .image-block {
  display: none;
}
.nine15--two-grid .video-inline {
  overflow: hidden;
  position: relative;
}
.nine15--two-grid .video-inline .wrapper {
  position: relative;
  padding-top: 56.25%;
  height: 0;
}
.nine15--two-grid .video-inline .wrapper video,
.nine15--two-grid .video-inline .wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
}
@media only screen and (max-width: 798px) {
  .nine15--two-grid h2,
.nine15--two-grid .rte * {
    text-align: center;
  }
}
@media only screen and (min-width: 799px) {
  .nine15--two-grid.hide-images {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .nine15--two-grid.hide-images .text-block {
    min-height: clamp(500px,50vw,100vh);
  }
  .nine15--two-grid.hide-images .grid_no_gutter {
    width: 50%;
  }
  .nine15--two-grid.hide-images .grid_no_gutter .grid__item {
    grid-area: inset !important;
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 2 !important;
    grid-column: 1/3 !important;
    width: 100% !important;
  }
  .nine15--two-grid.hide-images .grid_no_gutter:nth-of-type(odd) .grid__item {
    justify-content: flex-end;
  }
  .nine15--two-grid.hide-images .grid_no_gutter:nth-of-type(odd):last-child {
    width: 100%;
  }
  .nine15--two-grid.hide-images .grid_no_gutter:nth-of-type(odd):last-child .grid__item {
    justify-content: center;
  }
  .nine15--two-grid.hide-images .grid_no_gutter:nth-of-type(even) .grid__item {
    justify-content: flex-start;
  }
  .nine15--two-grid h2 {
    font-size: 55px;
  }
  .nine15--two-grid .rte * {
    font-size: 18px;
  }
  .nine15--two-grid .grid_no_gutter {
    grid-auto-columns: 50% 50%;
    display: -ms-grid;
    display: grid;
    align-items: center;
  }
  .nine15--two-grid .grid_no_gutter .grid__item {
    width: 100%;
  }
  .nine15--two-grid .grid_no_gutter .image-block {
    grid-area: var(--left-grid);
    position: relative;
    overflow: hidden;
    height: 100%;
    padding-top: 80%;
  }
  .nine15--two-grid .grid_no_gutter .image-block .image-element__wrap > img,
.nine15--two-grid .grid_no_gutter .image-block .image-element__wrap,
.nine15--two-grid .grid_no_gutter .image-block .video-ratio,
.nine15--two-grid .grid_no_gutter .image-block .video-inline,
.nine15--two-grid .grid_no_gutter .image-block .video-ratio .wrapper,
.nine15--two-grid .grid_no_gutter .image-block .video-inline .wrapper,
.nine15--two-grid .grid_no_gutter .image-block iframe,
.nine15--two-grid .grid_no_gutter .image-block video,
.nine15--two-grid .grid_no_gutter .image-block .rimage-outer-wrapper,
.nine15--two-grid .grid_no_gutter .image-block .rimage-wrapper,
.nine15--two-grid .grid_no_gutter .image-block .image-content__image-container,
.nine15--two-grid .grid_no_gutter .image-block .image-content__image-wrapper,
.nine15--two-grid .grid_no_gutter .image-block .article__grid-image-container,
.nine15--two-grid .grid_no_gutter .image-block .article__grid-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 !important;
  }
  .nine15--two-grid .grid_no_gutter .image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .nine15--two-grid .grid_no_gutter .text-block {
    grid-area: var(--right-grid);
    padding: 4em 3em;
    display: flex;
    height: 100%;
  }
  .nine15--two-grid .grid_no_gutter .text-block .text-content {
    max-width: calc(690px - 6em);
    -ms-grid-row-align: center;
        align-self: center;
  }
  .nine15--two-grid .grid_no_gutter .text-block.full-width {
    -ms-grid-row: 1;
    grid-area: 1/span 2/1/span 1;
  }
  .nine15--two-grid .grid_no_gutter .text-block.full-width .text-content {
    max-width: 700px;
    margin: 0 auto;
  }
  .nine15--two-grid .grid_no_gutter.reverse .image-block {
    grid-area: var(--right-grid);
  }
  .nine15--two-grid .grid_no_gutter.reverse .text-block {
    justify-content: flex-end;
    grid-area: var(--left-grid);
  }
}

.section--ctas {
  position: relative;
  padding: 40px 0;
  z-index: 1;
}
.section--ctas .bg_image.main-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}
.section--ctas .bg_image + .page-width * {
  color: white;
}
.section--ctas h1,
.section--ctas h2,
.section--ctas h3,
.section--ctas h4,
.section--ctas h5,
.section--ctas h6 {
  text-align: unset;
  color: var(--color--brand-black);
}
.section--ctas .video-inline {
  overflow: hidden;
  position: relative;
}
.section--ctas .video-inline .wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0%;
  height: 0;
}
.section--ctas .video-inline .wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
}
.section--ctas .inner-container {
  max-width: 300px;
  margin: 0 auto;
}
.section--ctas .inner-container .icon-image {
  margin: 0 auto;
  max-width: 150px;
}
.section--ctas .inner-container .image-content__image-container:not(.icon-image) + * {
  margin-top: 20px;
}
.section--ctas .inner-container *:not(:last-child) {
  margin-bottom: 15px;
}
.section--ctas .inner-container h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color--brand-black);
}
.section--ctas .inner-container .rte {
  font-size: 18px;
  color: var(--color--brand-black);
}
.section--ctas .btn-container {
  margin-top: 40px;
}
@media only screen and (min-width: 481px) and (max-width: 798px) {
  .section--ctas .inner-container .feature-row__image-wrapper {
    max-width: 100px;
  }
}

.section--featured-products {
  position: relative;
  padding: 40px 0;
  z-index: 1;
}
.section--featured-products .page-width {
  padding: 0 20px;
}
.section--featured-products h1, .section--featured-products h2, .section--featured-products h3, .section--featured-products h4, .section--featured-products h5, .section--featured-products h6 {
  text-align: unset;
}
.section--featured-products .grid.slick-initialized {
  margin: 0 auto;
  width: calc(100% - 30px);
}
.section--featured-products .grid.slick-initialized .grid__item {
  padding: 0 15px;
}
.section--featured-products .slick-prev,
.section--featured-products .slick-next {
  width: 25px;
  height: 25px;
  z-index: 9999;
  background-color: transparent;
  border: none;
}
.section--featured-products .slick-prev {
  left: -15px;
}
.section--featured-products .slick-next {
  right: -15px;
}
.section--featured-products .slick-prev:before,
.section--featured-products .slick-next:before {
  content: "";
  position: absolute;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  font-family: "";
  content: "";
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: black;
  mask-size: contain !important;
  mask-repeat: no-repeat !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  -webkit-mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
}
.section--featured-products .slick-prev:before {
  -webkit-mask: url(//cdn.shopify.com/s/files/1/0338/3882/5612/t/304/assets/icon-chevron-left.svg?v=16553153464050462467);
  mask: url(//cdn.shopify.com/s/files/1/0338/3882/5612/t/304/assets/icon-chevron-left.svg?v=16553153464050462467);
}
.section--featured-products .slick-next:before {
  -webkit-mask: url(//cdn.shopify.com/s/files/1/0338/3882/5612/t/304/assets/icon-chevron-right.svg?v=17375397403126222663);
  mask: url(//cdn.shopify.com/s/files/1/0338/3882/5612/t/304/assets/icon-chevron-right.svg?v=17375397403126222663);
}
.section--featured-products .product__grid-item {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
}
@media only screen and (min-width: 481px) and (max-width: 798px) {
  .section--featured-products {
    padding: 20px 0;
  }
}

/* # Account Details page
================================================== */
section.my_account .heading-wrapper {
  margin-left: 0px;
  margin-bottom: 25px;
}

.account-details-banner .banner__wrapper {
  margin-left: 0px;
  margin-right: 0px;
  height: auto;
  width: 100vw;
}
.account-details-banner .banner__wrapper h1.title {
  color: black;
  font-size: 1.4rem;
  line-height: 42px;
  margin: 0px;
}
.account-details-banner .banner__wrapper .banner__content {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}
.account-details-banner .banner__wrapper .responsive-image__wrapper .image-element__wrap {
  height: auto;
}
.account-details-banner .banner__wrapper .responsive-image__wrapper img {
  height: auto;
  object-fit: unset;
  max-height: unset;
}
.account-details-banner .banner__wrapper .responsive-image__wrapper .responsive-image--desktop {
  display: none;
}
@media only screen and (min-width: 799px) {
  .account-details-banner .banner__wrapper .responsive-image__wrapper .responsive-image--desktop {
    display: block;
  }
}
.account-details-banner .banner__wrapper .responsive-image__wrapper .responsive-image--mobile {
  display: block;
}
@media only screen and (min-width: 799px) {
  .account-details-banner .banner__wrapper .responsive-image__wrapper .responsive-image--mobile {
    display: none;
  }
}

@media only screen and (min-width: 1025px) {
  .account-section .has-columns--2 .one-half:nth-child(1) {
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1025px) {
  .account-section .has-columns--2 .one-half:nth-child(2) {
    padding-left: 20px;
  }
}

.account-card .card-header {
  box-shadow: none;
  padding-right: 10px;
}
.account-card h2.title {
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: normal;
  text-transform: none;
}
@media only screen and (min-width: 1025px) {
  .account-card h2.title {
    font-size: 18px;
  }
}
.account-card .card-content {
  font-size: 15px;
  border: 1px solid #e2dad0;
  color: #414042;
  line-height: 22px;
  padding: 18px;
}
@media only screen and (min-width: 1025px) {
  .account-card .card-content {
    padding: 33px 40px 10px;
    height: 200px;
  }
}
.account-card .card-content .yotpo-widget-my-rewards-widget .yotpo-logged-in-view {
  padding: 0;
}
.account-card .card-content .yotpo-widget-my-rewards-widget .yotpo-logged-in-view .yotpo-description {
  margin-bottom: 0;
}
.account-card .card-content .yotpo-customized-text {
  margin: 0;
}
.account-card .card-content .rewards-block * {
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 12px;
}
.account-card .card-content p {
  font-size: 13px;
  margin-bottom: 10px;
}
.account-card .card-content .account-sidebar__address p {
  margin-bottom: 0px;
}
.account-card .card-content .customer-name {
  margin-bottom: 0px;
}
.account-card .card-content p.customer-name, .account-card .card-content p.subscribed {
  color: #433e3a;
}
.account-card .card-content p.customer-name span, .account-card .card-content p.subscribed span {
  color: #414042;
}
.account-card .card-content p.reset-password {
  text-decoration: underline;
}
.account-card .card-content .primary-address {
  letter-spacing: normal;
  text-transform: none;
}
.account-card .card-content #shopping-url {
  text-decoration: underline;
}
.account-card .card-content .last-order p {
  margin-bottom: 0px;
}
.account-card .has-no-padding {
  padding: 0px;
}
.account-card .is-overflow-scroll {
  overflow-y: scroll;
}

div#confirm-popup {
  padding: 44px 44px 44px 15px;
  width: 600px;
}
div#confirm-popup h2.title {
  border: none;
}

/* # Account Beuaty Rewards
=================================================== */
@media only screen and (max-width: 1024px) {
  .account__subnav {
    display: none;
  }
}
.account__subnav ul {
  padding: 30px 0 30px 30px;
}
.account__subnav li {
  padding: 10px;
}
.account__subnav li:first-child {
  margin-top: 0;
}
.account__subnav li a {
  text-decoration: underline;
}

.socialannex__optin button {
  max-width: 175px;
}

/* # Address Book Page
=================================================== */
@media only screen and (max-width: 768px) {
  .address-header {
    padding-left: 30px;
  }
}

.address-main h3, .address-main h2 {
  letter-spacing: normal;
  text-transform: none;
}
.address-main h2.title {
  letter-spacing: normal;
  text-transform: none;
}
.address-main .address-wrap {
  min-height: 135px;
  background-color: #f9f8f6;
  padding: 16px 18px;
  font-size: 13px;
}
.address-main .address-wrap h3.primary-title {
  margin-bottom: 10px;
}
.address-main .address-wrap p.address_actions {
  margin-top: 4px;
}
.address-main .container h3.other-title {
  color: #777777;
}
.address-main .container .address_actions {
  margin-top: 4px;
}
@media only screen and (max-width: 480px) {
  .address-main a.button--link-style {
    font-size: 0.8rem !important;
  }
}
.address-main a.button--link-style:focus {
  color: #673595;
  border-bottom-color: #673595;
  box-shadow: none;
}
.address-main #add_address .field:last-of-type {
  margin-bottom: 0.75rem;
}

/* # Profile Page
=================================================== */
.cf-container h3 {
  font-size: 24px;
  color: #777;
  margin-bottom: 10px;
  margin-top: 20px;
}
.cf-container > h3 {
  margin-top: 0px;
}
.cf-container .cf-form-inner {
  max-width: 100%;
}
@media only screen and (max-width: 798px) {
  .cf-container .cf-form-inner .cf-field-container {
    width: 100%;
  }
}
.cf-container .cf-form-inner .cf-field-container .cf-field input, .cf-container .cf-form-inner .cf-field-container .cf-field select {
  background-color: #fff;
  border: 1px solid #dbdbdb;
  color: #363636;
  box-shadow: none;
  border-radius: 0;
  font-size: 1rem;
  line-height: 1.5;
  padding-bottom: calc(0.375em - 1px);
  padding-left: calc(0.625em - 1px);
  padding-right: calc(0.625em - 1px);
  padding-top: calc(0.375em - 1px);
}
.cf-container .cf-form-inner .cf-field-container .cf-field input[disabled], .cf-container .cf-form-inner .cf-field-container .cf-field select[disabled] {
  cursor: not-allowed;
  background-color: #eee;
  opacity: 1;
}
.cf-container .cf-form-inner .cf-field-container .cf-field label, .cf-container .cf-form-inner .cf-field-container .cf-field p > span {
  color: #363636 !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  font-family: -apple-system, sans-serif !important;
}
.cf-container .cf-form-inner .cf-field-container .cf-field label:not(:last-child), .cf-container .cf-form-inner .cf-field-container .cf-field p > span {
  margin-bottom: 0.5em;
}
.cf-container .cf-form-inner .cf-field-container .cf-field.no-margin {
  padding-bottom: 0;
  margin-bottom: 0;
}
.cf-container .cf-form-inner .cf-field-container .cf-field.update-margin-top {
  padding-top: 0;
  margin-top: 6px;
}
.cf-container .cf-form-inner [data-cf-field-type=checkbox] label.cf-enum-field__choice,
.cf-container .cf-form-inner .input__multichoice label.cf-enum-field__choice {
  cursor: pointer;
  display: flex;
}
.cf-container .cf-form-inner [data-cf-field-type=checkbox] label.cf-enum-field__choice:before,
.cf-container .cf-form-inner .input__multichoice label.cf-enum-field__choice:before {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background-color: #fff;
  border: 1px solid #e2dad0;
  content: "";
  margin-right: 10px;
  display: inline-block;
}
.cf-container .cf-form-inner [data-cf-field-type=checkbox] label.cf-enum-field__choice.checked:before,
.cf-container .cf-form-inner .input__multichoice label.cf-enum-field__choice.checked:before {
  background: #fff url(https://cdn.shopify.com/s/files/1/0338/3882/5612/files/checkbox-tick.png?v=1588515161) no-repeat 50%/75%;
}
.cf-container .cf-form-inner [data-cf-field-type=checkbox] label.cf-enum-field__choice input[type=checkbox],
.cf-container .cf-form-inner .input__multichoice label.cf-enum-field__choice input[type=checkbox] {
  display: none !important;
}
.cf-container .cf-form-inner .accepts_marketing {
  background-color: #f9f8f6;
  margin-bottom: 5px;
}
.cf-container .cf-form-inner .input__multichoice {
  display: flex;
}
.cf-container .cf-form-inner .input__multichoice label > h3.title {
  color: #777777;
}
.cf-container .cf-form-inner .input__multichoice .cf-enum-field__choices {
  padding: 15px;
  background-color: #f9f8f6;
}
.cf-container .cf-form-inner .input__multichoice .cf-enum-field__choices label {
  flex: 50%;
  margin: 0px;
}
@media only screen and (max-width: 798px) {
  .cf-container .cf-form-inner .input__multichoice .cf-enum-field__choices label {
    flex: 100%;
  }
}
.cf-container .cf-form-inner div.cf-form-actions button[type=submit] {
  background: #c97b64;
  color: #ffffff;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 2px;
  padding: 15px 30px 14px;
  width: auto;
  height: auto;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}
.cf-container .cf-form-inner div.cf-form-actions button[type=submit]:hover {
  background-color: #d79f8e;
}
.cf-container .cf-form-inner div.cf-form-actions button[type=button] {
  height: auto;
  white-space: normal;
  line-height: 23px;
  font-size: 15px !important;
  color: #673595;
  border-bottom-color: #673595;
  border: none;
  border-bottom: thin solid;
  max-width: 100%;
  padding: 0px;
  margin-right: 75px;
}

/* # Account Orders Page
=================================================== */
.account-orders h2.edit__title {
  letter-spacing: normal;
}
.account-orders .heading-wrapper {
  margin-bottom: 10px;
}
.account-orders table.table th {
  font-weight: 400;
  padding-bottom: 10px;
}
.account-orders table.table td {
  vertical-align: middle;
}
.account-orders table.table td.has-padding {
  padding-left: 0px;
}
.account-orders table.table td.product-items {
  padding: 15px 0;
}
@media only screen and (max-width: 1024px) {
  .account-orders table.table td.product-items {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .account-orders table.table td {
    display: block;
  }
  .account-orders table.table td.has-title {
    padding: 0 0 2px 0;
  }
  .account-orders table.table td.has-title:first-child {
    padding-top: 12px;
  }
  .account-orders table.table td.has-title:before {
    content: attr(data-title);
    padding-right: 4px;
    font-weight: 600;
  }
}
.account-orders table.table tr.has-border-bottom {
  border-top: 1px solid #f1ede9;
  position: relative;
  padding-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .account-orders table.table tr.has-border-bottom {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .account-orders table.table thead {
    display: none;
  }
}
.account-orders table.table tbody > tr:hover {
  background-color: #f5f5f5;
}

/* #Order Details Page
=================================================== */
.order-details div > a > span.icon {
  padding-top: 5px;
}

/* Register Page
=================================================== */
.register .checkbox-option {
  clear: both;
  background-color: #f9f8f6;
  min-height: 50px;
  padding: 10px;
  position: relative;
}
.register .checkbox-option input[type=checkbox] {
  position: absolute;
  left: -2000px;
  top: -2000px;
}
.register .checkbox-option input[type=checkbox] ~ label:not(.error) {
  cursor: pointer;
  margin: 0;
  font-size: 12px;
  position: relative;
  margin-left: 40px;
  margin-top: 15px;
}
.register .checkbox-option input[type=checkbox] ~ label:not(.error):before {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background-color: #fff;
  border: 1px solid #e2dad0;
  content: "";
  margin-right: 10px;
  padding-top: 6px;
  float: none;
  position: absolute;
  top: -5px;
  left: -40px;
}
.register .checkbox-option input[type=checkbox]:checked ~ label:not(.error):before {
  background: #fff url(https://cdn.shopify.com/s/files/1/0338/3882/5612/files/checkbox-tick.png?v=1588515161) no-repeat 50%/75%;
}
.register .checkbox-option .error {
  position: absolute;
  bottom: -15px;
  display: block;
  background: #f9f8f6;
  width: 100%;
  left: 0;
  text-indent: 10px;
}
.register .checkbox-option input.error {
  border-color: #d0021b;
}
.register .checkbox-option label.error {
  color: #d0021b;
  font-size: 14px;
  display: block;
  margin-top: 9px;
}
.register .checkbox-option label.error:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 10px;
}
.register .checkbox-option label.privacy-label {
  line-height: 2.5;
}
.register [data-cf-field-type=checkbox] {
  background-color: #f9f8f6;
}

.cf-container .cf-field[data-cf-invalid=true] {
  background: unset;
  border-color: unset;
  border-radius: unset;
  border: none;
}

/* # Accounts
================================================== */
.register__image img,
.login__image img {
  width: 100%;
}

.register__form img,
.login__form img {
  max-width: 200px;
  margin: 0;
}

.or {
  margin-left: 10px;
}

.login__recover {
  display: none;
}

.recover-note {
  margin: 0.75rem 0;
  color: #414042;
}

.action_bottom .button,
.recover-options .button {
  margin-right: 5px;
}

/* # Blog
================================================== */
.blog-header {
  text-align: center;
  margin: 32px;
}

.blog__filter {
  margin-bottom: 20px;
}
@media only screen and (max-width: 480px) {
  .blog__filter .select,
.blog__filter select {
    width: 100%;
  }
}
.blog__filter .is-grouped {
  justify-content: flex-end;
}
@media only screen and (max-width: 798px) {
  .blog__filter .is-grouped {
    justify-content: flex-start;
  }
}

.blog-main {
  display: flex;
}
.blog-main .select {
  border-color: #f0edea;
}

.meta-info-list {
  font-size: 12px;
  color: #414042;
}
.meta-info-list .meta-info-list__item {
  margin-right: 5px;
  display: inline-block;
}
.meta-info-list .meta-info-list__item a,
.meta-info-list .meta-info-list__item span {
  padding-left: 5px;
  color: #414042;
}
.meta-info-list .meta-info-list__item:first-child a, .meta-info-list .meta-info-list__item:first-child span {
  padding-left: 0;
}
.meta-info-list .meta-info-list__item:last-child {
  margin-right: 0;
}
.meta-info-list .meta-info-list__item + li:before {
  content: "|";
  color: #414042;
}

.blog-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: thin solid #f0edea;
  box-shadow: 0 2px 3px rgba(240, 237, 234, 0.1), 0 0 0 1px rgba(240, 237, 234, 0.1);
}
@media only screen and (max-width: 798px) {
  .blog-card {
    margin-bottom: 20px;
  }
}
.blog-card.show-border-false {
  border: none;
  box-shadow: none;
}
.blog-card.show-border-false .card-content {
  padding-left: 0;
  padding-right: 0;
}
.blog-card.show-border-false .blog-card__read-more {
  margin-left: 0;
  margin-right: 0;
}
.blog-card .blog-card__content > div:not(:last-child),
.blog-card .meta-info > ul:not(:last-child) {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 799px) {
  .blog-card .image-element__wrap img {
    height: 300px;
    object-fit: cover;
  }
}
.blog-card .media-content {
  font-size: 20px;
}
.blog-card .media-content .title {
  font-size: 1em;
  line-height: 30px;
  letter-spacing: 3px;
}
.blog-card .blog-card__read-more {
  margin: auto 1.5rem 1.5rem;
}
.blog-card .blog-card__read-more .button {
  height: auto;
  white-space: normal;
  line-height: 23px;
  font-size: 13px !important;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #c97b64 !important;
  border-bottom-color: #c97b64 !important;
}
.blog-card .blog-card__read-more .button--link-style:hover, .blog-card .blog-card__read-more .buttons:hover {
  color: #67359f;
  border-bottom-color: #67359f;
}
.blog-card .blog-card__read-more a.button--link-style:hover, .blog-card .blog-card__read-more a.button--link-style:active, .blog-card .blog-card__read-more a.button--link-style:focus {
  color: #67359f;
  border-bottom-color: #67359f;
  box-shadow: none;
}
.blog-card .social-share-buttons {
  margin-left: 0;
}
.blog-card .social-share-buttons a {
  color: white;
  padding: 10px;
  height: 30px;
  width: 30px;
}
.blog-card .social-share-buttons .share-btn-blog--instagram a {
  padding: 0px;
}

@media only screen and (min-width: 799px) {
  .blog-card.is-horizontal {
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 1;
    max-height: 330px;
  }
  .blog-card.is-horizontal .blog-card__image {
    width: 33.33%;
  }
  .blog-card.is-horizontal .blog-card__image .image {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
  }
  .blog-card.is-horizontal .blog-card__image .image .image-element__wrap {
    height: 100%;
    max-height: none;
  }
  .blog-card.is-horizontal .blog-card__image .image .image-element__wrap img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .blog-card.is-horizontal .blog-card__content {
    display: flex;
    flex: 3;
    flex-direction: column;
  }
  .blog-card.is-horizontal.show-border-false {
    box-shadow: none;
  }
  .blog-card.is-horizontal.show-border-false .blog-card__content {
    padding: 1.5rem;
  }
  .blog-card.is-horizontal.show-border-false .blog-card__read-more {
    margin-left: 0;
  }
  .blog-card.is-horizontal .blog-card__read-more {
    margin: auto 0 0;
  }
}

@media only screen and (max-width: 798px) {
  .blog-card.is-horizontal .blog-card__read-more {
    margin: 0;
  }
  .blog-card .image-element__wrap {
    max-height: 20rem;
  }
}
.excerpt {
  word-wrap: break-word;
  position: relative;
  max-height: 6em;
  overflow: hidden;
  font-size: 13px;
}
.excerpt.excerpt-length-sm .truncation-fade {
  display: none;
}

.excerpt-length-lg .truncation-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 30px 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.blog-card__link:hover .blog-card__image,
.blog-card__link:hover svg {
  transform: scale(1.1);
}

.blog-card__image,
.blog-card__link svg {
  transition: transform 0.3s ease-in-out;
}

/* # Cart
================================================== */
.quantity-box-enabled-true .cart__product-title {
  width: 49%;
}
.quantity-box-enabled-true .cart__price-title,
.quantity-box-enabled-true .cart__quantity-title,
.quantity-box-enabled-true .cart__total-title {
  width: 17%;
}

.quantity-box-enabled-false .cart__product-title {
  width: 66%;
}
.quantity-box-enabled-false .cart__price-title,
.quantity-box-enabled-false .cart__total-title {
  width: 17%;
}
.quantity-box-enabled-false .cart__description {
  width: 60%;
}
@media only screen and (max-width: 480px) {
  .quantity-box-enabled-false .cart__description {
    width: 100%;
  }
}

.cart__heading-container .heading-wrapper--cart-page {
  margin-left: 0;
}

.cart__headings {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .cart__headings {
    display: none;
  }
}

.cart__price-title,
.cart__quantity-title,
.cart__total-title {
  text-align: center;
}

.cart__total-title {
  text-align: right;
}

.cart__total p {
  text-align: right;
}

.cart__item-list afterpay-placement {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
}

.cart__card {
  display: flex;
  align-items: center;
  border-top: 1px solid #f0edea;
  padding-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 798px) {
  .cart__card {
    align-items: flex-start;
  }
}

.item__title {
  font-size: 1.25em;
}
.item__title a {
  color: #414042;
}

.item__properties {
  padding-top: 20px;
}
@media only screen and (max-width: 798px) {
  .item__properties {
    padding-top: 0px;
    font-size: 0.7em;
  }
}

.cart__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
}
@media only screen and (max-width: 798px) {
  .cart__info {
    flex-direction: column;
    width: 60%;
    padding-left: 20px;
  }
}

.cart__total,
.cart__price {
  flex-direction: row;
  text-align: center;
}
.cart__total span,
.cart__price span {
  display: block;
}

@media only screen and (max-width: 798px) {
  .cart__total {
    display: none;
  }
}

.cart__image {
  width: 15%;
}
@media only screen and (max-width: 798px) {
  .cart__image {
    width: 30%;
  }
}

.cart__description {
  width: 40%;
  padding: 0 20px;
}
@media only screen and (max-width: 798px) {
  .cart__description {
    width: 100%;
    padding: 0;
    text-align: left;
  }
}

.cart__total,
.cart__quantity,
.cart__price {
  width: 20%;
}
@media only screen and (max-width: 798px) {
  .cart__total,
.cart__quantity,
.cart__price {
    width: 100%;
    text-align: left;
  }
}

@media only screen and (max-width: 798px) {
  .cart__price .sale,
.cart__price .original-price {
    display: inline-block;
  }
}

.cart__quantity {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.cart__quantity .purchase-details__quantity.product-quantity-box {
  margin-right: 0;
  width: 100%;
}
.cart__quantity .quantity-wrapper.quantity-style--box .quantity-input-control--fill {
  width: auto;
}
@media only screen and (min-width: 1025px) {
  .cart__quantity {
    justify-content: center;
  }
  .cart__quantity .quantity-input {
    width: 50px;
  }
}
@media only screen and (max-width: 798px) {
  .cart__quantity {
    margin-top: 20px;
  }
  .cart__quantity .purchase-details__quantity {
    width: 50%;
    max-width: 100px;
    margin-top: 0;
  }
}
@media only screen and (max-width: 480px) {
  .cart__quantity .quantity-style--stacked .quantity-input {
    width: 65px;
  }
}
.cart__quantity .quantity-style--box {
  max-width: 75%;
  margin: 0 auto;
}
@media only screen and (max-width: 798px) {
  .cart__quantity .quantity-style--box {
    max-width: 100%;
  }
}

.cart__quantity-warning {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.cart__remove {
  position: absolute;
  right: 0;
  top: 10%;
}

.original-price {
  opacity: 0.2;
}

.line-item-discount__container {
  color: #ce8069;
  background: rgba(199, 0, 0, 0.1);
  border-radius: 3px;
  font-size: 0.8em;
  padding: 10px;
  margin: 5px 0;
}

.cart__cost-summary {
  background: #F2F2F2;
  padding: 20px 0 20px 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 798px) {
  .cart__cost-summary {
    padding: 20px 15px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    align-items: center;
  }
  .cart__cost-summary .offset-by-eight {
    left: 0;
  }
}
@media only screen and (max-width: 798px) {
  .cart__cost-summary .cart__discount-title {
    max-width: 75%;
  }
}
.cart__cost-summary .cart__discounts p,
.cart__cost-summary .cart__total-savings p {
  color: #ce8069;
}
.cart__cost-summary .cart__subtotal-container p {
  font-weight: bold;
}
.cart__cost-summary .cart__row {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  text-align: right;
}
.cart__cost-summary .cart__row:first-child {
  padding-top: 0;
}
@media only screen and (max-width: 798px) {
  .cart__cost-summary .cart__row {
    text-align: left;
  }
}
.cart__cost-summary .cart__row .cart__row-description {
  width: 60%;
}
@media only screen and (max-width: 798px) {
  .cart__cost-summary .cart__row .cart__row-description {
    width: 100%;
  }
}

.cart__savings {
  justify-content: flex-end;
  padding: 20px 0;
  text-align: right;
}
@media only screen and (max-width: 798px) {
  .cart__savings {
    justify-content: center;
    font-size: 1.5em;
    padding: 20px 0 0;
  }
}

.cart__savings,
.sale {
  color: #ce8069 !important;
}

.was-price {
  color: #8c8b8b !important;
}

.cart__notes {
  width: 100%;
}

.cart__tos {
  padding-bottom: 20px;
}
.cart__tos .tos_agree {
  margin-right: 5px;
}

.cart__view-terms-container {
  display: inline-block;
}

.cart__cart-message {
  margin: 20px 0 0;
  text-align: right;
  display: block;
}
@media only screen and (max-width: 798px) {
  .cart__cart-message {
    text-align: center;
  }
}

.cart__featured-links {
  min-width: 236px;
  /* Set a minimum width to match the width of the checkout button */
  margin-top: 15px;
  text-align: center;
}
@media only screen and (max-width: 798px) {
  .cart__featured-links {
    min-width: 100%;
  }
}

.cart__checkout {
  min-width: 236px;
  /* Set a minimum width to match the width of additional checkout buttons */
  margin-left: 20px;
}
.cart__checkout .checkout {
  font-size: 1rem;
  border-radius: 2px;
  width: 100%;
  line-height: inherit;
  width: 100%;
  min-height: 42px;
  /* Set a minimum height to match the height of additional checkout buttons */
}
.cart__checkout .checkout, .cart__checkout .checkout:link, .cart__checkout .checkout:visited {
  color: #fff;
  background-color: #ce8069;
  border-color: rgba(0,0,0,0);
}
.cart__checkout .checkout:hover, .cart__checkout .checkout.is-hovered {
  color: #fff;
  border-color: rgba(0,0,0,0) !important;
  background-color: #d79f8e;
}
.cart__checkout .checkout:focus, .cart__checkout .checkout.is-focused {
  color: #fff;
  border-color: rgba(0,0,0,0);
  background-color: #d79f8e;
}
.cart__checkout .checkout:focus:not(:active), .cart__checkout .checkout.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(105, 88, 141, 0.25);
}
.cart__checkout .checkout:active, .cart__checkout .checkout.is-active {
  color: #fff;
  border-color: rgba(0,0,0,0);
  background-color: #d79f8e;
}
.cart__checkout .checkout.is-inverted {
  color: #ce8069;
  background-color: #fff;
  border-color: #ce8069;
}
.cart__checkout .checkout.is-small {
  font-size: 0.75rem;
}
.cart__checkout .checkout.is-normal {
  font-size: 1rem;
}
.cart__checkout .checkout.is-medium {
  font-size: 1.25rem;
}
.cart__checkout .checkout.is-large {
  font-size: 1.5rem;
  line-height: 1.25em;
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .cart__checkout .checkout {
    min-height: 52px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 798px) {
  .cart__checkout {
    width: 100%;
    margin-left: 0;
  }
}

.cart__checkout-elements {
  justify-content: flex-end;
}
@media only screen and (max-width: 798px) {
  .cart__checkout-elements {
    justify-content: center;
  }
}

@media only screen and (max-width: 798px) {
  .cart__buttons {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
}

.additional-checkout-buttons {
  width: 100%;
  margin-top: 10px;
}

[data-shopify-buttoncontainer] {
  justify-content: flex-end;
}

.shipping-calculator select,
.shipping-calculator .select {
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .shipping-calculator {
    flex-direction: column;
  }
  .shipping-calculator .control {
    min-width: 100%;
    margin-bottom: 20px;
  }
  .shipping-calculator input {
    width: 100%;
  }
}
@media only screen and (max-width: 798px) and (max-width: 798px) {
  .shipping-calculator .select,
.shipping-calculator select,
.shipping-calculator input {
    height: 3.25em;
  }
}

.item__subscription-wrapper {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 481px) {
  .item__subscription-wrapper {
    max-width: 240px;
  }
}
.item__subscription-wrapper:after {
  position: absolute;
  right: 20px;
  color: #414042;
}

.item__subscription-intervals {
  -webkit-appearance: none;
  background-color: transparent;
  color: #414042;
  font-size: 14px;
  height: 36px;
  border: 1px solid;
  border-radius: 0;
  padding-left: 24px;
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .item__subscription-intervals {
    padding-left: 8px;
  }
}
.item__subscription-intervals::-ms-expand {
  display: none;
}

.item__subscription-info {
  font-size: 11px;
  margin-top: 4px;
  padding-bottom: 16px;
}

.cart__shipping-calculator {
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .cart__shipping-calculator {
    text-align: center;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 798px) {
  .cart__shipping-calculator .cart__shipping-calculator-form {
    text-align: left;
  }
}
@media only screen and (max-width: 798px) {
  .cart__shipping-calculator .cart__shipping-calculator-form .select {
    width: 100%;
  }
}
.cart__shipping-calculator .cart__shipping-title {
  padding-bottom: 50px;
}
@media only screen and (max-width: 798px) {
  .cart__shipping-calculator .cart__shipping-title {
    text-align: center;
  }
}
.cart__shipping-calculator label {
  padding-bottom: 20px;
  text-transform: uppercase;
  opacity: 0.5;
}
@media only screen and (max-width: 798px) {
  .cart__shipping-calculator label {
    padding-bottom: 10px;
  }
}
.cart__shipping-calculator .calc-field {
  margin-left: 0;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 798px) {
  .cart__shipping-calculator .calc-field {
    margin-right: 0;
    width: 100%;
  }
}

@media only screen and (max-width: 798px) {
  #get-rates-container {
    width: 100%;
  }
}

@media only screen and (max-width: 798px) {
  .get-rates {
    margin-top: 10px;
    flex: 1;
  }
}

.shipping-calculator__response-container {
  display: none;
}

.heading-wrapper--shipping-rates {
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (max-width: 798px) {
  .heading-wrapper--shipping-rates {
    align-items: center;
  }
}

.shipping-rates__title {
  padding-top: 45px;
}
@media only screen and (max-width: 798px) {
  .shipping-rates__title {
    padding-top: 25px;
  }
}

.shipping-calculator__response ul > li {
  padding-bottom: 20px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 798px) {
  .shipping-calculator__response ul > li {
    justify-content: center;
  }
}
.shipping-calculator__response ul > li:last-child {
  padding-bottom: 0;
}
.shipping-calculator__response ul > li .icon {
  margin-right: 10px;
}
.shipping-calculator__response .shipping-calculator__message {
  padding-bottom: 20px;
}

.shipping_calculator__response--visible {
  display: block;
}

.cart__price .discount-area span {
  display: inline;
}

.cart__info .mlveda-main .selector-wrapper {
  position: relative;
  width: 100%;
  margin-top: 10px;
}
@media only screen and (min-width: 481px) {
  .cart__info .mlveda-main .selector-wrapper {
    max-width: 240px;
  }
}
.cart__info .mlveda-main .selector-wrapper:after {
  position: absolute;
  right: 20px;
  color: #414042;
}
.cart__info .mlveda-main .selector-wrapper select {
  -webkit-appearance: none;
  background-color: transparent;
  color: #414042;
  font-size: 14px;
  height: 46px;
  border: 1px solid;
  border-radius: 0;
  padding-left: 24px;
  width: 100%;
  cursor: pointer;
  background-image: none;
}

.cart__yotpo-loyalty .cart__yotpo-dropdown {
  padding-top: 10px;
}
@media only screen and (max-width: 798px) {
  .cart__yotpo-loyalty .cart__yotpo-dropdown {
    width: 100%;
  }
}

.cart__yotpo-btn {
  margin-left: 10px;
}

.cart__yotpo-loyalty .cart__yotpo-dropdown .country-wrapper {
  width: 240px;
}

/* # Collection
================================================== */
.collection__alternate {
  max-width: 1180px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  align-content: center;
}
.collection__alternate .product-card__title {
  text-align: center;
}
.collection__alternate .has-padding-bottom {
  padding-bottom: 0;
}
.collection__alternate .grid-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[4];
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -ms-grid-rows: min-content;
  grid-template-rows: min-content;
  grid-column-gap: 25px;
  grid-row-gap: 17.5px;
  padding-bottom: 70px;
}
.collection__alternate .text {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 9px;
}
.collection__alternate .filter {
  width: 100%;
}
@media only screen and (min-width: 799px) {
  .collection__alternate .filter {
    display: none;
  }
}
@media only screen and (max-width: 798px) {
  .collection__alternate .filter {
    display: block;
  }
}
.collection__alternate .filter .select {
  width: 100%;
}
.collection__alternate .collection__main,
.collection__alternate .collection-matrix {
  display: contents;
}
.collection__alternate hr {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  width: 100%;
  border-bottom: 1px solid #E1DCD5;
}
.collection__alternate .grid-container h1 {
  color: #414042;
  font-family: sofia-pro, sans-serif;
  font-size: 15px;
  margin-top: 20px;
  letter-spacing: initial;
}
.collection__alternate .collection_title {
  margin-bottom: 10px;
  color: #414042;
  font-family: ivypresto-display, serif;
  font-size: 24px;
  font-size: 32px;
  letter-spacing: 1px;
  padding-top: 0;
  margin-bottom: 0;
}
.collection__alternate .subtext {
  font-family: sofia-pro, sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #414042;
}
.collection__alternate .media {
  min-height: 600px;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/span 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/span 2;
}
.collection__alternate .text {
  min-height: 160px;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3/span 2;
  -ms-grid-row: 1;
  grid-row: 1;
}
@media only screen and (max-width: 798px) {
  .collection__alternate .text {
    min-height: 200px;
  }
}
.collection__alternate .product__thumbnail {
  padding-bottom: 0 !important;
}
.collection__alternate .media .image-element__wrap {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.collection__alternate .media video {
  height: 100%;
  display: block;
  object-fit: cover;
}
.collection__alternate .text .collection__sort-by-filter {
  margin-left: 0;
  margin-top: 10px;
}
@media (max-width: 1179px) {
  .collection__alternate .grid-container {
    width: 95%;
    margin: 0 auto;
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .collection__alternate .grid-container .product__thumbnail {
    width: 100%;
  }
  .collection__alternate .text {
    text-align: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    grid-column: 1/-1;
  }
  .collection__alternate .media {
    display: none;
  }
}

.collection__filters {
  margin-bottom: 20px;
}
.collection__filters .select {
  max-width: 50%;
}
@media only screen and (max-width: 480px) {
  .collection__filters .select {
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .collection__filters .select:first-child {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .collection__filters .select,
.collection__filters select {
    width: 100%;
  }
}
.collection__filters .is-grouped {
  justify-content: flex-end;
}
@media only screen and (max-width: 798px) {
  .collection__filters .is-grouped {
    justify-content: flex-start;
  }
}

.collection-main .banner__text {
  margin: 0;
}
.collection-main .banner__content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.collection-main h1.title {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 35px;
}
.collection-main span.count {
  font-size: 20px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .collection-main h1.title {
    margin: 25px 10px 35px 10px;
  }
  .collection-main span.count {
    margin-top: 25px;
  }
}

@media only screen and (min-width: 481px) {
  .collection__sort-by-filter {
    margin-left: 10px;
  }
}

.sub-collection-main main {
  min-height: 0;
}

.product-template .video-element {
  margin-top: 20px;
  margin-bottom: 20px;
}
.product-template .newbadge,
.product-template .salebadge {
  font-size: 12px;
  line-height: 16px;
  padding: 3px 9px;
  z-index: 10;
  position: absolute;
}
.product-template .newbadge {
  font-family: ivypresto-display, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  line-height: initial;
  color: #c97b64;
}
.product-template .salebadge {
  color: #E37F75;
  border: 1px solid #E37F75;
}
.product-template .prod-info-wrapper {
  min-height: 156px;
  height: auto;
}
@media (max-width: 1024px) {
  .product-template .prod-info-wrapper {
    min-height: 172px;
  }
}
@media (max-width: 374px) {
  .product-template .prod-info-wrapper {
    min-height: 212px;
  }
}
.product-template .prod-info-wrapper .modal_price {
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 2px;
  color: #414042;
  margin-top: 14px !important;
  margin-bottom: 0 !important;
}
.product-template .prod-info-wrapper .product_name {
  font-family: ivypresto-display, serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 22px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.product-template .prod-info-wrapper .product_name sup {
  vertical-align: text-top;
}
@media only screen and (min-width: 799px) {
  .product-template .product__images {
    max-width: 580px;
  }
}
@media (max-width: 1050px) {
  .product-template .product__images {
    width: calc((100% - 50px) / 2);
  }
}
@media (max-width: 800px) {
  .product-template .product__images {
    width: 100%;
  }
}
@media only screen and (min-width: 799px) {
  .product-template .product__information {
    max-width: 460px;
    width: auto;
  }
}
@media (max-width: 1050px) {
  .product-template .product__information {
    width: calc((100% - 70px) / 2);
  }
}
@media (max-width: 800px) {
  .product-template .product__information {
    width: 100%;
  }
}
.product-template .product__information .description p {
  font-size: 15px;
  line-height: 23px;
  color: #414042;
}
@media only screen and (min-width: 481px) {
  .product-template .product-quantity-box.purchase-details__quantity {
    max-width: 144px;
    margin-right: 5px;
  }
}
.product-template .quantity-wrapper .quantity-minus,
.product-template .quantity-wrapper .quantity-plus {
  background: 0;
}
.product-template .quantity-wrapper .quantity-minus .icon,
.product-template .quantity-wrapper .quantity-plus .icon {
  fill: #414042;
  font-size: 12px;
}
.product-template .product-quantity-box {
  border: 1px solid #E1DCD5;
}
.product-template .product-quantity-box .quantity-input-control input {
  border: 0;
}
.product-template .product-quantity-box .quantity-plus.button[disabled],
.product-template .product-quantity-box .quantity-minus.button[disabled] {
  opacity: 0.5;
}
.product-template .purchase-details.has-quantity-box .purchase-details__buttons {
  position: relative;
  max-width: unset;
}
.product-template .purchase-details.has-quantity-box .button--add-to-cart {
  text-transform: uppercase;
  width: 90%;
  border-radius: 0;
  font-size: 14px !important;
  line-height: 16px;
  letter-spacing: 2px;
}
@media only screen and (min-width: 481px) {
  .product-template .purchase-details.has-quantity-box .button--add-to-cart {
    max-width: 280px;
  }
}
.product-template .purchase-details.has-quantity-box .button--add-to-cart.disabled ~ .swym-wishlist-button-bar {
  right: unset;
  margin-left: 10px;
}
.product-template .purchase-details .swym-button-bar {
  position: static;
  margin: 0 0 0 10px;
}
@media only screen and (min-width: 799px) {
  .product-template .purchase-details .swym-button-bar {
    position: absolute;
    top: 0;
    margin: 0;
    right: -10px;
  }
}
.product-template .purchase-details .swym-button-bar .swym-add-to-wishlist {
  background: 0;
  width: 23px;
  height: 22px;
}
.product-template .purchase-details .swym-button-bar .swym-btn-container .swym-button:after {
  color: #414042 !important;
  width: 23px;
  height: 22px;
  font-size: 22px;
  top: -5px;
}
.product-template .purchase-details .swym-button-bar .swym-btn-container .swym-button.swym-added:after {
  color: #414042 !important;
  opacity: 1;
}

.quick-shop .quick-shop__title {
  font-size: 20px;
  letter-spacing: 3.5px;
  line-height: 26px;
  margin-bottom: 14px;
}
.quick-shop .js-bv-reviews {
  margin-bottom: 14px;
  border-bottom: 1px solid #f0edea;
}
.quick-shop .js-bv-reviews > div {
  margin-bottom: 14px;
}
.quick-shop .modal_price {
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 2px;
  color: #716E69;
  margin-bottom: 14px;
}
.quick-shop .js-full-description p {
  font-size: 15px;
  line-height: 23px;
  color: #414042;
}
@media only screen and (min-width: 481px) {
  .quick-shop .product-quantity-box.purchase-details__quantity {
    max-width: 144px;
    margin-right: 5px;
  }
}
.quick-shop .quantity-wrapper .quantity-minus,
.quick-shop .quantity-wrapper .quantity-plus {
  background: 0;
}
.quick-shop .quantity-wrapper .quantity-minus .icon,
.quick-shop .quantity-wrapper .quantity-plus .icon {
  fill: #414042;
  font-size: 12px;
}
.quick-shop .product-quantity-box {
  border: 1px solid #E1DCD5;
}
.quick-shop .product-quantity-box .quantity-input-control input {
  border: 0;
}
.quick-shop .product-quantity-box .quantity-plus.button[disabled],
.quick-shop .product-quantity-box .quantity-minus.button[disabled] {
  opacity: 0.5;
}
.quick-shop .purchase-details.has-quantity-box .purchase-details__buttons {
  position: relative;
  max-width: unset;
}
.quick-shop .purchase-details.has-quantity-box .button--add-to-cart {
  text-transform: uppercase;
  width: 100%;
  border-radius: 0;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 2px;
}
@media only screen and (min-width: 481px) {
  .quick-shop .purchase-details.has-quantity-box .button--add-to-cart {
    max-width: 280px;
  }
}

.sticky-pdp {
  padding-bottom: 80px;
}
.sticky-pdp .sticky-bot {
  bottom: 0;
  position: fixed;
  width: 100%;
  background: #FFF;
  z-index: 999;
  left: 0px;
  box-shadow: 0px -3px 5px -1px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0px -3px 5px -1px rgba(0, 0, 0, 0.12);
  height: 80px;
  overflow: hidden;
  padding: 8px 10px;
}
.sticky-pdp .sticky-bot afterpay-placement {
  display: none;
}
.sticky-pdp .sticky-bot .new-sticker {
  display: none;
}
.sticky-pdp .sticky-bot .product-right-col {
  width: 100%;
  max-width: 810px;
  margin: 0 auto;
}
.sticky-pdp .sticky-bot .product-right-col .quiz {
  display: none;
}
@media only screen and (max-width: 798px) {
  .sticky-pdp .sticky-bot .product-right-col {
    display: flex;
  }
}
.sticky-pdp .sticky-bot .base-img {
  display: block;
  width: 64px;
  height: 64px;
  float: left;
}
.sticky-pdp .sticky-bot .base-img img {
  width: 64px;
  height: 64px;
}
.sticky-pdp .sticky-bot .selected-swatch {
  display: block;
}
.sticky-pdp .sticky-bot .prod-info-wrapper {
  float: left;
}
.sticky-pdp .sticky-bot .prod-info-wrapper h1,
.sticky-pdp .sticky-bot .prod-info-wrapper p {
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sticky-pdp .sticky-bot .prod-info-wrapper .product_name {
  font-family: sofia-pro, sans-serif;
}
.sticky-pdp .sticky-bot .prod-info-wrapper .product_name,
.sticky-pdp .sticky-bot .prod-info-wrapper .selected-swatch,
.sticky-pdp .sticky-bot .prod-info-wrapper .modal_price {
  font-size: 12px;
  line-height: 20px;
  margin-top: 0 !important;
  margin-bottom: 0;
}
.sticky-pdp .sticky-bot .prod-info-wrapper .modal_price {
  color: #9C9A98;
}
.sticky-pdp .sticky-bot .prod-info-wrapper .product_name,
.sticky-pdp .sticky-bot .prod-info-wrapper .selected-swatch {
  color: #414042;
}
.sticky-pdp .sticky-bot .prod-info-wrapper .selected-swatch {
  letter-spacing: 1px;
}
.sticky-pdp .sticky-bot .product-form-container {
  float: right;
  width: 100%;
  max-width: 445px;
  padding: 0;
}
.sticky-pdp .sticky-bot .product-form-container .purchase-details {
  flex-wrap: nowrap;
}
.sticky-pdp .sticky-bot .product-form-container .purchase-details .button--add-to-cart {
  width: 100%;
}
.sticky-pdp .sticky-bot .product-form-container .purchase-details .purchase-details__quantity,
.sticky-pdp .sticky-bot .product-form-container .purchase-details .purchase-details__buttons {
  margin-top: 6px;
}
.sticky-pdp .sticky-bot .product-form-container div.recharge-app-wrapper.pdp .tooltip-btn, .sticky-pdp .sticky-bot .product-form-container div.recharge-app-wrapper.pdp div.country-wrapper.recharge-app::after {
  display: none;
}
.sticky-pdp .sticky-bot .product__social-share,
.sticky-pdp .sticky-bot .swatch_options.collection_swatches,
.sticky-pdp .sticky-bot .description.content,
.sticky-pdp .sticky-bot [data-bv-show=rating_summary],
.sticky-pdp .sticky-bot .recharge-app-wrapper {
  display: none;
}
.sticky-pdp .sticky-bot #rc_container {
  display: none !important;
}
.sticky-pdp .sticky-bot .shopify-product-form .select-container {
  display: none !important;
}

.country-wrapper .selector-wrapper > select {
  width: 100%;
  border: 1px solid #E1DCD5;
  color: #414042;
}

.product-right-col .collection_swatches ~ .select-container .label {
  display: none;
}
.product-right-col .collection_swatches ~ .select-container .country-wrapper {
  max-width: 324px;
}

@media only screen and (max-width: 767px) {
  .sticky-pdp .sticky-bot {
    width: 75%;
    padding: 8px 20px;
  }
  .sticky-pdp .sticky-bot .prod-info-wrapper,
.sticky-pdp .sticky-bot .base-img {
    display: none;
  }
  .sticky-pdp .sticky-bot .product-form-container {
    width: auto;
  }
  .sticky-pdp .sticky-bot .product-form-container .purchase-details .quantity-input {
    width: 30px;
    padding: 0;
  }
  .sticky-pdp .sticky-bot .product-form-container .purchase-details .button--add-to-cart {
    width: 80%;
    margin-left: 6px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 480px) {
  .sticky-pdp .sticky-bot .product-form-container .purchase-details .button--add-to-cart {
    width: 55%;
  }
}
@media only screen and (max-width: 374px) {
  .sticky-pdp .sticky-bot {
    padding: 6px;
  }
  .sticky-pdp .sticky-bot .control > .button {
    width: 32px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .sticky-pdp .sticky-bot .product-form-container .purchase-details .button--add-to-cart {
    width: 50%;
  }
}
/* #FAQ
================================================== */
.page-faq__column-wrap {
  width: 100%;
}

.accordion-section {
  max-width: 1200px;
}

@media only screen and (max-width: 798px) {
  .column-wrapper .faq:first-of-type {
    margin-bottom: 20px;
  }
}
.column-wrapper .faq-accordion {
  width: 100%;
}
.column-wrapper .faq-accordion .image-element__wrap {
  padding: 0;
}
.column-wrapper .faq-accordion .image-element__wrap:first-child {
  margin-bottom: 20px;
}
.column-wrapper .faq-title {
  margin-bottom: 10px;
}
.column-wrapper .faq-title:not(:first-child) {
  margin-top: 40px;
}

.accordion dt,
.faq-accordion dt {
  border-bottom: 2px solid #f0edea;
  position: relative;
}
.accordion dt a,
.accordion dt button,
.faq-accordion dt a,
.faq-accordion dt button {
  background: none;
  border: 0;
  color: #414042;
  cursor: pointer;
  display: block;
  line-height: 16px;
  letter-spacing: 2px;
  font-size: 14px;
  padding: 14px 0 14px 0;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
  transition: background-color 0.2s linear;
}
.accordion dt .accordion [aria-expanded=true] small,
.accordion dt .accordion-style--carets[aria-expanded=true] .icon,
.faq-accordion dt .accordion [aria-expanded=true] small,
.faq-accordion dt .accordion-style--carets[aria-expanded=true] .icon {
  transform: translateY(-60%) rotate(180deg);
}
.accordion dt .accordion__button,
.faq-accordion dt .accordion__button {
  text-transform: uppercase;
  /* button padding to handle icon spacing with text */
  padding-right: 12px;
}
.accordion dt small,
.accordion dt .icon,
.faq-accordion dt small,
.faq-accordion dt .icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s linear;
}
.accordion dt .accordion-style--plus_and_minus .icon,
.faq-accordion dt .accordion-style--plus_and_minus .icon {
  display: none;
  height: 11px;
  width: 9px;
}
.accordion dt .accordion-style--plus_and_minus .icon.icon--active,
.faq-accordion dt .accordion-style--plus_and_minus .icon.icon--active {
  display: block;
}

.block__dropdowns .container .column {
  margin-left: calc(32px / 2);
  margin-right: calc(32px / 2);
}
.block__dropdowns .container .one-half {
  width: calc(50% - 32px);
}
@media only screen and (max-width: 798px) {
  .block__dropdowns .container .medium-down--one-whole {
    width: calc(100% - 32px);
  }
}

.accordion dt a[aria-expanded=true],
.accordion dt a:hover,
.faq-accordion dt button[aria-expanded=true],
.faq-accordion dt button:hover {
  background-color: rgba(65, 64, 66, 0.03);
}

.accordion dd,
.faq-accordion dd {
  display: none;
  padding: 20px 20px 20px 40px;
}

.faq__column-1,
.faq__column-2 {
  border-top: 2px solid #f0edea }};
}

@media only screen and (max-width: 798px) {
  .faq__column-2 {
    border-top: none;
  }
}

.accordion dt:first-of-type small,
.accordion dt:first-of-type [aria-expanded=true] small {
  transform: translateY(-60%) rotate(270deg);
}
.accordion dt:first-of-type [aria-expanded=false] small {
  transform: translateY(-60%) rotate(360deg);
}

.accordion dd {
  margin-left: 0;
  display: none;
}
.accordion dd[aria-hidden=false] {
  display: block;
}

.accordion dt a small.right {
  font-family: "Arial";
  /* Force font family to ensure accordion carets are displayed on iOS devices */
}

.accordion dd:not([aria-hidden=true]):first-of-type {
  display: block;
}

.accordion [aria-expanded=false] small {
  transform: translateY(-60%) rotate(180deg);
}

.accordion [aria-expanded=true] small {
  transform: translateY(-60%) rotate(270deg);
}

.store-locator {
  padding-top: 32px;
}
.store-locator .banner__wrapper {
  z-index: -2;
  position: absolute;
  margin: auto;
  opacity: 0.1;
  margin-top: 40px;
}
.store-locator .banner__wrapper .image-element__wrap img {
  width: 1196px;
  height: 437px;
  object-fit: fill;
}
.store-locator .international {
  width: 100%;
  max-width: 1196px;
  margin-bottom: 114px;
}
.store-locator .title {
  font-size: 22px;
  letter-spacing: 4px;
  line-height: 26px;
  padding-bottom: 20px;
}
.store-locator .subtitle {
  font-size: 13px;
  line-height: 23px;
  margin-bottom: 54px;
  color: #414042;
}
.store-locator .columns {
  background: url(https://res.cloudinary.com/janeiredale/image/upload/v1591811739/Homepage/Testing/blank-map-flat-world.f8e282d1.png) center 40px no-repeat;
  background-size: contain;
  margin-bottom: 12px;
}
.store-locator .international-clm {
  width: calc(100% / 4);
  flex-wrap: wrap;
}
.store-locator .international-clm h2 {
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 2px;
  color: #414042;
}
.store-locator .international-clm #international-europe {
  max-height: 556px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.store-locator .international-clm #international-europe li:first-of-type {
  padding-right: 64px;
}
.store-locator .international-clm li {
  font-size: 15px;
  line-height: 33px;
}
@media only screen and (max-width: 798px) {
  .store-locator .international-clm {
    width: calc(100% / 3);
  }
}
@media only screen and (max-width: 480px) {
  .store-locator .international-clm {
    width: 100%;
  }
}
@media all and (-ms-high-contrast: none) {
  .store-locator .international-clm:first-of-type {
    padding-left: 10px;
  }
}
@media only screen and (min-width: 2000px) {
  .store-locator .international-clm {
    margin-right: 6.2vw;
  }
}
.store-locator h2.international-dontsee {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 8px;
  color: #414042;
  text-transform: none;
}
.store-locator p.small-text {
  font-size: 13px;
  line-height: 23px;
  color: #414042;
}

.international-modal {
  display: none;
  text-align: center;
  margin: auto;
  z-index: 1;
  padding: 58px 180px;
  font-size: 15px;
  line-height: 23px;
}
.international-modal h2.title {
  color: #433E3A;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 3.5px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E1DCD5;
  margin-bottom: 16px;
}
.international-modal p {
  color: #414042;
}
.international-modal .fancybox-close-small {
  background-color: #EAEAEA;
  border-radius: 100%;
  padding: 0px;
  height: 28px;
  width: 28px;
  margin: 5px;
}
.international-modal .fancybox-close-small svg {
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .international-modal {
    padding: 44px;
  }
}
/* # Password page
================================================== */
#shopify-section-password-template {
  height: 100%;
}

#password-page-background {
  height: 100%;
  position: fixed;
  width: 100%;
  overflow: auto;
}

.password-page__newsletter {
  margin-top: 50px;
}
.password-page__newsletter .newsletter__title,
.password-page__newsletter .newsletter__text {
  color: inherit !important;
}
.password-page__newsletter p {
  margin-bottom: 20px;
}
.password-page__newsletter .newsletter-section {
  width: 100%;
}
.password-page__newsletter .newsletter__wrapper {
  max-width: 100%;
}

.password-page__social-media li {
  margin-right: 10px;
}
.password-page__social-media li .icon {
  height: 2rem;
  width: 2rem;
}

.modal-container__password #password {
  width: 100%;
}

#password-container {
  height: 100%;
}

@media only screen and (max-width: 1024px) {
  .password-page {
    min-width: 350px;
  }
}
@media only screen and (max-width: 798px) {
  .password-page {
    min-width: 90%;
  }
}
.password-page .password-page-message {
  font-size: 3em;
  line-height: 1.2;
  padding: 12px 0;
}
@media only screen and (max-width: 798px) {
  .password-page .password-page-message {
    font-size: 2em;
  }
}
.password-page .password-logo {
  max-width: 200px;
  margin: 0 auto;
}
.password-page .password-title {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  text-transform: none;
}
.password-page .overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
}
.password-page .overlay-close {
  width: 150px;
  height: 50px;
  position: absolute;
  right: 10px;
  top: 10px;
  border: thin solid #f0edea;
  font-size: 14px;
}
.password-page .overlay-data {
  opacity: 0;
  visibility: hidden;
}
.password-page .overlay-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}

.modal-close {
  background: 0 0;
  height: 40px;
  position: fixed;
  right: 20px;
  top: 20px;
  width: 40px;
}
.modal-close:before, .modal-close:after {
  background-color: #414042;
}

.storefront-password-form {
  padding-bottom: 30px;
  overflow: auto;
  color: #414042;
}

.storefront-password-form input#password {
  padding: 10px;
  margin: 20px 0;
  width: 100%;
}

.storefront-password-form label {
  font-size: 0.9em;
  margin: 0 0 1em 0;
  text-align: center;
}

.storefront-password-form .actions {
  display: inline-block;
}

.storefront-password-form #password {
  width: 50%;
  display: inline-block;
}
@media only screen and (max-width: 480px) {
  .storefront-password-form #password {
    width: 100%;
  }
}

#owner {
  font-size: 0.9em;
  margin-top: -1em;
  opacity: 0.8;
  color: #414042;
}

.lash-mascara,
.homepage-2021 {
  /* Start out with white text in desktop */
}
.lash-mascara .offer_block_wrapper,
.homepage-2021 .offer_block_wrapper {
  background-color: #f1ede9;
}
.lash-mascara .flickity-button,
.homepage-2021 .flickity-button {
  background: transparent;
}
.lash-mascara .mobile-category,
.homepage-2021 .mobile-category {
  display: none;
}
.lash-mascara .category .title_collection,
.homepage-2021 .category .title_collection {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #c87b67;
}
.lash-mascara .category:not(.section),
.homepage-2021 .category:not(.section) {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #c87b67;
}
.lash-mascara .category ul,
.homepage-2021 .category ul {
  display: flex;
  justify-content: space-around;
}
.lash-mascara .mobile-category ul li a,
.lash-mascara .category ul li a,
.homepage-2021 .mobile-category ul li a,
.homepage-2021 .category ul li a {
  font-family: ivypresto-display;
  font-size: 28px;
  color: #ffffff;
  letter-spacing: 1px;
}
.lash-mascara #shopify-section-1626709596142479f2,
.homepage-2021 #shopify-section-1626709596142479f2 {
  display: block;
}
.lash-mascara #shopify-section-162670960556682e97,
.homepage-2021 #shopify-section-162670960556682e97 {
  display: none;
}
.lash-mascara .homepage-2021-title,
.homepage-2021 .homepage-2021-title {
  background-color: #f1ede9;
}
.lash-mascara .homepage-2021-title h3,
.homepage-2021 .homepage-2021-title h3 {
  font-family: ivypresto-display;
  font-weight: 300;
  font-size: 34px;
  text-align: center;
  letter-spacing: 1px;
  color: #474747;
}
.lash-mascara .block__custom-html .section,
.lash-mascara .section.has-background.block__custom-html,
.homepage-2021 .block__custom-html .section,
.homepage-2021 .section.has-background.block__custom-html {
  max-width: 100%;
  width: 100%;
}
.lash-mascara #shopify-section-16267299195eb6ec4e.image-with-text-1,
.lash-mascara .two_image_wrapper,
.homepage-2021 #shopify-section-16267299195eb6ec4e.image-with-text-1,
.homepage-2021 .two_image_wrapper {
  background-color: #f1ede9;
}
.lash-mascara #shopify-section-1585304049225 .image-with-text-2-col,
.homepage-2021 #shopify-section-1585304049225 .image-with-text-2-col {
  padding: 1.5rem;
  margin: 0;
  max-width: 100%;
}
.lash-mascara .slider-wrapper,
.homepage-2021 .slider-wrapper {
  display: -ms-grid;
  display: grid;
  width: 100%;
  -ms-grid-columns: 1fr 1180px 1fr;
  grid-template-columns: 1fr 1180px 1fr;
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.lash-mascara .new_custom_picture .text_container,
.homepage-2021 .new_custom_picture .text_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  grid-area: 1/2/3/2;
  z-index: 1;
}
.lash-mascara .new_custom_picture .image_container,
.homepage-2021 .new_custom_picture .image_container {
  padding-top: 49%;
  position: relative;
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-area: 1/1/6/span 6;
}
.lash-mascara .new_custom_picture .image_container img,
.homepage-2021 .new_custom_picture .image_container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lash-mascara .offer_block .is-flex p,
.homepage-2021 .offer_block .is-flex p {
  font-family: sofia-pro, sans-serif;
  font-size: 17px;
}
.lash-mascara .offer_block .is-flex p em,
.homepage-2021 .offer_block .is-flex p em {
  font-family: ivypresto-display;
  font-size: 22px;
  font-style: normal;
  letter-spacing: 0.88px;
}
.lash-mascara .offer_block .is-flex p .offer-title-embossed,
.homepage-2021 .offer_block .is-flex p .offer-title-embossed {
  font-family: ivypresto-display;
  font-size: 22px;
  font-style: normal;
  letter-spacing: 0.88px;
}
.lash-mascara .offer_block .is-flex p .italic,
.homepage-2021 .offer_block .is-flex p .italic {
  font-family: sofia-pro, sans-serif;
  font-size: 17px;
  font-style: italic;
}
.lash-mascara .offer_block .content_area,
.homepage-2021 .offer_block .content_area {
  position: relative;
}
.lash-mascara .offer_block .content_area img,
.homepage-2021 .offer_block .content_area img {
  position: absolute;
}
.lash-mascara .offer_block .content_area a,
.homepage-2021 .offer_block .content_area a {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 600;
  text-decoration: underline;
  letter-spacing: 1px;
}
.lash-mascara .block__custom-slider-2021 a,
.homepage-2021 .block__custom-slider-2021 a {
  display: contents;
  width: 100%;
  height: 100%;
}
.lash-mascara .custom_picture .text_container h1,
.lash-mascara .custom_picture .text_container h2,
.homepage-2021 .custom_picture .text_container h1,
.homepage-2021 .custom_picture .text_container h2 {
  font-family: ivypresto-display;
  font-size: 44px;
  letter-spacing: 2.2px;
  line-height: 1.2;
  color: inherit;
}
.lash-mascara .custom_picture .text_container p:not(.faux_link),
.homepage-2021 .custom_picture .text_container p:not(.faux_link) {
  font-size: 18px;
  padding-bottom: 55px;
  color: inherit;
}
.lash-mascara .custom_picture .text_container p span,
.homepage-2021 .custom_picture .text_container p span {
  display: block;
}
.lash-mascara .custom_picture .text_container p.faux_link,
.homepage-2021 .custom_picture .text_container p.faux_link {
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  text-decoration: underline;
  color: #69588d;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lash-mascara .block__featured-collection,
.homepage-2021 .block__featured-collection {
  background-color: #f1eeec;
}
.lash-mascara .featured-collection .product__grid-item,
.homepage-2021 .featured-collection .product__grid-item {
  background-color: #ffffff;
}
.lash-mascara .additional_information_wrapper,
.homepage-2021 .additional_information_wrapper {
  min-height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: solid 0.3px #54585b;
  border-bottom: solid 0.3px #54585b;
}
.lash-mascara .yotpo-slider-title-wrapper,
.homepage-2021 .yotpo-slider-title-wrapper {
  display: none;
}
.lash-mascara .rich-text__heading sup,
.homepage-2021 .rich-text__heading sup {
  font-size: 0.5em;
}
.lash-mascara h2.rich-text__heading.title,
.homepage-2021 h2.rich-text__heading.title {
  font-family: ivypresto-display;
  font-size: 30px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #474747;
}
.lash-mascara .rich-text__text p,
.homepage-2021 .rich-text__text p {
  font-family: sofia-pro;
  font-size: 16px;
  font-weight: 300;
  color: #54585b;
}
.lash-mascara #shopify-section-162672903446de1050 .rich-text__content p,
.homepage-2021 #shopify-section-162672903446de1050 .rich-text__content p {
  line-height: 1.3;
}
.lash-mascara #shopify-section-162671634287507c15 .homepage-2021-title,
.homepage-2021 #shopify-section-162671634287507c15 .homepage-2021-title {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #c87b67 !important;
  margin-bottom: 80px;
}
.lash-mascara #shopify-section-162671634287507c15 h5 a,
.homepage-2021 #shopify-section-162671634287507c15 h5 a {
  display: block;
  font-family: ivypresto-display;
  text-align: center;
  font-size: 28px;
  color: #ffffff;
  letter-spacing: 1px;
}
.lash-mascara div#shopify-section-1557099160579 .one-fourth,
.homepage-2021 div#shopify-section-1557099160579 .one-fourth {
  max-width: 100%;
  min-width: 124px;
  margin-left: 0;
  margin-right: 0;
}
.lash-mascara div#shopify-section-1557099160579 .one-fourth img,
.homepage-2021 div#shopify-section-1557099160579 .one-fourth img {
  max-width: 100% !important;
  max-height: 100% !important;
}
.lash-mascara div#shopify-section-1557099160579 .logo-list__wrapper,
.homepage-2021 div#shopify-section-1557099160579 .logo-list__wrapper {
  justify-content: space-around;
}
.lash-mascara .shopify-section.logo-list,
.homepage-2021 .shopify-section.logo-list {
  background-color: #f1ede9;
}
.lash-mascara .block__logo-list,
.homepage-2021 .block__logo-list {
  background-color: #f1ede9;
  padding-top: 79px;
  padding-bottom: 96px;
}
.lash-mascara .logo-list .logo-list__item,
.homepage-2021 .logo-list .logo-list__item {
  width: auto;
  height: auto;
}
.lash-mascara .additional_information_wrapper,
.homepage-2021 .additional_information_wrapper {
  margin-top: 83px;
}
.lash-mascara .container .column,
.homepage-2021 .container .column {
  margin-left: calc(10px / 2);
  margin-right: calc(10px / 2);
  padding-top: 9px;
  margin-top: 9px;
  margin-bottom: 0px !important;
}
.lash-mascara .block__featured-collection h2,
.homepage-2021 .block__featured-collection h2 {
  font-family: ivypresto-display;
  font-size: 34px;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: center;
}
.lash-mascara .rich-text__text p,
.lash-mascara .rich-text__text p,
.homepage-2021 .rich-text__text p,
.homepage-2021 .rich-text__text p {
  line-height: 1;
}
.lash-mascara .additional_information p,
.homepage-2021 .additional_information p {
  line-height: 1.3;
}
.lash-mascara .additional_information li span,
.homepage-2021 .additional_information li span {
  display: block;
}
.lash-mascara .additional_information li h4,
.homepage-2021 .additional_information li h4 {
  font-family: sofia-pro;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.lash-mascara .additional_information li a,
.homepage-2021 .additional_information li a {
  display: block;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 45px;
  letter-spacing: 1px;
  color: #54585b;
  text-decoration: underline;
}
.lash-mascara .block__category-collection,
.homepage-2021 .block__category-collection {
  background-color: #c87b67;
}
.lash-mascara .mobile-category div.is-flex img,
.homepage-2021 .mobile-category div.is-flex img {
  object-fit: cover;
}
.lash-mascara .custom_picture .text_container,
.lash-mascara .custom_picture .text_container p.faux_link,
.homepage-2021 .custom_picture .text_container,
.homepage-2021 .custom_picture .text_container p.faux_link {
  color: white;
}

@media (max-width: 1024px) {
  .lash-mascara .new_custom_picture .text_container,
.homepage-2021 .new_custom_picture .text_container {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 1180px) {
  .lash-mascara,
.homepage-2021 {
    /* Hide offer gif in mobile */
    /* Set color to gray in mobile */
  }
  .lash-mascara .slider-wrapper,
.homepage-2021 .slider-wrapper {
    -ms-grid-columns: 1fr 1fr 1fr !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    -ms-grid-rows: 1fr auto !important;
    grid-template-rows: 1fr auto !important;
  }
  .lash-mascara .new_custom_picture .image_container,
.homepage-2021 .new_custom_picture .image_container {
    -ms-grid-row: 1 !important;
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 6 !important;
    grid-area: 1/1/1/span 6 !important;
    padding-top: 56.25% !important;
  }
  .lash-mascara .new_custom_picture .text_container,
.homepage-2021 .new_custom_picture .text_container {
    -ms-grid-row: 2 !important;
    -ms-grid-column: 1 !important;
    -ms-grid-column-span: 3 !important;
    grid-area: 2/1/2/span 3 !important;
  }
  .lash-mascara .offer_block .content_area img,
.homepage-2021 .offer_block .content_area img {
    position: initial;
  }
  .lash-mascara .offer_block_wrapper,
.homepage-2021 .offer_block_wrapper {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .lash-mascara .offer_block .content_area img,
.homepage-2021 .offer_block .content_area img {
    display: none;
  }
  .lash-mascara .custom_picture .text_container h2,
.lash-mascara .custom_picture .text_container p.faux_link,
.lash-mascara .custom_picture .text_container p:not(.faux_link),
.homepage-2021 .custom_picture .text_container h2,
.homepage-2021 .custom_picture .text_container p.faux_link,
.homepage-2021 .custom_picture .text_container p:not(.faux_link) {
    color: #414042;
  }
}
@media (max-width: 1180px) {
  .lash-mascara,
.homepage-2021 {
    display: flex;
    flex-direction: column;
  }
  .lash-mascara .gallery-cell.thumbnail,
.homepage-2021 .gallery-cell.thumbnail {
    padding-bottom: 0 !important;
    margin-bottom: 9px !important;
  }
  .lash-mascara .gallery-cell,
.homepage-2021 .gallery-cell {
    width: 40% !important;
    height: 350px;
    background-color: #ffffff;
  }
  .lash-mascara .block__featured-collection .flickity-prev-next-button,
.homepage-2021 .block__featured-collection .flickity-prev-next-button {
    visibility: hidden;
  }
  .lash-mascara .new_custom_picture .image_container,
.homepage-2021 .new_custom_picture .image_container {
    padding-top: 100% !important;
  }
  .lash-mascara .new_custom_picture .text_container,
.homepage-2021 .new_custom_picture .text_container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .lash-mascara .shopify-section.block__offer-block,
.homepage-2021 .shopify-section.block__offer-block {
    order: 1;
  }
  .lash-mascara .shopify-section.block__custom-slider-2021,
.homepage-2021 .shopify-section.block__custom-slider-2021 {
    order: 2;
  }
  .lash-mascara .shopify-section.block__featured-collection,
.homepage-2021 .shopify-section.block__featured-collection {
    order: 3;
  }
  .lash-mascara .shopify-section.block__category-collection,
.homepage-2021 .shopify-section.block__category-collection {
    order: 4;
  }
  .lash-mascara #shopify-section-162671542249c33f11,
.homepage-2021 #shopify-section-162671542249c33f11 {
    order: 6;
  }
  .lash-mascara .shopify-section.logo-list,
.homepage-2021 .shopify-section.logo-list {
    order: 6;
  }
  .lash-mascara #shopify-section-16267299195eb6ec4e.image-with-text,
.homepage-2021 #shopify-section-16267299195eb6ec4e.image-with-text {
    order: 6;
  }
  .lash-mascara .shopify-section.html-section,
.homepage-2021 .shopify-section.html-section {
    order: 8;
  }
  .lash-mascara #shopify-section-162671634287507c15,
.homepage-2021 #shopify-section-162671634287507c15 {
    order: 9;
  }
  .lash-mascara #shopify-section-162672903446de1050.image-with-text,
.homepage-2021 #shopify-section-162672903446de1050.image-with-text {
    order: 10;
  }
  .lash-mascara #shopify-section-1626716927d36d2170,
.homepage-2021 #shopify-section-1626716927d36d2170 {
    order: 11;
  }
  .lash-mascara .offer_block .image_container,
.homepage-2021 .offer_block .image_container {
    visibility: hidden;
    display: none;
  }
  .lash-mascara .offer_block .is-flex p,
.homepage-2021 .offer_block .is-flex p {
    text-align: center;
  }
  .lash-mascara .offer_block em,
.homepage-2021 .offer_block em {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  .lash-mascara .offer_block,
.homepage-2021 .offer_block {
    justify-content: center;
    padding-bottom: 9px;
    padding-top: 9px;
  }
  .lash-mascara .offer_block .is-flex,
.homepage-2021 .offer_block .is-flex {
    margin-left: 0 !important;
  }
  .lash-mascara .mobile-category div.is-flex a,
.homepage-2021 .mobile-category div.is-flex a {
    display: flex;
  }
  .lash-mascara .mobile-category ul,
.homepage-2021 .mobile-category ul {
    display: flex;
    justify-content: space-around;
    padding: 20px;
  }
  .lash-mascara #shopify-section-1626709596142479f2,
.homepage-2021 #shopify-section-1626709596142479f2 {
    display: none;
  }
  .lash-mascara #shopify-section-162670960556682e97,
.homepage-2021 #shopify-section-162670960556682e97 {
    display: block;
  }
  .lash-mascara .block__category-collection .category,
.homepage-2021 .block__category-collection .category {
    display: none;
  }
  .lash-mascara .block__category-collection .category ~ section,
.homepage-2021 .block__category-collection .category ~ section {
    padding-bottom: 0 !important;
  }
  .lash-mascara .mobile-category,
.homepage-2021 .mobile-category {
    display: block;
  }
  .lash-mascara .text_container div,
.homepage-2021 .text_container div {
    margin: 0 auto 0 auto !important;
  }
  .lash-mascara .custom_picture .text_container h1,
.lash-mascara .custom_picture .text_container h2,
.homepage-2021 .custom_picture .text_container h1,
.homepage-2021 .custom_picture .text_container h2 {
    text-align: center;
  }
  .lash-mascara h2.rich-text__heading.title,
.homepage-2021 h2.rich-text__heading.title {
    text-align: center;
  }
  .lash-mascara .rich-text__text p,
.homepage-2021 .rich-text__text p {
    text-align: center;
  }
  .lash-mascara .block__logo-list .logo_wrapper,
.homepage-2021 .block__logo-list .logo_wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
  .lash-mascara div#shopify-section-1557099160579 .logo-list__wrapper,
.homepage-2021 div#shopify-section-1557099160579 .logo-list__wrapper {
    width: 100%;
  }
  .lash-mascara #shopify-section-162671542249c33f11 h3,
.homepage-2021 #shopify-section-162671542249c33f11 h3 {
    padding-top: 20px;
  }
  .lash-mascara .shopify-section.logo-list .container .logo-list__item:nth-child(4n),
.homepage-2021 .shopify-section.logo-list .container .logo-list__item:nth-child(4n) {
    margin-left: 20px !important;
  }
  .lash-mascara .shopify-section.logo-list .container .logo-list__item:nth-child(5n),
.homepage-2021 .shopify-section.logo-list .container .logo-list__item:nth-child(5n) {
    margin-right: 20px !important;
  }
  .lash-mascara .shopify-section.logo-list .section,
.homepage-2021 .shopify-section.logo-list .section {
    width: 100%;
    padding: 0;
    max-width: 100%;
  }
  .lash-mascara .shopify-section.image-with-text .section,
.homepage-2021 .shopify-section.image-with-text .section {
    width: 100%;
    padding: 0;
    max-width: 100%;
  }
  .lash-mascara .shopify-section.image-with-text .container,
.homepage-2021 .shopify-section.image-with-text .container {
    justify-content: center;
  }
  .lash-mascara .shopify-section.image-with-text .image-with-text__image-column,
.homepage-2021 .shopify-section.image-with-text .image-with-text__image-column {
    width: 100%;
    margin-top: 0;
    padding-top: 18px;
    margin-left: 0;
    margin-right: 0;
  }
  .lash-mascara .yotpo-icon-right-arrow-light,
.lash-mascara .yotpo-icon-left-arrow-light,
.homepage-2021 .yotpo-icon-right-arrow-light,
.homepage-2021 .yotpo-icon-left-arrow-light {
    visibility: hidden !important;
  }
  .lash-mascara #shopify-section-1586925469224,
.homepage-2021 #shopify-section-1586925469224 {
    padding-top: 30px;
  }
  .lash-mascara #shopify-section-162671634287507c15 .homepage-2021-title,
.homepage-2021 #shopify-section-162671634287507c15 .homepage-2021-title {
    margin-bottom: 0;
  }
  .lash-mascara .custom_picture .text_container p,
.homepage-2021 .custom_picture .text_container p {
    text-align: center;
    padding-bottom: 20px;
  }
  .lash-mascara .custom_picture .text_container a,
.homepage-2021 .custom_picture .text_container a {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  .lash-mascara .additional_information,
.homepage-2021 .additional_information {
    width: 100%;
  }
  .lash-mascara .additional_information ul,
.homepage-2021 .additional_information ul {
    flex-direction: column;
  }
  .lash-mascara .additional_information ul li:not(:last-child),
.homepage-2021 .additional_information ul li:not(:last-child) {
    border-bottom: solid 0.3px #54585b;
  }
  .lash-mascara .additional_information ul li,
.homepage-2021 .additional_information ul li {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
  }
  .lash-mascara .additional_information section,
.homepage-2021 .additional_information section {
    width: 100%;
  }
  .lash-mascara #shopify-section-162671542249c33f11 .homepage-2021-title h3,
.homepage-2021 #shopify-section-162671542249c33f11 .homepage-2021-title h3 {
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 413px) {
  .lash-mascara .gallery-cell,
.homepage-2021 .gallery-cell {
    width: 50% !important;
  }
  .lash-mascara .block__featured-collection .flickity-prev-next-button,
.homepage-2021 .block__featured-collection .flickity-prev-next-button {
    visibility: visible;
  }
}
@media (max-width: 374px) {
  .block__logo-list .logo_wrapper .logo-list__item:nth-child(4n) {
    margin-left: 0;
  }

  .block__logo-list .logo_wrapper .logo-list__item:nth-child(5n) {
    margin-right: 0;
  }
}
.homepage-2021 .custom_picture .text_container,
.homepage-2021 .custom_picture .text_container p.faux_link {
  color: #414042;
}

@media (max-width: 1180px) {
  /* Hide offer gif in mobile */
  .homepage-2021 .offer_block .content_area img {
    display: none;
  }

  /* Set color to gray in mobile */
  .homepage-2021 .custom_picture .text_container h2,
.homepage-2021 .custom_picture .text_container p.faux_link,
.homepage-2021 .custom_picture .text_container p:not(.faux_link) {
    color: #414042;
  }
}
:root {
  --color--brand-black: #545759;
  --font--header-stack: ivypresto-display;
  --font--body-stack: sofia-pro, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
}

.page-beyond-lash-mascara {
  display: block !important;
}
.page-beyond-lash-mascara .lash-mascara {
  display: block !important;
}
.page-beyond-lash-mascara #shopify-section-beyond-lash__video {
  margin-top: 0;
  padding-top: 0;
}
.page-beyond-lash-mascara #shopify-section-beyond-lash__video .column {
  padding: 0;
  margin: 0;
}
.page-beyond-lash-mascara #shopify-section-beyond-lash__video [data-play-button] {
  --btn-size: 190px;
  --icn-size-hght: calc( (var(--btn-size)) / 3);
  --icn-size-wdth: calc( (var(--btn-size)) / 2);
  border: 7px solid white;
  background: rgba(255, 255, 255, 0.2);
  padding: 0;
  margin: 0;
  border-radius: 150%;
  width: var(--btn-size);
  height: var(--btn-size);
  max-width: 100%;
  position: relative;
}
.page-beyond-lash-mascara #shopify-section-beyond-lash__video [data-play-button]:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 58%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: var(--icn-size-hght) solid transparent;
  border-bottom: var(--icn-size-hght) solid transparent;
  border-left: var(--icn-size-wdth) solid white;
}
.page-beyond-lash-mascara #shopify-section-beyond-lash__video [data-play-button]:hover {
  background: rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 798px) {
  .page-beyond-lash-mascara #shopify-section-beyond-lash__video [data-play-button] {
    --btn-size: 160px;
  }
}
@media only screen and (max-width: 480px) {
  .page-beyond-lash-mascara #shopify-section-beyond-lash__video [data-play-button] {
    --btn-size: 100px;
  }
}
.page-beyond-lash-mascara .new_custom_picture .flickity-button {
  display: none;
}
.page-beyond-lash-mascara .new_custom_picture .image_container img {
  object-fit: contain;
}
@media only screen and (min-width: 1025px) {
  .page-beyond-lash-mascara .new_custom_picture .image_container img {
    width: 50%;
  }
}
.page-beyond-lash-mascara .new_custom_picture .text_container h2 {
  color: black;
  color: var(--color--brand-black);
  font-size: 1em;
  position: relative;
  padding: 0.9em 0 1.8em;
  line-height: 1;
}
.page-beyond-lash-mascara .new_custom_picture .text_container h2 span {
  display: block;
  color: var(--color--brand-black);
}
.page-beyond-lash-mascara .new_custom_picture .text_container h2 .top-span {
  font-family: var(--font--body-stack);
  font-style: italic;
  font-weight: 400;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.2em;
  font-size: 1em;
  position: absolute;
  top: 0;
  left: 2.5em;
  left: 2.8em;
}
.page-beyond-lash-mascara .new_custom_picture .text_container h2 .mid-span {
  font-weight: 300;
  font-size: 4em;
}
.page-beyond-lash-mascara .new_custom_picture .text_container h2 .mid-span sup {
  font-size: 0.22em;
  font-size: 0.18em;
  vertical-align: top;
}
.page-beyond-lash-mascara .new_custom_picture .text_container h2 .bot-span {
  font-size: 1.6em;
  font-size: 1.7em;
  position: absolute;
  bottom: 0;
  right: 1em;
  right: 0.7em;
}
@media only screen and (min-width: 1025px) {
  .page-beyond-lash-mascara .new_custom_picture .text_container {
    align-items: flex-end;
  }
  .page-beyond-lash-mascara .new_custom_picture .text_container div {
    margin: 0 5% 0 0;
  }
  .page-beyond-lash-mascara .new_custom_picture .text_container h2 {
    font-size: 1.5em;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1180px) {
  .page-beyond-lash-mascara .new_custom_picture .text_container {
    -ms-grid-row: 1 !important;
    -ms-grid-row-span: 1 !important;
    -ms-grid-column: 2 !important;
    -ms-grid-column-span: 2 !important;
    grid-area: 1/2/2/span 2 !important;
  }
  .page-beyond-lash-mascara .new_custom_picture .text_container h2 {
    font-size: 1.25em;
  }
  .page-beyond-lash-mascara .new_custom_picture .image_container {
    padding-top: 56.6% !important;
  }
}
@media only screen and (max-width: 480px) {
  .page-beyond-lash-mascara .new_custom_picture .text_container h2 {
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 1024px) {
  .page-beyond-lash-mascara .new_custom_picture {
    margin-bottom: 30px;
  }
  .page-beyond-lash-mascara .new_custom_picture .image_container {
    padding-top: 80% !important;
  }
}
.page-beyond-lash-mascara .shopify-section.block__custom-slider-2021 {
  order: unset;
}
.page-beyond-lash-mascara .custom-section h2 {
  font-family: var(--font--header-stack);
  color: var(--color--brand-black);
  font-weight: 300;
  font-size: 43px;
}
.page-beyond-lash-mascara .custom-section h2 b {
  font-weight: 300;
  font-style: italic;
}
.page-beyond-lash-mascara .custom-section .rte {
  font-size: 16px;
  color: var(--color--brand-black);
  font-weight: 300;
  line-height: 1.7;
}
.page-beyond-lash-mascara .custom-section .rte b, .page-beyond-lash-mascara .custom-section .rte strong {
  font-weight: 700;
}
@media only screen and (max-width: 480px) {
  .page-beyond-lash-mascara .custom-section h2 {
    font-size: 28px;
  }
  .page-beyond-lash-mascara .custom-section .rte {
    margin: 0 auto;
    max-width: 300px;
  }
}
@media only screen and (min-width: 1025px) {
  .page-beyond-lash-mascara .custom-section h2 {
    font-size: 50px;
  }
  .page-beyond-lash-mascara .custom-section .rte {
    font-size: 19px;
  }
}

#template-404 .mobile-category {
  display: none;
}
#template-404 .category .title_collection {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #c87b67;
}
#template-404 .category:not(.section) {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #c87b67;
}
#template-404 .category ul {
  display: flex;
  justify-content: space-around;
}
#template-404 .mobile-category ul li a,
#template-404 .category ul li a {
  font-family: ivypresto-display;
  font-size: 28px;
  color: #ffffff;
  letter-spacing: 1px;
}
#template-404 .block__category-collection {
  background-color: #c87b67;
}
#template-404 .mobile-category div.is-flex img {
  object-fit: cover;
}
#template-404 .not-found-404__page {
  background: #f1eeec;
}
#template-404 .not-found-404__page main.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#template-404 .not-found-404__page .heading-wrapper {
  margin: 0 auto 30px;
  text-align: center;
}
#template-404 .not-found-404__page .heading-wrapper h1 {
  font-size: 34px;
  display: inline-block;
  margin: 0 auto;
  font-family: ivypresto-display;
  color: #474747;
}
#template-404 .not-found-404__page .container {
  width: 100%;
}
#template-404 .not-found-404__page .container .one-whole.column.content {
  margin: 0 auto;
  max-width: 500px;
  text-align: center;
}
#template-404 .not-found-404__page .container .one-whole.column.content p {
  margin-bottom: 7px;
}
#template-404 .not-found-404__page .container .one-whole.column.content .search-form {
  margin-top: 30px;
}
#template-404 .not-found-404__page .container .one-whole.column.content .search-form .search__fields [data-icon=search] {
  color: #474747;
  left: 0;
  top: 50%;
  transform: translate(10px, -50%);
  padding: 3px;
}
#template-404 .not-found-404__page .container .one-whole.column.content .search-form input {
  border-color: #474747;
  padding: 20px;
  padding-left: 40px;
}
#template-404 .not-found-404__page .container .one-whole.column.content .search-form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #474747;
}
#template-404 .not-found-404__page .container .one-whole.column.content .search-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #474747;
}
#template-404 .not-found-404__page .container .one-whole.column.content .search-form :-ms-input-placeholder {
  /* IE 10+ */
  color: #474747;
}
#template-404 .not-found-404__page .container .one-whole.column.content .search-form :-moz-placeholder {
  /* Firefox 18- */
  color: #474747;
}

@media (max-width: 1180px) {
  #template-404 .block__category-collection .category {
    display: none;
  }
  #template-404 .mobile-category div.is-flex a {
    display: flex;
  }
  #template-404 .mobile-category ul {
    display: flex;
    justify-content: space-around;
    padding: 20px;
  }
  #template-404 .block__category-collection .category ~ section {
    padding-bottom: 0 !important;
  }
  #template-404 .mobile-category {
    display: block;
  }
  #template-404 .not-found-404__page .heading-wrapper h1 {
    font-size: 28px;
  }
}
.enlighten-plus-2020-page .enlighten-plus-2020_title h2, .enlighten-plus-2020-page h3, .enlighten-plus-2020-page h4, .enlighten-plus-2020-page h5 {
  position: relative;
  width: auto;
  width: max-content;
  color: #716e69;
  margin: 0 auto;
  font-weight: 500;
  letter-spacing: 2.45px;
  font-size: 22.5px;
  text-transform: uppercase;
}
.enlighten-plus-2020-page .enlighten-plus-2020_title h2:before, .enlighten-plus-2020-page h3:before, .enlighten-plus-2020-page h4:before, .enlighten-plus-2020-page h5:before {
  content: "+";
  top: 50%;
  left: -30px;
  font-size: 24.5px;
  font-weight: normal;
  position: absolute;
  color: #bcbcbc;
  transform: translateY(-50%);
}
@media only screen and (max-width: 798px) {
  .enlighten-plus-2020-page .enlighten-plus-2020_title h2, .enlighten-plus-2020-page h3, .enlighten-plus-2020-page h4, .enlighten-plus-2020-page h5 {
    font-size: 18px;
  }
  .enlighten-plus-2020-page .enlighten-plus-2020_title h2:before, .enlighten-plus-2020-page h3:before, .enlighten-plus-2020-page h4:before, .enlighten-plus-2020-page h5:before {
    font-size: 17px;
    position: initial;
  }
}
.enlighten-plus-2020-page .pt-40 {
  padding-top: 40px;
}
.enlighten-plus-2020-page .dotted-border-top {
  background-image: linear-gradient(to right, #9c9a98 33%, rgba(255, 255, 255, 0) 0%);
  background-size: 6px 2px;
  background-repeat: repeat-x;
}
.enlighten-plus-2020-page .enlighten-plus-2020_main-video .aspect-box {
  position: relative;
  padding-top: 44.247% !important;
  height: 0;
  overflow: hidden;
}
.enlighten-plus-2020-page .enlighten-plus-2020_main-video .aspect-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.enlighten-plus-2020-page .enlighten-plus-2020_main-hero {
  max-width: 1064px;
  margin: -64px auto 0 auto;
  z-index: 1;
}
.enlighten-plus-2020-page .enlighten-plus-2020_main-hero .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 670px;
  grid-template-columns: 1fr 670px;
      grid-template-areas: "image text";
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.enlighten-plus-2020-page .enlighten-plus-2020_main-hero .grid .image {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: image;
}
.enlighten-plus-2020-page .enlighten-plus-2020_main-hero .grid .image .aspect-outer {
  position: relative;
  padding-top: 210.75%;
  height: 0;
  overflow: hidden;
}
.enlighten-plus-2020-page .enlighten-plus-2020_main-hero .grid .image .aspect-outer .aspect-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.enlighten-plus-2020-page .enlighten-plus-2020_main-hero .grid .relative {
  position: relative;
}
.enlighten-plus-2020-page .enlighten-plus-2020_main-hero .grid .relative .new {
  position: absolute;
  width: 100vw;
  left: 435px;
  top: -135px;
  margin: 42px 0 23px 42px;
  padding: 5px 193px 5px 80px;
  background-color: #e1e1de;
}
.enlighten-plus-2020-page .enlighten-plus-2020_main-hero .grid .relative .new span {
  font-size: 41px;
  text-transform: uppercase;
  font-style: italic;
}
.enlighten-plus-2020-page .enlighten-plus-2020_main-hero .grid .relative .content-wrapper {
  margin-top: 179px;
}
.enlighten-plus-2020-page .enlighten-plus-2020_main-hero .grid .relative a {
  display: block;
  margin: 46px auto;
  max-width: 190px;
  padding: 10px 29px;
  text-align: center;
  text-transform: uppercase;
  font-size: 23px;
  text-decoration: none;
  border: solid 1px #968b82;
  color: #716e69;
}
.enlighten-plus-2020-page .enlighten-plus-2020_main-hero .grid .relative h1 {
  font-size: 25px;
  font-style: italic;
  text-align: center;
  color: #716e69;
  letter-spacing: 1.68px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 20px;
}
.enlighten-plus-2020-page .enlighten-plus-2020_main-hero .grid .relative p:nth-child(3) {
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.2px;
}
@media only screen and (max-width: 798px) {
  .enlighten-plus-2020-page .enlighten-plus-2020_main-hero {
    margin: -20px auto 0 auto;
  }
  .enlighten-plus-2020-page .enlighten-plus-2020_main-hero .grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
        grid-template-areas: "image" "text";
  }
  .enlighten-plus-2020-page .enlighten-plus-2020_main-hero .grid .content-wrapper {
    margin-top: 0 !important;
  }
  .enlighten-plus-2020-page .enlighten-plus-2020_main-hero .grid .content-wrapper h1 {
    font-size: 18px;
  }
  .enlighten-plus-2020-page .enlighten-plus-2020_main-hero .aspect-outer {
    padding-top: 56.25% !important;
  }
  .enlighten-plus-2020-page .enlighten-plus-2020_main-hero .center-block {
    display: block;
    margin: 0 auto;
  }
  .enlighten-plus-2020-page .enlighten-plus-2020_main-hero .grid .image {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
@media only screen and (max-width: 480px) {
  .enlighten-plus-2020-page .enlighten-plus-2020_main-hero .aspect-outer {
    padding-top: 100%;
  }
}
.enlighten-plus-2020-page .enlighten-plus-2020_application_overview {
  display: flex;
  justify-content: center;
  align-items: top;
}
.enlighten-plus-2020-page .enlighten-plus-2020_application_overview h2 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: 1.8px;
  margin-top: 0;
  padding-bottom: 5px;
  color: #716e69;
}
.enlighten-plus-2020-page .enlighten-plus-2020_application_overview .information-header {
  z-index: 0;
  padding-left: 25px;
}
.enlighten-plus-2020-page .enlighten-plus-2020_application_overview .information-header .enlighten-plus-2020_title {
  width: auto;
}
.enlighten-plus-2020-page .enlighten-plus-2020_application_overview .information-container {
  padding-left: 54px;
}
.enlighten-plus-2020-page .enlighten-plus-2020_application_overview .text-container {
  position: relative;
  padding-left: 25px;
  padding-right: 62px;
  padding-top: 31px;
  padding-bottom: 16px;
  background: #fafafa;
}
.enlighten-plus-2020-page .enlighten-plus-2020_application_overview .text-container:before {
  content: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='100' width='100'><line /></svg>");
  display: block;
  width: 545px;
  height: 1px;
  background: #b7b9b6;
  position: absolute;
  top: 0;
  left: -151px;
}
.enlighten-plus-2020-page .enlighten-plus-2020_application_overview .text-container h2 {
  font-size: 18px;
}
.enlighten-plus-2020-page .enlighten-plus-2020_application_overview .text-container h2:nth-child(3) {
  padding-top: 1.5em;
}
.enlighten-plus-2020-page .enlighten-plus-2020_application_overview .text-container ul {
  list-style-type: none;
  padding-left: 20px;
}
.enlighten-plus-2020-page .enlighten-plus-2020_application_overview .text-container ul li {
  position: relative;
}
.enlighten-plus-2020-page .enlighten-plus-2020_application_overview .text-container ul li:before {
  content: "—";
  position: absolute;
  left: -23px;
  font-size: 16px;
  opacity: 0.25;
}
@media only screen and (max-width: 798px) {
  .enlighten-plus-2020-page .enlighten-plus-2020_application_overview .text-container h2 {
    font-size: 15px;
  }
  .enlighten-plus-2020-page .enlighten-plus-2020_application_overview h2 {
    font-size: 18px;
  }
  .enlighten-plus-2020-page .enlighten-plus-2020_application_overview .information-container {
    padding-left: calc(100px * 1.1);
  }
}
.enlighten-plus-2020-page .enlighten-plus-2020_foundation-quiz {
  max-width: 1064px;
  margin: 0 auto;
}
.enlighten-plus-2020-page .enlighten-plus-2020_foundation-quiz .relative {
  position: relative;
}
.enlighten-plus-2020-page .enlighten-plus-2020_foundation-quiz .center-util {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.enlighten-plus-2020-page .enlighten-plus-2020_foundation-quiz a {
  width: 157px;
  letter-spacing: 1.75px;
  color: #76787b;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 25px;
  white-space: nowrap;
}
@media only screen and (max-width: 798px) {
  .enlighten-plus-2020-page .enlighten-plus-2020_foundation-quiz img {
    width: 480px;
    height: 439px;
    object-fit: cover;
    object-position: center;
  }
}

/* # Font-Face
================================================== */
/*  This is the proper syntax for an @font-face file.
    Upload your font files to Assets and then
    copy your FontName into code below and remove
    comment brackets */
/*  @font-face {
      font-family: 'FontName';
      src: url('FontName.eot');
      src: url('FontName.eot?iefix') format('eot'),
           url('FontName.woff') format('woff'),
           url('FontName.ttf') format('truetype'),
           url('FontName.svg#webfontZam02nTh') format('svg');
      font-weight: normal;
      font-style: normal; }
*/
/* # Custom Styles
================================================== */
.full-menu-container {
  text-align: center;
  margin-bottom: 19px;
}

@media only screen and (max-width: 767px) {
  .blog-wrapper {
    margin-bottom: 6px;
  }
}
.blog-banner .banner__wrapper {
  margin-bottom: 20px;
}

.blog-main .blog__title {
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
}
.blog-main .blog-card .blog-card__content {
  padding-top: 23px;
}
.blog-main .blog-card .media {
  margin-bottom: 16px;
}
.blog-main .blog-card .media .tag {
  margin-bottom: 8px;
}
.blog-main .blog-card .media .tag a {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 23px;
  color: #c97b64;
  letter-spacing: 1px;
}
.blog-main .blog-card .media .title {
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 1px;
}
.blog-main .share-btn-blog--instagram path {
  fill: #FFF;
}

.blog-page .featured-collection__title {
  margin-top: 80px;
}
@media only screen and (max-width: 1024px) {
  .blog-page .featured-collection__title {
    margin-top: 50px;
  }
}

.blog-menu .submenu {
  display: none;
}
.blog-menu .submenu li > a:hover {
  color: #673595;
}
.blog-menu > li {
  display: inline-block;
  padding: 5px 15px;
  position: relative;
  cursor: pointer;
}
.blog-menu > li:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: #414042;
}
.blog-menu > li > a {
  font-size: 12px;
  line-height: 16px;
  color: #414042;
  letter-spacing: 1.71px;
}
@media only screen and (min-width: 1025px) {
  .blog-menu > li:hover > .submenu {
    display: block;
  }
  .blog-menu > li:hover > a {
    color: #414042;
  }
  .blog-menu > li:hover:after {
    color: #414042;
    transform: translateY(-50%) rotate(180deg);
  }
}
.blog-menu > li:first-child {
  padding-left: 0;
}
.blog-menu > li:first-child .submenu {
  width: 290px;
}
.blog-menu > li:last-child {
  padding-right: 0;
}
.blog-menu > li:last-child:after {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .blog-menu > li > .submenu {
    position: absolute;
    z-index: 999;
    background: #FFFFFF;
    border: 1px solid #E1DCD5;
    padding: 9px 24px;
    text-align: left;
    width: 270px;
    left: -25px;
    top: 31px;
  }
}
.blog-menu > li > .submenu li {
  font-size: 14px;
  line-height: 31px;
}
.blog-menu > li > .submenu li a {
  color: #414042;
  white-space: nowrap;
}

.blog-wrapper {
  display: none;
}

.blog-header {
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
}

.meta-info-list .meta-info-list__item a,
.meta-info-list .meta-info-list__item span {
  font-size: 13px;
  line-height: 23px;
}

.featured-collection__title {
  letter-spacing: 3.5px;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

@media only screen and (max-width: 1024px) {
  .full-menu-container.sticky {
    position: fixed;
    top: 70px;
    height: 100vh;
    background: #FFF;
    z-index: 11;
    width: 100%;
    left: 0;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 799px) {
  .full-menu-container.sticky {
    top: 85px;
  }
}
@media only screen and (max-width: 1024px) {
  .full-menu-container.sticky .blog-menu {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .full-menu-container.sticky .blog-wrapper {
    background-color: #414042;
  }
}
@media only screen and (max-width: 1024px) {
  .full-menu-container.sticky .blog-back-btn {
    width: 25px;
    height: 25px;
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .full-menu-container.blog-sticky {
    position: fixed;
    background: #FFF;
    width: 100%;
    left: 0;
    top: 66px;
    z-index: 11;
    padding: 0;
    border: 0;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 799px) {
  .full-menu-container.blog-sticky {
    top: 85px;
  }
}
@media only screen and (max-width: 1024px) {
  .blog-wrapper {
    position: relative;
    padding: 10px;
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .blog-back-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    width: 30px;
    height: 20px;
    left: 25px;
  }
  .blog-back-btn:after {
    content: "";
    background: url("//cdn.shopify.com/s/files/1/0338/3882/5612/files/arrow.png?v=1587131829") 0 0 no-repeat;
    position: absolute;
    width: 40px;
    height: 26px;
    transform: scale(0.5);
    position: absolute;
    left: 0;
    top: -2px;
  }
}
@media only screen and (max-width: 1024px) {
  .blog-btn {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 2px;
    color: #FFF;
    background-color: #414042;
    padding: 15px 20px 14px;
    max-width: 335px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1024px) {
  .title.blog-header {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .blog-menu {
    display: none;
  }
  .blog-menu > li {
    display: block;
    text-align: left;
    padding: 0px 0 0 10px !important;
  }
  .blog-menu > li:after {
    right: 30px;
    color: #414042;
    font-size: 100%;
    top: 15px;
  }
  .blog-menu > li > a {
    color: #414042;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 2px;
    padding: 9px 15px;
    display: block;
  }
  .blog-menu > li.active .submenu {
    display: block;
  }
  .blog-menu > li.active:after {
    transform: rotate(180deg);
  }
  .blog-menu > li .submenu {
    padding: 0 20px 10px;
  }
  .blog-menu > li .submenu li a {
    color: #414042;
    white-space: normal;
    padding: 10px 25px 10px 10px;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
  }
  .blog-menu > li .submenu li:last-child {
    border-bottom: 1px solid #F0EDE9;
    padding-bottom: 10px;
  }
}
.header-sticky-wrapper.is-sticky .header {
  background-color: #FFF !important;
  border-bottom: 1px solid #E1DCD5;
}

.header {
  position: relative;
}
.header > .section {
  max-width: calc(1200px - 20px);
  min-height: 88px;
}
.header > .section > .container {
  position: static;
}
.header .navbar {
  position: static;
  width: 100%;
  min-height: 88px;
}
@media only screen and (min-width: 1025px) {
  .header .navbar {
    display: flex;
    justify-content: space-between;
  }
}
.header .navbar .header__brand {
  padding: 0;
}
@media only screen and (min-width: 1025px) {
  .header .navbar .header__brand {
    flex-grow: 1;
    padding: 0;
  }
}
.header .navbar .header__brand .header__logo {
  width: 160px !important;
}
@media only screen and (min-width: 1025px) {
  .header .navbar .header__brand .header__logo {
    width: 248px !important;
    height: 72px;
  }
}
.header .header__menu {
  flex: 0 0 auto;
}
.header .navbar-item.has-mega-menu a:after {
  display: none;
}
.header .navbar-item .navbar-link {
  padding: 0;
  height: 100%;
  font-size: 19px;
  text-transform: capitalize;
  color: #474747;
  letter-spacing: 1px;
  padding-left: 14px;
  padding-right: 14px;
  line-height: 18px;
  border-bottom: 2px solid transparent;
}
.header .navbar-item .navbar-link.active {
  border-bottom: 2px solid;
}
.header .navbar-item:last-child .navbar-link {
  margin-right: 0;
}
.header .navbar-item:hover .navbar-link {
  border-bottom: 2px solid #414042;
}
.header .header__icons .icon {
  width: 21px;
  height: 30px;
}
.header .mega-menu__section .mega-menu.mega-menu--header-classic {
  background-color: #FFF !important;
  top: 89px;
}
.header .mega-menu__section .mega-menu > .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  height: 360px;
  padding-top: 35px;
}
.header .mega-menu__section .mega-menu .column {
  width: auto;
  padding: 0;
  margin-right: 60px;
}
.header .mega-menu__section .mega-menu .column:last-child {
  margin-right: 0;
}
.header .mega-menu__section .mega-menu .column.block__image {
  width: 100%;
  max-width: 200px;
}
.header .mega-menu__section .mega-menu .column.block__image .mega-menu__content {
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 20px;
}
.header .mega-menu__section .mega-menu .column.block__image .mega-menu__content.content p:first-child {
  color: #414042;
}
.header .mega-menu__section .mega-menu .column.block__image .mega-menu__content.content a {
  color: #414042;
}
.header .mega-menu__section .mega-menu .menu__heading {
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 2px;
  color: #414042;
  text-transform: capitalize;
  margin-bottom: 4px;
}
.header .mega-menu__section .mega-menu .mega-menu__linklist-link {
  font-size: 13px;
  line-height: 33px;
  padding: 0;
  letter-spacing: normal;
}

.header-sticky-wrapper {
  height: auto !important;
  border-bottom: 1px solid #E1DCD5;
}

.mobile-menu {
  border-top: 1px solid #E1DCD5;
}

.header--classic .is-relative {
  height: auto !important;
}

.mega-menu__mega-menu-2 .mega-menu .menu__heading,
.mega-menu__mega-menu-3 .mega-menu .menu__heading,
.mega-menu__mega-menu-5 .mega-menu .menu__heading,
.mega-menu__mega-menu-6 .mega-menu .menu__heading {
  display: none;
}

/* 10-21 Custom CSS Admin doesn't work need to insert into files */
#shopify-section-1557099160579.logo-list .logo-list__item:nth-child(-n+2) {
  padding-top: initial;
}

@media only screen and (min-width: 799px) {
  .header .mega-menu__mega-menu-1 .mega-menu > .container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 1024px) {
  .header .mega-menu__mega-menu-1 .mega-menu > .container > .column {
    margin-right: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-height: 400px) {
  .header .mega-menu__section .mega-menu.mega-menu--header-classic {
    overflow: auto;
    height: auto;
    max-height: 250px;
    padding-bottom: 20px;
  }
}
@media (max-width: 1150px) and (min-width: 798px) {
  .header .navbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header .navbar .header__brand {
    flex: 100% 0 0;
    justify-content: center;
  }

  .header .mega-menu__section .mega-menu.mega-menu--header-classic {
    top: 120px;
  }

  .header .mega-menu__mega-menu-1 .mega-menu > .container {
    max-width: 100%;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .header .navbar .header__brand .header__logo {
    width: 200px !important;
    min-height: 58px;
    height: auto;
  }
}
[data-navlink-handle=gifting].navbar-item .header__link {
  color: #9F675C;
}

[data-navlink-handle=day] a:before {
  display: block;
  content: url("https://cdn.shopify.com/s/files/1/0338/3882/5612/files/Heart-05.svg");
  width: 15px;
  height: 15px;
  margin-right: 6px;
}

[data-navlink-handle=holiday] .navbar-link.header__link {
  color: #C87B67;
}

.mobile-header .mobile-menu {
  top: 66px;
}
.mobile-header .mobile-menu .mobile-menu-link,
.mobile-header .mobile-menu .mobile-menu__item {
  padding: 9px 1.5rem;
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 2px;
  color: #414042;
}
.mobile-header .mobile-menu .mobile-menu-link:hover,
.mobile-header .mobile-menu .mobile-menu__item:hover {
  color: #414042;
}
.mobile-header .mobile-menu__content {
  background-color: #F9F8F6;
}
.mobile-header .mobile-menu__content .has-margin-bottom {
  padding-top: 16px;
  background: #FFF;
  padding-bottom: 20px;
}
.mobile-header .mobile-menu__content .has-margin-bottom > li {
  display: none;
}
.mobile-header .mega-menu__mega-menu-5:nth-child(2) {
  display: none;
}
.mobile-header .submenu__input:checked + label a:after {
  margin-right: 2px;
}
.mobile-header .mobile-menu__submenu {
  margin-left: 20px;
  margin-right: 15px;
  border-bottom: 1px solid #F0EDE9;
  margin-bottom: 13px;
}
.mobile-header .mobile-menu__submenu .mega-menu {
  background: #FFF !important;
}
.mobile-header .mobile-menu__submenu .mega-menu .column {
  width: 100%;
  padding-left: 16px;
  padding-bottom: 0;
  padding-right: 0;
  margin-right: 0;
}
.mobile-header .mobile-menu__submenu .mega-menu .column:first-child {
  padding-top: 10px;
}
.mobile-header .mobile-menu__submenu .mega-menu .column:last-child {
  padding-bottom: 20px;
}
.mobile-header .mobile-menu__submenu .mega-menu .block__image {
  display: none;
}
.mobile-header .mobile-menu__submenu .mega-menu .menu__heading {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 2px;
  color: #414042;
  text-transform: capitalize;
  padding-right: 20px;
  position: relative;
  margin-bottom: 0;
}
.mobile-header .mobile-menu__submenu .mega-menu .menu__heading:before, .mobile-header .mobile-menu__submenu .mega-menu .menu__heading:after {
  content: "";
  width: 1px;
  height: 10px;
  position: absolute;
  right: 12px;
  background: #414042;
  top: 2px;
}
.mobile-header .mobile-menu__submenu .mega-menu .menu__heading:before {
  transform: rotate(90deg);
}
.mobile-header .mobile-menu__submenu .mega-menu .menu__heading ~ ul {
  display: none;
  padding-left: 25px;
  padding-top: 10px;
}
.mobile-header .mobile-menu__submenu .mega-menu .menu__heading ~ ul a {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1px;
  color: #414042;
  padding: 10px 0;
  width: 100%;
}
.mobile-header .mobile-menu__submenu .mega-menu .menu__heading ~ ul a:hover {
  color: #673595;
  text-decoration: underline;
}
.mobile-header .mobile-menu__submenu .mega-menu .menu__heading ~ ul li:last-child a {
  padding-bottom: 0;
}
.mobile-header .mobile-menu__submenu .mega-menu .menu__heading.active ~ ul {
  display: block;
}
.mobile-header .mobile-menu__submenu .mega-menu .menu__heading.active:after {
  display: none;
}
.mobile-header .mega-menu__mega-menu-2 .mega-menu .menu__heading,
.mobile-header .mega-menu__mega-menu-3 .mega-menu .menu__heading,
.mobile-header .mega-menu__mega-menu-5 .mega-menu .menu__heading,
.mobile-header .mega-menu__mega-menu-6 .mega-menu .menu__heading {
  display: none;
}
.mobile-header .mega-menu__mega-menu-2 .mega-menu .menu__heading ~ ul,
.mobile-header .mega-menu__mega-menu-3 .mega-menu .menu__heading ~ ul,
.mobile-header .mega-menu__mega-menu-5 .mega-menu .menu__heading ~ ul,
.mobile-header .mega-menu__mega-menu-6 .mega-menu .menu__heading ~ ul {
  display: block !important;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 10px;
}
.mobile-header .mega-menu__mega-menu-2 .mega-menu .menu__heading ~ ul a,
.mobile-header .mega-menu__mega-menu-3 .mega-menu .menu__heading ~ ul a,
.mobile-header .mega-menu__mega-menu-5 .mega-menu .menu__heading ~ ul a,
.mobile-header .mega-menu__mega-menu-6 .mega-menu .menu__heading ~ ul a {
  text-transform: capitalize;
}
.mobile-header .mega-menu__mega-menu-2 .mega-menu .menu__heading ~ ul li:last-child a,
.mobile-header .mega-menu__mega-menu-3 .mega-menu .menu__heading ~ ul li:last-child a,
.mobile-header .mega-menu__mega-menu-5 .mega-menu .menu__heading ~ ul li:last-child a,
.mobile-header .mega-menu__mega-menu-6 .mega-menu .menu__heading ~ ul li:last-child a {
  padding-bottom: 10px;
}
.mobile-header .mega-menu__mega-menu-2 .mega-menu .column,
.mobile-header .mega-menu__mega-menu-3 .mega-menu .column,
.mobile-header .mega-menu__mega-menu-5 .mega-menu .column,
.mobile-header .mega-menu__mega-menu-6 .mega-menu .column {
  padding-left: 20px;
  padding-top: 0 !important;
}
.mobile-header .promo-bar-links {
  display: flex;
  flex-wrap: wrap;
  min-width: 600px;
  width: auto;
  background: #F9F8F6;
  padding: 0 20px 20px;
}
.mobile-header .promo-bar-links li {
  width: 100%;
  display: flex;
}
.mobile-header .promo-bar-links li a {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 2px;
  display: block;
  text-transform: capitalize;
  color: #414042;
  padding: 7px 0 8px;
}
.mobile-header .promo-bar-links li:nth-child(5) {
  order: 1;
}
.mobile-header .promo-bar-links li:nth-child(1) {
  order: 2;
}
.mobile-header .promo-bar-links li:nth-child(2) {
  order: 3;
}
.mobile-header .promo-bar-links li:nth-child(3) {
  order: 4;
}
.mobile-header .promo-bar-links li:nth-child(4) {
  order: 5;
}

#shopify-section-header-classic #mobile-header-sticky-wrapper.is-sticky .mobile-header {
  background-color: #FFF !important;
  border-bottom: 1px solid #E1DCD5;
}

.shopify-section.top-bar {
  display: block;
}
.shopify-section.top-bar .top-bar {
  height: 33px;
  overflow: hidden;
  min-height: unset;
  display: block;
}
.shopify-section.top-bar .top-bar .top-bar__text {
  width: 100%;
  height: 100%;
}
.shopify-section.top-bar .top-bar .top-bar__text .navbar-item {
  justify-content: center;
}

.custom-component .instagram-four-column-2020 {
  max-width: 880px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.custom-component .instagram-four-column-2020 .instagram-container {
  display: flex;
  justify-content: space-around;
}
.custom-component .instagram-four-column-2020 .instagram-container .item {
  width: calc(25% - 20px);
}
.custom-component .instagram-four-column-2020 .dark-text.layout {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.custom-component .instagram-four-column-2020 .dark-text.layout a {
  color: #433e3a;
}

@media (max-width: 767px) {
  .custom-component .instagram-four-column-2020 .instagram-container {
    flex-direction: column;
  }
  .custom-component .instagram-four-column-2020 .instagram-container .item {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .custom-component .instagram-four-column-2020 .instagram-container .item img {
    margin: 0 auto;
    display: block;
  }
  .custom-component .instagram-four-column-2020 .instagram-container .item:last-child {
    padding-bottom: 0;
  }
  .custom-component .instagram-four-column-2020 .dark-text.layout {
    margin-top: 10px;
  }
}
.breadcrumb__container li {
  font-size: 0.8rem;
  text-transform: uppercase;
}
.breadcrumb__container li sup {
  margin-right: 6px;
  margin-top: -3px;
}

.product-egift .shopify-product-form .purchase-details {
  max-width: 380px;
}
.product-egift .shopify-product-form .swym-button-bar {
  position: absolute;
  top: 0;
  margin: 0;
  right: -10px;
}
@media only screen and (min-width: 1025px) {
  .product-egift .shopify-product-form .swym-button-bar {
    right: 0;
  }
}

.country-wrapper {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 481px) {
  .country-wrapper {
    max-width: 240px;
  }
}
.country-wrapper:after {
  position: absolute;
  right: 20px;
  color: #414042;
  transform: translateY(-50%);
}
.country-wrapper select {
  -webkit-appearance: none;
  background-color: transparent;
  color: #414042;
  font-size: 14px;
  height: 46px;
  border: 1px solid;
  border-radius: 0;
  padding-left: 24px;
  width: 100%;
  cursor: pointer;
}
.country-wrapper select::-ms-expand {
  display: none;
}
.country-wrapper select:focus::-ms-value {
  background-color: transparent;
  color: #414042;
}

@media only screen and (max-width: 480px) {
  #shopify-section-1584555274508 .caption-content {
    padding: 0;
  }
}
#shopify-section-1584555274508 .title {
  margin-bottom: 24px;
  white-space: nowrap;
}
#shopify-section-1584555274508 .title span {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 3.33px;
}
#shopify-section-1584555274508 .button {
  width: 240px;
  height: 45px;
  background-color: #FFFFFF;
  color: #414042;
  font-size: 14px;
  line-height: 35px;
  letter-spacing: 2px;
  flex: 0 0 auto;
}

.blog-page .breadcrumb__container,
.article-page .breadcrumb__container {
  position: relative;
}
.blog-page .breadcrumb__container:after,
.article-page .breadcrumb__container:after {
  content: "";
  width: 100vw;
  height: 1px;
  background: #F0EDE9;
  position: absolute;
  bottom: 0;
  left: -4%;
}
.blog-page .section__wrapper,
.article-page .section__wrapper {
  padding: 13px 0 24px 10px;
}
.blog-page .blog-post-banner ~ .section__wrapper,
.article-page .blog-post-banner ~ .section__wrapper {
  padding: 0 0 40px;
}
.blog-page .blog-wrapper,
.article-page .blog-wrapper {
  margin: 0;
}
@media only screen and (max-width: 480px) {
  .blog-page .blog-wrapper,
.article-page .blog-wrapper {
    padding: 10px 20px;
  }
  .blog-page .blog-wrapper .blog-btn,
.article-page .blog-wrapper .blog-btn {
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .blog-page .breadcrumb ul,
.article-page .breadcrumb ul {
    justify-content: flex-start;
  }
}
.blog-page .breadcrumb ul a,
.article-page .breadcrumb ul a {
  line-height: 20px;
}

.article-page .blog-post-banner .collection_wrapper {
  height: auto;
  padding: 70px 0;
}
.article-page .blog-post-banner .subtitle {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 3.33px;
  color: #414042;
  max-width: 340px;
}
.article-page .article__title {
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
}
.article-page .heading-wrapper {
  margin-bottom: 0;
}
.article-page .blog-meta {
  margin-top: 23px;
}
.article-page .article-content {
  padding-top: 11px;
}
.article-page .article-content .title.is-5 {
  font-size: 18px;
  color: #673595;
  line-height: 26px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}
.article-page .article-content > .content {
  max-width: 608px;
}
.article-page .article-content > .content > div {
  padding-left: 0 !important;
  font-size: 15px;
  line-height: 23px;
  color: #414042;
  margin-bottom: 16px;
}
.article-page .article-content > .content > div strong {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 3.5px;
  color: #433E3A;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
}
.article-page .author-share-wrap .title a {
  line-height: 26px;
}
.article-page .featured-collection-section {
  padding-top: 60px !important;
}
@media only screen and (max-width: 798px) {
  .article-page .featured-collection-section {
    padding-top: 36px !important;
  }
}
@media only screen and (max-width: 798px) {
  .article-page .blog-author {
    padding-bottom: 17px;
  }
}
.article-page .author-share-wrap {
  padding-top: 54px;
}
@media only screen and (max-width: 798px) {
  .article-page .author-share-wrap {
    padding-top: 44px;
  }
}

.page-video-detail .breadcrumb__container {
  margin-left: 10px;
}
.page-video-detail .page__container:not(.form) .heading-wrapper {
  margin-top: 32px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 798px) {
  .page-video-detail .page__container:not(.form) .heading-wrapper {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.page-video-detail .page__container:not(.form) .heading-wrapper .title {
  line-height: 26px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}
.page-video-detail .landing-page-description {
  line-height: 23px;
  color: #414042;
  margin-bottom: 19px;
}

#AddToCartForm.multi-add-to-cart .heading-wrapper--page {
  display: flex;
}

.multi-add-to-cart.product-form {
  margin-top: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
}
@media only screen and (max-width: 798px) {
  .multi-add-to-cart.product-form {
    margin-top: 10px;
  }
}
.multi-add-to-cart.product-form .form .heading-wrapper {
  align-items: center;
  margin-bottom: 55px;
}
@media only screen and (max-width: 798px) {
  .multi-add-to-cart.product-form .form .heading-wrapper {
    margin-bottom: 15px;
  }
}
.multi-add-to-cart.product-form .form .column {
  width: 100%;
  position: relative;
}
.multi-add-to-cart.product-form .form .column.title-inactive {
  min-height: 85px;
}
.multi-add-to-cart.product-form .form .title {
  line-height: 26px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}
.multi-add-to-cart.product-form .form .action-wrapper {
  position: absolute;
  width: 275px;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 798px) {
  .multi-add-to-cart.product-form .form .action-wrapper {
    position: static;
    text-align: center;
    margin: 0 auto;
  }
}
.multi-add-to-cart.product-form .form .action-wrapper .button {
  height: 45px;
  background-color: #c97b64;
  font-size: 14px !important;
  line-height: 16px;
  letter-spacing: 2px;
  border-radius: 0;
  text-transform: uppercase;
  padding: 0;
}
.multi-add-to-cart.product-form .form .action-wrapper .button:hover {
  background-color: #d79f8e;
}
.multi-add-to-cart.product-form .form .action-wrapper a {
  display: block;
  text-align: right;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 2px;
  margin-top: 8px;
}
@media only screen and (max-width: 798px) {
  .multi-add-to-cart.product-form .form .action-wrapper a {
    text-align: center;
    margin-bottom: 15px;
  }
}
.multi-add-to-cart.product-form .checkbox-option {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.multi-add-to-cart.product-form .checkbox-option input[type=checkbox] {
  display: none;
}
.multi-add-to-cart.product-form .checkbox-option input[type=checkbox] ~ label {
  cursor: pointer;
  margin: 0;
  font-size: 12px;
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
}
.multi-add-to-cart.product-form .checkbox-option input[type=checkbox] ~ label:before {
  width: 35px;
  height: 35px;
  background-color: #fff;
  border: 1px solid #E2DAD0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.multi-add-to-cart.product-form .checkbox-option input[type=checkbox]:checked ~ label:before {
  background: #fff url(https://cdn.shopify.com/s/files/1/0338/3882/5612/files/green-tick.png?v=1589453156) no-repeat 50%/50%;
}
.multi-add-to-cart.product-form .product__thumbnail.product__grid-item {
  position: relative;
  width: 25%;
  margin: 0 65px 80px 0;
  max-width: 250px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 798px) {
  .multi-add-to-cart.product-form .product__thumbnail.product__grid-item {
    width: calc(50% - 20px);
    margin: 0 10px 40px 10px;
    max-width: unset;
  }
}
.multi-add-to-cart.product-form .product__thumbnail.product__grid-item:nth-child(4n) {
  margin-right: 0;
}
.multi-add-to-cart.product-form .product__thumbnail.product__grid-item .image__container {
  border: 1px solid #E2DAD0;
  margin-bottom: 15px;
}
.multi-add-to-cart.product-form .product__thumbnail.product__grid-item .prod_title {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 2px;
  color: #414042;
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
  flex-grow: 1;
}
.multi-add-to-cart.product-form .product__thumbnail.product__grid-item .prod_price {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2px;
  text-align: center;
  color: #414042;
  margin-bottom: 16px;
}
.multi-add-to-cart.product-form .product__thumbnail.product__grid-item .country-wrapper {
  max-width: unset;
}
.multi-add-to-cart.product-form .product__thumbnail.product__grid-item .country-wrapper:after {
  right: 13px;
}
.multi-add-to-cart.product-form .product__thumbnail.product__grid-item .country-wrapper.recharge-app {
  margin-top: 10px;
  width: calc(100% - 33px);
}
.multi-add-to-cart.product-form .product__thumbnail.product__grid-item .country-wrapper.recharge-app select {
  height: 46px;
  text-transform: capitalize;
}
.multi-add-to-cart.product-form .product__thumbnail.product__grid-item .item__subscription-info {
  display: none;
}
.multi-add-to-cart.product-form .product__thumbnail.product__grid-item .recharge-app-wrapper {
  position: absolute;
  bottom: -15px;
  width: 100%;
}
@media only screen and (min-width: 799px) {
  .multi-add-to-cart.product-form .product__thumbnail.product__grid-item .recharge-app-wrapper {
    bottom: -35px;
  }
}
.multi-add-to-cart.product-form .product__thumbnail.product__grid-item select {
  border-color: #E1DCD5;
  font-size: 15px;
  line-height: 23px;
  color: #414042;
  padding: 0 30px 0 13px;
}
.multi-add-to-cart.product-form .recharge-app .tooltip-btn {
  background: url("https://cdn.shopify.com/s/files/1/0338/3882/5612/files/tooltip.png?v=1590669351") no-repeat 50%/100%;
  position: absolute;
  width: 20px;
  height: 20px;
  right: -33px;
  top: 15px;
  cursor: pointer;
}
.multi-add-to-cart.product-form .recharge-app ~ .item__subscription-info {
  margin: 0;
  padding: 0;
}

.recharge-app-wrapper .tooltip-btn {
  background: url("https://cdn.shopify.com/s/files/1/0338/3882/5612/files/tooltip.png?v=1590669351") no-repeat 50%/100%;
  position: absolute;
  width: 20px;
  height: 20px;
  right: -33px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.recharge-app-wrapper ~ .item__subscription-info {
  margin: 0;
  padding: 0;
}
.recharge-app-wrapper .is-multiple {
  padding: 6px 12px;
}

@media (max-width: 767px) {
  .recharge-app-wrapper .country-wrapper {
    max-width: 80vw;
  }
}
.quickshop div.country-wrapper.recharge-app:after {
  display: none !important;
}

@media (max-width: 767px) {
  .article-page .blog-post-banner .banner__wrapper {
    max-height: unset;
  }
  .article-page .blog-post-banner .banner__wrapper .image-element__wrap {
    height: auto !important;
  }
  .article-page .blog-post-banner .banner__wrapper .card-content {
    padding: 0;
    top: auto !important;
    bottom: 0;
    left: 4vw !important;
    transform: none;
    width: 92vw;
  }
  .article-page .blog-post-banner .collection_wrapper {
    padding: 47px 0;
  }
  .article-page .article-content > .content > div strong {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 3px;
  }
  .article-page .author-share-wrap .title a {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 3.5px;
  }
}
@media (min-width: 798px) and (max-width: 1280px) {
  .multi-add-to-cart.product-form .product__thumbnail.product__grid-item {
    width: calc(25% - 20px);
    margin: 0 10px 60px;
    max-width: unset;
  }
  .multi-add-to-cart.product-form .form .heading-wrapper {
    max-width: calc(100% - 275px);
  }
}
@media (min-width: 1025px) {
  .article-page .blog-menu,
.blog-page .blog-menu {
    border-bottom: 1px solid #E1DCD5;
    padding-bottom: 24px;
    max-width: 1176px;
    margin: 0 auto;
  }
  .article-page .breadcrumb__container:after,
.blog-page .breadcrumb__container:after {
    display: none;
  }
}
@media (max-width: 1024px) {
  .blog-page .breadcrumb__container,
.article-page .breadcrumb__container {
    padding-bottom: 14px;
  }
  .blog-page .full-menu-container,
.article-page .full-menu-container {
    margin-bottom: 0;
  }
  .blog-page .section__wrapper,
.article-page .section__wrapper {
    padding-top: 0;
  }
}
.klaviyo-form.needsclick.klaviyo-form * {
  font-family: -apple-system, sans-serif !important;
}
.klaviyo-form.needsclick.klaviyo-form > div > .needsclick {
  width: 100%;
}
.klaviyo-form.needsclick.klaviyo-form > div .buDcla {
  width: 100%;
  max-width: 912px;
}
.klaviyo-form.needsclick.klaviyo-form > div .kvcQJV {
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.klaviyo-form.needsclick.klaviyo-form > div .kvcQJV:before {
  content: "";
  background: url("//cdn.shopify.com/s/files/1/0338/3882/5612/files/close-btn.png?v=1590142059") no-repeat 50%/100%;
  position: absolute;
  width: 25px;
  height: 25px;
  right: 0;
  top: 0;
}
.klaviyo-form.needsclick.klaviyo-form > div .kvcQJV img {
  opacity: 0;
  cursor: pointer;
}
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt {
  width: 600px;
  margin: 0 auto;
}
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .fjdFDR {
  padding: 0 !important;
}
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:first-child .ql-editor span {
  font-size: 20px !important;
  line-height: 26px;
  letter-spacing: 3.5px;
  color: #433E3A !important;
  width: 394px;
  display: block;
  margin: 0 auto;
  border-bottom: 1px solid #E1DCD5;
  padding-bottom: 16px;
}
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(2) .ql-editor span {
  font-size: 15px !important;
  line-height: 23px;
  color: #414042 !important;
  display: block;
  margin: 16px 0 24px;
}
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(3) > div {
  padding: 0;
}
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(3) > div:first-child {
  max-width: 417px;
  margin-right: 8px;
}
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(3) > div:last-child {
  max-width: 155px;
  width: 100%;
}
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(3) label {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.71px;
  text-transform: uppercase;
  color: #414042;
  font-weight: 500;
}
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(3) input {
  border-radius: 0;
  border: 1px solid #E1DCD5;
  height: 35px;
}
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(3) button {
  width: 100%;
  border-radius: 0;
  background: #c97b64;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 2px;
  color: #ffffff;
  padding: 10px 10px 9px;
}
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(3) button:hover {
  background-color: #d79f8e;
}
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(4) {
  margin-top: 16px;
}
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(4) .ql-editor {
  text-align: center;
}
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(4) p,
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(4) span,
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(4) a {
  font-size: 12px;
  line-height: 16px;
  color: #414042;
  display: inline-block;
}
.klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(4) a {
  color: #673595;
}

.tooltip-content {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.tooltip-content .modal-content {
  background-color: #FFF;
  margin: auto;
  padding: 58px 0;
  border: 1px solid #888;
  width: 90%;
  max-width: 912px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tooltip-content h3 {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  border-bottom: 1px solid #E1DCD5;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  padding-bottom: 15px;
  text-align: center;
}
.tooltip-content p {
  font-size: 15px;
  line-height: 23px;
  color: #414042;
  text-align: center;
  width: 100%;
  max-width: 615px;
  margin: 16px auto 0;
}
.tooltip-content .close-btn {
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.tooltip-content .close-btn:before {
  content: "";
  background: url("//cdn.shopify.com/s/files/1/0338/3882/5612/files/close-btn.png?v=1590142059") no-repeat 50%/100%;
  position: absolute;
  width: 25px;
  height: 25px;
  right: 10px;
  top: 10px;
}

@media (max-width: 767px) {
  .klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:first-child .ql-editor span {
    width: 100%;
  }
  .klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(3) {
    flex-wrap: wrap;
  }
  .klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(3) > div:first-child {
    margin-bottom: 20px;
    margin-right: 1px;
  }
  .klaviyo-form.needsclick.klaviyo-form > div .klaviyo-form-version-cid_1 .Ndwyt .kgtZaW:nth-child(3) > div:last-child {
    max-width: none;
  }

  .tooltip-content {
    background: white;
  }
  .tooltip-content .modal-content {
    border: 0;
    max-height: 80%;
    overflow-y: auto;
  }

  #modal-vdp {
    max-height: 100vh;
    max-width: 100vw;
    overflow: hidden;
  }
}
#modal-vdp .modal-content {
  max-height: 80%;
  overflow-y: scroll;
}

.product-foundation .block__image-with-overlay .image-with-text-overlay__buttons .button {
  min-width: 195px;
}

.logo_text {
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 1px;
  color: #414042;
  text-align: center;
  margin-top: 8px;
  text-transform: uppercase;
}

@media only screen and (max-width: 798px) {
  .product__thumbnail,
.gallery-cell.thumbnail {
    position: relative;
    padding-bottom: 70px !important;
  }
  .product__thumbnail .product-image__wrapper,
.gallery-cell.thumbnail .product-image__wrapper {
    position: static;
  }
  .product__thumbnail .product-image__wrapper .thumbnail-overlay__container,
.gallery-cell.thumbnail .product-image__wrapper .thumbnail-overlay__container {
    display: block;
    padding: 0;
    position: static;
  }
  .product__thumbnail .product-image__wrapper .quick-shop__buttons,
.gallery-cell.thumbnail .product-image__wrapper .quick-shop__buttons {
    display: block;
    position: absolute;
    bottom: 30px;
    text-align: center;
  }
  .product__thumbnail .product-image__wrapper .quick-shop__buttons .quick_shop.js-quick-shop-link, .product__thumbnail .product-image__wrapper .quick-shop__buttons .quick_shop.quick_shop,
.gallery-cell.thumbnail .product-image__wrapper .quick-shop__buttons .quick_shop.js-quick-shop-link,
.gallery-cell.thumbnail .product-image__wrapper .quick-shop__buttons .quick_shop.quick_shop {
    background: 0 !important;
    color: #67359f !important;
    font-size: 12px !important;
    letter-spacing: normal;
    text-decoration: underline;
    padding: 0;
    text-transform: capitalize;
    text-align: center;
  }
}
.select-container .shade-description {
  min-height: 44px;
  height: auto;
  margin-top: 15px;
  margin-bottom: 15px;
}

.pdp-swatch-selectors {
  position: relative;
  visibility: hidden;
  min-height: 48px;
  height: auto;
  margin-bottom: 23px;
}
.pdp-swatch-selectors .selector-wrapper {
  display: none !important;
}

[data-navlink-handle=gifting].navbar-item .header__link {
  color: #9F675C;
}

.country-wrapper.recharge-app {
  width: calc(100% - 40px);
  max-width: 284px;
}
@media only screen and (max-width: 480px) {
  .country-wrapper.recharge-app {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1025px) {
  .country-wrapper.recharge-app {
    width: 100%;
    max-width: 324px;
  }
}

.swatch-dd-list .swatch-element,
.pdp-swatch-selectors .swatch-element {
  position: relative;
}
.swatch-dd-list .swatch-element .swatch__badge--new, .swatch-dd-list .swatch-element .swatch__badge--sale,
.pdp-swatch-selectors .swatch-element .swatch__badge--new,
.pdp-swatch-selectors .swatch-element .swatch__badge--sale {
  visibility: hidden;
}
.swatch-dd-list .swatch-element.color,
.pdp-swatch-selectors .swatch-element.color {
  border: 0;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  min-height: auto;
  min-width: auto;
  outline: none;
}
.swatch-dd-list .swatch-element.color label, .swatch-dd-list .swatch-element.color span,
.pdp-swatch-selectors .swatch-element.color label,
.pdp-swatch-selectors .swatch-element.color span {
  border: 0;
  display: inline-block;
  width: 23px;
  height: 23px;
  vertical-align: middle;
}
.swatch-dd-list .swatch-element.color .tooltip,
.pdp-swatch-selectors .swatch-element.color .tooltip {
  display: inline-block;
  font-size: 14px;
  line-height: 23px;
  color: #414042;
  vertical-align: middle;
}
.swatch-dd-list span,
.pdp-swatch-selectors span {
  display: inline-block;
  font-size: 14px;
  color: #414042;
  vertical-align: middle;
}

.selected-swatch-dd {
  border: 1px solid #E1DCD5;
  display: inline-block;
  border-radius: 0;
  position: relative;
  width: 100%;
  padding: 10px 10px;
  cursor: pointer;
}
@media only screen and (min-width: 481px) {
  .selected-swatch-dd {
    max-width: 324px;
  }
}
.selected-swatch-dd:after {
  position: absolute;
  right: 20px;
  color: #414042;
  transform: translateY(-50%);
}

.dropdownwithswatch {
  position: absolute;
  width: 100%;
  max-width: 324px;
  padding: 5px 0;
  display: none;
  background: #FFF;
  z-index: 10;
  max-height: 266px;
  overflow-y: auto;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  top: 44px;
}
.dropdownwithswatch li {
  cursor: pointer;
  padding: 5px 10px;
  width: 100%;
}
.dropdownwithswatch li:hover {
  background-color: #f5f5f5;
}
.dropdownwithswatch.open {
  display: block;
}

.quick-shop__popup .select-container {
  overflow: visible;
}
.quick-shop__popup .select-container .select:after {
  display: none !important;
}
.quick-shop__popup .select {
  float: none;
  max-width: 324px;
}
.quick-shop__popup .recharge-app .select-container .select:after {
  display: block !important;
}
.quick-shop__popup .selected-swatch-dd:after {
  right: 1.125em;
  color: #716e69;
}

@media only screen and (max-width: 480px) {
  .page-foundation-quiz .block__rich-text > section,
.page-lip-quiz .block__rich-text > section {
    min-width: 100%;
  }
}

afterpay-placement {
  margin-top: 0;
  margin-bottom: 0;
}

.dotted-line-center {
  padding-bottom: 20px;
  background-position: center;
  background-image: linear-gradient(90deg, #9c9a98 33%, rgba(255, 255, 255, 0) 0);
  background-size: 6px 2px;
  background-repeat: repeat-x;
}

#shopify-section-custom-1585644161387 .custom-block-logo {
  display: none;
}

#shopify-section-1591600004468 {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.product__block.block__yotpo {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

#admin-bar-iframe,
#preview-bar-iframe {
  opacity: 0.2;
  transition: all 0.2s ease-out !important;
  bottom: -20px !important;
}
#admin-bar-iframe:hover,
#preview-bar-iframe:hover {
  bottom: 0px !important;
  opacity: 1;
}
@media screen and (max-width: 767px), (hover: none), screen and (max-height: 600px) {
  #admin-bar-iframe,
#preview-bar-iframe {
    position: relative !important;
    overflow: hidden !important;
    opacity: 1 !important;
    bottom: 0px !important;
  }
}

.twenty-five-heritage-page-2019_timeline .hero-content {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
.twenty-five-heritage-page-2019_timeline .hero-content h4 {
  font-size: 30px;
  color: #ab8cc1;
}
.twenty-five-heritage-page-2019_timeline .hero-content p {
  color: #808992;
  line-height: 1.5;
  padding-left: 10px;
  padding-right: 10px;
}
.twenty-five-heritage-page-2019_timeline .hero-content p span {
  display: inline-block;
}
.twenty-five-heritage-page-2019_timeline .year-image-container {
  padding-bottom: 20px;
}
.twenty-five-heritage-page-2019_timeline .container {
  padding-left: 0;
  padding-right: 0;
}
.twenty-five-heritage-page-2019_timeline .container p > span.visible-xs-inline-block {
  font-size: 24px;
  color: #ab8cc1;
  text-align: center;
  padding-right: 8px;
  margin-top: 0;
}
.twenty-five-heritage-page-2019_timeline .container .year {
  position: relative;
}
.twenty-five-heritage-page-2019_timeline .container .year h2 {
  font-size: 24px;
  color: #ab8cc1;
  text-align: center;
  margin-top: 0;
}
.twenty-five-heritage-page-2019_timeline .container .timeline-line {
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  -ms-grid-column: 6;
  -ms-grid-column-span: 1;
  grid-area: 1/6/5/7;
  width: 1px;
  background-position: 50%;
  background-image: linear-gradient(180deg, #808992 25%, rgba(255, 255, 255, 0) 0);
  background-size: 4px 9px;
  background-repeat: repeat-y;
}
.twenty-five-heritage-page-2019_timeline .container .text-holder {
  color: #808992;
  font-size: 19px;
}
.twenty-five-heritage-page-2019_timeline .container.right-side {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5] 1px (1fr)[5];
  grid-template-columns: repeat(5, 1fr) 1px repeat(5, 1fr);
}
.twenty-five-heritage-page-2019_timeline .container.right-side .image-holder {
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: 1/1/5/6;
}
.twenty-five-heritage-page-2019_timeline .container.right-side .item-2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 7;
  -ms-grid-column-span: 1;
  grid-area: 1/7/2/8;
}
.twenty-five-heritage-page-2019_timeline .container.right-side .item-3 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 7;
  -ms-grid-column-span: 1;
  grid-area: 1/7/2/8;
}
.twenty-five-heritage-page-2019_timeline .container.right-side .item-5 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 8;
  -ms-grid-column-span: 4;
  grid-area: 1/8/2/12;
}
.twenty-five-heritage-page-2019_timeline .container.right-side .item-6 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 7;
  -ms-grid-column-span: 1;
  grid-area: 2/7/3/8;
}
.twenty-five-heritage-page-2019_timeline .container.right-side .item-7 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 7;
  -ms-grid-column-span: 1;
  grid-area: 3/7/4/8;
}
.twenty-five-heritage-page-2019_timeline .container.right-side .item-8 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-column: 7;
  -ms-grid-column-span: 1;
  grid-area: 4/7/5/8;
}
.twenty-five-heritage-page-2019_timeline .container.right-side .item-9 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 8;
  -ms-grid-column-span: 4;
  grid-area: 2/8/3/12;
}
.twenty-five-heritage-page-2019_timeline .container.right-side .item-10 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 8;
  -ms-grid-column-span: 4;
  grid-area: 3/8/4/12;
}
.twenty-five-heritage-page-2019_timeline .container.right-side .item-11 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-column: 8;
  -ms-grid-column-span: 4;
  grid-area: 4/8/5/12;
}
.twenty-five-heritage-page-2019_timeline .container.right-side .year {
  position: relative;
}
.twenty-five-heritage-page-2019_timeline .container.right-side .year h2:before {
  content: "";
  position: absolute;
  left: -13px;
  width: 24px;
  top: 12px;
  border-bottom: 1px solid #808992;
}
.twenty-five-heritage-page-2019_timeline .container.right-side.three-rows {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (1fr)[3];
  grid-template-rows: repeat(3, 1fr);
}
.twenty-five-heritage-page-2019_timeline .container.left-side {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5] 1px (1fr)[5];
  grid-template-columns: repeat(5, 1fr) 1px repeat(5, 1fr);
}
.twenty-five-heritage-page-2019_timeline .container.left-side p {
  text-align: right;
}
.twenty-five-heritage-page-2019_timeline .container.left-side h2:before {
  content: none;
}
.twenty-five-heritage-page-2019_timeline .container.left-side h2:after {
  content: "";
  position: absolute;
  right: -13px;
  width: 24px;
  top: 12px;
  border-bottom: 1px solid #808992;
}
.twenty-five-heritage-page-2019_timeline .container.left-side .image-holder {
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  -ms-grid-column: 7;
  -ms-grid-column-span: 5;
  grid-area: 1/7/5/12;
}
.twenty-five-heritage-page-2019_timeline .container.left-side .item-3 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
  grid-area: 1/5/2/6;
}
.twenty-five-heritage-page-2019_timeline .container.left-side .item-5 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: 1/1/2/5;
}
.twenty-five-heritage-page-2019_timeline .container.left-side .item-6 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
  grid-area: 2/5/3/6;
}
.twenty-five-heritage-page-2019_timeline .container.left-side .item-7 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
  grid-area: 3/5/4/6;
}
.twenty-five-heritage-page-2019_timeline .container.left-side .item-8 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
  grid-area: 4/5/5/6;
}
.twenty-five-heritage-page-2019_timeline .container.left-side .item-9 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: 2/1/3/5;
}
.twenty-five-heritage-page-2019_timeline .container.left-side .item-10 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: 3/1/4/5;
}
.twenty-five-heritage-page-2019_timeline .container.left-side .item-11 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: 4/1/5/5;
}
.twenty-five-heritage-page-2019_timeline .container.left-side.one-row {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.twenty-five-heritage-page-2019_timeline .container.left-side.one-row .image-holder {
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  -ms-grid-column: 7;
  -ms-grid-column-span: 3;
  grid-area: 1/7/5/10;
}
.twenty-five-heritage-page-2019_timeline .container.left-side.one-row .item-1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: 1/1/4/5;
}
.twenty-five-heritage-page-2019_timeline .container.left-side.one-row .item-2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  grid-area: 1/5/4/5;
}
.twenty-five-heritage-page-2019_timeline .container.left-side.one-row:after {
  content: "";
  display: inline-block;
  border-right: 4px solid #ab8cc1;
  border-bottom: 4px solid #ab8cc1;
  width: 10px;
  height: 10px;
  position: absolute;
  left: calc((100% - 4px)/2);
  transform: rotate(45deg) translateX(-50%);
  bottom: -25px;
}
.twenty-five-heritage-page-2019_timeline .container.left-side.one-row:before {
  content: "";
  display: inline-block;
  border-right: 4px solid #ab8cc1;
  border-bottom: 4px solid #ab8cc1;
  width: 10px;
  height: 10px;
  position: absolute;
  left: calc((100% - 4px)/2);
  transform: rotate(45deg) translateX(-50%);
  bottom: -15px;
}
.twenty-five-heritage-page-2019_timeline .container.left-side.three-rows {
  -ms-grid-rows: (1fr)[3];
  grid-template-rows: repeat(3, 1fr);
}
.twenty-five-heritage-page-2019_timeline .container.left-side.five-rows {
  -ms-grid-rows: (1fr)[6];
  grid-template-rows: repeat(6, 1fr);
}
.twenty-five-heritage-page-2019_timeline .container.left-side.five-rows .timeline-line {
  -ms-grid-row: 1;
  -ms-grid-row-span: 6;
  -ms-grid-column: 6;
  -ms-grid-column-span: 1;
  grid-area: 1/6/7/7;
}
.twenty-five-heritage-page-2019_timeline .container.left-side.five-rows .image-holder {
  -ms-grid-row: 1;
  -ms-grid-row-span: 6;
  -ms-grid-column: 7;
  -ms-grid-column-span: 5;
  grid-area: 1/7/7/12;
}
.twenty-five-heritage-page-2019_timeline .container.left-side.five-rows .item-12 {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: 5/1/5/5;
}
.twenty-five-heritage-page-2019_timeline .container.left-side.five-rows .item-13 {
  -ms-grid-row: 6;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: 6/1/6/5;
}
.twenty-five-heritage-page-2019_timeline .container.left-side.five-rows .item-14 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
  grid-area: 4/5/5/6;
}
.twenty-five-heritage-page-2019_timeline .container.left-side.five-rows .item-15 {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
  grid-area: 5/5/5/6;
}
.twenty-five-heritage-page-2019_timeline .container.left-side.five-rows .item-16 {
  -ms-grid-row: 6;
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-area: 6/5/6/7;
}
.twenty-five-heritage-page-2019_timeline .center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.twenty-five-heritage-page-2019_timeline .visible-xs,
.twenty-five-heritage-page-2019_timeline .visible-xs-inline-block {
  display: none;
}
.twenty-five-heritage-page-2019_timeline .around-justified {
  justify-content: space-around;
}
.twenty-five-heritage-page-2019_timeline .mb-40 {
  margin-bottom: 40px;
}
.twenty-five-heritage-page-2019_timeline .mt-40 {
  margin-top: 40px;
}
.twenty-five-heritage-page-2019_timeline .pt-30 {
  padding-top: 30px;
}
.twenty-five-heritage-page-2019_timeline .mb-25 {
  margin-bottom: 25px;
}
.twenty-five-heritage-page-2019_timeline .peta-logo {
  width: 81px;
  height: 30px;
}
.twenty-five-heritage-page-2019_timeline .leaping-bunny-logo {
  width: 65px;
  height: 46px;
}
.twenty-five-heritage-page-2019_timeline .scf-seal-daily-logo {
  width: 42px;
  height: 61px;
}
.twenty-five-heritage-page-2019_timeline .ecocert-logo {
  width: 69px;
  height: 46px;
}
.twenty-five-heritage-page-2019_timeline .paraben-free-logo {
  width: 70px;
  height: 63px;
}
.twenty-five-heritage-page-2019_timeline .non-comedogenic-logo {
  width: 98px;
  height: 64px;
}
.twenty-five-heritage-page-2019_timeline .talc-free-logo {
  width: 53px;
  height: 64px;
}
.twenty-five-heritage-page-2019_timeline .phthalate-free-logo {
  width: 79px;
  height: 63px;
}
.twenty-five-heritage-page-2019_timeline .item svg {
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .twenty-five-heritage-page-2019_timeline .hero-content p {
    padding-left: 0;
    padding-right: 0;
  }
  .twenty-five-heritage-page-2019_timeline .hero-content p span {
    display: inline;
  }
  .twenty-five-heritage-page-2019_timeline .container .text-holder .no-wrap {
    white-space: normal;
  }
  .twenty-five-heritage-page-2019_timeline .logos .item {
    width: 33.33333%;
    margin-bottom: 15px;
  }

  .image-with-text-1 .home-content {
    width: calc(100% - 40px);
  }
}
@media (max-width: 767px) {
  .twenty-five-heritage-page-2019_timeline .year-image-container {
    padding-bottom: 0;
  }
  .twenty-five-heritage-page-2019_timeline .container .year {
    padding-left: 20px;
    padding-right: 20px;
  }
  .twenty-five-heritage-page-2019_timeline .container .text-holder {
    position: relative;
    padding: 1em;
  }
  .twenty-five-heritage-page-2019_timeline .container .text-holder:before {
    content: "";
    position: absolute;
    top: 1em;
    left: -12px;
    width: 24px;
    height: 24px;
    background: #ab8cc1;
    border-radius: 50%;
    border-bottom: 0;
  }
  .twenty-five-heritage-page-2019_timeline .container.right-side {
    -ms-grid-columns: 10px 1fr;
    grid-template-columns: 10px 1fr;
  }
  .twenty-five-heritage-page-2019_timeline .container.right-side .image-holder {
    display: none;
  }
  .twenty-five-heritage-page-2019_timeline .container.right-side .item-2 {
    margin-left: 10px;
  }
  .twenty-five-heritage-page-2019_timeline .container.right-side .year h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: -13px;
    width: 24px;
    height: 24px;
    background: #ab8cc1;
    border-radius: 50%;
    border-bottom: 0;
  }
  .twenty-five-heritage-page-2019_timeline .visible-xs,
.twenty-five-heritage-page-2019_timeline .visible-xs-inline-block {
    display: inline-block;
  }
  .twenty-five-heritage-page-2019_timeline .container.right-side.three-rows {
    -ms-grid-columns: 10px 1fr;
    grid-template-columns: 10px 1fr;
    -ms-grid-rows: (1fr)[3];
    grid-template-rows: repeat(3, 1fr);
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.one-row {
    -ms-grid-columns: 10px 1fr 1fr 1fr 1fr;
    grid-template-columns: 10px 1fr 1fr 1fr 1fr;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.one-row:after {
    left: 10px;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.one-row:before {
    left: 10px;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.one-row .timeline-line {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 2;
    -ms-grid-column-span: 5;
    grid-area: 1/2/5/7;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.one-row .item-1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 4;
    grid-area: 1/2/4/6;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.three-rows {
    -ms-grid-columns: 10px 1fr 1fr 1fr 1fr;
    grid-template-columns: 10px 1fr 1fr 1fr 1fr;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.three-rows .timeline-line {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    -ms-grid-column: 2;
    -ms-grid-column-span: 5;
    grid-area: 1/2/5/7;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.three-rows .item-3 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: -1;
    grid-area: 1/3/2/2;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.three-rows .item-5 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 4;
    grid-area: 1/2/2/6;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.three-rows .item-6 {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    grid-area: 2/2/2/2;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.three-rows .item-7 {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
    grid-area: 3/2/3/2;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.three-rows .item-9 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 4;
    grid-area: 2/2/3/6;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.three-rows .item-10 {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 4;
    grid-area: 3/2/3/6;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.five-rows {
    -ms-grid-columns: 10px 1fr 1fr 1fr 1fr;
    grid-template-columns: 10px 1fr 1fr 1fr 1fr;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.five-rows .timeline-line {
    -ms-grid-row: 1;
    -ms-grid-row-span: 6;
    -ms-grid-column: 2;
    -ms-grid-column-span: 5;
    grid-area: 1/2/7/7;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.five-rows .item-5 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 4;
    grid-area: 1/2/2/6;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.five-rows .item-9 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 4;
    grid-area: 2/2/3/6;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.five-rows .item-10 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 4;
    grid-area: 3/2/4/6;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.five-rows .item-11 {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 4;
    grid-area: 4/2/5/6;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.five-rows .item-12 {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
    -ms-grid-column-span: 4;
    grid-area: 5/2/5/6;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side.five-rows .item-13 {
    -ms-grid-row: 6;
    -ms-grid-column: 2;
    -ms-grid-column-span: 4;
    grid-area: 6/2/6/6;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side p {
    text-align: left;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: -13px;
    width: 24px;
    height: 24px;
    background: #ab8cc1;
    border-radius: 50%;
    border-bottom: 0;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side h2:after {
    visibility: hidden;
  }
  .twenty-five-heritage-page-2019_timeline .container.left-side .image-holder {
    display: none;
  }
  .twenty-five-heritage-page-2019_timeline .visible-xs {
    display: block !important;
  }
  .twenty-five-heritage-page-2019_timeline .hidden-xs {
    display: none !important;
  }
}
.page-video-tutorial .beauty-tips {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 2px;
  margin-left: 10px;
  margin-bottom: 32px;
}
.page-video-tutorial .heading-wrapper {
  margin-bottom: 32px !important;
}
.page-video-tutorial .page__title {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 3.5px;
  color: #433E3A;
  text-transform: uppercase;
}
.page-video-tutorial .page__container {
  justify-content: space-between;
}
.page-video-tutorial .page__container > .column {
  margin-bottom: 50px;
}
.page-video-tutorial .page__container > .column > .container {
  flex-wrap: nowrap;
}
.page-video-tutorial .image-content-wrapper {
  width: 100%;
  max-width: 196px;
  margin: 0 24px 0 0;
}
.page-video-tutorial .video-content {
  width: 100%;
  margin: 0;
}
@media only screen and (min-width: 799px) {
  .page-video-tutorial .video-content {
    max-width: 340px;
  }
}
.page-video-tutorial .video-content .time {
  font-size: 12px;
  line-height: 23px;
  letter-spacing: 2px;
  color: #673595;
}
.page-video-tutorial .video-content a {
  display: inline-block;
  margin: 8px 0 16px;
}
.page-video-tutorial .video-content a h3 {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 3px;
  color: #433E3A;
}
.page-video-tutorial .video-content p:not(.time) {
  font-size: 15px;
  line-height: 23px;
  color: #414042;
}

@media (max-width: 767px) {
  .page-video-tutorial .beauty-tips {
    margin-bottom: 12px;
  }
  .page-video-tutorial .page__container > .column {
    margin-bottom: 20px;
  }
  .page-video-tutorial .image-content-wrapper {
    width: 140px;
    margin: 0 15px 0 0;
  }
  .page-video-tutorial .video-content {
    width: calc(100% - 155px);
  }
  .page-video-tutorial .video-content a {
    margin: 8px 0 5px;
  }
  .page-video-tutorial .video-content p:not(.time) {
    font-size: 12px;
  }
}
.get-the-look .col-section:first-child {
  width: 100% !important;
  max-width: unset !important;
}
.get-the-look .col-section:first-child .grid-col {
  align-items: center;
  margin-bottom: 40px;
}
.get-the-look .col-section:first-child .image-thumb-wrapper {
  order: 2;
  width: 50%;
  max-width: none;
}
.get-the-look .col-section:first-child .image-caption {
  width: 50%;
}
.get-the-look .col-section:first-child h3 {
  margin-top: 0;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  color: #414042;
}
.get-the-look .grid-col {
  margin-bottom: 150px;
}
.get-the-look .image-thumb-wrapper {
  width: 100%;
}
.get-the-look .image-caption h3 {
  font-size: 22px;
  color: #433E3A;
  line-height: 26px;
  letter-spacing: 4px;
  margin-top: 24px;
}
.get-the-look .beauty-tips {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 2px;
  margin-left: 10px;
  margin-bottom: 32px;
  color: #414042;
}
.get-the-look .page__title {
  line-height: 26px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}
.get-the-look .block_content {
  max-width: 980px;
}
.get-the-look .block_content > .column {
  margin: 0 30px 0 0;
  max-width: 300px;
  width: 33.33333%;
}
@media only screen and (max-width: 1024px) {
  .get-the-look .block_content > .column {
    width: calc(33.33333% - 10px);
    margin: 0 10px 0 0;
  }
}
.get-the-look .block_content > .column:nth-child(3n+4) {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .get-the-look .grid-col {
    margin-bottom: 100px;
  }
  .get-the-look .image-caption h3 {
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
  }
  .get-the-look .block_content > .column {
    width: 50%;
    margin: 0;
  }
  .get-the-look .block_content > .column:nth-child(2n+3) {
    padding-left: 5px;
  }
  .get-the-look .block_content > .column:nth-child(even) {
    padding-right: 5px;
  }
  .get-the-look .block_content > .column:nth-child(3n+4) {
    margin: 0;
  }
  .get-the-look .col-section:first-child .grid-col {
    position: relative;
  }
  .get-the-look .col-section:first-child .image-thumb-wrapper {
    width: 100%;
  }
  .get-the-look .col-section:first-child .image-caption {
    width: 100%;
    position: absolute;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    height: 98px;
    padding: 10px 30px 0;
  }
  .get-the-look .col-section:first-child .image-caption h3 {
    font-size: 20px;
    line-height: 24px;
  }
}
.get-the-look-detail .shop-the-look-popup {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
}
.get-the-look-detail .shop-the-look-popup .shop-the-look-modal {
  z-index: 1050;
  width: 750px;
  height: 80%;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  background: #fff;
}
.get-the-look-detail .shop-the-look-popup .product-wrapper-container {
  width: 100%;
  overflow: auto;
}
.get-the-look-detail .shop-the-look-popup .add-scroll {
  max-height: calc(100% - 100px);
  overflow-y: auto;
}
.get-the-look-detail .shop-the-look-popup .checkbox-option {
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 1;
}
.get-the-look-detail .shop-the-look-popup .checkbox-option input[type=checkbox] {
  display: none;
}
.get-the-look-detail .shop-the-look-popup .checkbox-option input[type=checkbox] ~ label {
  cursor: pointer;
  margin: 0;
  font-size: 12px;
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
}
.get-the-look-detail .shop-the-look-popup .checkbox-option input[type=checkbox] ~ label:before {
  width: 35px;
  height: 35px;
  background-color: #fff;
  border: 1px solid #E2DAD0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.get-the-look-detail .shop-the-look-popup .checkbox-option input[type=checkbox]:checked ~ label:before {
  background: #fff url(https://cdn.shopify.com/s/files/1/0338/3882/5612/files/green-tick.png?v=1589453156) no-repeat 50%/50%;
}
.get-the-look-detail .shop-the-look-popup .prod-thumb-wrapper {
  max-height: calc(100% - 125px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 10px;
  flex-direction: row;
  flex-wrap: wrap;
  display: flex;
}
.get-the-look-detail .shop-the-look-popup .top-content p {
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 3.5px;
  color: #433E3A;
  padding: 15px 0;
}
.get-the-look-detail .shop-the-look-popup .top-content .modal-shoplook-btn {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 25px;
  display: inline-block;
  width: 15px;
  height: 15px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  background: 0;
}
.get-the-look-detail .shop-the-look-popup .top-content .modal-shoplook-btn:before, .get-the-look-detail .shop-the-look-popup .top-content .modal-shoplook-btn:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #67359f;
  border-radius: 5px;
}
.get-the-look-detail .shop-the-look-popup .top-content .modal-shoplook-btn:before {
  transform: rotate(45deg);
}
.get-the-look-detail .shop-the-look-popup .top-content .modal-shoplook-btn:after {
  transform: rotate(-45deg);
}
.get-the-look-detail .shop-the-look-popup .btn-action-wrapper {
  position: absolute;
  width: 100%;
  right: 0;
  bottom: 0;
  padding: 10px;
  background: #FFF;
  border-top: 1px solid #E1DCD5;
  z-index: 1;
}
.get-the-look-detail .shop-the-look-popup .btn-action-wrapper button {
  height: 45px;
  background-color: #c97b64;
  font-size: 14px !important;
  line-height: 16px;
  letter-spacing: 2px;
  border-radius: 0;
  text-transform: uppercase;
  padding: 0;
  float: right;
  width: 275px;
}
.get-the-look-detail .shop-the-look-popup .btn-action-wrapper button:hover {
  background-color: #d79f8e;
}
.get-the-look-detail .shop-the-look-popup .btn-action-wrapper a {
  float: right;
  display: block;
  margin-top: 16px;
  margin-right: 15px;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 20px;
}
.get-the-look-detail .shop-the-look-popup .product__grid-item {
  max-width: 300px;
  width: 33.33333%;
  padding: 0 10px 76px;
  float: left;
  position: relative;
  margin: 0 0 25px;
}
.get-the-look-detail .shop-the-look-popup .product__grid-item .image__container {
  border: 1px solid #E2DAD0;
  margin-bottom: 15px;
  position: relative;
}
.get-the-look-detail .shop-the-look-popup .product__grid-item .info-wrapper {
  position: absolute;
  bottom: 0;
  width: calc(100% - 20px);
  left: 10px;
}
.get-the-look-detail .shop-the-look-popup .product__grid-item .prod_title {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2px;
  color: #414042;
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
}
.get-the-look-detail .shop-the-look-popup .product__grid-item .prod_price {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2px;
  text-align: center;
  color: #414042;
  margin-bottom: 16px;
}
.get-the-look-detail .shop-the-look-popup .product__grid-item .country-wrapper {
  max-width: unset;
}
.get-the-look-detail .shop-the-look-popup .product__grid-item .country-wrapper select {
  border-color: #E1DCD5;
  font-size: 15px;
  line-height: 23px;
  color: #414042;
  padding: 0 30px 0 13px;
}
.get-the-look-detail .open-modal {
  cursor: pointer;
}
.get-the-look-detail .breadcrumb__container {
  margin-bottom: 32px;
}
.get-the-look-detail .breadcrumb__container a {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 2px;
  margin-left: 10px;
}
.get-the-look-detail .page__title {
  line-height: 26px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}
.get-the-look-detail .page__content img {
  display: block;
  margin: 25px auto 55px;
}
.get-the-look-detail .tab-wrapper {
  max-width: 980px;
  border: 1px solid #E2DAD0;
}
.get-the-look-detail .tabs {
  display: block;
  width: 100%;
}
.get-the-look-detail .tab-nav {
  display: block;
  border: 0;
}
.get-the-look-detail .tab-nav li {
  width: 25%;
  float: left;
  margin: 0;
  background-color: #F9F8F6;
  border-bottom: 1px solid #E2DAD0;
  border-right: 1px solid #E2DAD0;
}
.get-the-look-detail .tab-nav li.is-active {
  background-color: #414042;
}
.get-the-look-detail .tab-nav li.is-active a {
  color: #FFF;
}
.get-the-look-detail .tab-nav li a {
  border: 0;
  padding: 12px 15px 11px;
  color: #414042;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.get-the-look-detail .tab-content {
  padding: 32px;
}
.get-the-look-detail .tab-content input[type=checkbox] {
  display: none;
}
.get-the-look-detail .tab-content .tab-ins {
  background: #FCF2F2;
  position: relative;
  margin-bottom: 31px;
  clear: both;
}
.get-the-look-detail .tab-content .tab-ins p {
  background: #E37F75;
  font-size: 30px;
  line-height: 40px;
  color: #FFFFFF;
  letter-spacing: 5px;
  width: 48px;
  height: 100%;
  position: absolute;
}
.get-the-look-detail .tab-content .tab-ins p span {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  left: 14px;
}
.get-the-look-detail .tab-content .tab-ins h2 {
  font-size: 15px;
  line-height: 23px;
  color: #414042;
  padding: 16px 64px 16px 24px;
  display: block;
  width: calc(100% - 48px);
  margin-left: 48px;
}
.get-the-look-detail .tab-content .product-wrapper-container {
  width: 100%;
  overflow: auto;
  flex-wrap: wrap;
  display: flex;
}
.get-the-look-detail .tab-content .product__grid-item {
  max-width: 300px;
  width: 33.33333%;
  padding: 0 25px 76px;
  float: left;
  position: relative;
  margin: 0 0 25px;
}
.get-the-look-detail .tab-content .product__grid-item:first-child, .get-the-look-detail .tab-content .product__grid-item:nth-child(3n+4) {
  clear: both;
}
.get-the-look-detail .tab-content .product__grid-item:first-child .image__container::before, .get-the-look-detail .tab-content .product__grid-item:first-child .image__container::after, .get-the-look-detail .tab-content .product__grid-item:nth-child(3n+4) .image__container::before, .get-the-look-detail .tab-content .product__grid-item:nth-child(3n+4) .image__container::after {
  display: none;
}
.get-the-look-detail .tab-content .product__grid-item .image__container {
  border: 1px solid #E2DAD0;
  margin-bottom: 15px;
  position: relative;
}
.get-the-look-detail .tab-content .product__grid-item .image__container:before, .get-the-look-detail .tab-content .product__grid-item .image__container:after {
  content: "";
  width: 2px;
  height: 21px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
  background: #414042;
  font-weight: bold;
}
.get-the-look-detail .tab-content .product__grid-item .image__container:after {
  transform: translateY(-50%) rotate(90deg);
}
.get-the-look-detail .tab-content .product__grid-item .info-wrapper {
  position: absolute;
  bottom: 0;
  width: calc(100% - 20px);
  left: 10px;
}
.get-the-look-detail .tab-content .product__grid-item .prod_title {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2px;
  color: #414042;
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
}
.get-the-look-detail .tab-content .product__grid-item .prod_price {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2px;
  text-align: center;
  color: #414042;
  margin-bottom: 16px;
}
.get-the-look-detail .tab-content .product__grid-item .country-wrapper {
  max-width: unset;
}
.get-the-look-detail .tab-content .product__grid-item .country-wrapper select {
  border-color: #E1DCD5;
  font-size: 15px;
  line-height: 23px;
  color: #414042;
  padding: 0 30px 0 13px;
}

.explore-title {
  margin: 110px 0 40px;
}
.explore-title h1 {
  letter-spacing: 3.5px;
  line-height: 26px;
  text-align: center;
}

.explore-look-slider .slick-list {
  margin-left: -20px;
}
.explore-look-slider .slick-slide {
  margin-left: 20px;
}
.explore-look-slider .caption-text {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 3px;
  color: #433E3A;
  margin-top: 16px;
  text-transform: uppercase;
}
.explore-look-slider .slick-arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 0;
  background: 0;
  border: 0;
}
.explore-look-slider .slick-arrow:before {
  content: "";
  background: url(https://cdn.shopify.com/s/files/1/0338/3882/5612/files/left-arrow.png?v=1589805800) no-repeat 50%/50%;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}
.explore-look-slider .slick-prev {
  left: -57px;
}
.explore-look-slider .slick-next {
  right: -57px;
}
.explore-look-slider .slick-next:before {
  transform: rotate(180deg);
}
@media only screen and (max-width: 1400px) {
  .explore-look-slider.slick-slider {
    padding-left: 20px;
    padding-right: 20px;
  }
  .explore-look-slider .slick-prev {
    left: -20px;
  }
  .explore-look-slider .slick-next {
    right: -20px;
  }
}
@media only screen and (max-width: 480px) {
  .explore-look-slider .slick-list {
    margin-left: 0px;
  }
  .explore-look-slider .slick-slide {
    margin-left: 0px;
    padding: 0 10px;
  }
  .explore-look-slider .slick-prev {
    left: -10px;
  }
  .explore-look-slider .slick-next {
    right: -10px;
  }
}

@media only screen and (max-width: 767px) {
  .get-the-look-detail .tab-content {
    padding: 10px;
  }
  .get-the-look-detail .tab-content .tab-ins h2 {
    padding: 10px;
    font-size: 13px;
    letter-spacing: normal;
  }
  .get-the-look-detail .tab-content .product__grid-item {
    width: 100%;
    padding: 0;
    max-width: unset;
    display: flex;
    align-items: center;
  }
  .get-the-look-detail .tab-content .product__grid-item .product-image__wrapper {
    min-width: 150px;
    max-width: 150px;
  }
  .get-the-look-detail .tab-content .product__grid-item .info-wrapper {
    padding-left: 10px;
    position: static;
    width: 100%;
  }
  .get-the-look-detail .tab-content .product__grid-item .country-wrapper:after {
    right: 10px;
  }
  .get-the-look-detail .tab-content .product__grid-item .prod_title {
    height: auto;
    padding-left: 10px;
  }
  .get-the-look-detail .tab-content .product__grid-item .prod_title,
.get-the-look-detail .tab-content .product__grid-item .prod_price {
    text-align: left;
    margin-bottom: 10px;
  }
  .get-the-look-detail .tab-content .product__grid-item .image__container:before, .get-the-look-detail .tab-content .product__grid-item .image__container:after {
    top: -20px;
    left: 10px;
  }
  .get-the-look-detail .tab-content .product__grid-item:nth-child(3n+4) {
    clear: both;
  }
  .get-the-look-detail .tab-content .product__grid-item:nth-child(3n+4) .image__container::before, .get-the-look-detail .tab-content .product__grid-item:nth-child(3n+4) .image__container::after {
    display: block;
  }

  .get-the-look-detail .shop-the-look-popup .country-wrapper:after {
    right: 10px;
  }
  .get-the-look-detail .shop-the-look-popup .top-content p {
    font-size: 16px;
  }
  .get-the-look-detail .shop-the-look-popup .shop-the-look-modal {
    width: 100%;
    height: 100%;
  }
  .get-the-look-detail .shop-the-look-popup .product__grid-item {
    width: 50%;
  }
  .get-the-look-detail .shop-the-look-popup .checkbox-option {
    left: 10px;
  }
  .get-the-look-detail .shop-the-look-popup .btn-action-wrapper button {
    width: 70%;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 480px) {
  .get-the-look-detail .shop-the-look-popup .btn-action-wrapper button {
    font-size: 12px !important;
  }
}
@media only screen and (max-width: 767px) {
  .get-the-look-detail .shop-the-look-popup .btn-action-wrapper > div {
    width: 30%;
    float: left;
    text-align: right;
  }
}
@media only screen and (max-width: 767px) {
  .get-the-look-detail .shop-the-look-popup .btn-action-wrapper a {
    font-size: 12px;
    float: none;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 480px) {
  .get-the-look-detail .shop-the-look-popup .btn-action-wrapper a {
    margin-right: 5px;
    white-space: nowrap;
  }
}
#template-cms-page * {
  font-family: sofia-pro, sans-serif !important;
}
#template-cms-page > .section__wrapper {
  max-width: 100%;
  width: 100%;
}
#template-cms-page main {
  min-height: unset;
}
#template-cms-page .heading-wrapper--page {
  display: none;
}
#template-cms-page .block__image-with-overlay .mobile-text--over-media .section {
  width: 100%;
}
#template-cms-page .block__image-with-overlay .mobile-text--over-media .caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media only screen and (max-width: 798px) {
  #template-cms-page .block__image-with-overlay .mobile-text--over-media .caption {
    width: 100%;
    top: unset;
    bottom: 0;
    transform: translateY(0%);
    padding: 0;
  }
}
@media only screen and (max-width: 798px) {
  #template-cms-page .block__image-with-overlay .mobile-text--over-media .caption .caption-content {
    width: 100%;
  }
}
#template-cms-page .block__image-with-overlay .image-with-text-overlay__banner img {
  object-fit: cover;
}
@media only screen and (max-width: 480px) {
  #template-cms-page .card-content {
    padding-left: 0;
    padding-right: 0;
  }
}
#template-cms-page .block__rich-text h2 ~ div {
  margin-top: 32px;
}
#template-cms-page .block__rich-text h2.mobile-shrink-text span {
  font-size: 100%;
}
#template-cms-page .block__rich-text .card-content {
  padding: 0px;
}
#template-cms-page .block__rich-text-quote h2 {
  line-height: 1.2;
  letter-spacing: 3.33px;
  color: #414042;
}
#template-cms-page .block__rich-text-quote .rich-text__text {
  line-height: 1.4;
}
#template-cms-page .block__rich-text-quote .buttons > .padding-left {
  padding-left: 5px;
  color: #414042;
}
#template-cms-page .block__rich-text-quote .buttons > .padding-right {
  padding-right: 5px;
  color: #414042;
}
#template-cms-page .block__rich-text-quote .container {
  align-items: center;
}
#template-cms-page .block__rich-text-quote .quote,
#template-cms-page .block__rich-text-quote .author {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 3.33px;
  display: block;
}
#template-cms-page .block__image-with-border-text-2 .container,
#template-cms-page .block__logo-rich-text-image .container {
  justify-content: space-between;
}
@media only screen and (min-width: 799px) {
  #template-cms-page .block__image-with-border-text-2 .image-with-text__column,
#template-cms-page .block__logo-rich-text-image .image-with-text__column {
    max-width: 573px;
  }
}
#template-cms-page .block__image-with-border-text-2 img,
#template-cms-page .block__logo-rich-text-image img {
  height: auto !important;
  width: auto;
  padding: 50px 0;
}
#template-cms-page .block__image-with-border-text-2 .rich-text__text,
#template-cms-page .block__logo-rich-text-image .rich-text__text {
  font-size: 16px;
  line-height: 20px;
  color: #414042;
  padding: 0 25px;
}
@media only screen and (max-width: 480px) {
  #template-cms-page .block__image-with-border-text-2 .rich-text__text,
#template-cms-page .block__logo-rich-text-image .rich-text__text {
    padding: 0;
  }
}
#template-cms-page .block__image-with-border-text-2 .card-content,
#template-cms-page .block__logo-rich-text-image .card-content {
  padding-bottom: 50px;
}
@media only screen and (max-width: 798px) {
  #template-cms-page .block__image-with-border-text-2 .column {
    margin-bottom: 20px;
  }
}
#template-cms-page .block__image-with-border-text-2 img {
  padding: 64px 0 25px;
}
#template-cms-page .block__image-with-border-text-2 .rich-text__heading {
  padding: 0 25px;
}
@media only screen and (max-width: 480px) {
  #template-cms-page .block__image-with-border-text-2 .rich-text__text,
#template-cms-page .block__image-with-border-text-2 .rich-text__heading {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 480px) {
  #template-cms-page .block__image-with-border-text-2 .section {
    padding: 0;
  }
}
#template-cms-page .block__logo-rich-text-image .section {
  max-width: 1200px;
  width: 95%;
}
#template-cms-page .block__logo-rich-text-image .section .rich-text__heading {
  padding: 0 25px;
}
@media only screen and (max-width: 480px) {
  #template-cms-page .block__logo-rich-text-image img {
    padding: 0;
  }
}
#template-cms-page .block__logo-rich-text-image .image-with-text__image-column:nth-child(2) img {
  width: 100%;
}
#template-cms-page .block__logo-rich-text-image .container,
#template-cms-page .block__image-quote .container {
  align-items: center;
}
@media only screen and (max-width: 480px) {
  #template-cms-page .block__image-quote .image-with-text__column {
    width: 100%;
    margin: 0;
  }
}
#template-cms-page .block__image-quote .quote {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 5px;
  color: #414042;
  margin-bottom: 24px;
  text-align: center;
}
#template-cms-page .block__image-quote .author {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 3.5px;
  color: #433E3A;
  text-align: center;
  display: block;
}
@media (max-width: 768px) {
  #template-cms-page .block__image-quote .quote {
    margin-bottom: 24px;
  }
}
#template-cms-page .block__rich-text-2-links > section.has-background {
  padding: 40px 10px 20px;
}
#template-cms-page .block__rich-text-2-links .rich-text__heading {
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 3.33px;
  color: #414042;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media only screen and (max-width: 480px) {
  #template-cms-page .block__rich-text-2-links .rich-text__heading + .columns .card-content {
    padding-top: 10px;
    padding-bottom: 0;
  }
}
#template-cms-page .block__rich-text-2-links .card-content {
  padding-left: 0;
}
#template-cms-page .block__rich-text-2-links .card-content p {
  color: #414042;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 40px;
  text-align: left;
}
@media only screen and (max-width: 480px) {
  #template-cms-page .block__rich-text-2-links .card-content p {
    margin-bottom: 0;
  }
}
#template-cms-page .block__rich-text-2-links li a {
  font-size: 16px;
  line-height: 20px;
  display: block;
  margin-bottom: 16px;
}
#template-cms-page .block__header-4-coloumn .rich-text__heading {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 3.33px;
  color: #414042;
  margin-bottom: 32px;
}
#template-cms-page .block__header-4-coloumn .one-fourth {
  text-align: center;
  border-right: 1px solid #979797;
}
#template-cms-page .block__header-4-coloumn .one-fourth:last-child {
  border: 0;
}
#template-cms-page .block__header-4-coloumn .one-fourth:last-child .author {
  border: 0;
  padding: 0;
}
@media only screen and (max-width: 798px) {
  #template-cms-page .block__header-4-coloumn .one-fourth {
    margin-bottom: 25px;
    border: 0;
  }
}
#template-cms-page .block__header-4-coloumn .quote {
  font-size: 40px;
  line-height: 30px;
  color: #414042;
  letter-spacing: 2px;
  max-width: 180px;
  margin: 0 auto 24px;
}
#template-cms-page .block__header-4-coloumn .author {
  font-size: 16px;
  line-height: 20px;
  color: #414042;
  max-width: 180px;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 798px) {
  #template-cms-page .block__header-4-coloumn .author {
    border-bottom: 1px solid #979797;
    padding-bottom: 20px;
  }
}
#template-cms-page .block__image-promo-block {
  margin-top: 30px;
}
#template-cms-page .block__image-promo-block .section {
  background-color: #f9f8f6;
}
#template-cms-page .block__image-promo-block .container {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  justify-content: space-between;
}
#template-cms-page .block__image-promo-block .image-with-text__image-column {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
#template-cms-page .block__image-promo-block .image-with-text__link {
  display: block;
  min-height: inherit;
  max-height: inherit;
}
#template-cms-page .block__image-promo-block .container .column {
  width: calc(66.66666666666667% - 15px);
  margin-left: 0;
  margin-right: 0;
}
#template-cms-page .block__image-promo-block .container .column.image-with-text__image-column {
  width: calc(33.333333333333336% - 15px);
  height: auto !important;
}
#template-cms-page .block__image-promo-block .cart-content {
  overflow-wrap: break-word;
  min-width: 0;
}
#template-cms-page .block__image-promo-block .offer_title {
  font-size: 18px;
  color: #433E3A;
  padding-bottom: 1.25rem;
}
#template-cms-page .block__image-promo-block .offer_wrapper {
  margin-top: 40px;
  margin-bottom: 20px;
}
#template-cms-page .block__image-promo-block .offer_code {
  font-size: 15px;
  color: #414042;
}
#template-cms-page .block__image-promo-block .offer_details {
  margin-top: 40px;
}
#template-cms-page .block__image-promo-block .offer_details p:first-child {
  font-weight: 700;
  padding-bottom: 0.2rem;
}
#template-cms-page .block__image-promo-block .offer_details p:last-child {
  line-height: 1.8;
  padding-bottom: 1rem;
}
#template-cms-page .block__image-promo-block .offer_details p {
  font-size: 12px;
  font-weight: 400;
  max-width: 750px;
}
#template-cms-page .block__image-promo-block .button {
  padding-top: 10px;
  padding-left: 20px;
  padding-bottom: 10px;
  padding-right: 20px;
  border-radius: 2px;
  background-color: #c97b64;
  text-align: left;
  cursor: pointer;
  background-image: none;
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
  letter-spacing: initial;
  line-height: initial;
}
#template-cms-page .block__image-promo-block .rich-text__content.card-content {
  padding: 0;
}
#template-cms-page .block__image-promo-block .button--link-style {
  letter-spacing: normal;
  font-size: 16px;
  line-height: 20px;
  height: auto;
  width: auto;
}
#template-cms-page .block__image-promo-block .button--link-style:hover, #template-cms-page .block__image-promo-block .button--link-style:active {
  color: #673595;
  border-bottom-color: #673595;
}
@media only screen and (max-width: 480px) {
  #template-cms-page .block__image-promo-block .container {
    padding-bottom: 1.2rem;
  }
  #template-cms-page .block__image-promo-block .container .column {
    width: 100%;
    margin-left: 50px;
    margin-right: 50px;
  }
  #template-cms-page .block__image-promo-block .container .column.image-with-text__image-column {
    width: 100%;
  }
}
#template-cms-page .block__rich-text-grid .section {
  max-width: 1105px;
}
#template-cms-page .block__rich-text-grid .container {
  justify-content: space-between;
  margin-bottom: 25px;
}
#template-cms-page .block__rich-text-grid .one-third {
  text-align: center;
  max-width: 323px;
  border: 1px solid #414042;
  margin-bottom: 48px;
  padding: 30px 20px 60px;
  position: relative;
}
@media only screen and (max-width: 480px) {
  #template-cms-page .block__rich-text-grid .one-third {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  #template-cms-page .block__rich-text-grid .one-third:last-child {
    margin-bottom: 0;
  }
}
#template-cms-page .block__rich-text-grid .quote {
  max-width: 230px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1px;
  color: #414042;
  font-weight: bold;
}
#template-cms-page .block__rich-text-grid .author {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #414042;
  min-height: 40px;
}
#template-cms-page .block__rich-text-grid .author p {
  letter-spacing: normal;
}
#template-cms-page .block__rich-text-grid a {
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 480px) {
  #template-cms-page .block__rich-text-grid a {
    position: static;
    margin-top: 15px;
    display: block;
    transform: none;
  }
}
#template-cms-page .rich-text-custom.section {
  padding: 48px 1.5rem;
  border-top: 1px dashed #9c9a98;
  border-bottom: 1px dashed #9c9a98;
}
#template-cms-page .rich-text-custom p {
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 3.5px;
  color: #414042;
  font-weight: bold;
  width: 100%;
  padding-top: 8px;
}
#template-cms-page .rich-text-custom p:last-child {
  font-weight: normal;
}
#template-cms-page .rich-text-custom .line-1,
#template-cms-page .rich-text-custom .line-2 {
  color: #433E3A;
}
#template-cms-page .rich-text-custom strong {
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 8px;
  letter-spacing: 3px;
}
#template-cms-page .block__image-with-text .image-with-text__column > a {
  display: block;
  width: 100%;
}
#template-cms-page .block__image-with-text-2 .container {
  justify-content: space-between;
}
#template-cms-page .block__image-with-text-2 > .section {
  max-width: 1200px;
  width: 95%;
  padding: 0;
}
@media only screen and (min-width: 799px) {
  #template-cms-page .block__image-with-text-2 .image-with-text__column:first-child {
    margin-left: 0;
  }
  #template-cms-page .block__image-with-text-2 .image-with-text__column:last-child {
    margin-right: 0;
  }
}
#template-cms-page .block__image-with-text-2 .card-content h2 {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 3.33px;
  color: #414042;
}
#template-cms-page .block__image-with-text-2 .card-content p {
  font-size: 16px;
  line-height: 20px;
  color: #414042;
  margin-bottom: 16px;
}

.block__logo-list .logo-list .logo-list__item {
  margin-left: 0px;
  margin-right: 0px;
}
.block__logo-list .logo-list .logo-list__item:nth-child(-n+2) {
  padding-top: 0;
}

.block__image-with-overlay-2 .image-with-text-overlay__banner {
  position: relative;
}
.block__image-with-overlay-2 .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  max-width: 720px;
}
.block__image-with-overlay-2 .caption-content {
  margin: 48px auto;
  width: 100% !important;
  max-width: 430px;
  background: transparent !important;
}
.block__image-with-overlay-2 .caption-content .title {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 3.33px;
  color: #414042 !important;
  margin-bottom: 16px;
}
.block__image-with-overlay-2 .caption-content .subtitle {
  color: #414042;
  line-height: 20px;
  font-size: 16px;
  margin-top: 0 !important;
}

.block__supplements-list.shopify-section .section {
  width: 100%;
  max-width: 1089px;
  margin: 0 auto;
  padding: 0 15px;
}
@media only screen and (max-width: 1024px) {
  .block__supplements-list.shopify-section .section {
    padding: 0 20px;
  }
}

.supplements-custom-block .visible-sm,
.supplements-custom-block .visible-xs {
  display: none;
}
@media only screen and (max-width: 798px) {
  .supplements-custom-block .visible-sm,
.supplements-custom-block .visible-xs {
    display: block;
  }
}
.supplements-custom-block h2 {
  font-size: 20px;
  color: #433E3A;
  line-height: 26px;
  letter-spacing: 3.5px;
  text-align: center;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1024px) {
  .supplements-custom-block h2 {
    display: none;
  }
}
.supplements-custom-block .title-supplements {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 545px 1fr;
  grid-template-columns: 545px 1fr;
  margin-bottom: 32px;
  background: #f0ede9;
}
@media only screen and (max-width: 1024px) {
  .supplements-custom-block .title-supplements {
    display: none;
  }
}
.supplements-custom-block .title-supplements p {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  margin-top: 19px;
  margin-bottom: 19px;
  color: #414042;
  text-transform: uppercase;
}
.supplements-custom-block .title-supplements p.left {
  margin-left: 40px;
}
.supplements-custom-block .title-supplements p.right {
  margin-left: 65px;
}
.supplements-custom-block .grid-col-6 {
  margin-bottom: 20px;
}
.supplements-custom-block .grid-col-6:after {
  display: table;
  content: "";
  clear: both;
}
.supplements-custom-block .grid-col-6 .arrow {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  max-width: 469px;
  height: 182px;
  margin-right: 76px;
  position: relative;
  padding-left: 1em;
  padding-right: 2em;
}
@media only screen and (max-width: 1024px) {
  .supplements-custom-block .grid-col-6 .arrow {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }
}
.supplements-custom-block .grid-col-6 .arrow:after {
  content: "";
  position: absolute;
  border-bottom: 91px solid transparent;
  border-top: 91px solid transparent;
  height: 0;
  width: 0;
  margin-right: -91px;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 1024px) {
  .supplements-custom-block .grid-col-6 .arrow:after {
    display: none;
  }
}
.supplements-custom-block .grid-col-6 .arrow .pos-abs {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  min-width: 370px;
  left: 40px;
}
.supplements-custom-block .grid-col-6 .arrow .pos-abs span {
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.supplements-custom-block .grid-col-6 .arrow p {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 3.5px;
  color: #fff;
}
.supplements-custom-block .grid-col-6 .content-wrapper {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
  padding-left: 60px;
  max-width: 503px;
}
@media only screen and (max-width: 1024px) {
  .supplements-custom-block .grid-col-6 .content-wrapper {
    width: 100%;
    max-width: 100%;
    padding-left: 30px;
    margin-top: 20px;
  }
}
.supplements-custom-block .grid-col-6 .content-wrapper span {
  font-size: 22px;
  line-height: 30px;
  color: #414042;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.supplements-custom-block .grid-col-6 .text-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  padding-top: 16px;
}
.supplements-custom-block .grid-col-6 .text-container p {
  font-size: 18px;
  line-height: 26px;
  color: #414042;
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .supplements-custom-block .grid-col-6 .content-wrapper {
    width: 45%;
    float: right;
    padding-left: 30px;
  }
}
@media (max-width: 768px) {
  .block__supplements-list {
    margin-top: 20px;
  }

  .supplements-custom-block .grid-col-6 .arrow .pos-abs {
    left: 20px;
    min-width: unset;
  }
  .supplements-custom-block .grid-col-6 .arrow .pos-abs span {
    font-size: 18px;
    margin-bottom: 0;
  }
  .supplements-custom-block .grid-col-6 .arrow p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1px;
  }
  .supplements-custom-block .grid-col-6 .content-wrapper {
    padding-left: 0;
  }
  .supplements-custom-block .grid-col-6 .content-wrapper span {
    font-size: 17px;
    margin-bottom: 15px;
  }
  .supplements-custom-block .grid-col-6 .content-wrapper .text-container p {
    font-size: 16px;
    line-height: 26px;
  }

  #template-page-master .block__rich-text h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .block__image-with-overlay-2 .caption {
    top: auto;
    bottom: 0;
    transform: translate(0, 0);
    left: 0;
  }
  .block__image-with-overlay-2 .caption-content {
    margin: 20px auto;
  }
  .block__image-with-overlay-2 .title {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 3px;
  }
  .block__image-with-overlay-2 .subtitle {
    font-size: 15px;
  }
}
.beauty-rewards-landing_page .visible-xs {
  display: none;
}
.beauty-rewards-landing_page .section {
  max-width: 1060px;
}
.beauty-rewards-landing_page .section h2 {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 3.5px;
  color: #433E3A;
  text-align: center;
}
.beauty-rewards-landing_page .btn-register {
  display: inline-block;
  background: #c97b64;
  color: #ffffff;
  width: 245px;
  text-align: center;
  height: 45px;
  font-size: 14px;
  line-height: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.beauty-rewards-landing_page .btn-register:hover {
  background-color: #d79f8e;
}
.beauty-rewards-landing_page .beauty-rewards-banner {
  min-height: 450px;
  position: relative;
}
.beauty-rewards-landing_page .beauty-rewards-banner .full-bleed-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.beauty-rewards-landing_page .beauty-rewards-banner .full-bleed-section img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  vertical-align: middle;
}
.beauty-rewards-landing_page .beauty-rewards-banner .banner-content-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 805px;
}
.beauty-rewards-landing_page .beauty-rewards-banner .banner-content-wrapper .btn {
  margin: 16px 0;
}
.beauty-rewards-landing_page .beauty-rewards-banner .beauty-rewards-banner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  background: rgba(255, 255, 255, 0.85);
  padding: 24px 5px 40px;
}
.beauty-rewards-landing_page .beauty-rewards-banner .beauty-rewards-banner-container .beauty-rewards-banner-inner {
  max-width: 710px;
}
.beauty-rewards-landing_page .beauty-rewards-banner .beauty-rewards-banner-container .beauty-rewards-banner-inner img {
  width: 100%;
  display: block;
  margin: 0 auto;
  max-width: 413px;
}
.beauty-rewards-landing_page .beauty-rewards-banner .beauty-rewards-banner-container .beauty-rewards-banner-inner h1 {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 5px;
  margin-top: 37px;
  margin-bottom: 14px;
  color: #67359f;
  text-transform: uppercase;
  text-align: center;
}
.beauty-rewards-landing_page .beauty-rewards-banner .beauty-rewards-banner-container .beauty-rewards-banner-inner p {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #414042;
}
.beauty-rewards-landing_page .beauty-rewards-banner .beauty-rewards-banner-container .beauty-rewards-banner-inner a:hover {
  text-decoration: underline;
}
.beauty-rewards-landing_page .beauty-rewards-banner .beauty-rewards-banner-container .beauty-rewards-banner-inner div {
  width: 100%;
  text-align: center;
}
.beauty-rewards-landing_page .beauty-rewards-banner .beauty-rewards-banner-container .beauty-rewards-banner-inner div span {
  display: block;
  width: 100%;
  text-align: center;
  color: #414042;
  font-size: 16px;
  line-height: 20px;
}
.beauty-rewards-landing_page .reward-table {
  margin-top: 75px;
  margin-bottom: 32px;
}
.beauty-rewards-landing_page .beauty-rewards-outline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.beauty-rewards-landing_page .beauty-rewards-info {
  margin: 80px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.beauty-rewards-landing_page .beauty-rewards-info .btn {
  margin-bottom: 24px;
}
.beauty-rewards-landing_page .beauty-rewards-info > div a {
  font-size: 16px;
  line-height: 20px;
}
.beauty-rewards-landing_page .beauty-rewards-info > div a:first-child {
  padding-right: 32px;
}
.beauty-rewards-landing_page .beauty-rewards-outline .beauty-rewards-outline-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 215px;
  background-color: #e2dad0;
  outline: 1px solid #fff;
  outline-offset: -12px;
}
.beauty-rewards-landing_page .beauty-rewards-outline .beauty-rewards-outline-box div span {
  display: block;
}
.beauty-rewards-landing_page .beauty-rewards-outline .beauty-rewards-outline-box div span:nth-child(1) {
  font-size: 40px;
  line-height: 30px;
  letter-spacing: 2px;
  color: #414042;
}
.beauty-rewards-landing_page .beauty-rewards-outline .beauty-rewards-outline-box div span:nth-child(2) {
  display: block;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 2px;
  text-align: center;
  margin: 16px 0 24px;
  color: #414042;
  text-transform: uppercase;
}
.beauty-rewards-landing_page .beauty-rewards-outline .beauty-rewards-outline-box div span:nth-child(3) {
  display: block;
  width: 36px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
}
.beauty-rewards-landing_page .beauty-rewards-outline .beauty-rewards-outline-box div span:nth-child(4) {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  color: #414042;
  text-transform: uppercase;
}
.beauty-rewards-landing_page .reward-benefits {
  margin: 80px auto 32px;
}
.beauty-rewards-landing_page .rewards-benefit-table svg {
  width: 20px;
  height: 20px;
}
.beauty-rewards-landing_page section {
  display: block;
  overflow: auto;
  margin-top: 40px;
}
.beauty-rewards-landing_page section .beauty-rewards-list-items {
  width: calc(50% - 10px);
  margin-bottom: 20px;
  float: left;
}
.beauty-rewards-landing_page section .beauty-rewards-list-items.left-one, .beauty-rewards-landing_page section .beauty-rewards-list-items.left-two, .beauty-rewards-landing_page section .beauty-rewards-list-items.left-three, .beauty-rewards-landing_page section .beauty-rewards-list-items.left-four {
  margin-right: 10px;
}
.beauty-rewards-landing_page section .beauty-rewards-list-items.right-one, .beauty-rewards-landing_page section .beauty-rewards-list-items.right-two, .beauty-rewards-landing_page section .beauty-rewards-list-items.right-three, .beauty-rewards-landing_page section .beauty-rewards-list-items.right-four {
  margin-left: 10px;
}
.beauty-rewards-landing_page h4 {
  margin-top: 35px;
  margin-bottom: 0;
  font-size: 30px;
  color: #433e3a;
  text-align: center;
  text-transform: capitalize;
}
.beauty-rewards-landing_page .beauty-rewards-list-items {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background-color: #e2dad0;
  outline: 1px solid #fff;
  outline-offset: -5px;
}
.beauty-rewards-landing_page .beauty-rewards-list-items strong {
  font-weight: 700;
}
.beauty-rewards-landing_page .beauty-rewards-list-items span {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  color: #414042;
}
@media only screen and (max-width: 1024px) {
  .beauty-rewards-landing_page .beauty-rewards-list-items span {
    letter-spacing: normal;
  }
}
.beauty-rewards-landing_page .beauty-rewards-list-items .font-13 {
  font-size: 13px;
  text-transform: none;
}
.beauty-rewards-landing_page .beauty-rewards-list-items div {
  color: #414042;
  text-transform: uppercase;
}
.beauty-rewards-landing_page table {
  border-collapse: collapse;
  margin-top: 35px;
  padding: 0;
  table-layout: fixed;
}
.beauty-rewards-landing_page thead {
  background: #e2dad0;
}
.beauty-rewards-landing_page thead span {
  display: block;
}
.beauty-rewards-landing_page thead th:first-child:before {
  content: " ";
  display: block;
}
.beauty-rewards-landing_page table td {
  border-bottom: 1px solid #e2dad0;
}
.beauty-rewards-landing_page table tr {
  padding: 5px;
}
.beauty-rewards-landing_page table th {
  color: #414042;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  padding: 10px 0;
  text-align: center;
  font-weight: normal;
  text-transform: uppercase;
}
.beauty-rewards-landing_page table td {
  font-size: 14px;
  line-height: 24px;
  color: #414042;
  letter-spacing: normal;
  padding: 14px 0 8px;
  text-align: center;
}
.beauty-rewards-landing_page td:empty:after {
  content: " ";
}
.beauty-rewards-landing_page .mobile-beauty-rewards {
  border-radius: 3px;
  border: 1px solid #e2dad0;
  margin-top: 20px;
}
.beauty-rewards-landing_page .mobile-beauty-rewards div:first-child {
  padding: 10px;
  text-align: center;
}
.beauty-rewards-landing_page .mobile-beauty-rewards div.text-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  border-bottom: 1px solid #e2dad0;
  padding: 5px;
}
.beauty-rewards-landing_page .mobile-beauty-rewards div.text-center.border-none {
  border-bottom: 0;
}
.beauty-rewards-landing_page .ways-to-earn {
  margin: 80px auto 32px;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0.5;
  display: none;
}

.popup-modal-video {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
}
.popup-modal-video .video-player-modal {
  z-index: 1050;
  width: 80vw;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: 0 auto;
  transform: translateY(-50%);
}
.popup-modal-video .modal-video-btn {
  position: absolute;
  z-index: 2;
  top: -35px;
  right: -35px;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
  cursor: pointer;
}
.popup-modal-video .modal-video-btn:before, .popup-modal-video .modal-video-btn:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
}
.popup-modal-video .modal-video-btn:before {
  transform: rotate(45deg);
}
.popup-modal-video .modal-video-btn:after {
  transform: rotate(-45deg);
}
.popup-modal-video .video-wrapper {
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
  position: relative;
}
.popup-modal-video .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup-modal {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
}
.popup-modal .js-login-form + .radio {
  margin-top: 0;
}
.popup-modal .modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 700px;
  background: #fff;
  padding: 35px 40px;
  z-index: 1050;
}
.popup-modal .modal-title {
  font-size: 20px;
  line-height: 30px;
  flex: 1;
}
.popup-modal .radio {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 22px;
}
.popup-modal .radio label {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  color: #433e3a;
}
.popup-modal .radio input[type=radio] {
  position: absolute;
  left: -2000px;
  top: -2000px;
}
.popup-modal .radio input[type=radio] + label:before {
  display: block;
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border: 1px solid #777;
  background-color: #fff;
  border-radius: 50%;
  content: "";
}
.popup-modal .radio input[type=radio]:checked + label:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  background: #777;
  top: 3px;
  left: 2px;
  border-radius: 50%;
}
.popup-modal select {
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  min-height: 40px;
  padding: 9px 12px;
  border-color: #e2dad0;
  color: #777;
  width: 100%;
  background-color: #fff;
  font-size: 14px;
  border-radius: 0;
  margin-bottom: 15px;
}
.popup-modal .checkbox-option {
  clear: both;
  background-color: #f9f8f6;
  min-height: 50px;
  padding: 10px;
  position: relative;
}
.popup-modal .checkbox-option input[type=checkbox] {
  position: absolute;
  left: -2000px;
  top: -2000px;
}
.popup-modal .checkbox-option input[type=checkbox] ~ label:not(.error) {
  cursor: pointer;
  margin: 0;
  font-size: 12px;
  position: relative;
  margin-left: 40px;
  margin-top: 15px;
}
.popup-modal .checkbox-option input[type=checkbox] ~ label:not(.error):before {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 1px solid #e2dad0;
  content: "";
  margin-right: 10px;
  padding-top: 6px;
  float: none;
  position: absolute;
  top: -5px;
  left: -40px;
}
.popup-modal .checkbox-option input[type=checkbox]:checked ~ label:not(.error):before {
  background: #fff url(https://cdn.shopify.com/s/files/1/0338/3882/5612/files/checkbox-tick.png?v=1588515161) no-repeat 50%/75%;
}
.popup-modal .checkbox-option .error {
  position: absolute;
  bottom: -15px;
  display: block;
  background: #f9f8f6;
  width: 100%;
  left: 0;
  text-indent: 10px;
}
.popup-modal .login__form,
.popup-modal .register__form {
  width: 100%;
  margin-bottom: 10px;
}
.popup-modal .login__form:after,
.popup-modal .register__form:after {
  display: table;
  content: "";
  clear: both;
}
.popup-modal .login__form .field,
.popup-modal .register__form .field {
  width: 50%;
  float: left;
  padding: 0 15px 0 0;
}
.popup-modal .login__form .field.pull-right,
.popup-modal .register__form .field.pull-right {
  float: right;
}
.popup-modal .login__form .js-recover-password,
.popup-modal .register__form .js-recover-password {
  margin-top: 15px;
  display: inline-block;
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 14px;
  text-decoration: underline;
}
.popup-modal .login__form .button--primary,
.popup-modal .register__form .button--primary {
  width: 100%;
  height: 40px;
  padding: 10px 30px 9px;
  text-align: center;
  display: block;
}
.popup-modal .register__form .pull-right {
  margin-top: 20px;
}
.popup-modal #show_provider {
  width: 100%;
}
.popup-modal #show_provider a {
  width: 50%;
  display: inline-block;
  float: left;
  padding: 0 15px 0 0;
}
.popup-modal #show_provider a img {
  width: 100%;
}
.popup-modal .tandc {
  font-size: 12px;
  padding: 10px 0;
}
.popup-modal .birthday-title {
  font-size: 14px;
  color: #433e3a;
  margin-bottom: 10px;
}
.popup-modal .modal-close-btn {
  width: 35px;
  height: 35px;
  fill: #67359f;
  padding: 10px;
  cursor: pointer;
}
.popup-modal .modal-title-layout {
  display: flex;
  align-items: center;
}
.popup-modal input.error {
  border-color: #d0021b;
}
.popup-modal label.error {
  color: #d0021b;
  font-size: 14px;
  display: block;
  margin-top: 9px;
}
.popup-modal label.error:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 10px;
}
.popup-modal .checkbox-option input[type=checkbox] ~ label[for=user_frontend_acceptTermsAndConditions] {
  line-height: 3;
}

@media (max-width: 767px) {
  .beauty-rewards-landing_page .visible-xs {
    display: block;
  }
  .beauty-rewards-landing_page .hidden-xs {
    display: none;
  }

  .rewards-benefit-table-mob svg {
    width: 20px;
    height: 20px;
  }
  .rewards-benefit-table-mob .font-24 {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 2px;
    color: #414042;
  }
  .rewards-benefit-table-mob .font-15 {
    color: #414042;
  }

  .beauty-rewards-landing_page .beauty-rewards-banner .beauty-rewards-banner-container {
    min-width: 300px;
  }
  .beauty-rewards-landing_page .beauty-rewards-banner .beauty-rewards-banner-container .beauty-rewards-banner-inner {
    min-width: 300px;
  }
  .beauty-rewards-landing_page .beauty-rewards-banner .beauty-rewards-banner-container .beauty-rewards-banner-inner h1 {
    font-size: 26px;
  }
  .beauty-rewards-landing_page .beauty-rewards-banner .beauty-rewards-banner-container .beauty-rewards-banner-inner p {
    font-size: 12px;
  }
  .beauty-rewards-landing_page .beauty-rewards-banner .beauty-rewards-banner-container .beauty-rewards-banner-inner div span {
    font-size: 13px;
  }
  .beauty-rewards-landing_page .beauty-rewards-info a {
    width: 100%;
    text-align: center;
  }
  .beauty-rewards-landing_page .beauty-rewards-info a:first-child {
    float: left;
  }
  .beauty-rewards-landing_page .beauty-rewards-info a:nth-child(2) {
    float: right;
  }
  .beauty-rewards-landing_page .beauty-rewards-outline {
    justify-content: space-around !important;
    flex-wrap: wrap;
  }
  .beauty-rewards-landing_page .beauty-rewards-outline .beauty-rewards-outline-box {
    width: 140px !important;
    margin-bottom: 10px;
  }
  .beauty-rewards-landing_page section .beauty-rewards-list-items {
    height: 60px;
    width: 100%;
    margin: 0 0 10px !important;
  }
  .beauty-rewards-landing_page .beauty-rewards-list-items span {
    font-size: 14px;
  }
  .beauty-rewards-landing_page .beauty-rewards-list-items div {
    font-size: 14px;
    font-size: 12px;
  }

  .popup-modal {
    overflow: hidden auto;
  }
  .popup-modal .modal-backdrop {
    display: none !important;
  }
  .popup-modal .modal-dialog {
    position: static;
    transform: translate(0);
    width: 100%;
    margin: 0;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0px 10px 20px;
    max-height: 100vh;
    overflow-y: auto;
    max-width: unset;
  }
  .popup-modal .modal-title-layout {
    position: sticky;
    transform: translateZ(0);
    top: 0;
    left: 0;
    width: 100vw;
    height: 50px;
    padding: 0 10px;
    background: #f1ede9;
    z-index: 10;
    margin-left: -10px;
  }
  .popup-modal .login__form .field,
.popup-modal .register__form .field {
    width: 100%;
    padding: 0;
  }
  .popup-modal #show_provider a {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .beauty-rewards-landing_page .beauty-rewards-outline .beauty-rewards-outline-box {
    width: 136px;
    height: 180px;
  }

  .popup-modal-video .video-player-modal {
    width: 95vmin;
  }
  .popup-modal-video .modal-video-btn {
    display: none;
  }

  .popup-modal .checkbox-option input[type=checkbox] ~ label[for=user_frontend_acceptTermsAndConditions] {
    display: block;
  }
  .popup-modal .checkbox-option input[type=checkbox] ~ label[for=user_frontend_acceptTermsAndConditions]:before {
    top: 0;
  }
}
@media (min-width: 768px) and (max-width: 1060px) {
  .beauty-rewards-landing_page .beauty-rewards-outline .beauty-rewards-outline-box {
    margin: 0 5px;
  }
  .beauty-rewards-landing_page .beauty-rewards-list-items span {
    font-size: 12px;
  }
}
@media only screen and (max-height: 500px) {
  .popup-modal {
    overflow: hidden auto;
  }
  .popup-modal .modal-backdrop {
    display: none !important;
  }
  .popup-modal .modal-dialog {
    position: static;
    transform: translate(0);
    width: 100%;
    margin: 0;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0px 10px 20px;
    max-height: 100vh;
    overflow-y: auto;
    max-width: unset;
  }
  .popup-modal .modal-title-layout {
    position: sticky;
    transform: translateZ(0);
    top: 0;
    left: 0;
    width: 100vw;
    height: 50px;
    padding: 0 10px;
    background: #f1ede9;
    z-index: 10;
    margin-left: -10px;
  }
  .popup-modal .js-login-form {
    width: 100%;
  }
  .popup-modal .login__form .field,
.popup-modal .register__form .field {
    width: 100%;
    padding: 0;
  }
  .popup-modal #show_provider a {
    width: 50% !important;
    padding: 0;
  }
}
@keyframes "sk-bounce" {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 36px auto;
}

.double-bounce1 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite ease-in-out;
  animation-delay: -1s;
}

#scasl-app-container {
  display: block !important;
}

#page-header {
  display: block;
  float: left;
  max-width: 800px;
}
#page-header .bh-sl-title {
  color: #797874;
  font: normal 20px/1.4 Arial, Helvetica, sans-serif;
}
#page-header a {
  border-bottom: 1px solid;
}

.gm-style div {
  font-family: Arial, Helvetica, sans-serif;
}
.gm-style span {
  font-family: Arial, Helvetica, sans-serif;
}
.gm-style label {
  font-family: Arial, Helvetica, sans-serif;
}
.gm-style a {
  font-family: Arial, Helvetica, sans-serif;
}

.scasl-store-info-window {
  font-size: 13px;
}

.bh-sl-error {
  clear: both;
  color: #ae2118;
  float: left;
  font-weight: bold;
  padding: 10px 0;
  width: 100%;
}

.bh-sl-map-container img {
  border-radius: 0 !important;
  box-shadow: none !important;
  max-height: none !important;
  max-width: none !important;
}

.bh-sl-container {
  box-sizing: border-box;
  color: #555;
  float: left;
  font: normal 14px/1.4 Arial, Helvetica, sans-serif;
  padding: 0 15px;
  width: 100%;
}
.bh-sl-container > * {
  box-sizing: content-box !important;
}
.bh-sl-container .bh-sl-form-container {
  clear: left;
  float: left;
  margin-top: 15px;
  width: 100%;
}
.bh-sl-container .form-input {
  float: left;
  margin-top: 3px;
  width: 100%;
}
.bh-sl-container .form-input label {
  display: block;
  font-weight: bold;
  width: 100%;
}
.bh-sl-container .form-input input {
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: normal 14px/1.4 Arial, Helvetica, sans-serif;
  margin: 15px 0;
  padding: 6px 12px;
  width: 100%;
  -webkit-border-radius: 4px;
}
.bh-sl-container .form-input select {
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: normal 14px/1.4 Arial, Helvetica, sans-serif;
  margin: 15px 0;
  padding: 6px 12px;
  width: 100%;
  -webkit-border-radius: 4px;
}
.bh-sl-container button {
  background: #00447a;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  float: left;
  font: bold 14px/1.4 Arial, Helvetica, sans-serif;
  margin-top: 3px;
  padding: 6px 12px;
  white-space: nowrap;
  -webkit-border-radius: 4px;
}
.bh-sl-container .bh-sl-loading {
  background: url(../img/ajax-loader.gif) no-repeat;
  float: left;
  margin: 4px 0 0 10px;
  height: 16px;
  width: 16px;
}
.bh-sl-container .bh-sl-filters-container {
  clear: both;
  float: left;
  margin: 15px 0;
  width: 100%;
}
.bh-sl-container .bh-sl-filters-container .bh-sl-filters {
  float: left;
  list-style: none;
  margin: 0 100px 0 0;
  padding: 0;
}
.bh-sl-container .bh-sl-filters-container .bh-sl-filters li {
  clear: left;
  display: block;
  float: left;
  margin: 5px 0;
  width: 100%;
}
.bh-sl-container .bh-sl-filters-container .bh-sl-filters li label {
  display: inline;
  vertical-align: text-bottom;
}
.bh-sl-container .bh-sl-filters-container .bh-sl-filters li input {
  display: block;
  float: left;
  margin-right: 8px;
}
.bh-sl-container .bh-sl-filters-container .bh-sl-filters li select {
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: normal 14px/1.4 Arial, Helvetica, sans-serif;
  padding: 6px 12px;
  -webkit-border-radius: 4px;
}
.bh-sl-container .bh-sl-map-container {
  clear: left;
  float: left;
  margin-top: 27px;
  width: 100%;
}
.bh-sl-container .bh-sl-map-container a {
  color: #005293;
  text-decoration: none;
}
.bh-sl-container .bh-sl-map-container a:active {
  text-decoration: underline;
}
.bh-sl-container .bh-sl-map-container a:focus {
  text-decoration: underline;
}
.bh-sl-container .bh-sl-map-container a:hover {
  text-decoration: underline;
}
.bh-sl-container .bh-sl-loc-list {
  font-size: 13px;
  height: 530px;
  overflow-x: auto;
  width: 100%;
}
.bh-sl-container .bh-sl-loc-list ul {
  display: block;
  clear: left;
  float: left;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bh-sl-container .bh-sl-loc-list ul li {
  border: 1px solid #fff;
  box-sizing: border-box;
  clear: left;
  cursor: pointer;
  display: block;
  float: left;
  width: 100%;
}
.bh-sl-container .bh-sl-loc-list .list-label {
  background: #00192d;
  border-radius: 15px;
  color: #fff;
  display: block;
  float: left;
  font-weight: bold;
  margin: 10px 0 0 15px;
  padding: 4px 7px;
  text-align: center;
  width: auto;
  min-width: 13px;
}
.bh-sl-container .bh-sl-loc-list .list-details {
  float: left;
  margin-left: 6px;
  width: 80%;
}
.bh-sl-container .bh-sl-loc-list .list-details .list-content {
  padding: 10px;
}
.bh-sl-container .bh-sl-loc-list .list-details .loc-dist {
  color: #8e8e8e;
  font-weight: bold;
  font-style: italic;
}
.bh-sl-container .bh-sl-loc-list .list-focus {
  border: 1px solid rgba(0, 82, 147, 0.4);
  transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-close-directions-container {
  height: 20px;
  position: relative;
  width: 100%;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-close-directions-container .bh-sl-close-icon {
  right: 6px;
  top: 0;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-directions-panel {
  margin: 0 2%;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-directions-panel table {
  table-layout: auto;
  width: 100%;
  vertical-align: middle;
  border-collapse: separate;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-directions-panel td {
  vertical-align: middle;
  border-collapse: separate;
  padding: 1px;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-directions-panel .adp-placemark {
  margin: 10px 0;
  border: 1px solid #c0c0c0;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-directions-panel .adp-marker {
  padding: 3px;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-noresults-title {
  font-weight: bold;
  margin: 15px;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-noresults-desc {
  margin: 0 15px;
}
.bh-sl-container .loc-name {
  font-size: 15px;
  font-weight: bold;
}
.bh-sl-container .bh-sl-map {
  float: left;
  height: 530px;
  width: 100%;
}
.bh-sl-container .bh-sl-pagination-container {
  clear: both;
}
.bh-sl-container .bh-sl-pagination-container ol {
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  text-align: center;
}
.bh-sl-container .bh-sl-pagination-container ol li {
  color: #005293;
  cursor: pointer;
  display: inline-block;
  font: bold 14px Arial, Helvetica, sans-serif;
  padding: 10px;
}
.bh-sl-container .bh-sl-pagination-container ol .bh-sl-current {
  color: #555;
  cursor: auto;
  text-decoration: none;
}

.bh-sl-overlay {
  background: url(../img/overlay-bg.png) repeat;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
.bh-sl-overlay .bh-sl-modal-window {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px #656565;
  position: absolute;
  left: 50%;
  margin-left: -460px;
  margin-top: 60px;
  height: 620px;
  width: 920px;
  z-index: 10010;
}
.bh-sl-overlay .bh-sl-modal-window .bh-sl-map-container {
  margin-top: 50px;
}
.bh-sl-overlay .bh-sl-modal-window .bh-sl-modal-content {
  float: left;
  padding: 0 1%;
  width: 98%;
}
.bh-sl-overlay .bh-sl-modal-window .bh-sl-close-icon {
  right: 22px;
  top: 13px;
}

.bh-sl-close-icon {
  cursor: pointer;
  height: 24px;
  position: absolute;
  width: 24px;
}
.bh-sl-close-icon:after {
  background: #ccc;
  content: "";
  display: block;
  height: 24px;
  margin: -3px 0 0 -1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 3px;
  top: 3px;
  width: 3px;
  transform: rotate(45deg);
}
.bh-sl-close-icon:before {
  background: #ccc;
  content: "";
  display: block;
  height: 24px;
  margin: -3px 0 0 -1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 3px;
  top: 3px;
  width: 3px;
  transform: rotate(45deg);
  transform: rotate(-45deg);
}
.bh-sl-close-icon:hover:after {
  background: #b3b3b3;
}
.bh-sl-close-icon:hover:before {
  background: #b3b3b3;
}

@media (min-width: 1024px) {
  #page-header .bh-sl-title {
    font-size: 30px;
  }

  .bh-sl-container .bh-sl-map-container {
    margin-bottom: 60px;
  }
  .bh-sl-container .bh-sl-loc-list {
    width: 30%;
  }
  .bh-sl-container .bh-sl-map {
    width: 70%;
  }
}
@media (min-width: 768px) {
  .bh-sl-container .form-input {
    width: auto;
  }
  .bh-sl-container .form-input label {
    display: inline-block;
    width: auto;
  }
  .bh-sl-container .form-input input {
    width: auto;
    margin: 0 15px 0 10px;
  }
  .bh-sl-container .form-input select {
    width: auto;
    margin: 0 15px 0 10px;
  }
}
.bh-sl-container #page-header.sl-title {
  margin-top: 32px;
}
.bh-sl-container #page-header.sl-title h1 {
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 4px;
  color: #433E3A;
  margin-bottom: 20px;
}
.bh-sl-container #page-header.sl-title p {
  font-size: 13px;
  line-height: 23px;
  color: #414042;
}
.bh-sl-container .scasl-see-less,
.bh-sl-container .scasl-see-more {
  display: none;
}
.bh-sl-container .scasl-distance .form-input {
  margin-right: 45px;
}
.bh-sl-container .scasl-distance .form-input label {
  font-size: 15px;
  line-height: 23px;
  color: #414042;
}
.bh-sl-container .scasl-distance .form-input input,
.bh-sl-container .scasl-distance .form-input select {
  height: 45px;
  display: block;
  border-color: #414042;
  color: #414042;
  margin: 8px 0 0;
  border-radius: 0;
}
.bh-sl-container .scasl-distance .form-input input {
  padding-left: 40px;
  width: 300px;
}
.bh-sl-container .scasl-distance .form-input select {
  width: 240px;
}
.bh-sl-container .scasl-distance #bh-sl-submit {
  border-radius: 0;
  width: 243px;
  height: 45px;
  padding: 0;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 2px;
  font-weight: normal;
  margin-top: 33px;
}
.bh-sl-container .scasl-address-wrap {
  position: relative;
}
.bh-sl-container .scasl-address-wrap:after {
  content: "";
  background-image: url('//cdn.shopify.com/s/files/1/0338/3882/5612/t/304/assets/navigation.svg?v=15664012816400060139');
  width: 24px;
  height: 24px;
  position: absolute;
  background-repeat: no-repeat;
  top: 14px;
  left: 16px;
}
.bh-sl-container .bh-sl-map-container {
  margin-top: 31px;
}

#template-cms-page.store-locator-section .section__wrapper {
  padding: 0;
}
#template-cms-page.store-locator-section .page__blocks .block__rich-text-2-links:first-child {
  padding-top: 10px;
  padding-bottom: 33px;
}
#template-cms-page.store-locator-section .block__rich-text-2-links .rich-text__heading {
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 4px;
  color: #433E3A;
  text-align: left;
  margin-left: 10px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#template-cms-page.store-locator-section .block__rich-text-2-links .card-content {
  padding-top: 0;
  padding-bottom: 0;
}
#template-cms-page.store-locator-section .block__rich-text-2-links .card-content p {
  color: #777;
  font-size: 14px;
  margin-bottom: 60px;
}
#template-cms-page.store-locator-section .block__rich-text-2-links li a {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}
#template-cms-page.store-locator-section .block__rich-text-2-links:nth-child(2) li {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .bh-sl-container .scasl-distance .form-input {
    width: calc(33.33333% - 20px);
    margin-right: 20px;
  }
  .bh-sl-container .scasl-distance .form-input input {
    width: 100%;
  }
  .bh-sl-container .scasl-distance .form-input .country-wrapper {
    max-width: unset;
  }
  .bh-sl-container .scasl-distance .form-input select {
    width: 100%;
    margin-top: 30px;
  }
  .bh-sl-container .scasl-distance .scasl-search-btn {
    float: left;
    width: 33.3333%;
  }
  .bh-sl-container .scasl-distance .scasl-search-btn #bh-sl-submit {
    width: 100%;
    margin-top: 55px;
  }
}
@media (max-width: 1023px) {
  .bh-sl-container .bh-sl-loc-list.scasl-location-list {
    height: auto;
    max-height: 530px;
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .bh-sl-container .scasl-distance .form-input {
    margin: 0 0 20px;
  }
  .bh-sl-container .scasl-distance .form-input input,
.bh-sl-container .scasl-distance .form-input select {
    width: 100%;
  }
  .bh-sl-container .scasl-distance #bh-sl-submit {
    width: 100%;
    margin-top: 0;
  }
}