/** Shopify CDN: Minification failed

Line 596:2 "positon" is not a known CSS property
Line 29286:94 Unexpected "{"

**/
@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: transparent;
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: transparent;
  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: #424240;
}

.flickity-prev-next-button {
  top: 50%;
  width: 30px;
  height: 30px;
  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 3px;
  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: "Addington CF", 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: "Addington CF", 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", "Addington CF", "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;
}

/*
* iziToast | v1.4.0
* http://izitoast.marcelodolce.com
* by Marcelo Dolce.
*/
.iziToast-capsule {
  font-size: 0;
  height: 0;
  width: 100%;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.iziToast-capsule,
.iziToast-capsule * {
  box-sizing: border-box;
}

.iziToast-overlay {
  display: block;
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  bottom: -100px;
  z-index: 997;
}

.iziToast {
  display: inline-block;
  clear: both;
  position: relative;
  font-family: "Lato", Tahoma, Arial;
  font-size: 14px;
  padding: 8px 45px 9px 0;
  background: rgba(238, 238, 238, 0.9);
  border-color: rgba(238, 238, 238, 0.9);
  width: 100%;
  pointer-events: all;
  cursor: default;
  transform: translateX(0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-height: 54px;
}

.iziToast > .iziToast-progressbar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.2);
}

.iziToast > .iziToast-progressbar > div {
  height: 2px;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0 0 3px 3px;
}

.iziToast.iziToast-balloon:before {
  content: "";
  position: absolute;
  right: 8px;
  left: auto;
  width: 0;
  height: 0;
  top: 100%;
  border-right: 0 solid transparent;
  border-left: 15px solid transparent;
  border-top: 10px solid #000;
  border-top-color: inherit;
  border-radius: 0;
}

.iziToast.iziToast-balloon .iziToast-progressbar {
  top: 0;
  bottom: auto;
}

.iziToast.iziToast-balloon > div {
  border-radius: 0 0 0 3px;
}

.iziToast > .iziToast-cover {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  margin: 0;
  background-size: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.1);
}

.iziToast > .iziToast-close {
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  padding: 0;
  opacity: 0.6;
  width: 42px;
  height: 100%;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAJPAAACTwBcGfW0QAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAD3SURBVFiF1ZdtDoMgDEBfdi4PwAX8vLFn0qT7wxantojKupmQmCi8R4tSACpgjC2ICCUbEBa8ingjsU1AXRBeR8aLN64FiknswN8CYefBBDQ3whuFESy7WyQMeC0ipEI0A+0FeBvHUFN8xPaUhAH/iKoWsnXHGegy4J0yxialOfaHJAz4bhRzQzgDvdGnz4GbAonZbCQMuBm1K/kcFu8Mp1N2cFFpsxsMuJqqbIGExGl4loARajU1twskJLLhIsID7+tvUoDnIjTg5T9DPH9EBrz8rxjPzciAl9+O8SxI8CzJ8CxKFfh3ynK8Dyb8wNHM/XDqejx/AtNyPO87tNybAAAAAElFTkSuQmCC) no-repeat 50% 50%;
  background-size: 8px;
  cursor: pointer;
  outline: 0;
}

.iziToast > .iziToast-close:hover {
  opacity: 1;
}

.iziToast > .iziToast-body {
  position: relative;
  padding: 0 0 0 10px;
  height: auto;
  min-height: 36px;
  margin: 0 0 0 15px;
  text-align: left;
}

.iziToast > .iziToast-body:after {
  content: "";
  display: table;
  clear: both;
}

.iziToast > .iziToast-body .iziToast-texts {
  margin: 10px 0 0;
  padding-right: 2px;
  display: inline-block;
  float: left;
}

.iziToast > .iziToast-body .iziToast-inputs {
  min-height: 19px;
  float: left;
  margin: 3px -2px;
}

.iziToast > .iziToast-body .iziToast-inputs > input:not([type=checkbox]):not([type=radio]),
.iziToast > .iziToast-body .iziToast-inputs > select {
  position: relative;
  display: inline-block;
  margin: 2px;
  border-radius: 2px;
  border: 0;
  padding: 4px 7px;
  font-size: 13px;
  letter-spacing: 0.02em;
  background: rgba(0, 0, 0, 0.1);
  color: #000;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  min-height: 26px;
}

.iziToast > .iziToast-body .iziToast-inputs > input:not([type=checkbox]):not([type=radio]):focus,
.iziToast > .iziToast-body .iziToast-inputs > select:focus {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.6);
}

.iziToast > .iziToast-body .iziToast-buttons {
  min-height: 17px;
  float: left;
  margin: 4px -2px;
}

.iziToast > .iziToast-body .iziToast-buttons > a,
.iziToast > .iziToast-body .iziToast-buttons > button,
.iziToast > .iziToast-body .iziToast-buttons > input:not([type=checkbox]):not([type=radio]) {
  position: relative;
  display: inline-block;
  margin: 2px;
  border-radius: 2px;
  border: 0;
  padding: 5px 10px;
  font-size: 12px;
  letter-spacing: 0.02em;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.1);
  color: #000;
}

.iziToast > .iziToast-body .iziToast-buttons > a:hover,
.iziToast > .iziToast-body .iziToast-buttons > button:hover,
.iziToast > .iziToast-body .iziToast-buttons > input:not([type=checkbox]):not([type=radio]):hover {
  background: rgba(0, 0, 0, 0.2);
}

.iziToast > .iziToast-body .iziToast-buttons > a:focus,
.iziToast > .iziToast-body .iziToast-buttons > button:focus,
.iziToast > .iziToast-body .iziToast-buttons > input:not([type=checkbox]):not([type=radio]):focus {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.6);
}

.iziToast > .iziToast-body .iziToast-buttons > a:active,
.iziToast > .iziToast-body .iziToast-buttons > button:active,
.iziToast > .iziToast-body .iziToast-buttons > input:not([type=checkbox]):not([type=radio]):active {
  top: 1px;
}

.iziToast > .iziToast-body .iziToast-icon {
  position: absolute;
  left: 0;
  top: 50%;
  display: table;
  font-size: 23px;
  line-height: 24px;
  margin-top: -12px;
  color: #000;
  width: 24px;
  height: 24px;
}

.iziToast > .iziToast-body .iziToast-icon.ico-info {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAAflBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCtoPsAAAAKXRSTlMA6PsIvDob+OapavVhWRYPrIry2MxGQ97czsOzpJaMcE0qJQOwVtKjfxCVFeIAAAI3SURBVFjDlJPZsoIwEETnCiGyb8q+qmjl/3/wFmGKwjBROS9QWbtnOqDDGPq4MdMkSc0m7gcDDhF4NRdv8NoL4EcMpzoJglPl/KTDz4WW3IdvXEvxkfIKn7BMZb1bFK4yZFqghZ03jk0nG8N5NBwzx9xU5cxAg8fXi20/hDdC316lcA8o7t16eRuQvW1XGd2d2P8QSHQDDbdIII/9CR3lUF+lbucfJy4WfMS64EJPORnrZxtfc2pjJdnbuags3l04TTtJMXrdTph4Pyg4XAjugAJqMDf5Rf+oXx2/qi4u6nipakIi7CsgiuMSEF9IGKg8heQJKkxIfFSUU/egWSwNrS1fPDtLfon8sZOcYUQml1Qv9a3kfwsEUyJEMgFBKzdV8o3Iw9yAjg1jdLQCV4qbd3no8yD2GugaC3oMbF0NYHCpJYSDhNI5N2DAWB4F4z9Aj/04Cna/x7eVAQ17vRjQZPh+G/kddYv0h49yY4NWNDWMMOMUIRYvlTECmrN8pUAjo5RCMn8KoPmbJ/+Appgnk//Sy90GYBCGgm7IAskQ7D9hFKW4ApB1ei3FSYD9PjGAKygAV+ARFYBH5BsVgG9kkBSAQWKUFYBRZpkUgGVinRWAdUZQDABBQdIcAElDVBUAUUXWHQBZx1gMAGMprM0AsLbVXHsA5trZe93/wp3svQ0YNb/jWV3AIOLsMtlznSNOH7JqjOpDVh7z8qCZR10ftvO4nxeOvPLkpSuvfXnxzKtvXr7j+v8C5ii0e71At7cAAAAASUVORK5CYII=) no-repeat 50% 50%;
  background-size: 85%;
}

.iziToast > .iziToast-body .iziToast-icon.ico-warning {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEQAAABECAMAAAAPzWOAAAAAkFBMVEUAAAAAAAABAAIAAAABAAIAAAMAAAABAAIBAAIBAAIAAAIAAAABAAIAAAABAAICAAICAAIAAAIAAAAAAAAAAAABAAIBAAIAAAMAAAABAAIBAAMBAAECAAIAAAIAAAIAAAABAAIBAAIBAAMBAAIBAAEAAAIAAAMAAAAAAAABAAECAAICAAIAAAIAAAMAAAQAAAE05yNAAAAAL3RSTlMAB+kD7V8Q+PXicwv7I9iYhkAzJxnx01IV5cmnk2xmHfzexsK4eEw5L7Gei39aRw640awAAAHQSURBVFjD7ZfJdoJAEEWJgCiI4oDiPM8m7///LidErRO7sHrY5u7YXLr7vKqu9kTC0HPmo9n8cJbEQOzqqAdAUHeUZACQuTkGDQBoDJwkHZR0XBz9FkpafXuHP0SJ09mGeJLZ5wwlTmcbA0THPmdEK7XPGTG1zxmInn3OiJ19zkB0jSVTKExMHT0wjAwlWzC0fSPHF1gWRpIhWMYm7fYTFcQGlbemf4dFfdTGg0B/KXM8qBU/3wntbq7rSGqvJ9kla6IpueFJet8fxfem5yhykjyOgNaWF1qSGd5JMNNxpNF7SZQaVh5JzLrTCZIEJ1GyEyVyd+pClMjdaSJK5O40giSRu5PfFiVyd1pAksjdKRnrSsbVdbiHrgT7yss315fkVQPLFQrL+4FHeOXKO5YRFEKv5AiFaMlKLlBpJuVCJlC5sJfvCgztru/3NmBYccPgGTxRAzxn1XGEMUf58pXZvjoOsOCgjL08+b53mtfAM/SVsZcjKLtysQZPqIy9HPP3m/3zKItRwT0LyQo8sTr26tcO83DIUMWIJjierHLsJda/tbNBFY0BP/bKtcM8HNIWCK3aYR4OMzgxo5w5EFLOLKDExXAm9gI4E3iAO94/Ct/lKWuM2LMGbgAAAABJRU5ErkJggg==) no-repeat 50% 50%;
  background-size: 85%;
}

.iziToast > .iziToast-body .iziToast-icon.ico-error {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAAeFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVyEiIAAAAJ3RSTlMA3BsB98QV8uSyWVUFz7+kcWMM2LuZioBpTUVBNcq2qaibj4d1azLZZYABAAACZElEQVRYw7WX25KCMAyGAxUoFDkpiohnV97/DXeGBtoOUprZ2dyo1K82fxKbwJJVp+KQZ7so2mX5oThVQLKwjDe9YZu4DF3ptAn6rxY0qQPOEq9fNC9ha3y77a22ba24v+9Xbe8v8x03dPOC2/NdvB6xeSreLfGJpnx0TyotKqLm2s7Jd/WO6ivXNp0tCy02R/aFz5VQ5wUPlUL5fIfj5KIlVGU0nWHm/5QtoTVMWY8mzIVu1K9O7XH2JiU/xnOOT39gnUfj+lFHddx4tFjL3/H8jjzaFCy2Rf0c/fdQyQszI8BDR973IyMSKa4krjxAiW/lkRvMP+bKK9WbYS1ASQg8dKjaUGlYPwRe/WoIkz8tiQchH5QAEMv6T0k8MD4mUyWr4E7jAWqZ+xWcMIYkXvlwggJ3IvFK+wIOcpXAo8n8P0COAaXyKH4OsjBuZB4ew0IGu+H1SebhNazsQBbWm8yj+hFuUJB5eMsN0IUXmYendAFFfJB5uEkRMYwxmcd6zDGRtmQePEykAgubymMRFmMxCSIPCRbTuFNN5OGORTjmNGc0Po0m8Uv0gcCry6xUhR2QeLii9tofbEfhz/qvNti+OfPqNm2Mq6105FUMvdT4GPmufMiV8PqBMkc+DdT1bjYYbjzU/ew23VP4n3mLAz4n8Jtv/Ui3ceTT2mzz5o1mZt0gnBpmsdjqRqVlmplcPdqa7X23kL9brdm2t/uBYDPn2+tyu48mtIGD10JTuUrukVrbCFiwDzcHrPjxKt7PW+AZQyT/WESO+1WL7f3o+WLHL2dYMSZsg6dg/z360ofvP4//v1NPzgs28WlWAAAAAElFTkSuQmCC) no-repeat 50% 50%;
  background-size: 80%;
}

.iziToast > .iziToast-body .iziToast-icon.ico-success {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABABAMAAABYR2ztAAAAIVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABt0UjBAAAACnRSTlMApAPhIFn82wgGv8mVtwAAAKVJREFUSMft0LEJAkEARNFFFEw1NFJb8CKjAy1AEOzAxNw+bEEEg6nyFjbY4LOzcBwX7S/gwUxoTdIn+Jbv4Lv8bx446+kB6VsBtK0B+wbMCKxrwL33wOrVeeChX28n7KTOTjgoEu6DRSYAgAAAAkAmAIAAAAIACQIkMkACAAgAIACAyECBKAOJuCagTJwSUCaUAEMAABEBRwAAEQFLbCJgO4bW+AZKGnktR+jAFAAAAABJRU5ErkJggg==) no-repeat 50% 50%;
  background-size: 85%;
}

.iziToast > .iziToast-body .iziToast-icon.ico-question {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAQAAAAAYLlVAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAADdcAAA3XAUIom3gAAAAHdElNRQfhCQkUEhFovxTxAAAEDklEQVRo3s2ZTWgTQRTHf03ipTRUqghNSgsRjHgQrFUQC6JgD1Kak3gQUUoPqRdBglf1oBehBws9Cn4cGk+1SOmh2upBxAYVoeJHrR9tgq0i1Cq0lqYeks7MbpPdmU00/c8hm9n33v/t7Nt5M2+qMEWQI0QIibZKRrQpHvLL2KI2wnQzzBKrDm2RIeKEy01dTYKUI7G1ZRknQXV5yP10kTYgly1NF/5S6duZ8ES+1iZodyaocrjXxE0OFeifYYgp0mRIkwFChAkRJsIxGgrIP+I0n82fvZW5dc/zkss0O2o1c5mX6/TmaDWl77RFe5YkUW3tKEmyFv0lOvXJ/fTYnmCEFuMRbGHEZqVHLyT9DFjUJmkzJl9DG5MWWwM6Llif/gF1nukB6nhgGwUXdFrE+wiURA8QoM9i0zEWWpXQW+ZsyeRrOMuyEo5Fv4gmy4dXPvqcC+pH2VRYaMwy+OWG+iLGCgm0W0Kv9HdvR8ASjmKCXpuK/bxiV/76A/v5UdDIZuKcJGjrnec5KZ7wwsWFOp6xPX/9mt2sqDe7FO+Kf/fXHBPPDWpdXGhTpLvUG9VKwh1xMDDjkvu+cNDFBTk7ptX1QkKZ850m3duu6fcrWxwdaFFyREJ2j4vOpKP6Du6z4uJCv8sYJIVkCnJBGGZaBONO3roY2EqNrSfIPi7SKP4fdXyNUd6I6wbSAHEl33tFLe+FlSsusnK90A0+oEPcuufZgXnOi+u9LrKSJQZQw6LwqBnv2CKsfHORbFbyQhA6xN/pEuihSdj56Co7LWRjPiKie6gkB2LiKuUqK5kiPkLiz1QJ9K1cNXBAMoUCigNpQ9IqDtMI1HKA4/jyvUsaoSyZLA5kjOjDPFZen8Ql5TsvBskUgjciIPSX3QAXC86DT7VWvlEh/xZ+ij9BDVWJ0QL0SbZq6QaFxoLPcXPmBLveLCc4wXdDK6s+6/vwhCSniFLPXW0NJe5UB8zKCsviqpc7vGPVQFcyZbyPwGD+d5ZnxmNWlhG4xSBZZjivjIWHEQgoDkSMjMwTo54569JSE5IpA7EyJSMTyGTUAUFlO1ZKOtaHTMeL1PhYYFTcihmY2cQ5+ullj7EDkiVfVez2sCTz8yiv84djhg7IJVk81xFWJlPdfHBG0flkRC/zQFZ+DSllNtfDdUsOMCliyGX5uOzU3ZhIXFDof4m1gDuKbEx0t2YS25gVGpcMnr/I1kx3c6piB8P8ZoqEwfMX3ZyCXynJTmq/U7NUXqfUzCbWL1wqVKBQUeESzQYoUlW8TAcVL1RCxUu1G6BYXfFyfQ4VPbDI4T8d2WzgQ6sc/vmxnTsqfHCZQzUJxm1h5dxS5Tu6lQgTZ0ipqRVqSwzTbbLHMt+c19iO76tsx/cLZub+Ali+tYC93olEAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE3LTA5LTA5VDIwOjE4OjE3KzAyOjAwjKtfjgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNy0wOS0wOVQyMDoxODoxNyswMjowMP325zIAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAAElFTkSuQmCC) no-repeat 50% 50%;
  background-size: 85%;
}

.iziToast > .iziToast-body .iziToast-message,
.iziToast > .iziToast-body .iziToast-title {
  padding: 0;
  font-size: 14px;
  line-height: 16px;
  text-align: left;
  float: left;
  white-space: normal;
}

.iziToast > .iziToast-body .iziToast-title {
  color: #000;
  margin: 0;
}

.iziToast > .iziToast-body .iziToast-message {
  margin: 0 0 10px;
  color: rgba(0, 0, 0, 0.6);
}

.iziToast.iziToast-animateInside .iziToast-buttons-child,
.iziToast.iziToast-animateInside .iziToast-icon,
.iziToast.iziToast-animateInside .iziToast-inputs-child,
.iziToast.iziToast-animateInside .iziToast-message,
.iziToast.iziToast-animateInside .iziToast-title {
  opacity: 0;
}

.iziToast-target {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.iziToast-target .iziToast-capsule {
  overflow: hidden;
}

.iziToast-target .iziToast-capsule:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.iziToast-target .iziToast-capsule .iziToast {
  width: 100%;
  float: left;
}

.iziToast-wrapper {
  z-index: 99999;
  position: fixed;
  width: 100%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.iziToast-wrapper .iziToast.iziToast-balloon:before {
  border-right: 0 solid transparent;
  border-left: 15px solid transparent;
  border-top: 10px solid #000;
  border-top-color: inherit;
  right: 8px;
  left: auto;
}

.iziToast-wrapper-bottomLeft {
  left: 0;
  bottom: 0;
  text-align: left;
}

.iziToast-wrapper-bottomLeft .iziToast.iziToast-balloon:before,
.iziToast-wrapper-topLeft .iziToast.iziToast-balloon:before {
  border-right: 15px solid transparent;
  border-left: 0 solid transparent;
  right: auto;
  left: 8px;
}

.iziToast-wrapper-bottomRight {
  right: 0;
  bottom: 0;
  text-align: right;
}

.iziToast-wrapper-topLeft {
  left: 0;
  top: 0;
  text-align: left;
}

.iziToast-wrapper-topRight {
  top: 0;
  right: 0;
  text-align: right;
}

.iziToast-wrapper-topCenter {
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
}

.iziToast-wrapper-bottomCenter,
.iziToast-wrapper-center {
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}

.iziToast-wrapper-center {
  top: 0;
  justify-content: center;
  flex-flow: column;
  align-items: center;
}

.iziToast-rtl {
  direction: rtl;
  padding: 8px 0 9px 45px;
  font-family: Tahoma, "Lato", Arial;
}

.iziToast-rtl .iziToast-cover {
  left: auto;
  right: 0;
}

.iziToast-rtl .iziToast-close {
  right: auto;
  left: 0;
}

.iziToast-rtl .iziToast-body {
  padding: 0 10px 0 0;
  margin: 0 16px 0 0;
  text-align: right;
}

.iziToast-rtl .iziToast-body .iziToast-buttons,
.iziToast-rtl .iziToast-body .iziToast-inputs,
.iziToast-rtl .iziToast-body .iziToast-message,
.iziToast-rtl .iziToast-body .iziToast-texts,
.iziToast-rtl .iziToast-body .iziToast-title {
  float: right;
  text-align: right;
}

.iziToast-rtl .iziToast-body .iziToast-icon {
  left: auto;
  right: 0;
}

@media only screen and (min-width: 568px) {
  .iziToast-wrapper {
    padding: 10px 15px;
  }

  .iziToast {
    margin: 5px 0;
    border-radius: 3px;
    width: auto;
  }

  .iziToast:not(.iziToast-rtl) .iziToast-cover {
    border-radius: 3px 0 0 3px;
  }

  .iziToast.iziToast-rtl .iziToast-cover {
    border-radius: 0 3px 3px 0;
  }

  .iziToast.iziToast-color-dark:after {
    box-shadow: inset 0 -10px 20px -10px rgba(255, 255, 255, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.25);
  }

  .iziToast.iziToast-balloon .iziToast-progressbar {
    background: 0 0;
  }

  .iziToast.iziToast-balloon:after {
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.25), inset 0 10px 20px -5px rgba(0, 0, 0, 0.25);
  }
}
.iziToast.iziToast-theme-dark {
  background: #565c70;
  border-color: #565c70;
}

.iziToast.iziToast-theme-dark .iziToast-title {
  color: #fff;
}

.iziToast.iziToast-theme-dark .iziToast-message {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.iziToast.iziToast-theme-dark .iziToast-close {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAQAAADZc7J/AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAADdcAAA3XAUIom3gAAAAHdElNRQfgCR4OIQIPSao6AAAAwElEQVRIx72VUQ6EIAwFmz2XB+AConhjzqTJ7JeGKhLYlyx/BGdoBVpjIpMJNjgIZDKTkQHYmYfwmR2AfAqGFBcO2QjXZCd24bEggvd1KBx+xlwoDpYmvnBUUy68DYXD77ESr8WDtYqvxRex7a8oHP4Wo1Mkt5I68Mc+qYqv1h5OsZmZsQ3gj/02h6cO/KEYx29hu3R+VTTwz6D3TymIP1E8RvEiiVdZfEzicxYLiljSxKIqlnW5seitTW6uYnv/Aqh4whX3mEUrAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE2LTA5LTMwVDE0OjMzOjAyKzAyOjAwl6RMVgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNi0wOS0zMFQxNDozMzowMiswMjowMOb59OoAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAAElFTkSuQmCC) no-repeat 50% 50%;
  background-size: 8px;
}

.iziToast.iziToast-theme-dark .iziToast-icon {
  color: #fff;
}

.iziToast.iziToast-theme-dark .iziToast-icon.ico-info {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAAflBMVEUAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////vroaSAAAAKXRSTlMA6PsIvDob+OapavVhWRYPrIry2MxGQ97czsOzpJaMcE0qJQOwVtKjfxCVFeIAAAI3SURBVFjDlJPZsoIwEETnCiGyb8q+qmjl/3/wFmGKwjBROS9QWbtnOqDDGPq4MdMkSc0m7gcDDhF4NRdv8NoL4EcMpzoJglPl/KTDz4WW3IdvXEvxkfIKn7BMZb1bFK4yZFqghZ03jk0nG8N5NBwzx9xU5cxAg8fXi20/hDdC316lcA8o7t16eRuQvW1XGd2d2P8QSHQDDbdIII/9CR3lUF+lbucfJy4WfMS64EJPORnrZxtfc2pjJdnbuags3l04TTtJMXrdTph4Pyg4XAjugAJqMDf5Rf+oXx2/qi4u6nipakIi7CsgiuMSEF9IGKg8heQJKkxIfFSUU/egWSwNrS1fPDtLfon8sZOcYUQml1Qv9a3kfwsEUyJEMgFBKzdV8o3Iw9yAjg1jdLQCV4qbd3no8yD2GugaC3oMbF0NYHCpJYSDhNI5N2DAWB4F4z9Aj/04Cna/x7eVAQ17vRjQZPh+G/kddYv0h49yY4NWNDWMMOMUIRYvlTECmrN8pUAjo5RCMn8KoPmbJ/+Appgnk//Sy90GYBCGgm7IAskQ7D9hFKW4ApB1ei3FSYD9PjGAKygAV+ARFYBH5BsVgG9kkBSAQWKUFYBRZpkUgGVinRWAdUZQDABBQdIcAElDVBUAUUXWHQBZx1gMAGMprM0AsLbVXHsA5trZe93/wp3svQ0YNb/jWV3AIOLsMtlznSNOH7JqjOpDVh7z8qCZR10ftvO4nxeOvPLkpSuvfXnxzKtvXr7j+v8C5ii0e71At7cAAAAASUVORK5CYII=) no-repeat 50% 50%;
  background-size: 85%;
}

.iziToast.iziToast-theme-dark .iziToast-icon.ico-warning {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEQAAABECAMAAAAPzWOAAAAAllBMVEUAAAD////+//3+//3+//3///////z+//3+//3+//3////////////9//3////+//39//3///3////////////+//3+//39//3///z+//z+//7///3///3///3///3////////+//3+//3+//3+//z+//3+//7///3///z////////+//79//3///3///z///v+//3///+trXouAAAAMHRSTlMAB+j87RBf+PXiCwQClSPYhkAzJxnx05tSyadzcmxmHRbp5d7Gwrh4TDkvsYt/WkdQzCITAAAB1UlEQVRYw+3XaXKCQBCGYSIIighoxCVqNJrEPfly/8vFImKXduNsf/Mc4K1y7FnwlMLQc/bUbj85R6bA1LXRDICg6RjJcZa7NQYtnLUGTpERSiOXxrOPkv9s30iGKDmtbYir3H7OUHJa2ylAuvZzRvzUfs7Ii/2cgfTt54x82s8ZSM848gJmYtroQzA2jHwA+LkBIEuMGt+QIng1igzlyMrkuP2CyOi47axRaYTL5jhDJehoR+aovC29s3iIyly3Eb+hRCvZo2qsGTnhKr2cLDS+J73GsqBI9W80UCmWWpEuhIjh6ZRGjyNRarjzKGJ2Ou2himCvjHwqI+rTqQdlRH06TZQR9ek0hiqiPp06mV4ke7QPX6ERUZxO8Uo3sqrfhxvoRrCpvXwL/UjR9GRHMIvLgke4d5QbiwhM6JV2YKKF4vIl7XIBkwm4keryJVmvk/TfwcmPwQNkUQuyA2/sYGwnXL7GPu4bW1jYsmevrNj09/MGZMOEPXslQVqO8hqykD17JfPHP/bmo2yGGpdZiH3IZvzZa7B3+IdDjjpjesHJcvbs5dZ/e+cddVoDdvlq7x12Nac+iN7e4R8OXTjp0pw5CGnOLNDEzeBs5gVwFniAO+8f8wvfeXP2hyqnmwAAAABJRU5ErkJggg==) no-repeat 50% 50%;
  background-size: 85%;
}

.iziToast.iziToast-theme-dark .iziToast-icon.ico-error {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAAeFBMVEUAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////GqOSsAAAAJ3RSTlMA3BsB98QV8uSyWVUFz6RxYwzYvbupmYqAaU1FQTXKv7abj4d1azKNUit3AAACZElEQVRYw7WXaZOCMAyGw30UORRQBLxX/v8/3BkaWjrY2szO5otKfGrzJrEp6Kw6F8f8sI+i/SE/FucKSBaWiT8p5idlaEtnXTB9tKDLLHAvdSatOan3je93k9F2vRF36+mr1a6eH2NFNydoHq/ieU/UXcWjjk9XykdNWq2ywtp4tXL6Wb2T/MqtzzZutsrNyfvA51KoQROhVCjfrnASIRpSVUZiD5v4RbWExjRdJzSmOsZFvzYz59kRSr6V5zE+/QELHkNdb3VRx45HS1b1u+zfkkcbRAZ3qJ9l/A4qefHUDMShJe+6kZKJDD2pLQ9Q4lu+5Q7rz7Plperd7AtQEgIPI6o2dxr2D4GXvxqCiKcn8cD4gxIAEt7/GYkHL16KqeJd0NB4gJbXfgVnzCGJlzGcocCVSLzUvoAj9xJ4NF7/R8gxoVQexc/hgBpSebjPjgPs59cHmYfn7NkDb6wXmUf1I1ygIPPw4gtgCE8yDw8eAop4J/PQcBExjQmZx37MsZB2ZB4cLKQCG5vKYxMWSzMxIg8pNtOyUkvkocEmXGo69mh8FgnxS4yBwMvDrJSNHZB4uC3ayz/YkcIP4lflwVIT+OU07ZSjrbTkZQ6dTPkYubZ8GC/Cqxu6WvJZII93dcCw46GdNqdpTeF/tiMOuDGB9z/NI6NvyWetGPM0g+bVNeovBmamHXWj0nCbEaGeTMN2PWrqd6cM26ZxP2DeJvj+ph/30Zi/GmRbtlK5SptI+nwGGnvH6gUruT+L16MJHF+58rwNIifTV0vM8+hwMeOXAb6Yx0wXT+b999WXfvn+8/X/F7fWzjdTord5AAAAAElFTkSuQmCC) no-repeat 50% 50%;
  background-size: 80%;
}

.iziToast.iziToast-theme-dark .iziToast-icon.ico-success {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABABAMAAABYR2ztAAAAIVBMVEUAAAD////////////////////////////////////////PIev5AAAACnRSTlMApAPhIFn82wgGv8mVtwAAAKVJREFUSMft0LEJAkEARNFFFEw1NFJb8CKjAy1AEOzAxNw+bEEEg6nyFjbY4LOzcBwX7S/gwUxoTdIn+Jbv4Lv8bx446+kB6VsBtK0B+wbMCKxrwL33wOrVeeChX28n7KTOTjgoEu6DRSYAgAAAAkAmAIAAAAIACQIkMkACAAgAIACAyECBKAOJuCagTJwSUCaUAEMAABEBRwAAEQFLbCJgO4bW+AZKGnktR+jAFAAAAABJRU5ErkJggg==) no-repeat 50% 50%;
  background-size: 85%;
}

.iziToast.iziToast-theme-dark .iziToast-icon.ico-question {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAQAAAAAYLlVAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAADdcAAA3XAUIom3gAAAAHdElNRQfhCQkUEg18vki+AAAETUlEQVRo3s1ZTWhbRxD+VlIuxsLFCYVIIQYVopBDoK5bKDWUBupDMNbJ5FBKg/FBziUQdE9yaC+FHBrwsdCfQ9RTGoLxwWl+DqHEojUFFydxnB9bInZDqOsErBrr6yGvs/ueX97bldTKo4Pe7puZb3Z33s7srIIjMY1jyCEjP6ImvyX8pF64arSHznKC06wzijY5xSKz7YbuYokV2lODsyyxqz3gSY6z6gCuqcpxJluFH+Z8U+D/0jyHoxFUBHgfvsGHIS9WMIUlVFFDFTUAGWSRQRY5HMeBEP6b+Ew9dh/7INd2jGeO59kfKdXP85zbIbfGQVf4sYC3N1hm3lo6zzIbPvk6x+zBk7wQGMEMB5xncIAzAS0XrFySSV72iS1yyBVcdA1x0afrsoUJgdFfY2+z8ADAXl7zz0KcwJiPfZKpVuABgClO+nRG+QIHDdfb4qlWwUXvKW4Z7vi6L4J9vg+vbfCeCeZH2RfOdMOc/HbCA4BvIW6EMQz7XK/ltd+hP+VzR9mgva2YSfyGI17fA7ynnocqeQNFfIJ0oHsdv6CC2+rXGBN6cQdveY3fcVRtmy/HDete+93zy8jA8zV7YkwYMrjHzRddRsCdiVCwwmh6wg9iTNC7Y9XIF1iS7kbUpsvvGEdPuTfSgAEjRpR096x0liPFD/Eqt2NMuBQzB2XhrACAApjFsuQFh9XdGAX70B3oSuNdnMVBaX+sopYxjwVpHFBVACyKTXNoktjD+6Ll8xhenS9MAAkAI/Lux2YNUOs4I413Ypg1SgEAu7kpFvWjaeJe0fJHDGe/cNaZBkekudw8PMA+0fMwlndZeAsJ5KR/qhUDUJCnSiyvRsolkJHGUgvjH8QXDgZopEzKMKDqCKrwEQ4C6MH7GEXC665buLJG8hlQc4LP4paxfJrOqYVYYY2UARfEIazTbgDg2dB98GebzJd54b8L/iWNdLyooeR6CHyZ+6xk0yKxkYg6nEVSUG4VJ9QJ9cxRCxO+9WiOyvgUeexXP1hLGH5nGuBWVtiSp4vqe3VP0UFWI9Wan4Er3v8q7jjPWVtm4FtcQQMrOKO2nOQCM5AyDMi56FDrKHA/1nyppS1ppBpYaE8wciEjGI2AaeM41kI4doDX4XiT3Qm1gevyruCgZg9P8xIv8m1nCzTKq6oiJ9xTMiZ505P5m8cdZ0CnZMVXHVljM7WMBzxpyDxygtdxoCEFTaMIWbZU85UvBjgUMYy0fBaAF8V1Lj9qWQ1aMZ5f4k9r+AGMSkMP1vZoZih6k6sicc5h/OFHM9vDqU/VIU7zJZdYYsKGH4g4nAJMGiXZRds1pVMoZ69RM5vfkbh0qkBhsnS2RLMLilQdL9MBHS9UAh0v1e6CYnXHy/WeeCcvLDwl/9OVze69tPKM+M+v7eJN6OzFpWdEF0ucDbhVNFXadnVrmJFlkVNGTS2M6pzmhMvltfPhnN2B63sVuL7fcNP3D1TSk2ihosPrAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE3LTA5LTA5VDIwOjE4OjEzKzAyOjAweOR7nQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNy0wOS0wOVQyMDoxODoxMyswMjowMAm5wyEAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAAElFTkSuQmCC) no-repeat 50% 50%;
  background-size: 85%;
}

.iziToast.iziToast-theme-dark .iziToast-buttons > a,
.iziToast.iziToast-theme-dark .iziToast-buttons > button,
.iziToast.iziToast-theme-dark .iziToast-buttons > input {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.iziToast.iziToast-theme-dark .iziToast-buttons > a:hover,
.iziToast.iziToast-theme-dark .iziToast-buttons > button:hover,
.iziToast.iziToast-theme-dark .iziToast-buttons > input:hover {
  background: rgba(255, 255, 255, 0.2);
}

.iziToast.iziToast-theme-dark .iziToast-buttons > a:focus,
.iziToast.iziToast-theme-dark .iziToast-buttons > button:focus,
.iziToast.iziToast-theme-dark .iziToast-buttons > input:focus {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.iziToast.iziToast-color-red {
  background: rgba(255, 175, 180, 0.9);
  border-color: rgba(255, 175, 180, 0.9);
}

.iziToast.iziToast-color-orange {
  background: rgba(255, 207, 165, 0.9);
  border-color: rgba(255, 207, 165, 0.9);
}

.iziToast.iziToast-color-yellow {
  background: rgba(255, 249, 178, 0.9);
  border-color: rgba(255, 249, 178, 0.9);
}

.iziToast.iziToast-color-blue {
  background: rgba(157, 222, 255, 0.9);
  border-color: rgba(157, 222, 255, 0.9);
}

.iziToast.iziToast-color-green {
  background: rgba(166, 239, 184, 0.9);
  border-color: rgba(166, 239, 184, 0.9);
}

.iziToast.iziToast-layout2 .iziToast-body .iziToast-message,
.iziToast.iziToast-layout2 .iziToast-body .iziToast-texts {
  width: 100%;
}

.iziToast.iziToast-layout3 {
  border-radius: 2px;
}

.iziToast.iziToast-layout3::after {
  display: none;
}

.iziToast .revealIn,
.iziToast.revealIn {
  animation: iziT-revealIn 1s cubic-bezier(0.25, 1.6, 0.25, 1) both;
}

.iziToast .slideIn,
.iziToast.slideIn {
  animation: iziT-slideIn 1s cubic-bezier(0.16, 0.81, 0.32, 1) both;
}

.iziToast.bounceInLeft {
  animation: iziT-bounceInLeft 0.7s ease-in-out both;
}

.iziToast.bounceInRight {
  animation: iziT-bounceInRight 0.85s ease-in-out both;
}

.iziToast.bounceInDown {
  animation: iziT-bounceInDown 0.7s ease-in-out both;
}

.iziToast.bounceInUp {
  animation: iziT-bounceInUp 0.7s ease-in-out both;
}

.iziToast .fadeIn,
.iziToast.fadeIn {
  animation: iziT-fadeIn 0.5s ease both;
}

.iziToast.fadeInUp {
  animation: iziT-fadeInUp 0.7s ease both;
}

.iziToast.fadeInDown {
  animation: iziT-fadeInDown 0.7s ease both;
}

.iziToast.fadeInLeft {
  animation: iziT-fadeInLeft 0.85s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.iziToast.fadeInRight {
  animation: iziT-fadeInRight 0.85s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.iziToast.flipInX {
  animation: iziT-flipInX 0.85s cubic-bezier(0.35, 0, 0.25, 1) both;
}

.iziToast.fadeOut {
  animation: iziT-fadeOut 0.7s ease both;
}

.iziToast.fadeOutDown {
  animation: iziT-fadeOutDown 0.7s cubic-bezier(0.4, 0.45, 0.15, 0.91) both;
}

.iziToast.fadeOutUp {
  animation: iziT-fadeOutUp 0.7s cubic-bezier(0.4, 0.45, 0.15, 0.91) both;
}

.iziToast.fadeOutLeft {
  animation: iziT-fadeOutLeft 0.5s ease both;
}

.iziToast.fadeOutRight {
  animation: iziT-fadeOutRight 0.5s ease both;
}

.iziToast.flipOutX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation: iziT-flipOutX 0.7s cubic-bezier(0.4, 0.45, 0.15, 0.91) both;
}

.iziToast-overlay.fadeIn {
  animation: iziT-fadeIn 0.5s ease both;
}

.iziToast-overlay.fadeOut {
  animation: iziT-fadeOut 0.7s ease both;
}
@keyframes iziT-revealIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes iziT-slideIn {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes iziT-bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(280px);
  }
  50% {
    opacity: 1;
    transform: translateX(-20px);
  }
  70% {
    transform: translateX(10px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes iziT-bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(-280px);
  }
  50% {
    opacity: 1;
    transform: translateX(20px);
  }
  70% {
    transform: translateX(-10px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes iziT-bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-200px);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  70% {
    transform: translateY(-5px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes iziT-bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  50% {
    opacity: 1;
    transform: translateY(-10px);
  }
  70% {
    transform: translateY(5px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes iziT-fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes iziT-fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes iziT-fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes iziT-fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(300px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes iziT-fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(-300px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes iziT-flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes iziT-fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes iziT-fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes iziT-fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes iziT-fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-200px, 0, 0);
  }
}
@keyframes iziT-fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(200px, 0, 0);
  }
}
@keyframes iziT-flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
/*============= iziToast Overrides =============*/
.iziToast .iziToast-message {
  font-size: 1rem !important;
}
.iziToast .iziToast-icon {
  width: 1rem;
}
.iziToast.iziToast-color-green {
  background: green;
  border-color: green;
}
.iziToast.iziToast-theme-alert > .iziToast-body .iziToast-buttons {
  float: right;
}
.iziToast.iziToast-theme-alert > .iziToast-body .iziToast-buttons button {
  text-transform: capitalize;
}
.iziToast.iziToast-theme-alert > .iziToast-body .iziToast-title {
  margin-bottom: 0.375em;
}

/*************** SCROLLBAR BASE CSS ***************/
.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

.scroll-wrapper > .scroll-content {
  border: none !important;
  box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none !important;
  overflow: scroll !important;
  padding: 0;
  position: relative !important;
  top: 0;
  width: auto !important;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scroll-element {
  display: none;
}

.scroll-element,
.scroll-element div {
  box-sizing: content-box;
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
  display: block;
}

.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
  cursor: default;
}

.scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999;
}

.scroll-textarea > .scroll-content {
  overflow: hidden !important;
}

.scroll-textarea > .scroll-content > textarea {
  border: none !important;
  box-sizing: border-box;
  height: 100% !important;
  margin: 0;
  max-height: none !important;
  max-width: none !important;
  overflow: scroll !important;
  outline: none;
  padding: 2px;
  position: relative !important;
  top: 0;
  width: 100% !important;
}

.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
  height: 0;
  width: 0;
}

/*************** SIMPLE INNER SCROLLBAR ***************/
.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-inner > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-x {
  bottom: 2px;
  height: 8px;
  left: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  right: 2px;
  top: 0;
  width: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  border-radius: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  opacity: 0.4;
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  background-color: #e0e0e0;
}

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #c2c2c2;
}

.scrollbar-inner > .scroll-element:hover .scroll-bar {
  background-color: #919191;
}

.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -5px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -5px;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -5px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -5px;
}

/*************** SIMPLE OUTER SCROLLBAR ***************/
.scrollbar-outer > .scroll-element,
.scrollbar-outer > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-outer > .scroll-element {
  background-color: #ffffff;
}

.scrollbar-outer > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-outer > .scroll-element.scroll-x {
  bottom: 0;
  height: 5px;
  left: 0;
  width: 100%;
}

.scrollbar-outer > .scroll-element.scroll-y {
  height: 100%;
  right: 0;
  top: 0;
  width: 5px;
  font-size: 0;
  line-height: 0;
  background-color: transparent;
}

.scrollbar-outer > .scroll-element.scroll-x .scroll-element_outer {
  height: 8px;
  top: 2px;
}

.scrollbar-outer > .scroll-element.scroll-y .scroll-element_outer {
  left: 0;
  width: 5px;
}

.scrollbar-outer > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-outer > .scroll-element .scroll-element_track {
  background-color: #dfdad2;
}

.scrollbar-outer > .scroll-element .scroll-element_outer,
.scrollbar-outer > .scroll-element .scroll-element_track,
.scrollbar-outer > .scroll-element .scroll-bar {
  border-radius: 8px;
}

.scrollbar-outer > .scroll-element .scroll-bar {
  background-color: #222;
}

.scrollbar-outer > .scroll-element .scroll-bar:hover {
  background-color: #222;
}

.scrollbar-outer > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #222;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-outer > .scroll-content.scroll-scrolly_visible {
  left: -5px;
  margin-left: 5px;
}

.scrollbar-outer > .scroll-content.scroll-scrollx_visible {
  top: -5px;
  margin-top: 5px;
}

.scrollbar-outer > .scroll-element.scroll-x .scroll-bar {
  min-width: 10px;
}

.scrollbar-outer > .scroll-element.scroll-y .scroll-bar {
  min-height: 10px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -14px;
}

.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -14px;
}

.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -14px;
}

.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -14px;
}

/*************** SCROLLBAR MAC OS X ***************/
.scrollbar-macosx > .scroll-element,
.scrollbar-macosx > .scroll-element div {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-macosx > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-macosx > .scroll-element .scroll-element_track {
  display: none;
}

.scrollbar-macosx > .scroll-element .scroll-bar {
  background-color: #6c6e71;
  display: block;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  border-radius: 7px;
  transition: opacity 0.2s linear;
}

.scrollbar-macosx:hover > .scroll-element .scroll-bar,
.scrollbar-macosx > .scroll-element.scroll-draggable .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.scrollbar-macosx > .scroll-element.scroll-x {
  bottom: 0px;
  height: 0px;
  left: 0;
  min-width: 100%;
  overflow: visible;
  width: 100%;
}

.scrollbar-macosx > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 0px;
  top: 0;
  width: 0px;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-macosx > .scroll-element.scroll-x .scroll-bar {
  height: 7px;
  min-width: 10px;
  top: -9px;
}

.scrollbar-macosx > .scroll-element.scroll-y .scroll-bar {
  left: -9px;
  min-height: 10px;
  width: 7px;
}

.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_outer {
  left: 2px;
}

.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_size {
  left: -4px;
}

.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_outer {
  top: 2px;
}

.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-macosx > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -11px;
}

.scrollbar-macosx > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -11px;
}

/*************** SCROLLBAR LIGHT ***************/
.scrollbar-light > .scroll-element,
.scrollbar-light > .scroll-element div {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-light > .scroll-element {
  background-color: #ffffff;
}

.scrollbar-light > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-light > .scroll-element .scroll-element_outer {
  border-radius: 10px;
}

.scrollbar-light > .scroll-element .scroll-element_size {
  background: #dbdbdb;
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RiZGJkYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
  background: linear-gradient(to right, #dbdbdb 0%, #e8e8e8 100%);
  border-radius: 10px;
}

.scrollbar-light > .scroll-element.scroll-x {
  bottom: 0;
  height: 17px;
  left: 0;
  min-width: 100%;
  width: 100%;
}

.scrollbar-light > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 0;
  top: 0;
  width: 17px;
}

.scrollbar-light > .scroll-element .scroll-bar {
  background: #fefefe;
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
  background: linear-gradient(to right, #fefefe 0%, #f5f5f5 100%);
  border: 1px solid #dbdbdb;
  border-radius: 10px;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-light > .scroll-content.scroll-scrolly_visible {
  left: -17px;
  margin-left: 17px;
}

.scrollbar-light > .scroll-content.scroll-scrollx_visible {
  top: -17px;
  margin-top: 17px;
}

.scrollbar-light > .scroll-element.scroll-x .scroll-bar {
  height: 10px;
  min-width: 10px;
  top: 0px;
}

.scrollbar-light > .scroll-element.scroll-y .scroll-bar {
  left: 0px;
  min-height: 10px;
  width: 10px;
}

.scrollbar-light > .scroll-element.scroll-x .scroll-element_outer {
  height: 5px;
  left: 2px;
  top: 2px;
}

.scrollbar-light > .scroll-element.scroll-x .scroll-element_size {
  left: -4px;
}

.scrollbar-light > .scroll-element.scroll-y .scroll-element_outer {
  left: 2px;
  top: 2px;
  width: 5px;
}

.scrollbar-light > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -19px;
}

.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -19px;
}

.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -19px;
}

.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -19px;
}

/*************** SCROLLBAR RAIL ***************/
.scrollbar-rail > .scroll-element,
.scrollbar-rail > .scroll-element div {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-rail > .scroll-element {
  background-color: #ffffff;
}

.scrollbar-rail > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-rail > .scroll-element .scroll-element_size {
  background-color: #999;
  background-color: rgba(0, 0, 0, 0.3);
}

.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-element_size {
  background-color: #666;
  background-color: rgba(0, 0, 0, 0.5);
}

.scrollbar-rail > .scroll-element.scroll-x {
  bottom: 0;
  height: 5px;
  left: 0;
  min-width: 100%;
  padding: 3px 0 2px;
  width: 100%;
}

.scrollbar-rail > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  padding: 0 2px 0 3px;
  right: 0;
  top: 0;
  width: 5px;
}

.scrollbar-rail > .scroll-element .scroll-bar {
  background-color: #d0b9a0;
  border-radius: 2px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-bar {
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* scrollbar height/width & offset from container borders */
.scrollbar-rail > .scroll-content.scroll-scrolly_visible {
  left: -17px;
  margin-left: 17px;
}

.scrollbar-rail > .scroll-content.scroll-scrollx_visible {
  margin-top: 17px;
  top: -17px;
}

.scrollbar-rail > .scroll-element.scroll-x .scroll-bar {
  height: 10px;
  min-width: 10px;
  top: 1px;
}

.scrollbar-rail > .scroll-element.scroll-y .scroll-bar {
  left: 1px;
  min-height: 10px;
  width: 10px;
}

.scrollbar-rail > .scroll-element.scroll-x .scroll-element_outer {
  height: 15px;
  left: 5px;
}

.scrollbar-rail > .scroll-element.scroll-x .scroll-element_size {
  height: 2px;
  left: -10px;
  top: 5px;
}

.scrollbar-rail > .scroll-element.scroll-y .scroll-element_outer {
  top: 5px;
  width: 15px;
}

.scrollbar-rail > .scroll-element.scroll-y .scroll-element_size {
  left: 5px;
  top: -10px;
  width: 2px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -25px;
}

.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -25px;
}

.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -25px;
}

.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -25px;
}

/*************** SCROLLBAR DYNAMIC ***************/
.scrollbar-dynamic > .scroll-element,
.scrollbar-dynamic > .scroll-element div {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-dynamic > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-dynamic > .scroll-element.scroll-x {
  bottom: 2px;
  height: 7px;
  left: 0;
  min-width: 100%;
  width: 100%;
}

.scrollbar-dynamic > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 2px;
  top: 0;
  width: 7px;
}

.scrollbar-dynamic > .scroll-element .scroll-element_outer {
  opacity: 0.3;
  border-radius: 5px;
}

.scrollbar-dynamic > .scroll-element .scroll-element_size {
  background-color: #cccccc;
  opacity: 0;
  border-radius: 5px;
  transition: opacity 0.2s;
}

.scrollbar-dynamic > .scroll-element .scroll-bar {
  background-color: #6c6e71;
  border-radius: 7px;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-dynamic > .scroll-element.scroll-x .scroll-bar {
  bottom: 0;
  height: 7px;
  min-width: 24px;
  top: auto;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-bar {
  left: auto;
  min-height: 24px;
  right: 0;
  width: 7px;
}

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_outer {
  bottom: 0;
  top: auto;
  left: 2px;
  transition: height 0.2s;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_outer {
  left: auto;
  right: 0;
  top: 2px;
  transition: width 0.2s;
}

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_size {
  left: -4px;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-dynamic > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -11px;
}

.scrollbar-dynamic > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -11px;
}

/* hover & drag */
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer {
  overflow: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-element_size,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-element_size {
  opacity: 1;
}

.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-bar,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-bar {
  height: 100%;
  width: 100%;
  border-radius: 5px;
}

.scrollbar-dynamic > .scroll-element.scroll-x:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-x.scroll-draggable .scroll-element_outer {
  height: 20px;
  min-height: 7px;
}

.scrollbar-dynamic > .scroll-element.scroll-y:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-y.scroll-draggable .scroll-element_outer {
  min-width: 7px;
  width: 20px;
}

/*************** SCROLLBAR GOOGLE CHROME ***************/
.scrollbar-chrome > .scroll-element,
.scrollbar-chrome > .scroll-element div {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-chrome > .scroll-element {
  background-color: #ffffff;
}

.scrollbar-chrome > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-chrome > .scroll-element .scroll-element_track {
  background: #f1f1f1;
  border: 1px solid #dbdbdb;
}

.scrollbar-chrome > .scroll-element.scroll-x {
  bottom: 0;
  height: 16px;
  left: 0;
  min-width: 100%;
  width: 100%;
}

.scrollbar-chrome > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 0;
  top: 0;
  width: 16px;
}

.scrollbar-chrome > .scroll-element .scroll-bar {
  background-color: #d9d9d9;
  border: 1px solid #bdbdbd;
  cursor: default;
  border-radius: 2px;
}

.scrollbar-chrome > .scroll-element .scroll-bar:hover {
  background-color: #c2c2c2;
  border-color: #a9a9a9;
}

.scrollbar-chrome > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
  border-color: #7e7e7e;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-chrome > .scroll-content.scroll-scrolly_visible {
  left: -16px;
  margin-left: 16px;
}

.scrollbar-chrome > .scroll-content.scroll-scrollx_visible {
  top: -16px;
  margin-top: 16px;
}

.scrollbar-chrome > .scroll-element.scroll-x .scroll-bar {
  height: 8px;
  min-width: 10px;
  top: 3px;
}

.scrollbar-chrome > .scroll-element.scroll-y .scroll-bar {
  left: 3px;
  min-height: 10px;
  width: 8px;
}

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_outer {
  border-left: 1px solid #dbdbdb;
}

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_track {
  height: 14px;
  left: -3px;
}

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_size {
  height: 14px;
  left: -4px;
}

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_outer {
  border-top: 1px solid #dbdbdb;
}

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_track {
  top: -3px;
  width: 14px;
}

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
  width: 14px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -19px;
}

.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -19px;
}

.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -19px;
}

.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -19px;
}

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











/*
  Custom variables
*/
/* # Mixins
================================================== */
ul.tabs, .tabs, .pagination-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis, .file, .breadcrumb, .button, .not-found-404__page .not-found-text p > a, .is-unselectable, .close, .delete {
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}


.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: "\e904";
  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, .not-found-404__page .not-found-text p > a.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: 16px;
  -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: "Addington CF", Montserrat, sans-serif;
}

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

a {
  color: #222222;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a strong {
  color: currentColor;
}
a:hover {
  color: #606060;
}

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: #6c6c6c;
  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 #eeeeee;
  padding: 5px;
}

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

.noscript {
  display: none;
}

/* # Fonts
================================================== */@font-face {
  font-family: Montserrat;
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/montserrat/montserrat_n3.29e699231893fd243e1620595067294bb067ba2a.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=9f21679c43b766477f8cf6b44a3dd14f491368e9228c0711a4622bcb83208c0c") format("woff2"),
       url("//preludeliving.com/cdn/fonts/montserrat/montserrat_n3.64ed56f012a53c08a49d49bd7e0c8d2f46119150.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=ba612c71f2e1a156585958e90024ce770c879d8bfef8aec1b647225b6574850c") format("woff");
}


    @font-face {
  font-family: Montserrat;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/montserrat/montserrat_n4.81949fa0ac9fd2021e16436151e8eaa539321637.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=537d3010fce7320918f8f2ceab318ff8389803b2977fb6cb87893ac6590d22b7") format("woff2"),
       url("//preludeliving.com/cdn/fonts/montserrat/montserrat_n4.a6c632ca7b62da89c3594789ba828388aac693fe.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=04d6fa18b6dd467f4644a242c225415520ca1dfedaa9d59a465a1922d629a57a") format("woff");
}


    @font-face {
  font-family: Montserrat;
  font-weight: 300;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/montserrat/montserrat_i3.9cfee8ab0b9b229ed9a7652dff7d786e45a01df2.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=fcfad0b46fa4593dfd38be5d66c9938d7a9a3436d3c3a104ff5ab4a997b315c0") format("woff2"),
       url("//preludeliving.com/cdn/fonts/montserrat/montserrat_i3.68df04ba4494b4612ed6f9bf46b6c06246fa2fa4.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=4e75526f32b87eff3b9a157763fd3b337ea37e39fd8551f83c4e54c47713a038") format("woff");
}


    @font-face {
  font-family: Montserrat;
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/montserrat/montserrat_i4.5a4ea298b4789e064f62a29aafc18d41f09ae59b.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=fba01c9751f69ee7a541921ca7c072cefb571c68844e60d180d081ca89b58492") format("woff2"),
       url("//preludeliving.com/cdn/fonts/montserrat/montserrat_i4.072b5869c5e0ed5b9d2021e4c2af132e16681ad2.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=eb7adfa3370701e4ca329de36abd754530c73496d78bd13575d80c4659928beb") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n4.c59aeffc42e977ec5364b485a9dbc44963fd34a5.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=605eda5df7a8e3be6ecdd05392998a4ac4fc8b33a25c619c64424d204496a0be") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n4.94f9bb7eb757b2b519d5d810b042a7ad78abc4aa.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=cf41443aad460a512422a425f544e949fc8805121e65b8050af47234d4175345") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n7.9578a5fc0fdabc2abe8161710583f08379f81456.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=b4163eb5ebe60c5b559484c82834357afb59c5a808cad46e737e454e969b88a2") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n7.f0360809c0debce218eabc5c6dfd266c0d20cb21.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=03544cd49a255125c345f721bb087f84f8df07feb689a05271757b41f17c7664") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i4.60e5f446e68d528446f4a7ba0c60668e3be4bffe.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=4889c017c5c7170d6d1ae08341be094e9e8e41c25f6c725a04acee61cd91646a") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i4.4984dbc20cd3ebe012d93d995face461268a4fa6.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=3a91888e78e61457bd4ba3af7a00f52bcb3f6fe631c1563304afb21aadda56bc") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i7.5506ffb4c8f9fa0f6ba48ac4a54b95e2fa0a660d.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=45271197c8ba9bfc4926301788d9aae395491a04360453fb4a0a52c21f28810a") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i7.233a9c7f1ad1ad30d12510156424aef97b60236f.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=951fc44cd9e64856cdbe183d03bb29568600b9af0208088e36f65d6e015c90c4") format("woff");
}


    @font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/montserrat/montserrat_n7.3c434e22befd5c18a6b4afadb1e3d77c128c7939.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=3804de55bf5f7e179ef1fa8da0a0ac0fd0eb7dd9884ab961058dbef815bd12dd") format("woff2"),
       url("//preludeliving.com/cdn/fonts/montserrat/montserrat_n7.5d9fa6e2cae713c8fb539a9876489d86207fe957.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=de4c820760e8acc18c6c25746e1e9b9de7f31c1636a4439c0038d3af122f17f8") format("woff");
}


    @font-face {
  font-family: Montserrat;
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/montserrat/montserrat_n9.680ded1be351aa3bf3b3650ac5f6df485af8a07c.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=a7f9346cafa18f1a570d793b61dfbeb8abe3e80d99f4405769252bb7877daf1a") format("woff2"),
       url("//preludeliving.com/cdn/fonts/montserrat/montserrat_n9.0cc5aaeff26ef35c23b69a061997d78c9697a382.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=6a13c6c9c05a710c8a07a85a0455ca7c99c49d14e04e6d160bc41175a87e84b5") format("woff");
}


    @font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/montserrat/montserrat_i7.a0d4a463df4f146567d871890ffb3c80408e7732.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=3d00a481a31f04e9910bd1fabbcd98c817365bd5ebbfbcb4c9e1192700f775aa") format("woff2"),
       url("//preludeliving.com/cdn/fonts/montserrat/montserrat_i7.f6ec9f2a0681acc6f8152c40921d2a4d2e1a2c78.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=e7dacb247cc840db31e6f99a7b5326d4f4dde29c09b72d6cdf5abf000086a38a") format("woff");
}


    @font-face {
  font-family: Montserrat;
  font-weight: 900;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/montserrat/montserrat_i9.cd566e55c5982a3a39b3949665a79c881e095b14.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=9b8cd6d306b261967e47930a74d9c12ed98ae927219ca271571d3d7a469912bf") format("woff2"),
       url("//preludeliving.com/cdn/fonts/montserrat/montserrat_i9.b18527943b7f5bc1488b82e39deb595a73d3e645.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=c25aae1ad58f23adaacd8f20a204c9f9818fec9cb9b7d08f8b6fadbff2c697c6") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n4.c59aeffc42e977ec5364b485a9dbc44963fd34a5.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=605eda5df7a8e3be6ecdd05392998a4ac4fc8b33a25c619c64424d204496a0be") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n4.94f9bb7eb757b2b519d5d810b042a7ad78abc4aa.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=cf41443aad460a512422a425f544e949fc8805121e65b8050af47234d4175345") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n7.9578a5fc0fdabc2abe8161710583f08379f81456.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=b4163eb5ebe60c5b559484c82834357afb59c5a808cad46e737e454e969b88a2") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n7.f0360809c0debce218eabc5c6dfd266c0d20cb21.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=03544cd49a255125c345f721bb087f84f8df07feb689a05271757b41f17c7664") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i4.60e5f446e68d528446f4a7ba0c60668e3be4bffe.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=4889c017c5c7170d6d1ae08341be094e9e8e41c25f6c725a04acee61cd91646a") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i4.4984dbc20cd3ebe012d93d995face461268a4fa6.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=3a91888e78e61457bd4ba3af7a00f52bcb3f6fe631c1563304afb21aadda56bc") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i7.5506ffb4c8f9fa0f6ba48ac4a54b95e2fa0a660d.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=45271197c8ba9bfc4926301788d9aae395491a04360453fb4a0a52c21f28810a") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i7.233a9c7f1ad1ad30d12510156424aef97b60236f.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=951fc44cd9e64856cdbe183d03bb29568600b9af0208088e36f65d6e015c90c4") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n4.c59aeffc42e977ec5364b485a9dbc44963fd34a5.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=605eda5df7a8e3be6ecdd05392998a4ac4fc8b33a25c619c64424d204496a0be") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n4.94f9bb7eb757b2b519d5d810b042a7ad78abc4aa.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=cf41443aad460a512422a425f544e949fc8805121e65b8050af47234d4175345") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n7.9578a5fc0fdabc2abe8161710583f08379f81456.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=b4163eb5ebe60c5b559484c82834357afb59c5a808cad46e737e454e969b88a2") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n7.f0360809c0debce218eabc5c6dfd266c0d20cb21.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=03544cd49a255125c345f721bb087f84f8df07feb689a05271757b41f17c7664") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i4.60e5f446e68d528446f4a7ba0c60668e3be4bffe.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=4889c017c5c7170d6d1ae08341be094e9e8e41c25f6c725a04acee61cd91646a") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i4.4984dbc20cd3ebe012d93d995face461268a4fa6.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=3a91888e78e61457bd4ba3af7a00f52bcb3f6fe631c1563304afb21aadda56bc") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i7.5506ffb4c8f9fa0f6ba48ac4a54b95e2fa0a660d.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=45271197c8ba9bfc4926301788d9aae395491a04360453fb4a0a52c21f28810a") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i7.233a9c7f1ad1ad30d12510156424aef97b60236f.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=951fc44cd9e64856cdbe183d03bb29568600b9af0208088e36f65d6e015c90c4") format("woff");
}


    @font-face {
  font-family: Helvetica;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/helvetica/helvetica_n4.d69105cb90210426151dd10f163649fe91cd9f9a.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=fb3e66960d1103eee8949e59a404a2b1da883e04a4342e6480a384485b637bbb") format("woff2"),
       url("//preludeliving.com/cdn/fonts/helvetica/helvetica_n4.055900bab399f46841ccc0b135a986963b38d520.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=d426edc2d189b759e103718ad60116c3327eb30bd0b003c9a697e9aeb8207766") format("woff");
}


    @font-face {
  font-family: Helvetica;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/helvetica/helvetica_n7.6173cb1dda8a2052781a4d18ba96fa162e18ab2c.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=4981e5112873ad562b5dc42d2c1634905ff4a24901d9f6d908a6ca8e6622c0c1") format("woff2"),
       url("//preludeliving.com/cdn/fonts/helvetica/helvetica_n7.1799c26d0e620d460114da9415d931b10c7e4f22.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=40a9aa58372a897806ea6c2fc5491aeadd61cbb820b2a30c9f2705e6bf0de82f") format("woff");
}


    @font-face {
  font-family: Helvetica;
  font-weight: 400;
  font-style: oblique;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/helvetica/helvetica_o4.ac6519122d10a0c9bf7713055e12e5b753c76776.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=0ba414934975be7ccccac555fe78b9e8aeff30952d15ad6865fa8dccc850e9a0") format("woff2"),
       url("//preludeliving.com/cdn/fonts/helvetica/helvetica_o4.9fec29a3c00ae40898ee820b2f8502ce5d83d27d.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=170b2729c33e2deb7051a434de92f2a97fb1ca08b6244b0614d053903cd15c1d") format("woff");
}


    @font-face {
  font-family: Helvetica;
  font-weight: 700;
  font-style: oblique;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/helvetica/helvetica_o7.697f4dd542c5a9119af7816239a9ebf738d6dde6.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=39c05b53383038ea6f4374a53b4e3ee9a3b736cc9b66ef7c7d110fd1b4b4fd98") format("woff2"),
       url("//preludeliving.com/cdn/fonts/helvetica/helvetica_o7.fcb4b4b404bfa8c3792f0c91650e21d5e574db74.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=e4ca6035a6a404f36f66e9a0d9eb3bbcfe092c0acb1bb6489b4e1e86bb5b501f") format("woff");
}


    @font-face {
  font-family: Helvetica;
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/helvetica/helvetica_n3.2ce2b74d9ca75e532fc98f9b6b5cf4019982967f.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=ad2a058d8e15acf9b03d9dc3f28bf6d92551b06c3d4fb55dd685932e0de55e70") format("woff2"),
       url("//preludeliving.com/cdn/fonts/helvetica/helvetica_n3.818ea2b0daa4533198fdfb4bd178099a209cc833.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=65dc5bd8e114526c94999404643866312ef8e90b6b036355d8ab469b220d6503") format("woff");
}


    @font-face {
  font-family: Helvetica;
  font-weight: 300;
  font-style: oblique;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/helvetica/helvetica_o3.f8b419f0a8df23496c3ff2d032457e07ca04d72a.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=8c1eeff9cb2f7792bf8e671f3d625a4a05b6408a5129552ecf9ef018821b525d") format("woff2"),
       url("//preludeliving.com/cdn/fonts/helvetica/helvetica_o3.c67d482db520a2dacbdc5e7c614f25a72633cfcc.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=2afdee836c82845e96081ea8611eee938fcb3793b40030711ed67ca6ec7e226a") format("woff");
}


    @font-face {
  font-family: "DM Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/dm_sans/dmsans_n4.ec80bd4dd7e1a334c969c265873491ae56018d72.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=55fb977bdd888ceeeb8a93120a253b2bfddba9040879faf2ace96afeb404306f") format("woff2"),
       url("//preludeliving.com/cdn/fonts/dm_sans/dmsans_n4.87bdd914d8a61247b911147ae68e754d695c58a6.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=f280f9561372b1a307ca6c605d66f376404be0ad7a5ad571dde7333d74d6a0d4") format("woff");
}


    @font-face {
  font-family: "DM Sans";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/dm_sans/dmsans_n7.97e21d81502002291ea1de8aefb79170c6946ce5.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=fd2771dfd65a30b9e4135d05ba21e72ad38c4bc864bb8f18568f44922b20db79") format("woff2"),
       url("//preludeliving.com/cdn/fonts/dm_sans/dmsans_n7.af5c214f5116410ca1d53a2090665620e78e2e1b.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=76e9e2f7b620e4b9775057849be7d551c50dc4b2470af942da59ecca35ec12ad") format("woff");
}


    @font-face {
  font-family: "DM Sans";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/dm_sans/dmsans_i4.b8fe05e69ee95d5a53155c346957d8cbf5081c1a.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=b1118ba2d93e606720139449dee8e68a30501ba8a18c4ba6a7c02328d38cc95e") format("woff2"),
       url("//preludeliving.com/cdn/fonts/dm_sans/dmsans_i4.403fe28ee2ea63e142575c0aa47684d65f8c23a0.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=ad2bb4f26bbfc9999152963908df3c89d71dde83e03f2c04e0d536e187f0b2f3") format("woff");
}


    @font-face {
  font-family: "DM Sans";
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/dm_sans/dmsans_i7.52b57f7d7342eb7255084623d98ab83fd96e7f9b.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=f55ba6c575715c2840813c2e446ddd545378e2016284d2f4ff99a9656cb258b7") format("woff2"),
       url("//preludeliving.com/cdn/fonts/dm_sans/dmsans_i7.d5e14ef18a1d4a8ce78a4187580b4eb1759c2eda.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=9f19a883c75888a7668147fd993514ede0a96e3db78df29bf92912ccbcf48084") format("woff");
}


    @font-face {
  font-family: "DM Sans";
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/dm_sans/dmsans_n1.580389dc4df7a79b9eaf149851cb60b3e1bb8dfc.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=51d93bcefb4b265eced01eb66caeec7c058ce6bcb7e816770fc203b708b8c8ab") format("woff2"),
       url("//preludeliving.com/cdn/fonts/dm_sans/dmsans_n1.504f53511fe3603bb04cdd33e5dc389e197c8fdf.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=e5d64358fc97ba30d8403f8fa432c45e55e60f4b579eee8a58b960224abbadd5") format("woff");
}


    @font-face {
  font-family: "DM Sans";
  font-weight: 100;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/dm_sans/dmsans_i1.59295eaf695d761f0e0016341f1491715251d53d.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=55389efc92f103500433092f609c938400f953d38fc55f64a9f0c05576ffc963") format("woff2"),
       url("//preludeliving.com/cdn/fonts/dm_sans/dmsans_i1.e6e1158895e2b68579484cbfdf1415a41a9f18ac.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=ca1455d567524a4dac3f01ad580060a8220e2d551a766a50042caa0c55c0d219") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n5.604fde141feaf1d72ab203f7d5ce002112512f44.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=f779fdbe6cd457c067aeb92e9f32a064b87458cf7ecfb47b0d6fe5b51814a303") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n5.0602f6c191efe38ad35753a9c425375ff8ce92c9.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=07ad1a19cd219dd829a34f2bc7d05395409986921bfb45a2a41b87be3c001586") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n7.9578a5fc0fdabc2abe8161710583f08379f81456.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=b4163eb5ebe60c5b559484c82834357afb59c5a808cad46e737e454e969b88a2") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n7.f0360809c0debce218eabc5c6dfd266c0d20cb21.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=03544cd49a255125c345f721bb087f84f8df07feb689a05271757b41f17c7664") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i5.c9ea2c0a2dd0e50eb0a2cedf6cb09602e5b1adeb.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=c7a789f47bc7986b78a245bff08ff92e38f4055f4e3350366c00c216c79424b5") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i5.9cc789a3e91815a81726c48ca4c6cdd691ed7711.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=ada759adbd157165b894e954580f40eb2357fad028c2319fd7fc15a9fea03a73") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i7.5506ffb4c8f9fa0f6ba48ac4a54b95e2fa0a660d.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=45271197c8ba9bfc4926301788d9aae395491a04360453fb4a0a52c21f28810a") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i7.233a9c7f1ad1ad30d12510156424aef97b60236f.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=951fc44cd9e64856cdbe183d03bb29568600b9af0208088e36f65d6e015c90c4") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n4.c59aeffc42e977ec5364b485a9dbc44963fd34a5.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=605eda5df7a8e3be6ecdd05392998a4ac4fc8b33a25c619c64424d204496a0be") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n4.94f9bb7eb757b2b519d5d810b042a7ad78abc4aa.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=cf41443aad460a512422a425f544e949fc8805121e65b8050af47234d4175345") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n7.9578a5fc0fdabc2abe8161710583f08379f81456.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=b4163eb5ebe60c5b559484c82834357afb59c5a808cad46e737e454e969b88a2") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_n7.f0360809c0debce218eabc5c6dfd266c0d20cb21.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=03544cd49a255125c345f721bb087f84f8df07feb689a05271757b41f17c7664") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i4.60e5f446e68d528446f4a7ba0c60668e3be4bffe.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=4889c017c5c7170d6d1ae08341be094e9e8e41c25f6c725a04acee61cd91646a") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i4.4984dbc20cd3ebe012d93d995face461268a4fa6.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=3a91888e78e61457bd4ba3af7a00f52bcb3f6fe631c1563304afb21aadda56bc") format("woff");
}


    @font-face {
  font-family: "Mundo Sans";
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i7.5506ffb4c8f9fa0f6ba48ac4a54b95e2fa0a660d.woff2?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=45271197c8ba9bfc4926301788d9aae395491a04360453fb4a0a52c21f28810a") format("woff2"),
       url("//preludeliving.com/cdn/fonts/mundo_sans/mundosans_i7.233a9c7f1ad1ad30d12510156424aef97b60236f.woff?h1=MmNjM2QwLmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=Z2lsdGFuZGZvbGllLm15c2hvcGlmeS5jb20&h3=cHJlbHVkZWxpdmluZy5jb20&h4=cHJlbHVkZWxpdmluZy5jb20uc2c&hmac=951fc44cd9e64856cdbe183d03bb29568600b9af0208088e36f65d6e015c90c4") format("woff");
}


@font-face {
  font-family: "flex-icon";
  src: url(//preludeliving.com/cdn/shop/t/74/assets/flex-icon.ttf?v=141001306366886470981756872548) format("truetype"), url(//preludeliving.com/cdn/shop/t/74/assets/flex-icon.woff?v=65562972783189949211756872548) format("woff"), url(//preludeliving.com/cdn/shop/t/74/assets/flex-icon.svg?v=122155750794120575381756872548) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Helvetica Neue Light"), url(//preludeliving.com/cdn/shop/t/74/assets/HelveticaNeueLight.ttf?v=111780761272459756351756872548) format("truetype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Helvetica Neue Regular"), url(//preludeliving.com/cdn/shop/t/74/assets/HelveticaNeueRegular.ttf?v=113640091301975881131756872548) format("truetype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Helvetica Neue Medium"), url(//preludeliving.com/cdn/shop/t/74/assets/HelveticaNeueMedium.ttf?v=72590359850373816431756872548) format("truetype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Helvetica Neue Bold"), url(//preludeliving.com/cdn/shop/t/74/assets/HelveticaNeueBold.ttf?v=135871523488749012631756872548) format("truetype");
}

@font-face {
  font-family: "Addington CF";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/cdn/shop/files/DMSans-Thin.ttf?v=1691052063) format("truetype");
}
@font-face {
  font-family: "Addington CF";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/cdn/shop/files/AddingtonCF-Light.ttf?v=1691036677) format("truetype");
}
@font-face {
  font-family: "Addington CF";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/cdn/shop/files/AddingtonCF-Regular.ttf?v=1691037096) format("truetype");
}
@font-face {
  font-family: "Addington CF";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/cdn/shop/files/AddingtonCF-Medium.ttf?v=1691036676) format("truetype");
}
@font-face {
  font-family: "Addington CF";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/cdn/shop/files/AddingtonCF-Bold.ttf?v=1691036676) format("truetype");
}


@font-face {
  font-family: "DM sans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/cdn/shop/files/DMSans-Light.ttf?v=1691051436) format("truetype");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/cdn/shop/files/DMSans-Regular.ttf?v=1691051435) format("truetype");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/cdn/shop/files/DMSans-Medium.ttf?v=1691051436) format("truetype");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/cdn/shop/files/DMSans-Bold.ttf?v=1691051436) format("truetype");
}
/* # Typography
================================================== */
body {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #6c6c6c;
  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: "Addington CF", Montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  text-transform: none;
  line-height: 1.5;
  color: #000000;
  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: 20px;
  }
}
h1 > a,
h1 > a:link,
h1 > a:visited,
.h1 > a,
.h1 > a:link,
.h1 > a:visited {
  color: #000000;
}
h1 > a:hover,
h1 > a:focus,
.h1 > a:hover,
.h1 > a:focus {
  color: #606060;
}

h2,
.h2 {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 23px;
  text-transform: none;
  line-height: 1.5;
  color: #000000;
  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: 18px;
  }
}
h2 > a,
h2 > a:link,
h2 > a:visited,
.h2 > a,
.h2 > a:link,
.h2 > a:visited {
  color: #000000;
}
h2 > a:hover,
h2 > a:focus,
.h2 > a:hover,
.h2 > a:focus {
  color: #606060;
}

h3,
.h3 {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  text-transform: none;
  line-height: 1.5;
  color: #000000;
  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: 16px;
  }
}
h3 > a,
h3 > a:link,
h3 > a:visited,
.h3 > a,
.h3 > a:link,
.h3 > a:visited {
  color: #000000;
}
h3 > a:hover,
h3 > a:focus,
.h3 > a:hover,
.h3 > a:focus {
  color: #606060;
}

h4,
.h4 {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  text-transform: none;
  line-height: 1.5;
  color: #000000;
  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: 14px;
  }
}
h4 > a,
h4 > a:link,
h4 > a:visited,
.h4 > a,
.h4 > a:link,
.h4 > a:visited {
  color: #000000;
}
h4 > a:hover,
h4 > a:focus,
.h4 > a:hover,
.h4 > a:focus {
  color: #606060;
}

h5,
.h5 {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  text-transform: none;
  line-height: 1.5;
  color: #000000;
  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: 12px;
  }
}
h5 > a,
h5 > a:link,
h5 > a:visited,
.h5 > a,
.h5 > a:link,
.h5 > a:visited {
  color: #000000;
}
h5 > a:hover,
h5 > a:focus,
.h5 > a:hover,
.h5 > a:focus {
  color: #606060;
}

h6,
.h6 {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  text-transform: none;
  line-height: 1.5;
  color: #000000;
  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: 12px;
  }
}
h6 > a,
h6 > a:link,
h6 > a:visited,
.h6 > a,
.h6 > a:link,
.h6 > a:visited {
  color: #000000;
}
h6 > a:hover,
h6 > a:focus,
.h6 > a:hover,
.h6 > a:focus {
  color: #606060;
}

a {
  color: #222222;
  cursor: pointer;
  text-decoration: none;
}
a strong {
  color: currentColor;
}
a:hover {
  color: #606060;
}

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: #000000;
  font-size: 26px;
  font-weight: 700;
  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: #000000;
  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: #222222;
  border-width: 2px;
  border-bottom: none;
}

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

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

.heading-divider--vertical {
  background: #222222;
  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: 1200px) {
  .is-hidden-large {
    display: none !important;
  }
}
@media only screen and (max-width: 798px) {
  .is-hidden-mobile-only {
    display: none !important;
  }
}
.gallery-cell.image-slideshow__slide .is-hidden-desktop-only {
  min-height: 500px;
  display: flex;
}

.gallery-cell.image-slideshow__slide .is-hidden-desktop-only .image-element__wrap {
  height: auto;
  max-height: 100%;
}

.gallery-cell.image-slideshow__slide .is-hidden-desktop-only .image-element__wrap img {
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 799px) {
  .slideshow-classic.image-slideshow .caption {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}


@media only screen and (min-width: 799px) {
  .is-hidden-desktop-only {
    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 #eeeeee;
}

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

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

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

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

.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 #eeeeee;
  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 #eeeeee;
  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 {
  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 #222222;
}

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

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

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

.zoomImg {
  background-color: #ffffff;
}

/* # 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.is-custom {
  width: 1010px;
  max-width: 100%;
}
.container.is-custom .column {
  margin-left: 20px;
  margin-right: 20px;
}
.container.logo_list_w .column[class].column-carousel {
  margin-left: 0;
  margin-right: 0;
  width: 25%;
  padding: 0 20px;
}
@media only screen and (max-width: 798px) {
  .container.logo_list_w .column[class].column-carousel {
    width: 50%;
    padding: 0 10px;
  }
}

.container.is-custom .column.one-whole {
  width: calc(100% - 40px);
}
@media only screen and (max-width: 798px) {
  .container.is-custom .column.one-whole {
    width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}
.container.is-custom .column.one-half {
  width: calc(50% - 40px);
}
.container.is-custom .column.one-third {
  width: calc(33.3333% - 40px);
}
@media only screen and (max-width: 798px) {
  .container.is-custom .column.one-third {
    width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}
.container.is-custom .column.one-fourth {
  width: calc(25% - 40px);
}
@media only screen and (max-width: 798px) {
  .container.is-custom .column.one-fourth {
    width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}
.container.is-custom .column.one-fifth {
  width: calc(20% - 40px);
}
@media only screen and (max-width: 798px) {
  .container.is-custom .column.one-fifth {
    width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}
.container.is-custom .column.one-sixth {
  width: calc(16.6666666% - 40px);
}
@media only screen and (max-width: 798px) {
  .container.is-custom .column.one-sixth {
    width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}
.container.is-custom .column.one-seventh {
  width: calc(14.2857142857% - 40px);
}
@media only screen and (max-width: 798px) {
  .container.is-custom .column.one-seventh {
    width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}
.container.is-custom .column.one-eighth {
  width: calc(12.5% - 40px);
}
@media only screen and (max-width: 798px) {
  .container.is-custom .column.one-eighth {
    width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}
.container.has-column-padding-bottom .column,
.container.has-column-padding-bottom .columns {
  margin-bottom: 40px;
}

.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: 40px;
  }
}

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

.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;
  }
}
/*================ Build Grid Push Classes ================*/
/* # Control
================================================== */
.pagination-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis, .file-cta,
.file-name, .select select, .input,
.textarea, .button, .not-found-404__page .not-found-text p > a {
  -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, .button:focus, .not-found-404__page .not-found-text p > a: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, .is-focused.button, .not-found-404__page .not-found-text p > a.is-focused, .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, .button:active, .not-found-404__page .not-found-text p > a: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, .is-active.button, .not-found-404__page .not-found-text p > a.is-active {
  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, [disabled].button, .not-found-404__page .not-found-text p > a[disabled], 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] .button, fieldset[disabled] .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text fieldset[disabled] p > a {
  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(238, 238, 238, 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.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: -webkit-min-content;
  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: -webkit-max-content;
  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: #cd3535;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  letter-spacing: 0;
}

/* # Button
================================================== */
.button, .not-found-404__page .not-found-text p > a {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  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: none;
  transition: background 0.2s ease-in-out;
  white-space: nowrap;
}
.button strong, .not-found-404__page .not-found-text p > a strong {
  color: inherit;
}
.button .icon, .not-found-404__page .not-found-text p > a .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), .not-found-404__page .not-found-text p > a .icon:first-child:not(:last-child) {
  margin-left: calc(-0.375em - 1px);
  margin-right: 10px;
}
.button .icon.icon--cart, .not-found-404__page .not-found-text p > a .icon.icon--cart {
  font-size: 14px;
}
.button .icon.icon--right, .not-found-404__page .not-found-text p > a .icon.icon--right {
  margin-left: 10px;
  margin-right: calc(-0.375em - 1px);
}
.button .icon:first-child:last-child, .not-found-404__page .not-found-text p > a .icon:first-child:last-child {
  margin-left: calc(-0.375em - 1px);
  margin-right: calc(-0.375em - 1px);
}
.button:hover, .not-found-404__page .not-found-text p > a:hover, .button.is-hovered, .not-found-404__page .not-found-text p > a.is-hovered {
  border-color: #606060;
  color: #606060;
}
.button:focus, .not-found-404__page .not-found-text p > a:focus, .button.is-focused, .not-found-404__page .not-found-text p > a.is-focused {
  border-color: #606060;
  color: #606060;
}
.button:active, .not-found-404__page .not-found-text p > a:active, .button.is-active, .not-found-404__page .not-found-text p > a.is-active {
  border-color: #606060;
  color: #606060;
}
.button.is-inverse, .not-found-404__page .not-found-text p > a.is-inverse {
  background-color: #363636;
  border-color: transparent;
  color: white;
}
.button.is-text, .not-found-404__page .not-found-text p > a.is-text {
  background-color: transparent;
  border-color: transparent;
  color: #6c6c6c;
  text-decoration: underline;
}
.button.is-text:hover, .not-found-404__page .not-found-text p > a.is-text:hover, .button.is-text.is-hovered, .not-found-404__page .not-found-text p > a.is-text.is-hovered, .button.is-text:focus, .not-found-404__page .not-found-text p > a.is-text:focus, .button.is-text.is-focused, .not-found-404__page .not-found-text p > a.is-text.is-focused {
  background-color: #ffffff;
  color: #363636;
}
.button.is-text:active, .not-found-404__page .not-found-text p > a.is-text:active, .button.is-text.is-active, .not-found-404__page .not-found-text p > a.is-text.is-active {
  background-color: #f2f2f2;
  color: #363636;
}
.button.is-text[disabled], .not-found-404__page .not-found-text p > a.is-text[disabled], fieldset[disabled] .button.is-text, fieldset[disabled] .not-found-404__page .not-found-text p > a.is-text, .not-found-404__page .not-found-text fieldset[disabled] p > a.is-text {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}
.button.is-small, .not-found-404__page .not-found-text p > a.is-small {
  font-size: 0.75rem;
}
.button.is-normal, .not-found-404__page .not-found-text p > a.is-normal {
  font-size: 1rem;
}
.button.is-medium, .not-found-404__page .not-found-text p > a.is-medium {
  font-size: 1.25rem;
}
.button.is-large, .not-found-404__page .not-found-text p > a.is-large {
  font-size: 1.5rem;
  line-height: 1.25em;
  width: 100%;
}
.button[disabled], .not-found-404__page .not-found-text p > a[disabled], fieldset[disabled] .button, fieldset[disabled] .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text fieldset[disabled] p > a {
  box-shadow: none;
  opacity: 0.5;
}
.button.is-fullwidth, .not-found-404__page .not-found-text p > a.is-fullwidth {
  display: flex;
  width: 100%;
}
.button.is-loading, .not-found-404__page .not-found-text p > a.is-loading {
  color: transparent !important;
  pointer-events: none;
}
.button.is-loading::after, .not-found-404__page .not-found-text p > a.is-loading::after {
  position: absolute;
  left: calc(50% - (1em / 2));
  top: calc(50% - (1em / 2));
  position: absolute !important;
}
.button.is-loading--icon-only, .not-found-404__page .not-found-text p > a.is-loading--icon-only {
  background: transparent !important;
  border: transparent !important;
  font-size: 2rem !important;
  outline: none;
}
.button.is-loading--icon-only::after, .not-found-404__page .not-found-text p > a.is-loading--icon-only::after {
  color: #6c6c6c;
}
.button.is-static, .not-found-404__page .not-found-text p > a.is-static {
  background-color: whitesmoke;
  border-color: #dbdbdb;
  color: #7a7a7a;
  box-shadow: none;
  pointer-events: none;
}
.button.is-rounded, .not-found-404__page .not-found-text p > a.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), .buttons.are-small .not-found-404__page .not-found-text p > a:not(.is-normal):not(.is-medium):not(.is-large), .not-found-404__page .not-found-text .buttons.are-small p > a: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), .buttons.are-medium .not-found-404__page .not-found-text p > a:not(.is-small):not(.is-normal):not(.is-large), .not-found-404__page .not-found-text .buttons.are-medium p > a: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), .buttons.are-large .not-found-404__page .not-found-text p > a:not(.is-small):not(.is-normal):not(.is-medium), .not-found-404__page .not-found-text .buttons.are-large p > a: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), .buttons.has-addons .not-found-404__page .not-found-text p > a:not(:first-child), .not-found-404__page .not-found-text .buttons.has-addons p > a:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.buttons.has-addons .button:not(:last-child), .buttons.has-addons .not-found-404__page .not-found-text p > a:not(:last-child), .not-found-404__page .not-found-text .buttons.has-addons p > a:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  margin-right: -1px;
}
.buttons.has-addons .button:last-child, .buttons.has-addons .not-found-404__page .not-found-text p > a:last-child, .not-found-404__page .not-found-text .buttons.has-addons p > a:last-child {
  margin-right: 0;
}
.buttons.has-addons .button:hover, .buttons.has-addons .not-found-404__page .not-found-text p > a:hover, .not-found-404__page .not-found-text .buttons.has-addons p > a:hover, .buttons.has-addons .button.is-hovered, .buttons.has-addons .not-found-404__page .not-found-text p > a.is-hovered, .not-found-404__page .not-found-text .buttons.has-addons p > a.is-hovered {
  z-index: 2;
}
.buttons.has-addons .button:focus, .buttons.has-addons .not-found-404__page .not-found-text p > a:focus, .not-found-404__page .not-found-text .buttons.has-addons p > a:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .not-found-404__page .not-found-text p > a.is-focused, .not-found-404__page .not-found-text .buttons.has-addons p > a.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .not-found-404__page .not-found-text p > a:active, .not-found-404__page .not-found-text .buttons.has-addons p > a:active, .buttons.has-addons .button.is-active, .buttons.has-addons .not-found-404__page .not-found-text p > a.is-active, .not-found-404__page .not-found-text .buttons.has-addons p > a.is-active, .buttons.has-addons .button.is-selected, .buttons.has-addons .not-found-404__page .not-found-text p > a.is-selected, .not-found-404__page .not-found-text .buttons.has-addons p > a.is-selected {
  z-index: 3;
}
.buttons.has-addons .button:focus:hover, .buttons.has-addons .not-found-404__page .not-found-text p > a:focus:hover, .not-found-404__page .not-found-text .buttons.has-addons p > a:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .not-found-404__page .not-found-text p > a.is-focused:hover, .not-found-404__page .not-found-text .buttons.has-addons p > a.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .not-found-404__page .not-found-text p > a:active:hover, .not-found-404__page .not-found-text .buttons.has-addons p > a:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .not-found-404__page .not-found-text p > a.is-active:hover, .not-found-404__page .not-found-text .buttons.has-addons p > a.is-active:hover, .buttons.has-addons .button.is-selected:hover, .buttons.has-addons .not-found-404__page .not-found-text p > a.is-selected:hover, .not-found-404__page .not-found-text .buttons.has-addons p > a.is-selected:hover {
  z-index: 4;
}
.buttons.has-addons .button.is-expanded, .buttons.has-addons .not-found-404__page .not-found-text p > a.is-expanded, .not-found-404__page .not-found-text .buttons.has-addons p > a.is-expanded {
  flex-grow: 1;
}
.buttons.is-center {
  justify-content: center;
}
.buttons.is-right {
  justify-content: flex-end;
}


  
  
  





.button--primary, .not-found-404__page .not-found-text p > a,
a.button--primary.button {
  font-size: 1rem;
  border-radius: 0px;
  width: auto;
  line-height: inherit;
  height: auto;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
}
.button--primary, .not-found-404__page .not-found-text p > a, .button--primary:link, .button--primary:visited,
a.button--primary.button,
a.button--primary.button:link,
a.button--primary.button:visited {
  color: #f1ebdd;
  background-color: #424240;
  border-color: rgba(0,0,0,0);
}
.button--primary:hover, .not-found-404__page .not-found-text p > a:hover, .button--primary.is-hovered, .not-found-404__page .not-found-text p > a.is-hovered,
a.button--primary.button:hover,
a.button--primary.button.is-hovered {
  color: #ffffff;
  border-color: rgba(0,0,0,0);
  background-color: #222222;
}
.button--primary:focus, .not-found-404__page .not-found-text p > a:focus, .button--primary.is-focused, .not-found-404__page .not-found-text p > a.is-focused,
a.button--primary.button:focus,
a.button--primary.button.is-focused {
  color: #ffffff;
  border-color: rgba(0,0,0,0);
  background-color: #222222;
}
.button--primary:focus:not(:active), .not-found-404__page .not-found-text p > a:focus:not(:active), .button--primary.is-focused:not(:active), .not-found-404__page .not-found-text p > a.is-focused:not(:active),
a.button--primary.button:focus:not(:active),
a.button--primary.button.is-focused:not(:active) {
  box-shadow: none;
}
.button--primary:active, .not-found-404__page .not-found-text p > a:active, .button--primary.is-active, .not-found-404__page .not-found-text p > a.is-active,
a.button--primary.button:active,
a.button--primary.button.is-active {
  color: #ffffff;
  border-color: rgba(0,0,0,0);
  background-color: #222222;
}
.button--primary.is-inverted, .not-found-404__page .not-found-text p > a.is-inverted,
a.button--primary.button.is-inverted {
  color: #424240;
  background-color: #f1ebdd;
  border-color: #424240;
}
.button--primary.is-small, .not-found-404__page .not-found-text p > a.is-small,
a.button--primary.button.is-small {
  font-size: 0.75rem;
}
.button--primary.is-normal, .not-found-404__page .not-found-text p > a.is-normal,
a.button--primary.button.is-normal {
  font-size: 1rem;
}
.button--primary.is-medium, .not-found-404__page .not-found-text p > a.is-medium,
a.button--primary.button.is-medium {
  font-size: 1.25rem;
}
.button--primary.is-large, .not-found-404__page .not-found-text p > a.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,
.not-found-404__page .not-found-text p > a.button--secondary {
  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,
.not-found-404__page .not-found-text p > a.button--secondary,
a.button--secondary.button:link,
a.button--secondary.button:visited {
  color: #f1ebdd;
  background-color: #424240;
  border-color: #222222;
  min-height: 42px;
}
.button--secondary:hover, .button--secondary.is-hovered,
.action_button--secondary:hover,
.action_button--secondary.is-hovered,
a.button--secondary.button:hover,
.not-found-404__page .not-found-text p > a.button--secondary:hover,
a.button--secondary.button.is-hovered,
.not-found-404__page .not-found-text p > a.button--secondary.is-hovered {
  color: #ffffff;
  border-color: #424240;
  background-color: #222222;
}
.button--secondary:focus, .button--secondary.is-focused,
.action_button--secondary:focus,
.action_button--secondary.is-focused,
a.button--secondary.button:focus,
.not-found-404__page .not-found-text p > a.button--secondary:focus,
a.button--secondary.button.is-focused,
.not-found-404__page .not-found-text p > a.button--secondary.is-focused {
  color: #ffffff;
  border-color: #424240;
  background-color: #222222;
}
.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(34, 34, 34, 0.25);
}
.button--secondary:active, .button--secondary.is-active,
.action_button--secondary:active,
.action_button--secondary.is-active,
a.button--secondary.button:active,
.not-found-404__page .not-found-text p > a.button--secondary:active,
a.button--secondary.button.is-active,
.not-found-404__page .not-found-text p > a.button--secondary.is-active {
  color: #ffffff;
  border-color: #424240;
  background-color: #222222;
}
.button--secondary.is-inverted,
.action_button--secondary.is-inverted,
a.button--secondary.button.is-inverted,
.not-found-404__page .not-found-text p > a.button--secondary.is-inverted {
  color: rgba(66, 66, 64, 0.0);
  background-color: #f1ebdd;
  border-color: rgba(66, 66, 64, 0.0);
}
.button--secondary.is-small,
.action_button--secondary.is-small,
a.button--secondary.button.is-small,
.not-found-404__page .not-found-text p > a.button--secondary.is-small {
  font-size: 0.75rem;
}
.button--secondary.is-normal,
.action_button--secondary.is-normal,
a.button--secondary.button.is-normal,
.not-found-404__page .not-found-text p > a.button--secondary.is-normal {
  font-size: 1rem;
}
.button--secondary.is-medium,
.action_button--secondary.is-medium,
a.button--secondary.button.is-medium,
.not-found-404__page .not-found-text p > a.button--secondary.is-medium {
  font-size: 1.25rem;
}
.button--secondary.is-large,
.action_button--secondary.is-large,
a.button--secondary.button.is-large,
.not-found-404__page .not-found-text p > a.button--secondary.is-large {
  font-size: 1.5rem;
  line-height: 1.25em;
  width: 100%;
}
.button--tertiary {
	border-radius: 50px;
	font-size: 14px;
	padding-left: 35px;
	padding-right: 35px;
}
.button--tertiary, .button--tertiary:link, .button--tertiary:visited {
	background-color: #DAD0B5;
	border-color: #DAD0B5;
	color: #495240;
	height: 50px;
}
.button--tertiary:hover, .button--tertiary.is-hovered,
.button--tertiary:focus, .button--tertiary.is-focused,
.button--tertiary:active, .button--tertiary.is-active {
	color: #ffffff;
	border-color: #222222;
	background-color: #222222;
	height: 50px;
}

.button--link-style,
a.button--link-style.button,
.not-found-404__page .not-found-text p > a.button--link-style {
  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,
.not-found-404__page .not-found-text p > a.button--link-style,
a.button--link-style.button:link,
a.button--link-style.button:visited {
  color: #222222;
  border-bottom-color: #222222;
}
.button--link-style:hover, .button--link-style.is-hovered,
a.button--link-style.button:hover,
.not-found-404__page .not-found-text p > a.button--link-style:hover,
a.button--link-style.button.is-hovered,
.not-found-404__page .not-found-text p > a.button--link-style.is-hovered {
  color: #6c6c6c;
  border-bottom-color: #6c6c6c !important;
}
.button--link-style:focus, .button--link-style.is-focused,
a.button--link-style.button:focus,
.not-found-404__page .not-found-text p > a.button--link-style:focus,
a.button--link-style.button.is-focused,
.not-found-404__page .not-found-text p > a.button--link-style.is-focused {
  color: #6c6c6c;
  border-bottom-color: #6c6c6c;
}
.button--link-style:active, .button--link-style.is-active,
a.button--link-style.button:active,
.not-found-404__page .not-found-text p > a.button--link-style:active,
a.button--link-style.button.is-active,
.not-found-404__page .not-found-text p > a.button--link-style.is-active {
  color: #6c6c6c;
  border-bottom-color: #6c6c6c;
}
.button--link-style.is-within-form,
a.button--link-style.button.is-within-form,
.not-found-404__page .not-found-text p > a.button--link-style.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,
.not-found-404__page .not-found-text p > a.button--add-to-cart {
  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,
.not-found-404__page .not-found-text p > a.button--add-to-cart,
a.button--add-to-cart.button:link,
a.button--add-to-cart.button:visited {
  color: #fff;
  background-color: #424240;
  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,
.not-found-404__page .not-found-text p > a.button--add-to-cart:hover,
a.button--add-to-cart.button.is-hovered,
.not-found-404__page .not-found-text p > a.button--add-to-cart.is-hovered {
  color: #fff;
  border-color: rgba(0,0,0,0) !important;
  background-color: #606060;
}
.button--add-to-cart:focus, .button--add-to-cart.is-focused,
a.button--add-to-cart.button:focus,
.not-found-404__page .not-found-text p > a.button--add-to-cart:focus,
a.button--add-to-cart.button.is-focused,
.not-found-404__page .not-found-text p > a.button--add-to-cart.is-focused {
  color: #fff;
  border-color: rgba(0,0,0,0);
  background-color: #606060;
}
.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(34, 34, 34, 0.25);
}
.button--add-to-cart:active, .button--add-to-cart.is-active,
a.button--add-to-cart.button:active,
.not-found-404__page .not-found-text p > a.button--add-to-cart:active,
a.button--add-to-cart.button.is-active,
.not-found-404__page .not-found-text p > a.button--add-to-cart.is-active {
  color: #fff;
  border-color: rgba(0,0,0,0);
  background-color: #606060;
}
.button--add-to-cart.is-inverted,
a.button--add-to-cart.button.is-inverted,
.not-found-404__page .not-found-text p > a.button--add-to-cart.is-inverted {
  color: #424240;
  background-color: #fff;
  border-color: #424240;
}
.button--add-to-cart.is-small,
a.button--add-to-cart.button.is-small,
.not-found-404__page .not-found-text p > a.button--add-to-cart.is-small {
  font-size: 0.75rem;
}
.button--add-to-cart.is-normal,
a.button--add-to-cart.button.is-normal,
.not-found-404__page .not-found-text p > a.button--add-to-cart.is-normal {
  font-size: 1rem;
}
.button--add-to-cart.is-medium,
a.button--add-to-cart.button.is-medium,
.not-found-404__page .not-found-text p > a.button--add-to-cart.is-medium {
  font-size: 1.25rem;
}
.button--add-to-cart.is-large,
a.button--add-to-cart.button.is-large,
.not-found-404__page .not-found-text p > a.button--add-to-cart.is-large {
  font-size: 1.5rem;
  line-height: 1.25em;
  width: 100%;
}

.shopify-challenge__button {
  font-size: 1rem;
  border-radius: 0px;
  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: #f1ebdd;
  background-color: #424240;
  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: #222222;
}
.shopify-challenge__button:focus, .shopify-challenge__button.is-focused {
  color: #ffffff;
  border-color: rgba(0,0,0,0);
  background-color: #222222;
}
.shopify-challenge__button:focus:not(:active), .shopify-challenge__button.is-focused:not(:active) {
  box-shadow: none;
}
.shopify-challenge__button:active, .shopify-challenge__button.is-active {
  color: #ffffff;
  border-color: rgba(0,0,0,0);
  background-color: #222222;
}
.shopify-challenge__button.is-inverted {
  color: #424240;
  background-color: #f1ebdd;
  border-color: #424240;
}
.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%;
}

/* # 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 #eeeeee;
  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 #eeeeee;
  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 #eeeeee;
  border-radius: 2px;
  color: #6c6c6c;
  cursor: pointer;
  font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
  font-size: 14px;
  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: #eeeeee;
  box-shadow: none;
}
.disclosure__toggle.is-clicked, .disclosure__toggle:focus, .disclosure__toggle:hover, .disclosure__toggle:focus-within {
  background-color: #ffffff;
  border-color: #eeeeee;
  color: rgba(108, 108, 108, 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 #eeeeee;
  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: #6c6c6c;
  cursor: pointer;
  display: block;
  font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
  font-size: 14px;
  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(108, 108, 108, 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 #eeeeee;
  border-radius: 2px;
  color: #6c6c6c;
  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(108, 108, 108, 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: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
  font-size: 14px;
  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--appear {
    opacity: 0;
    transition: opacity 0s !important, transform 0.3s ease-in-out;
  }
.transition--appear.lazyloaded {
    opacity: 1;
  }.image__container {
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-size: 0;
}
.image__container img {
  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(108, 108, 108, 0.35);
  background-color: rgba(108, 108, 108, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(108, 108, 108, 0.2);
}

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

/* # Social share
================================================== */
.share-btn.share-btn--twitter .button, .share-btn.share-btn--twitter .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .share-btn.share-btn--twitter p > a {
  color: #1DA1F1;
}
.share-btn.share-btn--twitter .button:hover, .share-btn.share-btn--twitter .not-found-404__page .not-found-text p > a:hover, .not-found-404__page .not-found-text .share-btn.share-btn--twitter p > a:hover {
  border-color: #1DA1F1;
  background-color: #1DA1F1;
}
.share-btn.share-btn--facebook .button, .share-btn.share-btn--facebook .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .share-btn.share-btn--facebook p > a {
  color: #4266B2;
}
.share-btn.share-btn--facebook .button:hover, .share-btn.share-btn--facebook .not-found-404__page .not-found-text p > a:hover, .not-found-404__page .not-found-text .share-btn.share-btn--facebook p > a:hover {
  border-color: #4266B2;
  background-color: #4266B2;
}
.share-btn.share-btn--pinterest .button, .share-btn.share-btn--pinterest .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .share-btn.share-btn--pinterest p > a {
  color: #E50122;
}
.share-btn.share-btn--pinterest .button:hover, .share-btn.share-btn--pinterest .not-found-404__page .not-found-text p > a:hover, .not-found-404__page .not-found-text .share-btn.share-btn--pinterest p > a:hover {
  border-color: #E50122;
  background-color: #E50122;
}
.share-btn.share-btn--mail .button, .share-btn.share-btn--mail .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .share-btn.share-btn--mail p > a {
  color: #F14336;
}
.share-btn.share-btn--mail .button:hover, .share-btn.share-btn--mail .not-found-404__page .not-found-text p > a:hover, .not-found-404__page .not-found-text .share-btn.share-btn--mail p > a:hover {
  border-color: #F14336;
  background-color: #F14336;
}
.share-btn .button, .share-btn .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .share-btn p > a {
  width: 38px;
  height: 38px;
}
.share-btn .button:hover, .share-btn .not-found-404__page .not-found-text p > a:hover, .not-found-404__page .not-found-text .share-btn p > a:hover {
  color: #FFFFFF;
}

.social-share-buttons--rounded .button, .social-share-buttons--rounded .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .social-share-buttons--rounded p > a {
  border-radius: 50%;
}

/* # Tag
================================================== */
.tags {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.tags .tag {
  margin-bottom: 0.5rem;
}
.tags .tag.tag--solid {
  background-color: rgba(34, 34, 34, 0.1);
}
.tags .tag.tag--solid a {
  color: #222222;
}
.tags .tag.tag--solid:hover {
  background-color: #222222;
}
.tags .tag.tag--solid:hover a {
  color: #ffffff;
}
.tags .tag.tag--outline {
  background-color: transparent;
  border: 1px solid #222222;
}
.tags .tag.tag--outline a {
  color: #222222;
}
.tags .tag.tag--outline:hover {
  background-color: #222222;
}
.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 #6c6c6c;
}
.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: #6c6c6c;
  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: #6c6c6c;
}
.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 #6c6c6c;
}

a.tag:hover {
  text-decoration: underline;
}

.tag--sale:not(body) {
  background-color: #cd3535;
  color: #6c6c6c;
}

.tag--new:not(body) {
  background-color: #222222;
  color: #ffffff;
}

.tag--best-seller:not(body) {
  background-color: #a32668;
  color: #ffffff;
}

.tag--coming-soon:not(body) {
  background-color: #222222;
  color: #ffffff;
}

.tag--staff-pick:not(body) {
  background-color: #222222;
  color: #ffffff;
}

.tag--pre-order:not(body) {
  background-color: #222222;
  color: #ffffff;
}

/* # AJAX cart - mini and drawer
================================================== */
.cart__count--text::before {
  content: "(";
}
.cart__count--text::after {
  content: ")";
}

#theme-ajax-cart {
  z-index: 50;
  max-height: 100vh;
  overflow-y: auto;
  box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
}
@media only screen and (max-width: 798px) {
  #theme-ajax-cart {
    z-index: 70;
  }
}
#theme-ajax-cart .ajax-cart__list button.swym-button.swym-add-to-wishlist-view-product {
  position: absolute;
  bottom: 25px;
  right: 20px;
  max-width: -webkit-max-content;
  max-width: max-content;
}
#theme-ajax-cart .ajax-cart__list button.swym-button.swym-add-to-wishlist-view-product:after {
  content: "Save to wishlist";
  font: 500 13px "Addington CF";
  color: #424240 !important;
  text-transform: initial;
  text-decoration: underline;
}
@media only screen and (max-width: 798px) {
  #theme-ajax-cart .ajax-cart__list button.swym-button.swym-add-to-wishlist-view-product:after {
    font-size: 11px;
  }
}
#theme-ajax-cart .ajax-cart__list button.swym-button.swym-add-to-wishlist-view-product.swym-added:after {
  content: "Added to wishlist";
}
@media only screen and (max-width: 798px) {
  #theme-ajax-cart .ajax-cart__list button.swym-button.swym-add-to-wishlist-view-product {
    right: 12px;
  }
}
#theme-ajax-cart .ajax-cart-recently-viewed-products__list {
  width: 100%;
}
#theme-ajax-cart .ajax-cart-recently-viewed-products-section {
  padding: 0 24px 260px;
}
@media only screen and (max-width: 798px) {
  #theme-ajax-cart .ajax-cart-recently-viewed-products-section {
    padding: 0 20px 260px;
  }
}
#theme-ajax-cart .ajax-cart-recently-viewed-products-section .product-wrap {
  padding: 0;
}
#theme-ajax-cart .ajax-cart-recently-viewed-products-section .product-wrap:hover {
  border-color: transparent;
}
#theme-ajax-cart .ajax-cart-recently-viewed-products-section .product__grid-item--ajax-cart-recently-viewed {
  padding-bottom: 15px !important;
}
#theme-ajax-cart .ajax-cart-recently-viewed-products-section .product-thumbnail {
  padding-top: 18px;
}
#theme-ajax-cart .ajax-cart-recently-viewed-products-section .slider__bar {
  display: block;
  margin-bottom: 20px;
}
#theme-ajax-cart .ajax-cart-recently-viewed-products__title {
  margin-bottom: 18px;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1;
  color: #424240;
}

.shipping-bar {
  padding: 20px 24px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 798px) {
  .shipping-bar {
    padding: 21px 20px;
  }
}

.shipping-bar__remain-message,
.shipping-bar__goal-message {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #424240;
}

.shipping-bar__bar {
  width: 100%;
  height: 6px;
  background-color: #d6d6d6;
  border-radius: 10px;
}

.shipping-bar__progress-bar {
  height: 6px;
  background-color: #424240;
  border-radius: 10px;
  transition: width 0.2s ease;
}

.ajax-cart {
  width: 100%;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: none;
  color: #6c6c6c;
}
.ajax-cart a,
.ajax-cart a:active,
.ajax-cart a:visited {
  color: #000000;
}
.ajax-cart a:hover {
  color: #000000;
}

.is-drawer,
.is-mini-cart .card {
  background-color: #fff;
}

.ajax-cart__header {
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: #ffffff;
}

.ajax-cart__close-icon {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
}
.ajax-cart__close-icon .icon {
  width: 22px;
  height: 22px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__close-icon {
    padding: 20px;
  }
}

.ajax-cart__cart-count {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d3d6d9;
}

.ajax-cart__cart-title {
  padding: 20px;
}
.ajax-cart__cart-title,
.ajax-cart__cart-title * {
  font-size: 18px;
  font-weight: bold;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__cart-title {
    padding: 14px 20px;
  }
}

.ajax-cart__list {
  padding: 20px 24px 12px;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__list {
    padding: 15px 20px 12px;
  }
}

.ajax-cart__product {
  position: relative;
  margin-top: 0;
  min-height: 124px;
  align-items: center;
  border: 1px solid #cccccc;
}
.ajax-cart__product:not(:first-child) {
  border-top: none;
}

.ajax-cart__product-image {
  width: 124px;
  height: 124px;
  margin-right: 0;
}
.ajax-cart__product-image a,
.ajax-cart__product-image img {
  display: inline-block;
  height: 100%;
  width: 100%;
}
.ajax-cart__product-image img {
  object-fit: cover;
}

.ajax-cart__product-content {
  padding: 15px 20px;
  min-height: 124px;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__product-content {
    padding: 7px 12px;
  }
}

@media only screen and (max-width: 798px) {
  .ajax-cart__product-title {
    max-width: calc(100% - 40px);
  }
}
.ajax-cart__product-title a {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #424240 !important;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__product-title a {
    font-size: 12px;
    line-height: 16px;
  }
}

.ajax-cart__product-variant {
  max-width: calc(100% - 63px);
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  color: #424240;
}

.ajax-cart__quantity-box {
  max-width: 150px;
  margin-top: 20px;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__quantity-box {
    line-height: 1;
    margin-top: 3px;
    margin-bottom: 2px;
  }
}
.ajax-cart__quantity-box .quantity-wrapper.quantity-style--box .quantity-input-control--fill {
  width: auto;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__quantity-box .quantity-wrapper.quantity-style--box .quantity-input-control--fill {
    width: 20px;
  }
  .ajax-cart__quantity-box .quantity-wrapper.quantity-style--box .quantity-input-control--fill .quantity-input {
    font-size: 10px !important;
    padding: 0;
  }
}
.ajax-cart__quantity-box .quantity-wrapper.quantity-style--box.is-medium .quantity-element {
  min-height: auto;
  min-width: 30px;
  height: 30px;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__quantity-box .quantity-wrapper.quantity-style--box.is-medium .quantity-element {
    min-width: 20px;
    height: 20px;
  }
}
.ajax-cart__quantity-box .quantity-wrapper.quantity-style--box.is-medium .quantity-plus,
.ajax-cart__quantity-box .quantity-wrapper.quantity-style--box.is-medium .quantity-minus {
  width: 30px;
  padding: 0;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__quantity-box .quantity-wrapper.quantity-style--box.is-medium .quantity-plus,
.ajax-cart__quantity-box .quantity-wrapper.quantity-style--box.is-medium .quantity-minus {
    width: 20px;
  }
}
.ajax-cart__quantity-box .quantity-plus.button, .ajax-cart__quantity-box .not-found-404__page .not-found-text p > a.quantity-plus, .not-found-404__page .not-found-text .ajax-cart__quantity-box p > a.quantity-plus,
.ajax-cart__quantity-box .quantity-minus.button,
.ajax-cart__quantity-box .not-found-404__page .not-found-text p > a.quantity-minus,
.not-found-404__page .not-found-text .ajax-cart__quantity-box p > a.quantity-minus {
  background-color: transparent;
  border: 0.5px solid #424240;
}
.ajax-cart__quantity-box .quantity-plus.button:hover, .ajax-cart__quantity-box .not-found-404__page .not-found-text p > a.quantity-plus:hover, .not-found-404__page .not-found-text .ajax-cart__quantity-box p > a.quantity-plus:hover,
.ajax-cart__quantity-box .quantity-minus.button:hover,
.ajax-cart__quantity-box .not-found-404__page .not-found-text p > a.quantity-minus:hover,
.not-found-404__page .not-found-text .ajax-cart__quantity-box p > a.quantity-minus:hover {
  background-color: transparent;
}
.ajax-cart__quantity-box .quantity-plus.button:hover .icon, .ajax-cart__quantity-box .not-found-404__page .not-found-text p > a.quantity-plus:hover .icon, .not-found-404__page .not-found-text .ajax-cart__quantity-box p > a.quantity-plus:hover .icon,
.ajax-cart__quantity-box .quantity-minus.button:hover .icon,
.ajax-cart__quantity-box .not-found-404__page .not-found-text p > a.quantity-minus:hover .icon,
.not-found-404__page .not-found-text .ajax-cart__quantity-box p > a.quantity-minus:hover .icon {
  fill: #424240;
}
.ajax-cart__quantity-box .quantity-plus.button[disabled], .ajax-cart__quantity-box .not-found-404__page .not-found-text p > a.quantity-plus[disabled], .not-found-404__page .not-found-text .ajax-cart__quantity-box p > a.quantity-plus[disabled],
.ajax-cart__quantity-box .quantity-minus.button[disabled],
.ajax-cart__quantity-box .not-found-404__page .not-found-text p > a.quantity-minus[disabled],
.not-found-404__page .not-found-text .ajax-cart__quantity-box p > a.quantity-minus[disabled] {
  background-color: transparent;
  opacity: 0.7;
}
.ajax-cart__quantity-box .quantity-plus.button .icon, .ajax-cart__quantity-box .not-found-404__page .not-found-text p > a.quantity-plus .icon, .not-found-404__page .not-found-text .ajax-cart__quantity-box p > a.quantity-plus .icon,
.ajax-cart__quantity-box .quantity-minus.button .icon,
.ajax-cart__quantity-box .not-found-404__page .not-found-text p > a.quantity-minus .icon,
.not-found-404__page .not-found-text .ajax-cart__quantity-box p > a.quantity-minus .icon {
  fill: #424240;
}
.ajax-cart__quantity-box .quantity-input {
  color: #424240;
}

.ajax-cart__right-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  align-self: flex-start;
}

.ajax-cart__price {
  position: absolute;
  right: 20px;
  bottom: 40px;
  padding: 5px 0;
}
.ajax-cart__price .money {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.54px;
}
.ajax-cart__price .money:not(.sale) {
  color: #424240;
  opacity: 1;
}
.ajax-cart__price .money.sale {
  color: #cb1b46;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__price {
    right: 12px;
  }
}

.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 {
  position: fixed;
  bottom: 0;
  z-index: 999;
  width: 520px;
  padding: 20px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 -2px 6px -2px rgba(0, 0, 0, 0.25);
}
.ajax-cart__details-wrapper .ajax-cart__details-row {
  padding: 10px 15px;
  height: 45px;
  background-color: #ffffff;
  border: 1px solid #d6d6d6;
}
.ajax-cart__details-wrapper .ajax-cart__details-row:not(:first-child) {
  border-top: 0;
}
.ajax-cart__details-wrapper .ajax-cart__details-row * {
  font-family: "DM-sans";
  color: #424240;
  font-size: 15px;
  font-weight: 700;
}
@media only screen and (max-width: 480px) {
  .ajax-cart__details-wrapper .ajax-cart__details-row * {
    font-size: 14px;
  }
}
.ajax-cart__details-wrapper .ajax-cart__count--text::before {
  content: "(";
}
.ajax-cart__details-wrapper .ajax-cart__count--text::after {
  content: ")";
}
@media only screen and (max-width: 798px) {
  .ajax-cart__details-wrapper .ajax-cart__row-description {
    max-width: 50%;
  }
}
@media only screen and (max-width: 798px) {
  .ajax-cart__details-wrapper {
    width: 100%;
  }
}

.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 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 0;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__empty-cart-message {
    padding: 40px 20px;
    justify-content: left;
  }
}

.ajax-cart__empty-text {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__empty-text {
    font-size: 18px;
    line-height: 20px;
  }
}

.ajax-cart__empty-extra-text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__empty-extra-text {
    display: none;
  }
}

.ajax-cart__button-wrapper {
  margin-top: 20px;
}
.ajax-cart__button-wrapper .ajax-cart__button {
  width: 100%;
}
.ajax-cart__button-wrapper .ajax-cart__button.button:first-child, .ajax-cart__button-wrapper .not-found-404__page .not-found-text p > a.ajax-cart__button:first-child, .not-found-404__page .not-found-text .ajax-cart__button-wrapper p > a.ajax-cart__button:first-child {
  margin-bottom: 10px;
}
.ajax-cart__button-wrapper .ajax-cart__button.button, .ajax-cart__button-wrapper .not-found-404__page .not-found-text p > a.ajax-cart__button, .not-found-404__page .not-found-text .ajax-cart__button-wrapper p > a.ajax-cart__button, .ajax-cart__button-wrapper .ajax-cart__button.button.button--add-to-cart {
  height: 50px;
  padding: 0;
  font: 700 14px/50px "DM sans" !important;
  color: #ffffff;
  background-color: #424240;
  border-radius: 2px;
  border: none;
  text-transform: uppercase;
}
.ajax-cart__button-wrapper .ajax-cart__button.button:hover, .ajax-cart__button-wrapper .not-found-404__page .not-found-text p > a.ajax-cart__button:hover, .not-found-404__page .not-found-text .ajax-cart__button-wrapper p > a.ajax-cart__button:hover, .ajax-cart__button-wrapper .ajax-cart__button.button.button--add-to-cart:hover {
  background-color: #606060;
}

.ajax-cart__cart-link {
  margin-top: 20px;
  display: block;
  text-decoration: underline;
}

.ajax-cart__delete {
  position: absolute;
  top: 15px;
  right: 15px;
}
.ajax-cart__delete .close {
  width: 20px;
  height: 20px;
  background-color: transparent;
}
.ajax-cart__delete .close .icon {
  width: 15px;
  height: 15px;
  max-height: 15px;
  max-width: 15px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__delete {
    top: 9px;
    right: 8px;
  }
}

.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;
  right: 0;
  visibility: hidden;
  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: #222222;
}
#theme-ajax-cart.is-mini-cart.theme-ajax-cart--header-vertical a:hover {
  color: #606060;
}

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

.ajax-cart__overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 550;
  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);
  }
}

#shopify-section-header-search-focus {
  z-index: 500;
}

#theme-ajax-cart.is-drawer {
  position: fixed;
  top: 0;
  z-index: 9999;
  height: 100%;
  bottom: 0;
  width: 520px;
  right: -520px;
  transition: right 0.3s ease-in-out;
}
@media only screen and (max-width: 798px) {
  #theme-ajax-cart.is-drawer {
    width: 100%;
    right: -100%;
  }
}
#theme-ajax-cart.is-drawer .ajax-cart__details-wrapper {
  right: -520px;
  transition: right 0.3s ease-in-out;
}
@media only screen and (max-width: 798px) {
  #theme-ajax-cart.is-drawer .ajax-cart__details-wrapper {
    width: 100%;
    right: -100%;
  }
}
#theme-ajax-cart.is-drawer.is-visible {
  right: 0;
}
#theme-ajax-cart.is-drawer.is-visible .ajax-cart__details-wrapper {
  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: #6b6b6b;
  display: flex;
  justify-content: center;
  padding: 0;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 300;
  font-size: 12px;
}
.breadcrumb a.underlined {
  text-decoration: underline;
}
.breadcrumb a:hover {
  color: #979797;
}
.breadcrumb li {
  align-items: center;
  color: #6b6b6b;
  display: flex;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 300;
  white-space: normal;
}
.breadcrumb li:not(.tag):first-child span {
  padding-left: 0;
}
.breadcrumb li.is-active a {
  color: #979797;
  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;
  margin: 0 8px;
}

@media only screen and (max-width: 480px) {
  .breadcrumb__container {
    flex-direction: column-reverse;
    flex-wrap: wrap;
    padding-bottom: 20px;
  }
}

/* # 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: #6c6c6c;
  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 #eeeeee;
  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 #eeeeee;
}

/* # Commerce
================================================== */
.was-price {
  text-decoration: line-through;
  opacity: 0.6;
}

/* # Form
================================================== */

.input,
.textarea {
  background-color: white;
  border-color: #eeeeee;
  color: #363636;
  box-shadow: none;
  max-width: 100%;
  width: 100%;
}
.input::-moz-placeholder,
.textarea::-moz-placeholder {
  color: rgba(54, 54, 54, 0.5);
}
.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: rgba(54, 54, 54, 0.5);
}
.input:-moz-placeholder,
.textarea:-moz-placeholder {
  color: rgba(54, 54, 54, 0.5);
}
.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: rgba(54, 54, 54, 0.5);
}
.input:hover, .input.is-hovered,
.textarea:hover,
.textarea.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 {
  border-color: #222222;
  box-shadow: 0 0 0 0.125em rgba(34, 34, 34, 0.25);
}
.input[disabled], fieldset[disabled] .input,
.textarea[disabled],
fieldset[disabled] .textarea {
  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 {
  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 {
  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 {
  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 {
  color: rgba(122, 122, 122, 0.3);
}
.input[readonly],
.textarea[readonly] {
  box-shadow: none;
}
.input.is-small,
.textarea.is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}
.input.is-medium,
.textarea.is-medium {
  font-size: 1.25rem;
}
.input.is-large,
.textarea.is-large {
  font-size: 1.25rem;
  height: 2em;
}
.input.is-fullwidth,
.textarea.is-fullwidth {
  display: block;
  width: 100%;
}
.input.is-inline,
.textarea.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: #222222;
  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: #eeeeee;
  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: #222222;
  box-shadow: 0 0 0 0.125em rgba(34, 34, 34, 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;
}
.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: #e8e8e8;
}
.file-label:active .file-cta {
  background-color: #e8e8e8;
  color: #363636;
}
.file-label:active .file-name {
  border-color: #e1e1e1;
}

.file-input {
  height: 100%;
  left: 0;
  opacity: 0;
  outline: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.file-cta,
.file-name {
  border-color: #eeeeee;
  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: #eeeeee;
  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,
.selector-wrapper label {
  color: #363636;
  display: block;
  font-size: 1rem;
  font-weight: 400;
}
.label:not(:last-child),
.selector-wrapper label:not(:last-child) {
  margin-bottom: 0.5em;
}
.label.is-small,
.selector-wrapper label.is-small {
  font-size: 0.75rem;
}
.label.is-medium,
.selector-wrapper label.is-medium {
  font-size: 1.25rem;
}
.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) .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .field.has-addons .control:not(:first-child):not(:last-child) p > a,
.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) .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .field.has-addons .control:first-child:not(:only-child) p > a,
.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) .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .field.has-addons .control:last-child:not(:only-child) p > a,
.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 .not-found-404__page .not-found-text p > a:not([disabled]):hover, .not-found-404__page .not-found-text .field.has-addons .control p > a:not([disabled]):hover, .field.has-addons .control .button:not([disabled]).is-hovered, .field.has-addons .control .not-found-404__page .not-found-text p > a:not([disabled]).is-hovered, .not-found-404__page .not-found-text .field.has-addons .control p > a: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 .not-found-404__page .not-found-text p > a:not([disabled]):focus, .not-found-404__page .not-found-text .field.has-addons .control p > a:not([disabled]):focus, .field.has-addons .control .button:not([disabled]).is-focused, .field.has-addons .control .not-found-404__page .not-found-text p > a:not([disabled]).is-focused, .not-found-404__page .not-found-text .field.has-addons .control p > a:not([disabled]).is-focused, .field.has-addons .control .button:not([disabled]):active, .field.has-addons .control .not-found-404__page .not-found-text p > a:not([disabled]):active, .not-found-404__page .not-found-text .field.has-addons .control p > a:not([disabled]):active, .field.has-addons .control .button:not([disabled]).is-active, .field.has-addons .control .not-found-404__page .not-found-text p > a:not([disabled]).is-active, .not-found-404__page .not-found-text .field.has-addons .control p > a: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 .not-found-404__page .not-found-text p > a:not([disabled]):focus:hover, .not-found-404__page .not-found-text .field.has-addons .control p > a:not([disabled]):focus:hover, .field.has-addons .control .button:not([disabled]).is-focused:hover, .field.has-addons .control .not-found-404__page .not-found-text p > a:not([disabled]).is-focused:hover, .not-found-404__page .not-found-text .field.has-addons .control p > a:not([disabled]).is-focused:hover, .field.has-addons .control .button:not([disabled]):active:hover, .field.has-addons .control .not-found-404__page .not-found-text p > a:not([disabled]):active:hover, .not-found-404__page .not-found-text .field.has-addons .control p > a:not([disabled]):active:hover, .field.has-addons .control .button:not([disabled]).is-active:hover, .field.has-addons .control .not-found-404__page .not-found-text p > a:not([disabled]).is-active:hover, .not-found-404__page .not-found-text .field.has-addons .control p > a: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;
  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;
	padding-left: 10px;
	padding-right: 10px;
}
.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, .newsletter-form .field.is-default-width .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .newsletter-form .field.is-default-width p > a {
  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%;
		padding-left: 10px;
		padding-right: 10px;
  }
}

.newsletter__text-wrapper {
  width: calc(100% - 12px);
}

.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, .not-found-404__page .not-found-text p > a,
.input,
.textarea,
.select select {
    font-size: 16px !important;
  }
}

/* #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: normal;
  padding: 0;
  position: relative;
  height: 30px;
}
@media only screen and (max-width: 480px) {
  .message-header {
    padding: 0;
  }
}
.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: 999;
}

.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, .fixed-message__button .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .fixed-message__button p > a {
  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-item:hover a span::before {
  background: #000;
}
.navbar-item > a span {
  position: relative;
  font-weight: 500;
}
span.red-link {
	color: #cd3535;
}
.navbar-item > a span::before {
  width: 100%;
  content: "";
  background: transparent;
  height: 1px;
  display: block;
  bottom: -5px;
  position: absolute;
}

.navbar-link {
  display: block;
  line-height: 1.5;
  padding: 1rem 1.125rem;
  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 .mega-menu__linklist-collection-image {
  max-height: unset;
  object-fit: cover;
}
.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: #222222;
}
.navbar-item.is-tab.is-active {
  border-bottom-color: #222222;
  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: 1.125rem;
}
.navbar-link:not(.is-arrowless)::after {
  display: none;
  right: 1em;
}

.navbar-dropdown {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.navbar-dropdown .navbar-link,
.navbar-dropdown .navbar-item {
  color: #000000;
  font-size: 14px;
  text-transform: none;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.navbar-dropdown .navbar-link:hover,
.navbar-dropdown .navbar-item:hover {
  color: #000000;
}
.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;
  }

  .dropdown-click--false .navbar-item.has-dropdown:hover .navbar-dropdown, .dropdown-click--false .navbar-item.has-dropdown.show-dropdown .navbar-dropdown, .dropdown-click--false .navbar-item.has-mega-menu:hover .navbar-dropdown, .dropdown-click--false .navbar-item.has-mega-menu.show-dropdown .navbar-dropdown {
    visibility: visible;
    opacity: 1;
    display: block;
  }

  .dropdown-click--true .navbar-item.has-dropdown.is-opened .navbar-dropdown, .dropdown-click--true .navbar-item.has-mega-menu.is-opened .navbar-dropdown {
    visibility: visible;
    opacity: 1;
    display: block;
  }

  .navbar-item {
    display: flex;
  }
  .navbar-item.has-dropdown a:after, .navbar-item.has-mega-menu a:after {
    font-size: 14px;
  }
  .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: 14px;
    letter-spacing: 0px;
    text-transform: none;
    background-color: #ffffff;
    display: none;
    left: 0;
    position: absolute;
    top: 100%;
    z-index: 20;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  }
  .navbar-dropdown.navbar-dropdown--below-parent {
    top: 100%;
  }
  .navbar-dropdown.is-right {
    left: auto;
    right: 0;
  }
  .navbar-dropdown.is-vertical {
    padding: 1rem 0.8em;
    max-width: 300px;
    min-width: 200px;
    margin-left: 18px;
  }
  .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;
  }

  .dropdown-click--false .has-dropdown:hover > .header__link,
.dropdown-click--false .has-dropdown:hover > .header__link > a,
.dropdown-click--false .has-mega-menu:hover > .header__link,
.dropdown-click--false .has-mega-menu:hover > .header__link > a,
.has-dropdown.is-opened > .header__link,
.has-dropdown.is-opened > .header__link > a,
.has-mega-menu.is-opened > .header__link,
.has-mega-menu.is-opened > .header__link > a {
    color: #000000;
  }
  .dropdown-click--false .has-dropdown:hover > .navbar-link::after,
.dropdown-click--false .has-mega-menu:hover > .navbar-link::after,
.has-dropdown.is-opened > .navbar-link::after,
.has-mega-menu.is-opened > .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(0, 0, 0, 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;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1319px) {
	.header__menu .navbar-link.header__link {
		padding-left: .45rem;
		padding-right: .45rem;
	}
}
@media only screen and (min-width: 1320px) and (max-width: 1380px) {
	.header__menu .navbar-link.header__link {
		padding-left: .75rem;
		padding-right: .75rem;
	}
}
@media only screen and (min-width: 1381px) and (max-width: 1460px) {
	.header__menu .navbar-link.header__link {
		padding-left: .84375rem;
		padding-right: .84375rem;
	}
}
.box-shadow-false .navbar-dropdown,
.box-shadow-false .mega-menu {
  box-shadow: none;
}

.header__menu-items2 {
  margin-left: auto;
}
.header__menu-items2.dropdown-click--false .has-dropdown:hover > .header__link {
  color: #495240;
}
.header__menu-items2 .header__link, .header__menu-items2 .header__link > a {
  font-family: "Addington CF";
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.83;
  letter-spacing: normal;
  color: #495240;
}
.header__menu-items2 .header__link.is-active, .header__menu-items2 .header__link > a.is-active {
  color: #495240;
  fill: #495240;
}
.header__menu-items2 .navbar-dropdown .navbar-item {
  font-family: "Addington CF";
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 30px;
}
.header__menu-items2 .navbar-dropdown .navbar-item:last-child {
  padding-bottom: 0;
}
.header__menu-items2 .navbar-dropdown.is-vertical {
  padding: 30px;
  min-width: 235px;
}
.header__menu-items2 .header__item-crate-barrel-rezward i {
  font-style: normal;
  font-weight: 300;
}
.header__menu-items2 span svg {
  position: relative;
  top: 3px;
  margin-right: 10px;
}
.header__menu-items2 span normal {
  font-weight: 400 !important;
}
.header__menu-items2 .navbar-item.header__item:last-child .navbar-dropdown {
  right: 0;
  left: auto !important;
}
.header__menu-items2 .navbar-item.header__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background: #979797;
  position: absolute;
  right: 0;
}

/* # 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: -1px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.pagination .pagination-next {
  margin-left: 0;
}
.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 -1px 0.25rem 0;
  text-align: center;
  min-width: 2.25em;
}

.pagination-link,
.pagination-ellipsis {
  border-color: #495240;
  color: #495240;
}
.pagination-previous:hover,
.pagination-next:hover,
.pagination-link:hover {
  border-color: #606060;
  color: #606060;
}
.pagination-previous:focus,
.pagination-next:focus,
.pagination-link:focus {
  border-color: #606060;
}
.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;
}

.boost.pagination-previous,
.boost.pagination-next {
  padding-left: 0;
  padding-right: 0;
}

.pagination-previous,
.pagination-next,
.pagination-link.is-current {
  background-color: #222222;
  border-color: #222222;
  color: #ffffff;
}

.pagination-ellipsis {
  color: #495240;
  pointer-events: none;
}
.collection__main .container--pagination .boost-pfs-filter-custom-total {
  font-size: 16px;
  margin: 40px auto;
  text-align: center;
}

@media only screen and (max-width: 798px) {
  .show-mobile {
    display: block !important;
  }
  .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: #eeeeee;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  color: #6c6c6c;
  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: #222222;
  color: #222222;
}
.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: #eeeeee;
  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: #eeeeee;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding-left: 0;
  margin-left: 0;
}
ul.tabs a {
  align-items: center;
  border-bottom-color: #eeeeee;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  color: #6c6c6c;
  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: #222222;
  color: #222222;
}
ul.tabs li a.active,
ul.tabs li a.is-active {
  border-bottom-color: #222222;
  color: #222222;
}
ul.tabs li a.active *,
ul.tabs li a.is-active * {
  color: #222222;
}

ul.tabs-content {
  margin-left: 0;
}ul.tabs a {
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
  }

ul.tabs a:hover {
    background-color: #ffffff;
    border-bottom-color: #eeeeee;
  }

ul.tabs li.is-active a, ul.tabs li.active a {
    background-color: white;
    border-color: #eeeeee;
    border-bottom-color: transparent !important;
  }

ul.tabs li a.is-active,
ul.tabs li a.active {
    background-color: white;
    border-color: #eeeeee;
    border-bottom-color: transparent !important;
  }ul.tabs.is-fullwidth li {
  flex-grow: 1;
  flex-shrink: 0;
}
ul.tabs.is-toggle a {
  border-color: #eeeeee;
  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: #222222;
  border-color: #222222;
  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;
}

.slider__bar {
  display: block;
  width: calc(100% - 20px);
  margin-right: 20px;
  height: 6px;
  background-color: #d6d6d6;
  border-radius: 6px;
}

.slider__progress-bar {
  display: block;
  height: 6px;
  background-color: #424240;
  border-radius: 6px;
  transition: width 0.3s;
}

.boost-pfs-search-suggestion-mobile-top-panel.boost-pfs-search-suggestion-mobile-top-panel #boost-pfs-search-box-mobile {
  border-radius: 0;
  border: 1px solid #424240;
  background: white;
  height: 33px;
  line-height: 33px;
  margin-top: 16px;
}

.boost-pfs-search-suggestion-group[aria-label=Suggestions].boost-pfs-search-suggestion-group[aria-label=Suggestions] .boost-pfs-search-suggestion-item a {
  color: #000000;
}

.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper .boost-pfs-search-suggestion-header,
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-header {
  padding: 12px 18px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 11px;
  line-height: 11px;
  font-weight: bold;
  color: #979797;
  background: #f2f2f2;
  text-transform: none;
}
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper .boost-pfs-search-suggestion-header + .boost-pfs-search-suggestion-item,
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-header + .boost-pfs-search-suggestion-item {
  padding: 5px 20px;
}
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper .boost-pfs-search-suggestion-header.boost-pfs-search-suggestion-header-view-all,
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-header.boost-pfs-search-suggestion-header-view-all {
  padding: 20px;
  background: transparent;
  border-top: 1px solid #dfdfdf;
}
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper .boost-pfs-search-suggestion-header.boost-pfs-search-suggestion-header-view-all > a,
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-header.boost-pfs-search-suggestion-header-view-all > a {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 13px;
  line-height: 13px;
  font-weight: 500;
  color: #000000;
  text-decoration: underline;
}
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper .boost-pfs-search-suggestion-item,
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-item {
  padding: 5px 20px;
}
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper .boost-pfs-search-suggestion-item > a,
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper .boost-pfs-search-suggestion-item > a b,
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-item > a,
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-item > a b {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #000000;
}
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper .boost-pfs-search-suggestion-item.boost-pfs-search-suggestion-item-product,
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-item.boost-pfs-search-suggestion-item-product {
  padding: 15px;
}
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper .boost-pfs-search-suggestion-item.boost-pfs-search-suggestion-item-product + .boost-pfs-search-suggestion-item-product,
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-item.boost-pfs-search-suggestion-item-product + .boost-pfs-search-suggestion-item-product {
  border-top: 1px solid #dfdfdf;
}
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper .boost-pfs-search-suggestion-item.boost-pfs-search-suggestion-item-product > .ui-menu-item-wrapper,
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-item.boost-pfs-search-suggestion-item-product > .ui-menu-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper .boost-pfs-search-suggestion-item.boost-pfs-search-suggestion-item-product .boost-pfs-search-suggestion-product-title,
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-item.boost-pfs-search-suggestion-item-product .boost-pfs-search-suggestion-product-title {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #424240;
}
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper .boost-pfs-search-suggestion-item.boost-pfs-search-suggestion-item-product .boost-pfs-search-suggestion-product-price,
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-item.boost-pfs-search-suggestion-item-product .boost-pfs-search-suggestion-product-price {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 11px;
  line-height: 14.96px;
  font-weight: 300;
  color: #424240;
}
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper .boost-pfs-search-suggestion-item.boost-pfs-search-suggestion-item-product .boost-pfs-search-suggestion-product-price .boost-pfs-search-suggestion-product-sale-price,
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-item.boost-pfs-search-suggestion-item-product .boost-pfs-search-suggestion-product-price .boost-pfs-search-suggestion-product-sale-price {
  color: #cb1b46;
}
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper .boost-pfs-search-suggestion-item-product .boost-pfs-search-suggestion-left,
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-item-product .boost-pfs-search-suggestion-left {
  max-width: 105px;
  width: 105px;
  margin-right: 22px;
}
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper .boost-pfs-search-suggestion-item-product .boost-pfs-search-suggestion-left > img,
.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-wrapper.boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-item-product .boost-pfs-search-suggestion-left > img {
  width: 100%;
  height: auto;
  object-position: center;
  object-fit: contain;
}

[class] .boost-pfs-search-btn-clear-suggestion {
  top: 12px;
  right: 10px;
}
[class] .boost-pfs-search-suggestion-mobile.boost-pfs-search-suggestion-wrapper {
  background: white;
}
[class] .boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion {
  background: white;
}
[class] .boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-header {
  text-align: left !important;
  border-radius: 0 !important;
  padding: 15px !important;
  background-color: #f2f2f2;
}
[class] .boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-header-view-all.boost-pfs-search-suggestion-header {
  text-align: center !important;
}
[class] .boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-header + .boost-pfs-search-suggestion-item {
  padding-top: 20px !important;
}
[class] .boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-item {
  border-radius: 0 !important;
}
[class] .boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-item b {
  font-weight: 700 !important;
}
[class] .boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-item:not(.boost-pfs-search-suggestion-item-product) {
  border: none !important;
}
[class] .boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-item:last-child {
  padding-bottom: 20px !important;
}
[class] .boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-group {
  margin: 0 !important;
}
[class] .boost-pfs-search-suggestion-mobile .boost-pfs-search-suggestion-header-view-all {
  margin-left: 0;
  margin-right: 0;
}

.container.banner__wrap img {
  width: 100%;
  height: 100%;
}
.container.banner__wrap .one-whole.column {
  margin-left: calc(80px / 2);
  margin-right: calc(80px / 2);
  width: calc(100% - 80px);
}
@media only screen and (max-width: 798px) {
  .container.banner__wrap .one-whole.column {
    margin: 0;
    width: 100%;
  }
}
.container.banner__wrap h1.image_banner-title {
  position: absolute;
  bottom: 55px;
  left: 95px;
  font-size: 50px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  color: #eff3f5;
  max-width: 701px;
}
@media only screen and (max-width: 798px) {
  .container.banner__wrap h1.image_banner-title {
    font-size: 40px;
    bottom: 30px;
    left: 20px;
    max-width: 320px;
  }
}
@media only screen and (max-width: 798px) {
  .container.banner__wrap .desctop-banner {
    display: none;
  }
}
.container.banner__wrap .mobile-banner {
  display: none;
}
@media only screen and (max-width: 798px) {
  .container.banner__wrap .mobile-banner {
    display: block;
  }
}

.article-create-and-become h1.image_banner-title {
  max-width: 528px;
}

/* # Product
================================================== */
#template-product ol {
  padding-inline-start: 20px;
}
#template-product ul {
  list-style: disc;
  margin-left: 20px;
}
#template-product ul ul {
  list-style: circle;
}
#template-product hr {
  height: 1px;
  background-color: #d6d6d6;
}
#template-product .section.is-width-standard {
  max-width: 1360px;
}
#template-product .breadcrumb__container {
  max-width: 1360px;
  margin: auto;
  padding: 15px 20px 20px;
}
@media only screen and (max-width: 798px) {
  #template-product .breadcrumb__container .breadcrumb ul {
    justify-content: flex-start;
  }
}
#template-product .recently-viewed-products-section .recently-viewed-products__title {
  margin-bottom: 35px;
}
@media only screen and (max-width: 798px) {
  #template-product .recently-viewed-products-section .recently-viewed-products__title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
  }
}
#template-product .block__yotpo-reviews {
  padding: 50px 0 20px;
}
@media only screen and (max-width: 798px) {
  #template-product .block__yotpo-reviews .product-block-title {
    width: 100%;
    text-align: center;
  }
}
#template-product .yotpo.bottomLine {
  display: none;
}
#template-product .yotpo.bottomLine .yotpo-stars {
  display: flex;
  align-items: center;
}
#template-product .yotpo.bottomLine .yotpo-stars .yotpo-icon {
  font-size: 10px !important;
  margin-right: 4px;
}
#template-product .yotpo.bottomLine a.text-m {
  margin-left: 20px;
  font: 300 11px/15px "Addington CF";
  color: #979797 !important;
}
@media only screen and (max-width: 798px) {
  #template-product .yotpo.bottomLine a.text-m {
    font-size: 16px;
    line-height: 22px;
  }
}
#template-product .main-widget.yotpo-display-wrapper * {
  outline: none;
}
#template-product .main-widget.yotpo-display-wrapper .write-review.yotpo-regular-box {
  color: #424240;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-messages *, #template-product .main-widget.yotpo-display-wrapper .write-review-wrapper * {
  font-family: "Addington CF", sans-serif;
  color: #424240;
}
#template-product .main-widget.yotpo-display-wrapper .write-review-wrapper .yotpo-submit {
  height: 50px;
  padding: 0;
  margin: 0;
  font: 500 14px/48px "Addington CF", sans-serif;
  color: #424240;
  background-color: transparent;
  border: 1px solid #424240;
  transition: background-color 0.2s ease, color 0.2s ease;
}
#template-product .main-widget.yotpo-display-wrapper .write-review-wrapper .yotpo-submit:hover {
  background-color: #424240 !important;
  color: #ffffff;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-label {
  display: none;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-regular-box.yotpo-bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  margin: 0;
  padding: 0;
  border-top: 0;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-sum-reviews, #template-product .main-widget.yotpo-display-wrapper .yotpo-sum-reviews * {
  font: 400 14px "Addington CF", sans-serif;
  color: #424240;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-first-review .yotpo-icon {
  color: #424240;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-default-button.write-review-button {
  padding: 0 15px;
  margin: 0;
  font: 500 14px/48px "Addington CF", sans-serif;
  color: #424240;
  text-decoration: underline;
  background-color: transparent;
  border: 1px solid #424240;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-default-button.write-review-button .yotpo-icon-button-text {
  color: #424240;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-default-button.write-review-button:not(.write-first-review-button) {
  height: 50px;
  width: 216px;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-icon-write {
  display: none;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-nav {
  padding-left: 0;
  padding-right: 0;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-nav-wrapper {
  padding-left: 10px;
  padding-bottom: 15px;
  border-bottom-width: 2px;
  border-color: #424240;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-nav-wrapper * {
  font: 400 12px/16px "DM sans", sans-serif;
  color: #424240;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-nav-tab {
  margin-bottom: -1px;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-regular-box.yotpo-review {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #cccccc;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-regular-box.yotpo-review .yotpo-header.yotpo-verified-user .yotpo-icon-circle-checkmark {
  color: #424240;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-icon-profile {
  background-color: #eff3f5;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-icon-profile .yotpo-user-letter {
  font: 500 15px/15px "Addington CF", sans-serif;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  #template-product .main-widget.yotpo-display-wrapper .yotpo-icon-profile {
    margin-left: 0;
  }
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-header-element {
  padding-top: 10px;
}
@media only screen and (max-width: 798px) {
  #template-product .main-widget.yotpo-display-wrapper .yotpo-header-element:not(.yotpo-icon-profile) {
    margin-left: 15px;
  }
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-header-element .yotpo-user-name {
  font: 400 12px/16px "Addington CF", sans-serif;
  color: #424240;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-header-element .yotpo-review-stars {
  margin-top: 5px;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-header-element .yotpo-review-stars .yotpo-icon {
  margin: 0 2px;
  font-size: 9px;
}
@media only screen and (max-width: 798px) {
  #template-product .main-widget.yotpo-display-wrapper .yotpo-header-element.yotpo-header-actions {
    display: block !important;
  }
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-main {
  margin-top: 20px;
  margin-bottom: 20px;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-main .content-title {
  padding-bottom: 10px;
  font: 400 12px/16px "Addington CF", sans-serif;
  color: #424240;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-main .content-review {
  font: 300 13px/20px "Addington CF", sans-serif;
  letter-spacing: 0.4px;
  color: #424240;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-footer .yotpo-icon-seperator {
  display: none;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-footer .yotpo-icon-share, #template-product .main-widget.yotpo-display-wrapper .yotpo-footer .y-label {
  color: #424240;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-footer .y-label {
  font: 400 14px/16px "Addington CF", sans-serif;
}
#template-product .main-widget.yotpo-display-wrapper .yotpo-footer .yotpo-helpful .yotpo-icon {
  color: #424240;
}
@media only screen and (max-width: 798px) {
  #template-product .main-widget.yotpo-display-wrapper .yotpo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #template-product .main-widget.yotpo-display-wrapper .yotpo-footer .yotpo-clr {
    display: none;
  }
}
@media only screen and (max-width: 798px) {
  #template-product .main-widget.yotpo-display-wrapper .yotpo-footer .footer-actions {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 798px) {
  #template-product .main-widget.yotpo-display-wrapper .yotpo-footer .footer-additional-actions {
    display: none;
  }
}
@media only screen and (max-width: 798px) {
  #template-product .main-widget.yotpo-display-wrapper {
    padding: 0 20px;
  }
}

.product_section {
  max-width: 1360px;
}

.product__images {
  position: relative;
  padding-right: 5px;
  padding-left: 10px;
}
@media only screen and (max-width: 798px) {
  .product__images {
    margin-bottom: 15px;
    padding: 0;
  }
}

@media only screen and (min-width: 799px) {
  .product-gallery.display-arrows--false .flickity-viewport:hover .flickity-prev-next-button,
.product-gallery.display-arrows--false .flickity-prev-next-button {
    display: none !important;
  }
}

.product-gallery__main {
  width: 100%;
}

.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__image {
  width: 100%;
  height: auto;
}
.product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-gallery__link {
  display: block;
}

.zoom-container {
  width: 100%;
  display: block;
}

.product-gallery.has-height-set model-viewer {
  margin: 0 auto;
}
.product-gallery.has-height-set .product-gallery__main img,
.product-gallery.has-height-set .product-gallery__main .plyr--html5 video {
  width: 100%;
}
.product-gallery.has-height-set .product-gallery__main img {
  object-fit: contain;
}
.product-gallery.has-height-set .product-gallery__main .plyr--youtube .plyr__video-embed {
  height: 100%;
}

.is-slide-nav--true .product-gallery__thumbnail {
  position: relative;
  opacity: 0.5;
}
.is-slide-nav--true .product-gallery__thumbnail.is-nav-selected {
  opacity: 1;
}

.product-thumbnail {
  padding-top: 10px;
  line-height: 1.2;
}

.product-thumbnail__vendor {
  display: block;
  font-size: 11px;
  margin-bottom: 4px;
}

.product-thumbnail__vendor,
.product-thumbnail__price {
  display: block;
}

.thumbnail__caption {
  padding: 0 3px;
}

.thumbnail-swatch {
  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 {
  border: 1px solid #eeeeee;
  min-height: 20px;
  min-width: 20px;
  display: inline-block;
  background-size: cover;
}
.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.is-slide-nav--false .product-gallery__thumbnail {
  margin-bottom: 20px;
  line-height: 0;
}
.product-gallery__thumbnails--bottom-thumbnails .product-gallery__thumbnail {
  width: 45px;
  height: 45px;
  margin: 0 10px;
}
.product-gallery__thumbnails--bottom-thumbnails .product-gallery__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 799px) {
  .product-thumbnail__vendor {
    margin-bottom: 0;
  }
  .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: auto;
    align-self: flex-start;
  }
  .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;
  }
}

@media only screen and (min-width: 799px) {
  .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: auto;
    align-self: flex-start;
    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 {
  padding-top: 20px;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 799px) {
  .product-gallery__thumbnails--right-thumbnails,
.product-gallery__thumbnails--left-thumbnails {
    display: block;
    width: 100%;
    margin: 0 10px 10px 10px;
    padding-top: 0;
    justify-content: flex-start;
    align-self: flex-start;
  }
  .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 {
    margin: 0;
    width: 100%;
    line-height: 0;
    cursor: pointer;
  }
  .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;
}

.product__share-pinterest {
  position: absolute;
  top: 17px;
  right: 62px;
  z-index: 10;
  width: 34px;
  height: 34px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #cccccc;
}
.product__share-pinterest .icon {
  width: 24px;
  height: 24px;
}

.swym-wishlist-button-bar {
  position: absolute;
  top: 17px;
  right: 15px;
  z-index: 10;
  width: 34px;
  height: 34px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #cccccc;
}
.ajax-cart__list .swym-wishlist-button-bar {
  display: none;
}
.swym-wishlist-button-bar .swym-btn-container[data-position=default] .swym-add-to-wishlist.swym-icon, .swym-wishlist-button-bar .swym-btn-container[data-position=default] .swym-add-to-wishlist.swym-icon:after {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 1px;
  width: 34px;
  height: 34px;
  font-size: 16px;
  color: #cccccc !important;
}

.savings {
  display: block;
}

.sold-out {
  color: rgba(108, 108, 108, 0.3);
}

/* # 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;
}
.product-gallery .product-gallery__main .flickity-prev-next-button {
  transition: all 0.3s ease-in-out;
}
.product-gallery .product-gallery__main .flickity-prev-next-button.previous {
  left: -5px;
}

.product-gallery .product-gallery__main .flickity-prev-next-button.next {
  right: -5px;
}
@media only screen and (max-width: 799px) {
  .product-gallery .product-gallery__main .flickity-prev-next-button.next, .product-gallery .product-gallery__main .flickity-prev-next-button.previous {
  display: none;
  }
}

.product-gallery .product-gallery__main .flickity-prev-next-button .flickity-button-icon {
  width: 100px;
  height: 18px;
}

.product-gallery .product-gallery__main .flickity-prev-next-button {
  top: initial;
  bottom: -67px;
  z-index: 10;
}




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

.product-gallery__thumbnails.product-gallery__thumbnails--bottom-thumbnails.js-gallery-carousel.is-slide-nav--true.flickity-enabled button {
    opacity: 0;
}

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

@media only screen and (max-width: 798px) {
  .product-gallery__thumbnails {
    margin-top: 15px;
  }
}

.product-gallery__main.slideshow-transition--fade .flickity-slider .product-gallery__image {
  opacity: 0 !important;
  transition: opacity 1s ease !important;
}
.product-gallery__main.slideshow-transition--fade .flickity-slider .product-gallery__image.is-selected {
  opacity: 1 !important;
}

/* # Product - blocks
================================================== */
.product-block-title {
  font-family: 'Addington CF';
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  color: #424240;
}

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

/* # Product details
==================================================*/
.product_name {
  margin-top: 6px;
  margin-bottom: 2px;
  font-size: 28px;
  line-height: 30px;
  font-weight: 500;
  color: #424240;
}

.product__vendor {
  font-size: 11px;
  line-height: 15px;
  font-weight: 300;
  color: #979797;
}
.product__vendor .vendor, .product__vendor .vendor a {
  font-weight: 700;
  color: #979797;
  text-decoration: underline;
}
@media only screen and (max-width: 798px) {
  .product__vendor {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
  }
}

.product__price {
  margin-top: 12px;
}


.product__price .was-price {
  margin-right: 8px;
  color: #424240;
  opacity: 1;
}
.product__price .sale {
  color: #cb1b46;
}
.product__price .money {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}

.product__stickers {
  margin: 25px 0;
}
@media only screen and (max-width: 798px) {
  .product__stickers {
    margin-top: 30px;
  }
}

.product__sticker {
  margin-right: 5px;
}
.product__sticker .sticker-text {
  display: inline-block;
  min-width: 106px;
  padding: 0 9px;
  text-align: center;
  border: 1px solid;
}
.product__sticker span, .product__sticker a {
  font-size: 11px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 0.54px;
}
.product__sticker.product__sticker--exclusive .sticker-text {
  color: #424240;
  border-color: #424240;
}

.product__description-text {
  margin-bottom: 20px;
}
.product__description-text, .product__description-text span, .product__description-text p {
  font-family: "DM-sans";
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #424240;
}

.product__description-button {
  font-family: "DM sans";
  font-size: 13px;
  line-height: 11px;
  font-weight: 400;
  letter-spacing: 0.4px;
  text-decoration: underline;
  color: #424240;
  cursor: pointer;
}

.hoolah-payment {
  font-size: 11px;
  line-height: 15px;
  font-weight: 300;
  color: #979797;
}
@media only screen and (max-width: 798px) {
  .hoolah-payment {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
  }
}
.hoolah-payment .hoolah-payment__link {
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.hoolah-popup {
  display: none;
}
.hoolah-popup.fancybox-content {
  position: relative;
  width: calc(100% - 40px);
  max-width: 704px;
  margin: auto;
  padding: 0;
  text-align: center;
  overflow: visible;
}
@media only screen and (max-width: 798px) {
  .hoolah-popup .hoolah-popup__inner {
    height: calc(100vH - 110px);
    overflow-y: auto;
  }
}
.hoolah-popup .hoolah-popup__close {
  position: absolute;
  top: -30px;
  right: -30px;
  cursor: pointer;
}
@media only screen and (max-width: 798px) {
  .hoolah-popup .hoolah-popup__close {
    right: -6px;
  }
}
.hoolah-popup .hoolah-popup__close .icon {
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 798px) {
  .hoolah-popup .hoolah-popup__image {
    display: none;
  }
}
.hoolah-popup .hoolah-popup__content {
  padding: 50px 65px 65px;
}
@media only screen and (max-width: 798px) {
  .hoolah-popup .hoolah-popup__content {
    padding: 40px 30px 60px 15px;
  }
}
.hoolah-popup .hoolah-popup__logo {
  max-width: 360px;
  height: 50px;
  margin: auto;
}
@media only screen and (max-width: 798px) {
  .hoolah-popup .hoolah-popup__logo {
    max-width: 285px;
    height: 40px;
  }
}
.hoolah-popup .hoolah-popup__logo img {
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 798px) {
  .hoolah-popup .hoolah-popup__steps {
    flex-direction: column;
  }
}
.hoolah-popup .hoolah-popup__step {
  position: relative;
  width: 33.3333333333%;
}
@media only screen and (max-width: 798px) {
  .hoolah-popup .hoolah-popup__step {
    display: flex;
    width: 100%;
  }
  .hoolah-popup .hoolah-popup__step:not(:last-child) {
    margin-bottom: 100px;
  }
}
.hoolah-popup .hoolah-popup__step-icon {
  position: absolute;
  right: 0;
  top: 12px;
  transform: translateX(50%);
}
@media only screen and (max-width: 798px) {
  .hoolah-popup .hoolah-popup__step-icon {
    right: initial;
    top: initial;
    left: calc(25% - 10px);
    bottom: -70px;
    transform: translateX(0);
  }
}
.hoolah-popup .hoolah-popup__step-heading {
  margin-top: 30px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 798px) {
  .hoolah-popup .hoolah-popup__step-heading {
    margin-top: 0;
  }
}
.hoolah-popup .hoolah-popup__heading, .hoolah-popup .hoolah-popup__step-heading {
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  color: #424240;
}
.hoolah-popup .hoolah-popup__heading {
  margin-top: 15px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 798px) {
  .hoolah-popup .hoolah-popup__heading {
    font-size: 20px;
    line-height: 20px;
  }
}
.hoolah-popup .hoolah-popup__step-calculation {
  height: 72px;
}
@media only screen and (max-width: 798px) {
  .hoolah-popup .hoolah-popup__step-calculation {
    height: auto;
    width: 50%;
    justify-content: center;
  }
}
.hoolah-popup .hoolah-popup__step-numbers {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: #d62e2e;
}
@media only screen and (max-width: 480px) {
  .hoolah-popup .hoolah-popup__step-numbers {
    font-size: 20px;
    line-height: 28px;
  }
}
.hoolah-popup .hoolah-popup__step-text {
  max-width: 150px;
  margin: 0 auto;
}
@media only screen and (max-width: 798px) {
  .hoolah-popup .hoolah-popup__step-text {
    width: 50%;
  }
}
.hoolah-popup .hoolah-popup__step-caption, .hoolah-popup .hoolah-popup__step-description {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #424240;
}

.product-form-container {
  padding-top: 20px;
}
@media only screen and (max-width: 798px) {
  .product-form-container {
    padding-top: 35px;
  }
  .product-form-container .product-quantity-box.purchase-details__quantity {
    justify-content: center;
  }
  .product-form-container .purchase-details .purchase-details__buttons {
    margin-top: 60px;
  }
}

.product_form .swatch {
  border: 1px solid #d6d6d6;
}
.product_form .swatch .swatch-element {
  border-bottom: 1px solid #d6d6d6;
  width: 100%;
  margin: 0;
}
.product_form .swatch .swatch-element:last-child {
  border-bottom: 0;
}
.product_form .swatch .swatch-element label {
  font-family: "DM sans";
  font-weight: 400;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  padding-left: 54px;
  letter-spacing: 0.4px;
  text-align: left;
  text-transform: inherit;
  white-space: normal;
}
.product_form .swatch .swatch-element label:before, .product_form .swatch .swatch-element label:after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  display: block;
  border-radius: 50%;
}
.product_form .swatch .swatch-element label:before {
  left: 19px;
  width: 18px;
  height: 18px;
  border: 1px solid #d6d6d6;
}
.product_form .swatch .swatch-element label:after {
  left: 22px;
  width: 12px;
  height: 12px;
  background-color: #d6d6d6;
  opacity: 0;
  transition: opacity 0.1s ease;
}
@media only screen and (max-width: 798px) {
  .product_form .swatch .swatch-element label {
    height: 80px;
    font-size: 16px;
    line-height: 22px;
  }
}
.product_form .swatch_options input:checked + .swatch-element {
  border-color: #d6d6d6;
  box-shadow: none;
}
.product_form .swatch_options input:checked + .swatch-element label:before {
  border-color: #424240;
}
.product_form .swatch_options input:checked + .swatch-element label:after {
  background-color: #424240;
  opacity: 1;
}
.product_form .quantity-input-control input.quantity-input {
  width: 66px;
}

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

/* NE compatibility
 * In the new editor this can be removed for the new product recommendations content section
 */
.recommended-products-section {
  visibility: hidden !important;
}

/* Ends NE compatibility */
/* # Product form
================================================== */

.product__size-chart {
  float: right;
}

.product__notify-form {
  margin-bottom: 1.5rem;
  max-width: 350px;
}

.notify-form__success-message {
  margin: 0;
}

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

.product_form--swatches .select-container {
  display: none;
}

.items_left {
  font-family: "DM sans";
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.4px;
  color: #cb1b46;
  font-weight: 400;
}

.quantity-wrapper {
  max-width: 166px;
  margin-right: 15px;
  margin-bottom: 0 !important;
}
.quantity-wrapper .quantity-element {
  min-height: 50px;
}
.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;
  position: absolute;
  bottom: -50px;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.4px;
  color: #cb1b46;
  margin-top: 0;
}

.cart-warning__message {
  font-size: 13px;
  color: #cb1b46;
}

.add_to_cart.action_button {
  margin-bottom: 0;
}

.shopify-payment-button {
  position: relative;
}

.shopify-payment-button button {
  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: 50px;
}

button.shopify-payment-button__more-options {
  color: #6c6c6c;
  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: "Addington CF", Montserrat, sans-serif;
  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;
  position: relative;
}

.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, .not-found-404__page .not-found-text p > a.quantity-plus,
.quantity-minus.button,
.not-found-404__page .not-found-text p > a.quantity-minus {
  background-color: #ffffff;
  border: thin solid #424240;
}
.quantity-plus.button:hover, .not-found-404__page .not-found-text p > a.quantity-plus:hover,
.quantity-minus.button:hover,
.not-found-404__page .not-found-text p > a.quantity-minus:hover {
  background-color: #ffffff;
}
.quantity-plus.button:hover .icon, .not-found-404__page .not-found-text p > a.quantity-plus:hover .icon,
.quantity-minus.button:hover .icon,
.not-found-404__page .not-found-text p > a.quantity-minus:hover .icon {
  fill: #424240;
}
.quantity-plus.button .icon, .not-found-404__page .not-found-text p > a.quantity-plus .icon,
.quantity-minus.button .icon,
.not-found-404__page .not-found-text p > a.quantity-minus .icon {
  width: 20px;
  fill: #424240;
}

.quantity-plus.button[disabled], .not-found-404__page .not-found-text p > a.quantity-plus[disabled],
.quantity-minus.button[disabled],
.not-found-404__page .not-found-text p > a.quantity-minus[disabled] {
  opacity: 1;
  background-color: #ffffff;
}

.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: 50px;
  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: 50px;
  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 {
  font-size: 13px;
  color: #424240;
  border-top: thin solid #adb2b8;
  border-bottom: thin solid #adb2b8;
}
.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(50px / 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(50px / 2);
  top: 0;
  right: 0;
  z-index: 3;
  width: 48px;
}
.quantity-wrapper.quantity-style--stacked .quantity-input {
  border-left: thin solid #adb2b8;
  border-top: thin solid #adb2b8;
  border-bottom: thin solid #adb2b8;
  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(50px / 2);
  min-height: calc(50px / 2);
  width: 48px;
  border-radius: 0;
  border-left: 0;
  border-bottom: thin solid #adb2b8;
  border-right: thin solid #adb2b8;
  border-bottom-right-radius: 0px !important;
  margin-right: 1px;
  z-index: 4;
  opacity: 1 !important;
}
.quantity-wrapper.quantity-style--stacked .quantity-plus {
  height: calc(50px / 2);
  min-height: calc(50px / 2);
  width: 48px;
  border: 0;
  border-left: 0;
  border-top: thin solid #adb2b8;
  border-right: thin solid #adb2b8;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  z-index: 4;
}

.product-quantity-box.purchase-details__quantity {
  width: 100%;
}
.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: 50px;
}

@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-top: 20px;
}
@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, .purchase-details__buttons .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .purchase-details__buttons p > a {
  width: 100%;
  height: auto;
  align-items: center;
  min-height: 50px;
}.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 #eeeeee;
  color: #6c6c6c;
  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 #424240;
  background-color: #424240;
  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));
  line-height: 1.2;
}
@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: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  text-transform: none;
  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: #424240;
  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: #606060;
}
.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: #606060;
}
.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(34, 34, 34, 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: #606060;
}
.purchase-details .purchase-details__spb--true .shopify-payment-button .shopify-payment-button__button--unbranded.is-inverted {
  color: #424240;
  background-color: #fff;
  border-color: #424240;
}
.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: 50px;
  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: 100%;
}
.purchase-details .purchase-details__spb--false .button--add-to-cart * {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.purchase-details .purchase-details__spb--false .button--add-to-cart .hyphen {
  width: 55px;
  height: 1px;
  margin-right: 25px;
  margin-left: 5px;
  background-color: #fffdfd;
}
.purchase-details .gwbutton {
  color: #fff;
  background-color: #424240;
  border-color: rgba(0, 0, 0, 0);
  text-align: center;
  font-size: 1rem;
  border-radius: 2px;
  width: 100%;
  line-height: inherit;
  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;
  white-space: nowrap;
  height: 50px;
  align-items: center;
  display: flex;
}
.purchase-details.has-quantity-box .purchase-details__spb--false {
  width: 100%;
}
.purchase-details.has-quantity-box .purchase-details__spb--false .button--add-to-cart {
  width: 100%;
  letter-spacing: 1.6px;
}

/* 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;
    }
  }
}
.shopify-product-form .swym-button-bar {
  display: none;
}

.product__images .swym-button.swym-add-to-wishlist-view-product {
  right: 15px;
  left: auto;
  position: absolute;
  top: 10px;
  z-index: 39;
  opacity: 1 !important;
}

.g_hide {
  display: none;
}

.GiftWizard-gift-button.g_hide.gwbutton {
  display: block;
}

/* # 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: #6c6c6c;
  font: inherit;
  text-transform: none;
  border-radius: 0px;
  border: 0;
}
.view-in-your-space svg path:first-child {
  stroke: #6c6c6c;
}
.view-in-your-space svg path:last-child {
  fill: #6c6c6c;
}

.plyr--video .plyr__controls {
  background: rgba(255, 255, 255, 0.6);
  padding: 10px;
}
.plyr--video .plyr__control {
  background: transparent;
  color: #6c6c6c;
}
.plyr--video .plyr__control:hover {
  background: #ffffff;
  color: #6c6c6c;
}
.plyr--video .plyr__controls__item.plyr__time,
.plyr--video input[type=range],
.plyr--video .plyr__controls__item {
  color: #6c6c6c;
}
.plyr--video .plyr__progress input[type=range] + .thumb {
  background-color: #6c6c6c;
  color: #6c6c6c;
}
.plyr--video input[type=range]::-webkit-slider-thumb {
  background-color: #6c6c6c;
}
.plyr--video input[type=range]::-moz-range-thumb {
  background-color: #6c6c6c;
}
.plyr--video input[type=range]::-ms-thumb {
  background-color: #6c6c6c;
}
.plyr--video .plyr__progress__buffer,
.plyr--video .plyr__control[aria-expanded=true] {
  background-color: rgba(108, 108, 108, 0.6);
}
.plyr--video .plyr__control.plyr__tab-focus {
  background-color: #6c6c6c;
}
.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: #6c6c6c;
}

.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: #6c6c6c;
  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: #6c6c6c;
  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(108, 108, 108, 0.55);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  background: #ffffff;
  border: 1px solid rgba(108, 108, 108, 0.05);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:not(:last-child):after {
  border-bottom: 1px solid rgba(108, 108, 108, 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: #6c6c6c;
}
.product-gallery__thumbnails .media-badge g path:first-child {
  stroke: #6c6c6c;
}
.product-gallery__thumbnails .media-badge .media-badge__outline {
  stroke: rgba(108, 108, 108, 0.05);
}

/* # Product thumbnail
================================================== */
.product__thumbnail.has-padding-bottom {
  padding-bottom: 20px;
}

.product-wrap {
  position: relative;
  height: 100%;
  padding: 15px 15px 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.product-wrap .swym-button.swym-add-to-wishlist-view-product {
  display: block !important;
  position: absolute;
  z-index: 20;
  top: 20px;
  right: 20px;
  width: 21px !important;
  height: 21px !important;
  background: transparent !important;
  opacity: 1 !important;
}
.product-wrap .swym-button.swym-add-to-wishlist-view-product.swym-heart:after {
  color: #424240 !important;
  font-size: 14px;
}
.product-wrap .product__imageContainer {
  position: relative;
  width: 100%;
}
.product-wrap .product__imageContainer:after {
  content: "";
  display: block;
  pointer-events: none;
  width: 100%;
  padding-bottom: 100%;
}
.product-wrap .product__imageContainer img, .product-wrap .product__imageContainer .product-thumbnail__video [data-youtube-video] {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.product-wrap .product__imageContainer img {
  max-height: 100%;
}
.product-wrap .product__imageContainer .product-thumbnail__video [data-youtube-video] {
  width: 100%;
}
.product-wrap .thumbnail__caption {
  padding: 0;
}
.product-wrap .thumbnail__caption .product-thumbnail__title {
  font-family: 'Addington CF';
  display: inline-block;
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  color: var(--text-font, #424240);
  font-style: normal;
}

.slider-gallery .product-wrap .thumbnail__caption .product-thumbnail__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
  height: 50px;
  min-height: 50px;
	margin-bottom: 5px;
	padding-top: 0;
}

.product-wrap .thumbnail__caption .product-thumbnail__title:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 798px) {
  .product-wrap .thumbnail__caption .product-thumbnail__title {
    line-height: 100%;
  }
}
.product-wrap .product-thumbnail__price.sale .money {
	color: #cb1b46;
}
.product-wrap .product-thumbnail__price.sale .was-price {
	color: #424240;
	opacity: 1;
}
.product-wrap .product-thumbnail__price.sale .was-price .money {
	color: #424240;
}
.product-wrap .product-thumbnail__price .money {
  font-family: "Helvetica Neue", "DM Sans";
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .product-wrap .product-thumbnail__price .money {
    line-height: 22px;
  }
}
.product-wrap .product__link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  display: block;
}

.product-image__wrapper {
  position: relative;
}
.product-image__wrapper video,
.product-image__wrapper iframe {
  width: 100%;
}
.product-image__wrapper:hover .thumbnail-overlay__container {
  display: flex;
}
.product-image__wrapper:hover .thumbnail-overlay__container .quick-shop__buttons,
.product-image__wrapper:hover .thumbnail-overlay__container .quick-shop__info {
  display: flex;
}
@media only screen and (max-width: 798px) {
  .product-image__wrapper:hover .thumbnail-overlay__container {
    opacity: 0;
    visibility: hidden;
  }
}

.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%;
  z-index: 10;
}
.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;
}

@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 .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 .product-thumbnail__title {
  display: block;
  padding-top: 3px;
}
.has-thumbnail-sticker .thumbnail-sticker:nth-child(1n+4) {
  display: none;
}

.thumbnail-sticker {
  display: flex;
  width: 100%;
  padding: 5px 10px;
  text-align: center;
}
.thumbnail-sticker.sale-sticker {
  background-color: #cd3535;
  color: #6c6c6c;
}
.thumbnail-sticker.new-sticker {
  background-color: #222222;
  color: #ffffff;
}
.thumbnail-sticker.best-seller-sticker {
  background-color: #a32668;
  color: #ffffff;
}
.thumbnail-sticker.coming-soon-sticker {
  background-color: #222222;
  color: #ffffff;
}
.thumbnail-sticker.staff-pick-sticker {
  background-color: #222222;
  color: #ffffff;
}
.thumbnail-sticker.pre-order-sticker {
  background-color: #222222;
  color: #ffffff;
}

.sticker-text {
  font-size: 1em;
}
@media only screen and (max-width: 1024px) {
  .sticker-text {
    font-size: 0.8em;
  }
}

.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%);
  font-size: 0.7em;
  word-wrap: normal;
}
@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-secondary-image-swap img.secondary {
display: none;
}

.has-secondary-image-swap .swap--visible {
/* opacity: 0; */
/* visibility: hidden; */
/* height: 0!important; */
}


/* # 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: #ffffff;
  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;
  }
.selector-wrapper {
    display: none;
  }
.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 {
    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;
  }
.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;
}
@media only screen and (max-width: 798px) {
  .announcement-bar {
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.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 .is-width-wide .close {
  right: 10px;
}
.announcement-bar .announcement-bar__close {
  position: absolute;
  right: 0;
}
@media only screen and (max-width: 798px) {
  .announcement-bar .padding {
    display: none;
  }
}

.announcement-bar__text {
  display: flex;
  align-items: center;
  font-family: "Addington CF";
  font-size: 12px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: center;
}
@media only screen and (max-width: 798px) {
  .announcement-bar__text {
    display: block;
    width: 100%;
    font-size: 14px;
  }
}

.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;
  height: 100%;
}
.announcement-bar__content p {
  padding: 0 0.5em;
  display: inline-block;
}
@media only screen and (max-width: 798px) {
  .announcement-bar__content p {
    display: block;
  }
}
.announcement-bar__content .container {
  justify-content: space-between;
  max-width: 1385px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
  height: 100%;
  align-items: center;
}
@media only screen and (max-width: 798px) {
  .announcement-bar__content .container {
    padding: 0;
  }
}

.announcement-bar__store-locator {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.announcement-bar__store-locator .announcement-bar__store-locator--ico {
  line-height: 1;
  height: 18px;
}
.announcement-bar__store-locator .announcement-bar__store-locator--ico,
.announcement-bar__store-locator .announcement-bar__store-locator--content {
	display: flex;
}
.announcement-bar__store-locator .announcement-bar__store-locator--content a{
  font-family: "Addington CF";
  font-size: 12px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  margin-left: 3px;
  color: #ffffff;
}

.announcement-bar__center {
  display: flex;
}
@media only screen and (max-width: 798px) {
  .announcement-bar__center {
    width: 100%;
  }
}

.announcement-bar__shadow {
  opacity: 0;
  visibility: hidden;
  min-height: 20px;
}

.announcement-bar--visible .announcement-container {
  transition: all 0s linear;
  height: auto;
}

.announcement-container {
  height: 0;
  overflow: hidden;
  position: relative;
  z-index: 999;
}

.cb2 a {
  color: #fff;
  display: block;
  width: 38px;
  height: 21px;
}
.cb2 a img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 798px) {
  .announcement-bar__right {
    display: none;
  }
}

@media only screen and (max-width: 798px) {
  .announcement-bar__left {
    display: none;
  }
}/* # 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: 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;
  }
}
.banner__wrapper.is-medium .image-element__wrap {
  height: 60vh;
}
@media only screen and (max-width: 798px) {
  .banner__wrapper.is-medium .image-element__wrap {
    height: auto;
  }
}
.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%;
}

.banner__text {
  margin: auto;
  max-width: 900px;
}
 
.banner__heading {
   font-family: "Addington CF";
  text-transform: none;
  color: #ffffff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
} 
@media only screen and (max-width: 1024px) {
  .banner__heading {
    font-size: 2.5em;
  }
}
@media only screen and (max-width: 480px) {
  .banner__heading {
    font-size: 2em;
  }
}

.banner__subheading {
   font-family: "Addington CF", "Mundo Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 1px;
  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;
}

/* # Banner
================================================== */
.collection-banner__wrapper {
  overflow: hidden;
  position: relative;
  max-height: 100vh;
}
.collection-banner__wrapper .image-element__wrap {
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.collection-banner__wrapper img {
  object-fit: cover;
  height: 100%;
}

.collection-banner__content {
  padding: 40px 20px;
  z-index: 3;
  max-width: 1400px;
  min-height: 180px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.collection-banner__text {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 799px) {
  .collection-banner__text {
    flex-wrap: nowrap;
  }
}
.collection-banner__text .collection-banner__heading,
.collection-banner__text .collection-banner__description {
  padding: 0;
  flex: 0 0 100%;
  color: #424240;
}
.collection-banner__text .collection-banner__heading {
  margin-bottom: 15px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 35px;
  line-height: 49px;
  font-weight: bold;
  color: #424240;
  
}

.collection-banner__description {
  overflow: hidden;
  transition: all 0.5s;
  margin-bottom: 8px;
}

@media only screen and (min-width: 799px) {
  .collection-banner__text .collection-banner__heading {
		font-size: 50px;
    margin-bottom: 0;
    margin-right: 32px;
    flex: 0 0 314px;
    width: 314px;
    max-width: 314px;
  }
}
.collection-banner__text .collection-banner__description {
  font-size: 16px;
  line-height: 20px;
  color: #424240;
}
@media only screen and (min-width: 799px) {
  .collection-banner__text .collection-banner__description {
    flex: 1 1 auto;
  }
}

.collection-banner__heading {
  font-family: "Mundo Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 48px;
  text-transform: none;
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .collection-banner__heading {
    font-size: 2.5em;
  }
}
@media only screen and (max-width: 480px) {
  .collection-banner__heading {
    font-size: 2em;
  }
}

.collection-banner__subheading {
  font-family: "Mundo Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 1px;
  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;
}

.collection-subclass {
	padding-top: 40px;
}

.section.is-width-wide.collection-subclass {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.collection-subclass-list {
  --collection-subclass-list-gap: 8px;
  display: flex;
  flex-flow: row nowrap;
  gap: var(--collection-subclass-list-gap);
  overflow: auto;
}
.collection-subclass-list .collection-subclass-item {
  margin-bottom: 16px;
  display: flex;
  flex: 0 0 100%;
  align-items: center;
  justify-content: space-between;
  background: #F2F2F2;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  will-change: box-shadow, transform;
  max-width: 280px;
}
.collection-subclass-list .collection-subclass-item:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 799px) {
  .collection-subclass-list {
    --collection-subclass-list-gap: 16px;
    flex-flow: row wrap;
    overflow: visible;
  }
  .collection-subclass-list .collection-subclass-item {
    flex: 0 0 calc(20% - var(--collection-subclass-list-gap) * 4 / 5);
    margin-bottom: 0;
  }
}
.collection-subclass-list .collection-subclass-item .collection-subclass-item__title {
  padding: 20px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
  color: #424240;
  text-transform: capitalize;
}
.collection-subclass-list .collection-subclass-item .collection-subclass-item__image {
  padding: 15px;
}
.collection-subclass-list .collection-subclass-item .collection-subclass-item__image img,
.collection-subclass-list .collection-subclass-item .collection-subclass-item__image svg {
  display: block;
  width: auto;
  height: 60px;
}

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

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

.contact-form--center {
  justify-content: center;
}

/* # Collection slider
================================================== */
.collection-slider-section {
  padding: 20px 0;
}
@media only screen and (max-width: 480px) {
  .collection-slider-section .section {
    margin-right: 0;
  }
}
.collection-slider-section .collection-slider__header {
  margin-bottom: 15px;
  flex-direction: column;
  text-align: center;
}
@media only screen and (max-width: 798px) {
  .collection-slider-section .collection-slider__header {
    text-align: left;
  }
}
.collection-slider-section .collection-slider__title {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 28px;
  font-weight: 700;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .collection-slider-section .collection-slider__title {
    font-size: 15px;
    line-height: 20px;
  }
}
.collection-slider-section .collection-slider__link {
  font-size: 10px;
  line-height: 16px;
  font-weight: 500;
  color: #424240;
  text-decoration: underline;
}
.collection-slider-section .slider-gallery {
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .collection-slider-section .slider-gallery {
    padding-bottom: 15px;
  }
}
.collection-slider-section .flickity-prev-next-button.previous {
  left: -20px;
}
.collection-slider-section .flickity-prev-next-button.next {
  right: -20px;
}
.collection-slider-section .slider__bar {
  display: none;
}
@media only screen and (max-width: 798px) {
  .collection-slider-section .flickity-prev-next-button {
    display: none;
  }
  .collection-slider-section .slider__bar {
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  .collection-slider-section .small-down--one-whole {
    width: calc(80% - 20px);
  }
}

/* # Featured collection
================================================== */
.featured-collection-section .featured-collection__title.title,
.block__featured-collection .featured-collection__title.title {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 20px;
  line-height: 20px;
  color: #424240;
  font-style: normal;
  font-weight: 500;
  text-transform: capitalize;
}
@media only screen and (min-width: 799px) {
  .featured-collection-section .featured-collection__title.title,
.block__featured-collection .featured-collection__title.title {
    font-size: 24px;
    line-height: 28.08px;
  }
}
.featured-collection-section .slider-gallery,
.block__featured-collection .slider-gallery {
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .featured-collection-section .slider-gallery .gallery-cell,
.block__featured-collection .slider-gallery .gallery-cell {
    width: 80%;
  }
  .featured-collection-section .slider-gallery .gallery-cell .product-wrap,
.block__featured-collection .slider-gallery .gallery-cell .product-wrap {
    border: none;
  }
}
@media only screen and (min-width: 799px) {
  .featured-collection-section .slider-gallery,
.block__featured-collection .slider-gallery {
    width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width: 798px) {
  .featured-collection-section .flickity-prev-next-button,
.block__featured-collection .flickity-prev-next-button {
    display: none;
  }
}
.featured-collection-section .flickity-prev-next-button.previous,
.block__featured-collection .flickity-prev-next-button.previous {
  left: -32px;
}
.featured-collection-section .flickity-prev-next-button.next,
.block__featured-collection .flickity-prev-next-button.next {
  right: -32px;
}

/* # 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;
  }
}
@media only screen and (max-width: 480px) {
  .featured-promotions .is-width-standard .featured-promotions__wrapper.container .featured-promotions__block {
    margin-bottom: 20px;
  }
}
.featured-promotions .is-width-standard .featured-promotions__wrapper.container .featured-promotions__block:last-child {
  margin-bottom: 0;
}

.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: #222222;
  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: #606060;
}

.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__content {
  background-color: #f4f2eb;
  color: #495240;
  font-size: 14px;
}
.footer__content a,
.footer__content a:visited {
  color: #495240;
}
.footer__content a:hover,
.footer__content a:active {
  color: #495240;
}

.footer__heading {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 18px;
  color: #495240;
  margin-bottom: 10px;
}

@media only screen and (max-width: 480px) {
  .footer__block {
    padding-bottom: 20px;
  }
}
.footer__block.block__logo .footer__heading {
  font-family: "Mundo Sans", sans-serif;
  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;
}

.footer__credits p {
  display: inline;
}.footer__container {
    max-width: 1280px;
    padding-right: 20px;
    padding-left: 20px;
    margin: 0 auto;
    color: #495240;
  }
.footer__container a {
    color: #495240;
  }
.footer__wrap {
    margin-left: -20px;
    margin-right: -20px;
    display: flex;
  }
.footer__wrap span {
    display: flex;
  }
.footer__wrap span * {
    padding-left: 10px;
  }
@media only screen and (max-width: 798px) {
    .footer__wrap span {
      display: block;
    }
  }
.footer__wrap.footer-copyright span * {
    padding: 0;
  }
@media only screen and (max-width: 798px) {
    .footer__wrap {
      flex-wrap: wrap;
    }
  }
.footer__upper-box {
    padding: 40px 20px 35px 20px;
    display: flex;
  }
@media only screen and (max-width: 798px) {
    .footer__upper-box {
      flex-basis: 100% !important;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0;
      margin-bottom: 30px;
    }

    .footer__upper-box:first-child {
        margin-top: 45px;
    }
  }
.footer__upper-box-link {
    padding-top: 10px;
  }
.footer__upper-box-link a {
    font-family: "Addington CF";
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.07;
    letter-spacing: normal;
    text-decoration: underline;
    text-align: left;
  }
.footer__upper-box-link a:hover {
    text-decoration: none;
  }
@media only screen and (max-width: 798px) {
    .footer__upper-box-link a {
      font-size: 12px;
      font-style: normal;
      font-weight: 400;
      line-height: 15px; /* 125% */
    }
  }
.footer__upper-box-social-link {
    display: flex;
    justify-content: flex-end;
    padding-top: 26px;
  }
.footer__upper-box-right {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
  }
.footer__upper-box-right .social-icons li {
    padding-right: 40px;
  }
.footer__upper-box-right .social-icons li:last-child {
    padding-right: 0;
  }
.footer__upper-box-right .social-icons .icon {
    width: 45px;
    height: 45px;
  }
.footer__upper-box-right .social-icons .icon[data-icon=facebook] {
    padding: 6px 0;
  }
.footer__extra-content {
    background: #495240;
    font-family: "Addington CF";
    font-size: 14px;
    font-weight: 500;
    line-height: 1.14;
    text-align: left;
    padding: 20px 0;
    color: #F1EBDD;
  }

  .footer__extra-content .footer__container {
    color: #F1EBDD;
  }

  
  .footer__extra-content .footer__container a {
    color: #F1EBDD;
  }
@media only screen and (max-width: 798px) {
    .footer__extra-content span {
      text-align: center;
      letter-spacing: 0.54px;
      font-size: 11px;
      width: 100%;
      padding: 0 20px;
    }
  }
.footer__upper-box-left {
    flex-basis: 50px;
    padding-right: 10px;
    padding-top: 10px;
  }
@media only screen and (max-width: 798px) {
    .footer__upper-box-left {
      padding-right: 0;
      padding-top: 0;
    }
  }
.footer__upper-box-left img {
    flex-basis: 40px;
  }
.footer__upper-box-title {
    font-size: 18px;
    font-family: "Addington CF";
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
  }
  

@media only screen and (max-width: 798px) {
    .footer__upper-box-title {
      font-size: 18px;
    }
  }
.footer__upper-box-title-rewards {
    width: 175px;
  }
.footer__upper-box-title-rewards svg {
    width: 175px;
  }
@media only screen and (max-width: 798px) {
    .footer__upper-box-title-rewards {
      width: 175px;
    }
  }
.footer__upper-box-desc {
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
  }
@media only screen and (max-width: 798px) {
    .footer__upper-box-desc {
      font-size: 11px;
      line-height: 1.36;
      text-align: center;
    }
    .footer__upper-box-desc {
      width: 60%;
      margin: 0 auto;
    }

    .footer__upper-box-right {
      width: 100%;
    }
  }
.footer__content {
    width: 100%;
  }
.footer__content .footer__content-container {
    max-width: 1280px;
    padding-right: 20px;
    padding-left: 20px;
    margin: 0 auto;
    color: #eff3f5;
  }
.footer__content .footer__content-wrap {
    margin-left: -20px;
    margin-right: -20px;
    display: flex;
    width: 100%;
  }
.footer__content .footer-box__heading {
    font-family: "Addington CF";
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.39;
    letter-spacing: normal;
    text-align: left;
    margin-top: 30px;
  }
@media only screen and (max-width: 798px) {
    .footer__content .footer-box__heading {
      text-align: center;
    }
  }
@media only screen and (max-width: 798px) {
    .footer__content .footer-box__logo {
      text-align: center;
    }
  }
@media only screen and (max-width: 798px) {
    .footer__content .footer-box__logo img {
      max-width: 195px;
    }
  }
.footer__content .footer-box__subheading {
    font-family: "Addington CF";
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.07;
    letter-spacing: normal;
    text-align: left;
    margin-top: 10px;
    color: #fff;
  }
@media only screen and (max-width: 798px) {
    .footer__content .footer-box__subheading {
      color: #ffffff;
      text-align: center;
      line-height: 1.38;
      font-size: 16px;
    }
  }
.footer__content .footer-box__menu-heading {
    font-family: "Addington CF";
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.39;
    letter-spacing: normal;
    text-align: left;
    margin-bottom: 25px;
    position: relative;
  }
@media only screen and (max-width: 798px) {
    .footer__content .footer-box__menu-heading {
      margin-bottom: 0;
      font-size: 15px;
    }
  }
@media only screen and (max-width: 798px) {
    .footer__content .footer-box__menu-heading::after {
      content: "";
      width: 25px;
      height: 25px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='26' fill='none' viewBox='0 0 25 26'%3E%3Cpath fill='%23495240' fill-rule='evenodd' d='M12.561 6.333c-.3 0-.545.244-.546.545l-.004 5.633-5.632.004c-.302 0-.546.245-.545.546 0 .302.244.546.545.545l5.52-.004-.005 5.519c0 .301.244.546.545.546.301 0 .546-.244.546-.545l.005-5.632 5.632-.005c.301 0 .545-.245.545-.546 0-.301-.245-.545-.546-.545l-5.52.005.005-5.52c0-.301-.243-.545-.545-.546z' clip-rule='evenodd'/%3E%3C/svg%3E");
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      transform: rotate(0deg);
      transition: all 0.5s;
    }
  }
@media only screen and (max-width: 798px) {
    .footer__content .footer-box__menu-linklist {
      display: none;
      padding-top: 20px;
    }
  }
.footer__content .footer-box__menu-linklist .footer-box__menu-link {
    margin-bottom: 10px;
  }
.footer__content .footer-box__menu-linklist .footer-box__menu-link:last-child {
    margin-bottom: 0;
  }
.footer__content .footer-box__menu-linklist .footer-box__menu-link a {
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
  }
.footer__content .footer-box__menu-linklist .footer-box__menu-link a:hover {
    text-decoration: underline;
  }
.footer__content .footer-box__wrap {
    padding: 50px 20px 20px 20px;
  }
@media only screen and (max-width: 798px) {
    .footer__content .footer-box__wrap {
      flex-basis: 100% !important;
      padding-bottom: 30px;
    }
  }
@media only screen and (max-width: 798px) {
    .footer__content .footer-box__wrap.footer-box__menu-wrap {
      padding: 20px 0;
      margin: 0 20px;
      border-top: 1px solid #d3d6d9;
    }
  }
@media only screen and (max-width: 798px) {
    .footer__content .footer-box__wrap.footer-box__menu-wrap:last-child {
      border-bottom: 1px solid #d3d6d9;
    }
  }
.footer__content .footer-box__wrap.active .footer-box__menu-heading::after {
    transform: rotate(45deg);
    transition: all 0.5s;
  }
.footer__content .footer-box__email {
    margin-top: 20px;
    position: relative;
  }
.footer__content .footer-box__email .quote {
    order: 2;
    margin-top: 20px;
  }
.footer__content .footer-box__email .newsletter-form--newsletter-section {
    display: flex;
    flex-wrap: wrap;
  }
.footer__content .newsletter-form {
    position: relative;
    width: 100%;
    order: 1;
  }
.footer__content .newsletter-form .field.is-stretched-width {
    flex: 1;
    min-width: 100%;
    max-width: 100%;
    position: relative;
    margin-bottom: 0;
  }
.footer__content .newsletter-form .field.is-stretched-width .control {
    width: 100%;
  }
.footer__content .newsletter-form .field.is-stretched-width label {
    position: absolute;
    z-index: 1;
    display: none;
  }
.footer__content .newsletter-form .field.is-stretched-width input {
    height: 40px;
    background: transparent;
    border-color: #d3d6d9;
    color: #fff;
  }
.footer__content .newsletter-form .field.is-stretched-width input:active, .footer__content .newsletter-form .field.is-stretched-width input:hover, .footer__content .newsletter-form .field.is-stretched-width input:focus {
    border-color: #d3d6d9;
    box-shadow: none;
    border: 1px solid #d3d6d9;
  }
.footer__content .newsletter-form .field.is-default-width {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 0;
    margin-bottom: 0;
  }
.footer__content .newsletter-form .field.is-default-width .control {
    width: 75px;
  }
.footer__content .newsletter-form .field.is-default-width .control .button.button--primary, .footer__content .newsletter-form .field.is-default-width .control .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .footer__content .newsletter-form .field.is-default-width .control p > a {
    text-decoration: underline;
    font-size: 12px !important;
    height: 40px;
    background: transparent;
  }
.footer__content .footer-box__footnotes {
    font-family: "Addington CF";
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.07;
    letter-spacing: normal;
    text-align: left;
    margin-top: 30px;
    color: #676f78;
  }
@media only screen and (max-width: 798px) {
    .footer__content .footer-box__footnotes {
      line-height: 1.36;
      font-size: 11px;
      text-align: center;
    }
  }
.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;
    }
  }
.footer-classic__disclosure {
    justify-content: flex-end;
  }
@media only screen and (max-width: 798px) {
    .footer-classic__disclosure {
      justify-content: center;
    }
  }
@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 currency/language switcher */
.footer-menu__disclosure {
  display: flex;
  padding-bottom: 20px;
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .footer-menu__disclosure {
    justify-content: center;
  }
}

.contact-form__form-errors {
  order: 2;
  margin-top: 10px;
  width: 100%;
}
.contact-form__form-errors .form__error {
  background: transparent;
  color: #cb1b46;
  margin-bottom: 0;
}

.footer__bottom-social {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px 0 0 0;
}
.footer__bottom-social .icon {
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 798px) {
  .footer__bottom-social {
    display: flex;
  }
}

.footer-box__email .hs_email {
  position: relative;
}
.footer-box__email .hs_email::after {
  position: absolute;
  left: 10px;
  top: 11px;
  display: block;
  content: "";
  width: 17px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' fill='none' viewBox='0 0 17 16'%3E%3Cg fill='%23676F78' clip-path='url(%23clip0)'%3E%3Cpath d='M16.916 6.937L15.08 5.1V2.857c-.001-.789-.614-1.427-1.371-1.429h-2.3L10.06.08c-.105-.107-.273-.107-.379 0L8.332 1.428H4.935c-.756.002-1.37.64-1.37 1.43v1.142c0 .158.122.286.274.286h.822V5.1L2.826 6.937c-.054.053-.084.128-.084.206v8.571c0 .158.123.286.274.286h13.71c.151 0 .274-.128.274-.286V7.143c0-.078-.03-.152-.085-.206zM15.08 5.893l.963.964h-.963v-.964zm0 1.535h.795l-.795.597v-.597zM12.887 4V2.857c0-.473.368-.857.823-.857.454 0 .822.384.822.857v5.58l-4.661 3.497L5.21 8.437V4.286h7.403c.151 0 .274-.128.274-.286zM9.871.682l.747.746H9.124L9.87.682zM4.113 3.714v-.857c0-.473.368-.857.822-.857h7.685c-.181.246-.28.547-.281.857v.857H4.113zm.548 2.18v.963h-.963l.963-.964zm0 1.534v.597l-.795-.597h.795zm-1.37.273l5.302 3.978-5.303 3.515V7.7zm.667 7.728l5.114-3.39.639.478c.095.072.224.072.32 0l.638-.478 5.115 3.39H3.958zm12.494-.235l-5.303-3.514 5.303-3.98v7.494z'/%3E%3Cpath d='M6.855 6.857h5.484v.572H6.855v-.572zM6.855 5.714h5.484v.572H6.855v-.572zM6.855 8h5.484v.571H6.855V8zM0 3.714h2.742v.572H0v-.572zM.823 4.857h3.016v.572H.823v-.572z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath fill='%23fff' d='M0 0H17V16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.footer-box__email .hs_email label {
  display: none;
}
.footer-box__email .hs_email .input {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: #2c2c2c;
  height: 40px;
}
.footer-box__email .hs_email .input input {
  border-radius: 0;
  background: #2c2c2c;
  border: 1px solid #d3d6d9;
  padding-left: 40px;
  color: #fff;
  font-weight: 300;
}
.footer-box__email .hs_email .hs-input {
  width: 100%;
  height: 100%;
}
.footer-box__email .hs-submit {
  position: absolute;
  top: 8px;
  right: 8px;
}
.footer-box__email .hs-submit input {
  font-family: "Addington CF";
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.85;
  letter-spacing: 0.4px;
  text-align: left;
  background: transparent;
  border: 0;
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}
.footer-box__email .hs-error-msgs {
  font-family: "Addington CF";
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: normal;
  text-align: left;
  font-weight: 300;
  color: #cb1b46;
}
.footer-box__email .hs-error-msgs li {
  text-align: center;
}
@media only screen and (min-width: 799px) {
  .footer-box__email .hs-error-msgs li {
    text-align: left;
  }
}
.footer-box__email .submitted-message {
  font-family: "Addington CF";
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: normal;
  text-align: left;
  font-weight: 300;
}

/* # 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 .is-width-wide {
  width: calc(100% - 30px);
  margin-left: 15px;
  margin-right: 15px;
}
.gallery .is-width-wide .gallery__wrapper {
  justify-content: space-between;
}
.gallery .is-width-wide .gallery__wrapper .gallery__item {
  margin: 0 2.5px !important;
  width: 90%;
}
.gallery .is-width-wide .gallery__wrapper:after {
  content: "flickity";
  display: none;
}
@media only screen and (min-width: 799px) {
  .gallery .is-width-wide .gallery__wrapper:after {
    content: "";
  }
}
@media only screen and (min-width: 799px) {
  .gallery .is-width-wide {
    width: calc(100% - 80px);
    margin-left: 40px;
    margin-right: 40px;
  }
  .gallery .is-width-wide .gallery__wrapper .gallery__item {
    width: calc(50% - 15px);
  }
}
.gallery .flickity-progress-wrap {
  margin-top: 30px;
}
@media only screen and (min-width: 799px) {
  .gallery .flickity-progress-wrap {
    display: none;
  }
}

.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 - Search focus
================================================== */.navbar {
    flex-wrap: wrap;
  }
.header {
    background-color: #f1ebdd;
    transition: background-color 0.3s linear, height 0.2s linear;
  }
@media only screen and (max-width: 798px) {
    .header {
      display: none;
    }
  }
.header__menu {
    width: 100%;
    border-top: 1px solid #424240;
    display: flex;
  }
.header__inner-content {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 0.7rem 0.75rem 0.5rem;
    width: 100%;
  }
.header__inner-content .header__currency-dropdown {
    overflow: visible;
  }
.header__logo {
    transition: all 0.1s linear;
    display: block;
  }
.header__logo + .header__logo-text {
    display: none;
  }
.header__search {
    flex: 1;
    padding: 0 2rem;
  }
.header__search .field {
    margin-bottom: 0;
  }
.header__search-bar {
    width: 100%;
  }
.header__search-bar input {
    border-radius: 0;
    border: 0.5px solid var(--field-border, #D3D6D9);
    font-family: "Addington CF";
    font-size: 13px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.54;
    letter-spacing: 0.4px;
    text-align: left;
    padding: 9px 20px;
    height: 39px;
  }
.header__search-bar input:-ms-input-placeholder {
    color: #adb2b8;
  }
.header__search-bar input::placeholder {
    color: #adb2b8;
  }
.header__search-bar input:focus, .header__search-bar input:hover {
    box-shadow: none;
    border: 0.5px solid #222;
  }
.header__search-button {
    border-radius: 0;
  }
.header__menu-items {
    height: 100%;
  }
.header-cart {
    position: relative;
  }
@media only screen and (max-width: 798px) {
    .header-cart {
      position: static;
    }
  }
.action-area__link.has-cart-count {
    padding-right: 1.8em;
  }
.header__menu-toggle {
    visibility: hidden;
    opacity: 0;
    position: absolute;
  }
/*
    .is-sticky .sticky-menu-wrapper {
      visibility: hidden;
      opacity: 0;
      max-height: 0;
      transition: visibility 0s linear 0.1s, opacity 0.33s linear, max-height 0.33s linear;
    }
  */
.sticky-header__menu {
    padding: 10px 0;
  }
.sticky-menu-wrapper.is-visible {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear, opacity 0.33s linear 0.1s, max-height 0.33s linear 0.1s;
    max-height: 100%;
  }
/*
    .is-sticky {

      .header__inner-content {
        padding-top: 0.5rem;
      }

      .header__menu-toggle {
        cursor: pointer;
        margin-right: 2rem;
        visibility: visible;
        position: relative;
        height: 100%;
        opacity: 1;
        transition: visibility 0s linear, opacity 0.33s linear 0.1s;
        display: flex;
        align-items: center;

        .header__close-menu {
          opacity: 0;
          visibility: hidden;
          position: absolute;
          transition: visibility 0s linear, opacity 0.33s linear 0.1s;
        }

        &.is-active {

          .header__open-menu {
            opacity: 0;
            visibility: hidden;
            position: absolute;
          }

          .header__close-menu {
            opacity: 1;
            visibility: visible;
            position: relative;
          }
        }
      }
    }
  */
.header__search .search__results-wrapper .thumbnail {
    max-width: 10%;
  }
.header__search .search__results {
    background-color: #ffffff;
    position: absolute;
  }.header-section .section {
  max-width: 1385px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px 0 10px;
}

/* # Header - Vertical
================================================== *//* # Header
================================================== */
@media only screen and (max-width: 1200px) {
  header.header {
    display: none;
  }
}

.header,
.mobile-header {
  font-family: 'Addington CF';
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  font-size: 14px;
  text-transform: none;
}

.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 {
  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: #495240;
  fill: #495240;
  font-weight: 600;
}
.header__link:hover, .header__link.is-active,
.header__link > a:hover,
.header__link > a.is-active {
  color: #000000;
  fill: #000000;
}

.header__logo-text {
  font-family: "Mundo Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  text-transform: none;
}

.header__logo-text,
h1.header__logo-text > a {
  color: #495240;
}
.header__logo-text:hover,
h1.header__logo-text > a:hover {
  color: #495240;
}

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

.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 10px;
  height: 100%;
}
@media only screen and (max-width: 798px) {
  .action-area__link {
    padding: 22px 6px;
  }
}
.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;
}
.action-area__link .icon {
  width: 25px;
  height: 25px;
}

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

/* Header currency/language switcher */
@media only screen and (min-width: 799px) and (max-width: 1024px) {
  .header-menu__disclosure .selectors-form__wrap {
    margin-bottom: 0;
  }
}
.header-menu__disclosure .disclosure {
  padding: 0.5rem 0;
}
.header-menu__disclosure .disclosure__toggle {
  margin-top: 0;
}
.header-menu__disclosure .disclosure__list-wrap {
  top: 100%;
  padding-top: 0;
  padding-bottom: 0;
  position: absolute;
}

/* # Heading
================================================== */
.heading-section__preheading {
  font-family: "Mundo Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
}

.heading-section__subheading {
  font-family: "Mundo Sans", sans-serif;
  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: 16px;
}
.icon-bar__block.is-large {
  font-size: 1.5rem;
}
.icon-bar__block .icon-bar__text {
  padding: 0 5px;
}

/* # Icon with text column
================================================== */
[data-icons-with-text]:after {
  content: "";
  display: none;
}
@media only screen and (max-width: 798px) {
  [data-icons-with-text]:after {
    content: "flickity";
  }
  [data-icons-with-text] .icon-with-text-column__column {
    width: 90% !important;
    padding: 0 15px;
  }
}

.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;
}
.icon-with-text-column .item {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .icon-with-text-column .item {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 798px) {
  .icon-with-text-column .item {
    margin-bottom: 0;
  }
}
.icon-with-text-column .item .icon-with-text-column__column {
  padding: 0;
}
.icon-with-text-column .item .item__image {
  flex: 0 0 auto;
  margin-right: 10px;
}
.icon-with-text-column .item .item__image img {
  height: 30px;
}
.icon-with-text-column .item .item__body {
  flex: 1 1 auto;
}
.icon-with-text-column .item .title,
.icon-with-text-column .item .description {
  margin: 0;
}
.icon-with-text-column .item .title {
  margin-bottom: 5px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 18px;
  line-height: 25.02px;
  font-weight: bold;
  color: #424240;
}
.icon-with-text-column .item .description {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #424240;
}
.icon-with-text-column.icon-with-text-column--home-staging .icon-with-text-column--home-staging__body {
  border: 1px solid #dfdfdf;
  padding: 40px 10px;
}
@media only screen and (min-width: 799px) {
  .icon-with-text-column.icon-with-text-column--home-staging .icon-with-text-column--home-staging__body {
    padding: 40px 105px;
  }
}
.icon-with-text-column.icon-with-text-column--home-staging .icon-with-text-column__column--title {
  margin-bottom: 40px;
}
@media only screen and (min-width: 799px) {
  .icon-with-text-column.icon-with-text-column--home-staging .icon-with-text-column__column--title {
    margin-bottom: 35px;
  }
}
.icon-with-text-column.icon-with-text-column--home-staging .icon-with-text-column__column--title .desktop-image {
  display: none;
}
@media only screen and (min-width: 799px) {
  .icon-with-text-column.icon-with-text-column--home-staging .icon-with-text-column__column--title .desktop-image {
    display: inline-block;
  }
}
.icon-with-text-column.icon-with-text-column--home-staging .icon-with-text-column__column--title .mobile-image {
  display: inline-block;
}
@media only screen and (min-width: 799px) {
  .icon-with-text-column.icon-with-text-column--home-staging .icon-with-text-column__column--title .mobile-image {
    display: none;
  }
}
.icon-with-text-column.icon-with-text-column--home-staging .item {
  margin-bottom: 50px;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}
@media only screen and (min-width: 799px) {
  .icon-with-text-column.icon-with-text-column--home-staging .item {
    margin-bottom: 0;
    align-items: flex-start;
  }
}
.icon-with-text-column.icon-with-text-column--home-staging .item__image {
  margin-bottom: 0;
  margin-right: 0;
}
.icon-with-text-column.icon-with-text-column--home-staging .button.button--primary, .icon-with-text-column.icon-with-text-column--home-staging .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .icon-with-text-column.icon-with-text-column--home-staging p > a {
  margin-top: 10px;
  padding: 15px;
  min-width: 250px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 14px !important;
  line-height: 14px !important;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background: #424240;
}

/* # Image with text
================================================== */
@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 .buttons .button--link-style {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 16.05px;
  color: #424240;
}

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

@media only screen and (max-width: 798px) {
  .image-with-text__text-column {
    order: 1;
  }
}
.image-with-text__text-column.half-width {
  width: 100%;
  max-width: 670px;
}

.image-with-text__container {
  width: 100%;
}

.image-with-text__text {
  margin-bottom: 30px !important;
  font-family: "DM Sans", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #424240;
}
@media only screen and (min-width: 799px) {
  .image-with-text__text {
    font-size: 16px;
    line-height: 20px;
  }
}

.image-with-text__heading {
  margin-bottom: 20px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  color: #424240;
  text-transform: capitalize;
}
@media only screen and (min-width: 799px) {
  .image-with-text__heading {
    font-size: 24px;
    line-height: 28.08px;
  }
}

.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 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: 20px;
  font-family: "Mundo Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}
.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: "Addington CF", Montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 52.0px;
  text-transform: none;
  line-height: 1.5;
  color: #000000;
  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: 41px;
  }
}
.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: #000000;
}
.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: #606060;
}
.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, .image-with-text-overlay__buttons .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .image-with-text-overlay__buttons p > a {
  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, .image-with-text-overlay__buttons .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .image-with-text-overlay__buttons p > a {
    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, .image-with-text-overlay__buttons .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .image-with-text-overlay__buttons p > a {
    flex: 1 0 100%;
  }
}

/* # List of collections page
================================================== */
.list-collections__header {
  padding: 23px 5px 50px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .list-collections__header {
    flex-direction: column;
    padding: 0 0 30px;
  }
}

.list-collections__title {
  width: 24%;
  font-size: 48px;
  line-height: 50px;
  font-weight: 500;
}
@media only screen and (max-width: 1400px) {
  .list-collections__title {
    width: 35%;
  }
}
@media only screen and (max-width: 798px) {
  .list-collections__title {
    width: 100%;
    margin-bottom: 10px;
    letter-spacing: -1px;
  }
}

.list-collections__description {
  width: 76%;
  padding-left: 10px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
}
@media only screen and (max-width: 1400px) {
  .list-collections__description {
    width: 65%;
  }
}
@media only screen and (max-width: 798px) {
  .list-collections__description {
    width: 100%;
    padding-left: 0;
  }
}

.list-collections .list-collections-main__item.column {
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 45px;
  width: calc(25% - 10px);
}
@media only screen and (max-width: 798px) {
  .list-collections .list-collections-main__item.column {
    width: calc(50% - 10px);
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .list-collections .list-collections-main__item.column {
    width: calc(100% - 50px);
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 25px;
  }
}
.list-collections .collection-item__image {
  position: relative;
  width: 100%;
}
.list-collections .collection-item__image:after {
  content: "";
  display: block;
  pointer-events: none;
  width: 100%;
  padding-bottom: 100%;
}
.list-collections .collection-item__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  max-height: 100%;
  min-width: 100%;
  object-fit: cover;
}
.list-collections .collection-item__image .collection-item__overlay {
  width: 100%;
  height: 100%;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 19;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease, opacity 0.2s ease;
}
.list-collections .collection-item__image .collection-item__overlay .collection-item__overlay-title {
  font-size: 28px;
  line-height: 30px;
  font-weight: 700;
}
.list-collections .collection-item__image:hover .collection-item__overlay {
  visibility: visible;
  opacity: 1;
}
.list-collections .collection-title {
  margin-top: 15px;
  font-size: 19px;
  line-height: 1;
  font-weight: 700;
  color: #424240;
}
.list-collections .collection-link {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-decoration: underline;
}
.list-collections .collection-link, .list-collections .collection-link:hover {
  color: #424240;
}

.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: "Addington CF", Montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  text-transform: none;
  line-height: 1.5;
  color: #000000;
  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: 20px;
  }
}
.collection-info__caption .title > a,
.collection-info__caption .title > a:link,
.collection-info__caption .title > a:visited {
  color: #000000;
}
.collection-info__caption .title > a:hover,
.collection-info__caption .title > a:focus {
  color: #606060;
}

.collection-info__caption--below-image {
  padding: 20px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (min-width: 799px) {
  .collection-info__caption--below-image {
    padding: 10px;
  }
}
.collection-info__caption--below-image .title {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 18px;
  line-height: 25.02px;
  font-weight: bold;
  color: #424240;
  text-align: left;
}
.collection-info__caption--below-image .description {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #424240;
  min-height: 60px;
}
.collection-info__caption--below-image .button, .collection-info__caption--below-image .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .collection-info__caption--below-image p > a {
  margin-top: 20px;
}

.collection-list .section {
  max-width: 1175px;
}
.collection-list .section .one-fourth {
  width: calc(25% - 5px);
  margin-left: 2.5px;
  margin-right: 2.5px;
}
.collection-list [data-collection-list]:after {
  content: "";
  display: none;
}
@media only screen and (max-width: 798px) {
  .collection-list [data-collection-list] .column {
    width: 80% !important;
  }
  .collection-list [data-collection-list]:after {
    content: "flickity";
  }
}
.collection-list .title {
  margin-bottom: 30px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  color: #424240;
  text-transform: capitalize;
}
@media only screen and (min-width: 799px) {
  .collection-list .title {
    font-size: 24px;
    line-height: 28.08px;
  }
}
.collection-list .product-wrap {
  padding: 0;
  justify-content: flex-start;
  border: none;
}
.collection-list .product-wrap:hover .image__container .collection-info__caption-wrapper {
  opacity: 0.75;
}
.collection-list .product-wrap .image__container,
.collection-list .product-wrap .collection-info__caption-wrapper {
  z-index: 100;
}
.collection-list .product-wrap .image__container {
  position: relative;
}
.collection-list .product-wrap .image__container .collection-info__caption-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--text-font, #424240);
  opacity: 0;
  display: none;
}
@media only screen and (min-width: 799px) {
  .collection-list .product-wrap .image__container .collection-info__caption-wrapper {
    display: flex;
  }
}
.collection-list .product-wrap .image__container .collection-info__caption-wrapper .title {
  font-size: 18px;
  line-height: 25.02px;
  font-weight: bold;
  color: var(--brand-brand-2, #F1EBDD);
  font-weight: 500;
  letter-spacing: -1.5px;
text-transform: uppercase;
}
@media only screen and (min-width: 799px) {
  .collection-list .product-wrap .image__container .collection-info__caption-wrapper .title {
    font-size: 28px;
    line-height: 29.96px;
  }
}
.collection-list .product-wrap .image-element__wrap {
  max-width: none !important;
  width: 100%;
}
.collection-list .product-wrap .image-element__wrap img {
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .collection-list .product-wrap .image-element__wrap {
    max-width: none !important;
  }
}
.collection-list .product-wrap .title {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 18px;
  line-height: 19.98px;
  font-weight: bold;
}
@media only screen and (min-width: 799px) {
  .collection-list .product-wrap .title {
    font-size: 20px;
    line-height: 25.02px;
  }
}
.collection-list .product-wrap .button.button--link-style, .collection-list .product-wrap .not-found-404__page .not-found-text p > a.button--link-style, .not-found-404__page .not-found-text .collection-list .product-wrap p > a.button--link-style {
  font-family: "DM Sans", Montserrat, sans-serif;
  font-size: 15px !important;
  line-height: 16px !important;
  font-weight: 500;
  color: #424240;
}
.collection-list .image__container {
  margin: 0;
}
.collection-list .thumbnail .thumbnail__link {
  display: block;
}
@media only screen and (min-width: 799px) {
  .collection-list .flickity-progress-wrap {
    display: none;
  }
}

.flickity-progress-wrap {
  background: #d6d6d6;
  width: 100%;
  height: 6px;
  border-radius: 3px;
}
.flickity-progress-wrap .flickity-progress {
  height: 6px;
  width: 0;
  border-radius: 3px;
  background: #424240;
}
.featured-collection-section .flickity-progress-wrap, .gallery .flickity-progress-wrap {
  width: calc(100% - 30px);
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 799px) {
	.featured-collection-section .flickity-progress-wrap {
		max-width: 800px;
	}
	.gallery .flickity-progress-wrap {
    display: none;
  }
}

/* # Logo list
================================================== */
.logo-list [data-logo-list-slider]:after {
  display: none;
  content: "flickity";
}
@media only screen and (max-width: 798px) {
  .logo-list .flickity-button.flickity-prev-next-button {
    display: none;
  }
}
.logo-list .flickity-button.flickity-prev-next-button.previous {
  left: -29px;
}
.logo-list .flickity-button.flickity-prev-next-button.next {
  right: -29px;
}
.logo-list .flickity-button.flickity-prev-next-button .flickity-button-icon {
  width: 12px;
  height: 18px;
}
.logo-list .has-background {
  padding-top: 20px;
}
.logo-list .title {
  margin-bottom: 20px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  color: #424240;
  
  color: var(--text-font, #424240);
  font-weight: 500;
  line-height: 28px; /* 116.667% */
  text-transform: capitalize;
}
@media only screen and (min-width: 799px) {
  .logo-list .title {
    font-size: 24px;
    line-height: 28.08px;
  }
}
.logo-list .logo-list__item .logo-list__item__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
  padding-bottom: 100%;
}
.logo-list .logo-list__item .logo-list__item__wrapper .logo-list__item__content {
  padding: 15px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfdfdf;
}
.logo-list .logo-list__item .logo-list__item__wrapper .image-element__wrap {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 480px) {
  .logo-list .logo-list__wrapper {
    max-width: 1200px;
    width: 95%;
  }
}

/* # Map
================================================== */
.maps {
  width: 100%;
}

.map {
  height: 100%;
  width: 100%;
}

/* # Mobile Header
================================================== */
.mobile-menu--opened {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  height: 100vh;
}
.mobile-menu--opened .header--search-focus {
  z-index: 12;
}

#mobile-header .mobile-header__logo {
  width: 100%;
}

body {
  max-width: 100%;
}

.mobile-header {
  background-color: #f1ebdd;
  transition: background-color 0.3s linear, height 0.2s linear;
  width: 100%;
  max-width: 100vw;
}
@media only screen and (min-width: 1201px) {
  .mobile-header {
    display: none;
  }
}

.mobile-header__content {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 21;
}
@media only screen and (max-width: 1200px) {
  .mobile-header__content {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 480px) {
  .mobile-header__content {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 1200px) {
  [data-show-search-trigger] {
    display: none;
  }
}

.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;
  height: 20px;
}
.mobile-menu__toggle-icon .icon {
  fill: #495240;
  width: 30px;
  height: 30px;
}
.mobile-menu__toggle-icon .mobile-header__open-menu {
  transition: visibility 0s linear, opacity 0.33s linear 0.1s;
  height: 30px;
}
.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;
}

.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: 220px !important;
}
@media only screen and (max-width: 798px) {
  .mobile-logo .image-element__wrap {
    width: 140px;
  }
}

.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: #6c6c6c;
}
.mobile-logo__outer .image-element__wrap {
  max-width: 220px !important;
}

.mobile-menu a {
  color: #495240;
}
.mobile-menu a:hover {
  color: #000000;
}

.submenu__label:hover a {
  color: #000000;
}

.mobile-menu__submenu {
  font-size: 14px;
  letter-spacing: 0px;
  text-transform: none;
}

.mobile-menu__toggle-icon.is-active + .mobile-menu {
  transition: left 0.5s;
  left: 0;
}

.announcement-bar--visible .mobile-menu {
  height: calc(100vh - 115px);
}

.mobile-menu__list {
  margin: 0 !important;
}

.mobile-menu {
  left: -100%;
  position: absolute;
  top: 100%;
  transition: left 0.3s ease-in-out;
  width: 100%;
  z-index: 99;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid #f2f2f2;
  max-width: 100vw;
  height: calc(100vh - 70px);
}
.mobile-menu .mobile-menu__item {
  align-items: center;
}
.mobile-menu .mobile-menu__item .icon {
  fill: #222222;
  margin-right: 12px;
}
.mobile-menu .mobile-menu__item .icon:hover {
  fill: #222222;
}
.mobile-menu .mobile-menu__item select {
  color: #495240;
}
.mobile-menu .mobile-menu__item select:hover {
  color: #000000;
}
.mobile-menu .mobile-menu-link,
.mobile-menu .mobile-menu__item {
  display: flex;
  color: #495240;
  font-family: "Addington CF";
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  padding: 25px 0;
  margin: 0 20px;
  border-bottom: 0.5px solid #424240;
  line-height: 1.11;
}
.mobile-menu .header__search {
  padding: 18px 12px;
  border-bottom: 0.5px solid #424240;
}
.mobile-menu .header__search .search-form {
  padding: 0;
}

.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: 99;
}
.mobile-menu__first-level .has-no-link .close-dropdown,
.mobile-menu__first-level .has-no-link .close-sub-dropdown {
  width: 100%;
}

.mobile-menu__content .icon-caption {
  padding: 0;
  font-size: 1em;
}
.mobile-menu__content .mega-menu .container {
  width: 100%;
  padding: 0;
}
.mobile-menu__content .mega-menu .container .medium-down--one-half {
  width: 100%;
}
.mobile-menu__content .mega-menu .mega-menu__custom {
  flex-direction: column;
  box-shadow: none;
}
.mobile-menu__content .mega-menu .mega-menu__custom::after {
  display: none;
}
.mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-child {
  display: block;
  width: 100%;
  height: 100%;
}
.mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-child-wrap {
  position: absolute;
  top: 0;
  background: #fff;
  z-index: 5;
  padding: 0;
}
.mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-child-wrap.active {
  display: block;
}
.mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-child-title {
  font-family: "Addington CF";
  display: block;
  margin: 0 12px;
  padding: 25px 0;
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: normal;
  text-align: center;
  border-bottom: 1px solid #d3d6d9;
  position: relative;
  margin-bottom: 15px;
}
.mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-child-title::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='20' fill='none' viewBox='6 9 14 14'%3E%3Cpath fill='%23222' d='M17.863 20.747c.187.215.182.559-.012.767-.193.209-.502.203-.689-.013l-5.025-5.793c-.183-.21-.183-.544 0-.755l5.025-5.787c.187-.216.496-.222.69-.013.193.208.198.552.011.767l-4.698 5.411 4.698 5.416z'/%3E%3C/svg%3E");
  left: 0;
  position: absolute;
  z-index: 4;
  top: 50%;
  margin-top: -10px;
}
.mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-child-nth {
  padding: 10px 20px;
}
.mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-collection.active {
  display: none;
}
.mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__custom-linklist {
  flex-basis: 100%;
  padding: 0;
}
.mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__custom-linklist .menu__link-view-all {
  display: none;
}
.mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__custom-linklist ul {
  margin: 0;
  padding: 0;
}
.mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__custom-linklist ul li a {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: normal;
  text-align: left;
  padding: 25px 0;
  margin: 0 20px;
  border-bottom: 0.5px solid #d3d6d9;
  width: auto;
  color: #424240;
  height: auto;
  position: relative;
}
.mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__custom-linklist ul li a.active {
  background: transparent;
}
.mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__custom-linklist ul li a.mega-menu__linklist-link--arrow::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='20' fill='none' viewBox='6 9 14 14'%3E%3Cpath fill='%23222' d='M17.863 20.747c.187.215.182.559-.012.767-.193.209-.502.203-.689-.013l-5.025-5.793c-.183-.21-.183-.544 0-.755l5.025-5.787c.187-.216.496-.222.69-.013.193.208.198.552.011.767l-4.698 5.411 4.698 5.416z'/%3E%3C/svg%3E");
  right: 0;
  transform: rotate(180deg);
  position: absolute;
  z-index: 4;
  top: 50%;
  margin-top: -10px;
}
.mobile-menu__content .mega-menu .mega-menu__custom .menu__heading {
  font-family: "Addington CF";
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: normal;
  text-align: left;
  padding: 25px 0;
  margin: 0 20px;
  border-bottom: 0.5px solid #d3d6d9;
  display: flex;
  justify-content: center;
  position: relative;
}
.mobile-menu__content .mega-menu .mega-menu__custom .menu__heading::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='20' fill='none' viewBox='6 9 14 14'%3E%3Cpath fill='%23222' d='M17.863 20.747c.187.215.182.559-.012.767-.193.209-.502.203-.689-.013l-5.025-5.793c-.183-.21-.183-.544 0-.755l5.025-5.787c.187-.216.496-.222.69-.013.193.208.198.552.011.767l-4.698 5.411 4.698 5.416z'/%3E%3C/svg%3E");
  left: 0;
  position: absolute;
  z-index: 4;
  top: 50%;
  margin-top: -10px;
}
.mobile-menu__content .mega-menu .mega-menu__linklist-child-box {
  display: block;
  margin: 40px 20px;
}
.mobile-menu__content .mega-menu .mega-menu__linklist-child-box.mega-menu__linklist-child-box-mobile {
  display: block;
  margin: 40px 20px 80px 20px;
}
@media only screen and (min-width: 799px) {
  .mobile-menu__content .mega-menu .mega-menu__linklist-child-box.mega-menu__linklist-child-box-mobile {
    margin: 40px auto;
    max-width: 450px;
  }
}
@media only screen and (min-width: 1201px) {
  .mobile-menu__content .mega-menu .mega-menu__linklist-child-box.mega-menu__linklist-child-box-mobile {
    margin: 40px 20px;
    max-width: 100%;
  }
}
.mobile-menu__content .mega-menu__linklist-child.active {
  display: flex;
  position: absolute;
  background: #fff;
  z-index: 4;
  height: 100%;
  max-height: 100%;
}
.mobile-menu__content .mega-menu__linklist-child .mega-menu__linklist-child-nth {
  flex-basis: 100%;
}

.mobile-menu__footer {
  background: #f2f2f2;
}
.mobile-menu__footer .mobile-menu__footer-item {
  margin: 0 20px;
}
.mobile-menu__footer .mobile-menu__footer-item a {
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d3d6d9;
  font-family: "Addington CF";
  font-size: 18px;
  line-height: 20px;
  color: #424240;
  font-weight: 600;
  position: relative;
}
.mobile-menu__footer .mobile-menu__footer-item a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='20' fill='none' viewBox='5 4 14 24'%3E%3Cpath fill='%23222' d='M17.863 20.747c.187.215.182.559-.012.767-.193.209-.502.203-.689-.013l-5.025-5.793c-.183-.21-.183-.544 0-.755l5.025-5.787c.187-.216.496-.222.69-.013.193.208.198.552.011.767l-4.698 5.411 4.698 5.416z'/%3E%3C/svg%3E");
  right: 15px;
  position: absolute;
  z-index: 4;
  font-size: 1.1em;
  transform: rotate(180deg);
  top: 50%;
  margin-top: -10px;
}

.mobile-menu__footer-sign-in {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' fill='none' viewBox='0 0 25 25'%3E%3Cpath fill='%23222' fill-rule='evenodd' d='M21.667 12.5c0 5.063-4.104 9.167-9.167 9.167S3.333 17.563 3.333 12.5 7.437 3.333 12.5 3.333s9.167 4.104 9.167 9.167zm-1.146 0c0-4.43-3.591-8.02-8.021-8.02-4.43 0-8.02 3.59-8.02 8.02 0 1.834.614 3.524 1.65 4.875.389-1.46 1.507-2.421 3.122-2.94.244-.078.47-.174.68-.283.116-.06.22-.121.31-.178-.418-.472-.74-1.035-.923-1.568l-.035-.023c-.11-.075-.15-.108-.221-.231-.546-.984-.525-1.746-.002-2.182.007-.35.044-.735.13-1.115l.021-.091c.035-.314.172-.719.486-1.121.536-.685 1.417-1.087 2.659-1.087 1.247 0 2.13.402 2.663 1.088.314.402.448.808.481 1.121l.022.09c.085.38.123.765.13 1.115.522.436.544 1.198-.004 2.184-.066.119-.107.152-.22.23l-.034.022c-.183.533-.505 1.096-.923 1.568.09.057.193.117.31.178.209.11.435.205.679.283 1.72.553 2.792 1.544 3.147 3.264 1.193-1.4 1.913-3.216 1.913-5.2zm-2.939 6.205c-.098-1.8-.883-2.669-2.472-3.179-.307-.098-.593-.22-.858-.358-.283-.147-.513-.297-.691-.433-.372.216-.779.347-1.204.347-.426 0-.832-.13-1.205-.347-.178.136-.408.286-.69.433-.266.139-.552.26-.86.358-1.548.497-2.425 1.413-2.475 2.93 1.422 1.283 3.306 2.065 5.373 2.065 1.929 0 3.699-.681 5.082-1.816zm-7.526-7.124l-.052-.098c-.234-.44-.24-.591-.215-.628.258-.07.434-.312.42-.583l-.002-.035c-.01-.335.016-.748.102-1.13.007-.035.015-.068.024-.101l.017-.101c.008-.114.077-.334.251-.557.311-.398.856-.646 1.756-.646.905 0 1.45.248 1.759.645.173.222.24.441.247.554l.017.105.025.1c.086.383.11.796.1 1.13v.036c-.015.27.161.511.418.583.027.04.018.201-.267.663l.024-.016.041-.026-.008.006-.058.037-.006.01-.007-.001-.038.027c-.14.103-.198.158-.25.342-.243.86-1.18 2.039-1.997 2.039-.817 0-1.754-1.179-1.997-2.038-.053-.184-.111-.24-.25-.343l-.042-.03-.005.001c-.01 0-.036 0-.007.055zm-.267-.726l-.019.005c.012-.003.018-.006.023-.01l-.004.005z' clip-rule='evenodd'/%3E%3C/svg%3E");
  width: 25px;
  height: 25px;
}

.mobile-menu__footer-find-us {
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' fill='none' viewBox='0 0 25 25'%3E%3Cpath fill='%23222' fill-rule='evenodd' d='M19.236 10.464v.015c-.002 1.188-.34 2.35-.984 3.37l-4.196 6.236c-.136.201-.308.374-.51.51-.858.577-2.024.35-2.602-.51l-4.206-6.251c-.635-1.004-.972-2.167-.974-3.37.077-3.65 3.097-6.55 6.724-6.478 3.651-.072 6.67 2.827 6.748 6.478zm-6.748-5.228c-2.962-.058-5.412 2.293-5.474 5.24.001.953.272 1.885.771 2.675l4.196 6.236c.193.287.581.363.868.17.067-.045.124-.102.17-.17l4.186-6.221c.507-.803.778-1.732.781-2.682-.066-2.959-2.514-5.306-5.498-5.248zm.012 7.511c-1.547 0-2.814-1.205-2.814-2.708 0-1.503 1.267-2.709 2.814-2.709 1.547 0 2.814 1.206 2.814 2.709 0 1.503-1.267 2.708-2.814 2.708zm0-1.25c.87 0 1.564-.66 1.564-1.458 0-.798-.694-1.459-1.564-1.459-.87 0-1.564.66-1.564 1.459 0 .798.693 1.458 1.564 1.458z' clip-rule='evenodd'/%3E%3C/svg%3E%0A");
}

.mobile-menu__footer-cb2 + span {
  padding: 10px 20px;
  border: 1px solid #222;
}

.mobile-menu__footer-bottom {
  padding: 20px 0;
}
.mobile-menu__footer-bottom .social-icons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.mobile-menu__footer-bottom .social-icons > li {
  padding: 0 50px;
}
.mobile-menu__footer-bottom .social-icons .icon {
  width: 30px;
  height: 30px;
}
.mobile-menu__footer-bottom .social-icons svg path {
  fill: #424240 !important;
}

.mobile__currency-dropdown {
  align-items: center;
  position: relative;
}
.mobile__currency-dropdown .icon-caption {
  position: absolute;
}
.mobile__currency-dropdown select {
  border: none;
  font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0px;
  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 {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='20' fill='none' viewBox='5 4 14 24'%3E%3Cpath fill='%23222' d='M17.863 20.747c.187.215.182.559-.012.767-.193.209-.502.203-.689-.013l-5.025-5.793c-.183-.21-.183-.544 0-.755l5.025-5.787c.187-.216.496-.222.69-.013.193.208.198.552.011.767l-4.698 5.411 4.698 5.416z'/%3E%3C/svg%3E");
  right: 0;
  position: absolute;
  z-index: 4;
  font-size: 1.1em;
  transform: rotate(180deg);
  top: 50%;
  margin-top: -10px;
}

.mobile-menu__submenu {
  transition: max-height 0.5s;
  border-left: 1px solid #eeeeee;
  margin-left: 20px;
  max-height: 0;
  overflow: hidden;
  padding-left: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.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);
}

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

.mega-menu-full {
  width: 100%;
}

.mobile-menu__toggle-button {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 69px;
  z-index: 50;
  bottom: 0;
}
.mobile-menu__toggle-button.mobile-toggle__position--right {
  right: 0;
  left: initial;
}
@media only screen and (max-width: 1200px) {
  .mobile-menu__toggle-button {
    display: block;
  }
}
.mobile-menu__toggle-button[data-show-mobile-menu=false] {
  opacity: 0;
}
.mobile-menu__toggle-button[data-show-mobile-menu=true] {
  opacity: 1;
}

.mobile-secondary-menu {
  margin: 0 20px 30px 20px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  font-family: "Addington CF";
}
.mobile-secondary-menu .mobile-secondary-menu__item .mobile-secondary-menu__item-title {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #d6d6d6;
  position: relative;
}
.mobile-secondary-menu .mobile-secondary-menu__item .mobile-secondary-menu__item-title > a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: #495240;
}
.mobile-secondary-menu .mobile-secondary-menu__item .mobile-secondary-menu__item-title > span {
  font-weight: 600;
  font-size: 16px;
  color: #495240;
}
.mobile-secondary-menu .mobile-secondary-menu__item .mobile-secondary-menu__item-title > span img {
  position: relative;
  top: 3px;
  margin-right: 10px;
}
.mobile-secondary-menu .mobile-secondary-menu__item .mobile-secondary-menu__item-title .mobile-secondary-menu__item-crate-barrel-rewards > span {
  font-weight: 300;
}
.mobile-secondary-menu .mobile-secondary-menu__item .mobile-secondary-menu__item-title.is-arrow::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='20' fill='none' viewBox='5 4 14 24'%3E%3Cpath fill='%23222' d='M17.863 20.747c.187.215.182.559-.012.767-.193.209-.502.203-.689-.013l-5.025-5.793c-.183-.21-.183-.544 0-.755l5.025-5.787c.187-.216.496-.222.69-.013.193.208.198.552.011.767l-4.698 5.411 4.698 5.416z'/%3E%3C/svg%3E");
  right: 15px;
  position: absolute;
  z-index: 4;
  font-size: 1.1em;
  transform: rotate(180deg);
  top: 50%;
  margin-top: -10px;
}
.mobile-secondary-menu .mobile-secondary-menu__item:last-child .mobile-secondary-menu__item-title {
  border-bottom: 0;
}
.mobile-secondary-menu .mobile-secondary-sub-menu {
  display: none;
  position: absolute;
  top: 0;
  height: 100%;
  background: #fff;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 22;
}
.mobile-secondary-menu .mobile-secondary-sub-menu.active {
  display: block;
}
.mobile-secondary-menu .mobile-secondary-sub-menu__title {
  font-family: "Addington CF";
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: normal;
  text-align: left;
  padding: 25px 0;
  margin: 0 20px;
  border-bottom: 0.5px solid #d3d6d9;
  display: flex;
  justify-content: center;
  position: relative;
  color: #495240;
}
.mobile-secondary-menu .mobile-secondary-sub-menu__title::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='20' fill='none' viewBox='6 9 14 14'%3E%3Cpath fill='%23222' d='M17.863 20.747c.187.215.182.559-.012.767-.193.209-.502.203-.689-.013l-5.025-5.793c-.183-.21-.183-.544 0-.755l5.025-5.787c.187-.216.496-.222.69-.013.193.208.198.552.011.767l-4.698 5.411 4.698 5.416z'/%3E%3C/svg%3E");
  left: 0;
  position: absolute;
  z-index: 4;
  top: 50%;
  margin-top: -10px;
}
.mobile-secondary-menu .mobile-secondary-sub-menu__title .mobile-secondary-menu__item-crate-barrel-rewards > span {
  font-weight: 300;
}
.mobile-secondary-menu .mobile-secondary-sub-menu__title > span {
  font-weight: 600;
  color: #495240;
}
.mobile-secondary-menu .mobile-secondary-sub-menu__title > span img {
  position: relative;
  top: 3px;
  margin-right: 10px;
}
.mobile-secondary-menu .mobile-secondary-sub-menu__child a {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: normal;
  text-align: left;
  padding: 25px 0;
  margin: 0 20px;
  border-bottom: 0.5px solid #d3d6d9;
  width: auto;
  color: #424240;
  height: auto;
  position: relative;
  display: block;
}
.mobile-secondary-menu .mobile-secondary-sub-menu__child a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='20' fill='none' viewBox='6 9 14 14'%3E%3Cpath fill='%23222' d='M17.863 20.747c.187.215.182.559-.012.767-.193.209-.502.203-.689-.013l-5.025-5.793c-.183-.21-.183-.544 0-.755l5.025-5.787c.187-.216.496-.222.69-.013.193.208.198.552.011.767l-4.698 5.411 4.698 5.416z'/%3E%3C/svg%3E");
  right: 0;
  transform: rotate(180deg);
  position: absolute;
  z-index: 4;
  top: 50%;
  margin-top: -10px;
}

.mobile-sticky-search {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 20px 0;
  border-top: 0.5px solid #424240;
  margin: 0 12px;
}
.mobile-sticky-search .header__search {
  padding: 0;
}
.mobile-sticky-search .search-form {
  padding-top: 0;
  margin-right: 0;
  margin-left: 0;
  max-width: none;
}

/* # Mega menu
================================================== */
.mega-menu-section {
  display: none;
}

#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: 14px;
  letter-spacing: 0px;
  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: #000000;
}
.mega-menu a:hover {
  color: #000000;
}
.mega-menu .menu__heading {
  margin-bottom: 10px;
  font-size: 22px;
  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 .container {
  max-width: 1385px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px 0 10px;
}

.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, .mega-menu__block.block__featured-promo .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .mega-menu__block.block__featured-promo p > a {
  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;
  box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.mega-menu__section.is-active .mega-menu::after {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  z-index: 1;
}

.mega-menu__content {
  position: relative;
  width: 100%;
}
.mega-menu__content .has-thumbnail-sticker .sticker-holder__content {
  font-size: 14px;
}

.mega-menu-full .mega-menu__block {
  padding: 0;
}

.mega-menu__custom {
  display: flex;
}
.mega-menu__custom::after {
  width: 100%;
  height: 100%;
  background: #eee;
  display: block;
  content: "";
  position: absolute;
  z-index: -1;
  left: -100%;
  margin-left: 260px;
  box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.15);
}
.mega-menu__custom .menu__heading {
  font-family: "Addington CF";
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: 0.4px;
  text-align: left;
  margin-bottom: 18px;
  color: #424240;
}
.mega-menu__custom .mega-menu__custom-linklist {
  flex: 0 0 260px;
  padding: 40px 0 35px;
}
.mega-menu__custom .mega-menu__custom-linklist ul {
  padding-right: 30px;
  margin-left: -8px;
}
.mega-menu__custom .mega-menu__custom-linklist li a {
  font-family: "Addington CF";
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #979797;
  padding: 0 0 0 8px;
  height: 33px;
  width: 100%;
  display: flex;
  align-items: center;
  background: transparent;
  position: relative;
}
.mega-menu__custom .mega-menu__custom-linklist li a.mega-menu__linklist-link--arrow::after {
  display: block;
}
.mega-menu__custom .mega-menu__custom-linklist li a::after {
  display: none;
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='currentColor' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  position: absolute;
  right: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.mega-menu__custom .mega-menu__custom-linklist li a.active {
  background: #dfdfdf;
  text-decoration: underline;
}
.mega-menu__custom .mega-menu__linklist-child {
  display: none;
  flex: 1 1 auto;
}
.mega-menu__custom .mega-menu__linklist-child.active {
  display: flex;
}
.mega-menu__custom .mega-menu__linklist-collection {
  flex: 1;
  display: none;
}
.mega-menu__custom .mega-menu__linklist-collection.active {
  display: block;
}
.mega-menu__custom .mega-menu__linklist-collection .mega-menu__linklist-collection-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 50px 150px;
  flex: 1;
}
.mega-menu__custom .mega-menu__linklist-collection .mega-menu__linklist-collection-wrap .mega-menu__linklist-collection-title {
  flex-basis: 205px;
  font-family: "Addington CF";
  font-size: 50px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -1.5px;
  text-align: left;
  color: #424240;
  min-width: max-content;
}
.mega-menu__custom .mega-menu__linklist-collection .mega-menu__linklist-collection-wrap .mega-menu__linklist-collection-description {
  flex: 1;
  padding-left: 50px;
  font-family: "Addington CF";
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
}
.mega-menu__custom .mega-menu__linklist-child-wrap {
  display: none;
  flex-wrap: wrap;
  padding: 10px;
  min-height: 100%;
  width: 100%;
  flex: 1;
  overflow: auto;
}
.mega-menu__custom .mega-menu__linklist-child-wrap.active {
  display: flex;
}
.mega-menu__custom .mega-menu__linklist-child-title {
  display: none;
}
.mega-menu__custom .mega-menu__linklist-child-content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
.mega-menu__custom .mega-menu__linklist-child-box {
  flex-basis: 343px;
  border: 1px solid #eee;
  margin: 10px 0;
  padding: 25px 20px;
}
.mega-menu__custom .mega-menu__linklist-child-box.mega-menu__linklist-child-box-mobile {
  display: none;
}
.mega-menu__custom .mega-menu__linklist-child-box.mega-menu__linklist-child-box-margin {
  margin-bottom: 75px;
}
.mega-menu__custom .mega-menu__linklist-child-box .mega-menu__linklist-child-box-title {
  text-align: center;
  font-family: "Addington CF";
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
}
.mega-menu__custom .mega-menu__linklist-child-box .mega-menu__linklist-child-box-link {
  text-align: center;
  margin-bottom: 25px;
}
.mega-menu__custom .mega-menu__linklist-child-box .mega-menu__linklist-child-box-link a {
  font-family: "Addington CF";
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.85;
  letter-spacing: normal;
  text-decoration: underline;
}
.mega-menu__custom .mega-menu__linklist-child-box .mega-menu__linklist-child-box-image img {
  width: 100%;
  max-height: none;
}
.mega-menu__custom .mega-menu__linklist-child-nth {
  padding: 10px;
  flex-basis: 50%;
}
.mega-menu__custom .mega-menu__linklist-child-nth a {
  display: flex;
  justify-content: space-between;
  background: #f2f2f2;
  align-items: center;
  height: 75px;
}
.mega-menu__custom .mega-menu__linklist-child-nth a .mega-menu__linklist-child-nth-title {
  font-family: "Addington CF";
  font-size: 13px;
  /* font-weight: bold; */
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
  margin-left: 20px;
}
.mega-menu__custom .mega-menu__linklist-child-nth a .mega-menu__linklist-child-nth-img {
  width: 90px;
  height: 75px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mega-menu__custom .mega-menu__linklist-child-nth a .mega-menu__linklist-child-nth-img img {
  height: 60px;
  max-height: none;
}
.mega-menu__custom .mega-menu__linklist-child-view-all {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 20px;
  flex-basis: 100%;
}
.mega-menu__custom .mega-menu__linklist-child-view-all a {
  font-family: "Addington CF";
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.85;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
  text-decoration: underline;
}
.mega-menu__custom .menu__link-view-all {
  margin-top: 40px;
}
.mega-menu__custom .menu__link-view-all a {
  font-family: "Addington CF";
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.85;
  letter-spacing: normal;
  text-align: left;
  color: #000;
  text-decoration: underline;
}

.header {
  z-index: 99;
  position: relative;
}

.menu-bg {
  width: 100%;
  position: absolute;
  height: 100%;
  z-index: 6;
  display: none;
}
.menu-bg::after {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  z-index: 1;
}

.menu-bg-active {
  overflow: hidden;
}
.menu-bg-active .menu-bg {
  display: block;
}

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

.leadinModal.leadinModal-theme-default {
  padding-top: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.leadinModal-v3 .leadin-footer-wrapper {
  display: none !important;
}

#leadinModal-1840612.leadinModal * {
  outline: none;
}
#leadinModal-1840612.leadinModal.leadinModal-preview {
  display: none !important;
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default.leadinModal-v3 .leadin-content-body .leadin-footer-wrapper {
  display: none !important;
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default.leadinModal-v3 .leadinModal-content {
  border-radius: 0;
  width: 850px;
  background-color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 900px) {
  #leadinModal-1840612.leadinModal.leadinModal-theme-default.leadinModal-v3 .leadinModal-content {
    width: calc(100% - 20px);
    margin: 0 10px;
    max-height: 100%;
  }
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default.leadinModal-v3 .leadinModal-close {
  right: -50px;
  top: -10px;
}
@media (max-width: 950px) {
  #leadinModal-1840612.leadinModal.leadinModal-theme-default.leadinModal-v3 .leadinModal-close {
    right: 0;
    top: -40px;
  }
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default.leadinModal-v3 .leadinModal-close::before {
  color: #fff;
  font-size: 35px;
}
@media (max-width: 800px) {
  #leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body {
    padding: 0 !important;
  }
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper {
  padding: 0;
  display: flex;
  min-height: 460px;
}
@media (max-width: 800px) {
  #leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper {
    flex-direction: column;
  }
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-left {
  flex-basis: 375px;
  min-height: 100%;
}
@media (max-width: 800px) {
  #leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-left {
    display: none;
  }
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right {
  flex: 1;
  padding: 50px 50px 25px 50px;
  color: #424240;
  position: relative;
  background: #fff;
}
@media (max-width: 767px) {
  #leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right {
    padding: 50px 20px 45px 20px;
  }
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-content-close {
  cursor: pointer !important;
  text-decoration: underline !important;
  position: absolute !important;
  bottom: 25px;
  font-family: "Addington CF";
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: normal;
  text-align: left;
}
@media (max-width: 767px) {
  #leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-content-close {
    position: static !important;
    bottom: 0;
    text-align: center;
  }
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-content-logo {
  width: 142px;
  height: 29px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='142' height='29' fill='none' viewBox='0 0 142 29'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath fill='%23363535' d='M57.414 11.054h-6.045c0-1.754 1.489-2.907 3.071-2.879 1.653 0 2.974 1.16 2.974 2.88zm-37.66-2.347C19.09 3.721 14.83.053 10.042.053 4.458.053 0 4.38 0 10.163c0 6.143 5.548 9.843 9.944 9.843 3.93 0 8.82-2.71 9.611-7.83h-3.666c-.428 1.684-2.413 4.13-5.846 4.13-3.67 0-6.28-2.61-6.41-6.076-.1-3.573 2.675-6.509 6.41-6.509 2.97 0 5.418 2.245 6.146 4.986h3.565zm28.806 11.1V17.13c-.394-.13-2.739.5-2.739-1.418V8.245h2.375V5.67h-2.375V1.374h-3.605V5.57h-1.782v2.676h1.782v8.324c0 1.123.496 3.238 3.404 3.238h2.94zM28.145 8.937V5.568s-.828-.165-1.617 0c-1.06.265-2.115 1.121-2.644 1.785V5.966h-3.502V19.74h3.602v-6.31c-.199-4.295 2.276-5.02 4.161-4.495v.002zm33.234 4.758c.135-4.064-2.049-8.292-6.839-8.327-4.294-.097-6.904 3.472-6.904 6.942 0 4.49 3.074 7.695 7.268 7.695 3.333 0 5.781-2.314 6.342-4.724h-3.702c-.725 1.09-1.516 1.585-2.805 1.585-1.819 0-3.535-1.388-3.535-3.17h10.175zm-20.581 6.043c-.232-.428-.46-1.519-.53-2.312v-7.56c-.064-3.107-2.873-4.297-5.715-4.297-4.592 0-6.043 2.047-6.113 4.492h3.141c.297-1.716 1.519-2.015 2.607-2.015 2.216 0 2.678 1.485 2.58 1.881-.1 1.227-1.852 1.028-4.063 1.392-3.9.561-5.022 2.741-5.022 4.457 0 2.874 2.742 4.33 5.152 4.33 2.18 0 3.569-.99 4.196-1.487.164.56.264 1.188.264 1.12H40.798zm-4.261-6.902c.23 1.984-.068 2.808-.563 3.47-.825.99-2.776 1.024-2.776 1.024-.295.098-2.213-.1-2.31-1.618-.034-1.72 2.146-2.016 5.65-2.876h-.001zM70.73 4.644c0 1.156-1.193 1.85-1.851 2.378-.53-.693-1.423-1.42-1.522-2.41-.034-.794.697-1.62 1.683-1.62 1.025 0 1.69.826 1.69 1.652zm7.495 14.665l-3.201-4.192c1.748-1.82 2.177-5.585 2.177-5.585h-3.069c.098.297-.498 2.213-1.096 3.008L70.73 9.37c.69-.663 3.102-1.686 3.102-4.693C73.832 2 71.684.152 68.909.152c-3.169 0-4.657 1.916-4.69 4.327-.033 1.816 1.222 3.3 1.916 4.163-1.058.362-4.525 2.312-4.525 5.977 0 2.941 2.642 5.19 5.813 5.155 1.753 0 4.327-1.089 5.417-2.214l1.39 1.75h3.995zm-7.269-4.226c-.758.694-2.476 1.587-3.599 1.587-.958-.1-2.215-.827-2.215-2.246 0 0-.194-1.387 2.778-3.339l3.036 3.998zm22.334-.659c0-2.974-1.883-4.527-3.503-5.089.498-.4 2.808-1.026 2.808-3.93C92.595 2 89.626.647 86.784.647h-8.427V19.31h9.716c2.012 0 5.217-1.552 5.217-4.885zM141.259.744h-3.503V19.31h3.503V.744zm-17.475 7.828V5.208s-.794-.168-1.653 0c-1.09.26-2.081 1.121-2.645 1.78V5.603h-3.499V19.31h3.568v-6.272c-.2-4.265 2.279-4.992 4.229-4.465zm-8.625 0V5.208s-.824-.168-1.617 0c-1.09.26-2.048 1.121-2.608 1.78V5.603h-3.603V19.31h3.666v-6.272c-.198-4.265 2.28-4.992 4.162-4.465zm21.97 4.726c.132-4.033-2.08-8.258-6.837-8.29-4.263-.1-6.838 3.47-6.838 6.901 0 4.463 3.071 7.668 7.232 7.668 3.272 0 5.815-2.314 6.279-4.692h-3.703c-.628 1.09-1.483 1.553-2.774 1.553-1.786 0-3.502-1.355-3.502-3.14h10.143zM106.87 19.31c-.333-.525-.596-2.109-.596-2.74 0 0 .066-4.427 0-7.102-.034-3.072-2.874-4.26-5.683-4.26-4.427 0-6.011 2.047-6.011 4.457h3.172c.26-1.684 1.486-1.98 2.543-1.98 2.177 0 2.611 1.486 2.575 1.848-.133 1.223-1.879 1.025-3.996 1.388-3.999.563-5.088 2.742-5.088 4.46 0 2.84 2.742 4.295 5.188 4.295 2.112 0 3.498-.99 4.131-1.486.13.56.261 1.19.261 1.12h3.504zM88.766 5.733c0 2.116-2.082 2.444-2.94 2.444h-4.035v-4.56h4.165c1.288 0 2.81.632 2.81 2.116zm44.431 4.924h-6.044c0-1.722 1.484-2.878 3.106-2.842 1.617 0 2.939 1.157 2.939 2.842h-.001zm-44.035 3.268c0 1.984-2.28 2.513-2.908 2.513H81.86v-5.484h4.162c2.91 0 3.14 1.85 3.14 2.971zm13.744-1.483c.229 1.982 0 2.806-.531 3.467-.76.956-2.676.991-2.676.991-.299.098-2.28-.1-2.31-1.585 0-1.717 2.145-2.017 5.517-2.873z'/%3E%3Cpath fill='%2377777A' d='M1.412 24.43V28h.475v-3.57h-.475zm1.204.985V28h.425v-1.46c0-.117.015-.223.045-.32.033-.1.082-.187.145-.26.063-.073.142-.13.235-.17.097-.04.21-.06.34-.06.163 0 .292.047.385.14.093.093.14.22.14.38V28h.425v-1.7c0-.14-.015-.267-.045-.38-.027-.117-.075-.217-.145-.3-.07-.083-.162-.148-.275-.195-.113-.047-.255-.07-.425-.07-.383 0-.663.157-.84.47h-.01v-.41h-.4zm3.088 1.315c0-.127.014-.25.04-.37.027-.12.07-.227.13-.32s.14-.168.24-.225c.1-.057.222-.085.365-.085.147 0 .272.028.375.085.104.053.187.125.25.215.067.09.115.195.145.315.03.117.045.238.045.365 0 .12-.015.238-.045.355-.026.117-.071.222-.135.315-.063.09-.145.163-.245.22-.1.057-.221.085-.365.085-.136 0-.256-.027-.36-.08-.1-.053-.183-.125-.25-.215-.063-.09-.111-.192-.145-.305-.03-.117-.045-.235-.045-.355zm2 1.27v-3.57H7.28v1.33h-.01c-.046-.077-.105-.14-.175-.19-.066-.053-.138-.095-.215-.125-.076-.033-.153-.057-.23-.07-.076-.013-.148-.02-.215-.02-.196 0-.37.037-.52.11-.146.07-.27.167-.37.29-.096.12-.17.262-.22.425-.046.163-.07.337-.07.52s.025.357.075.52c.05.163.124.307.22.43.1.123.224.222.37.295.15.073.325.11.525.11.18 0 .345-.032.495-.095.15-.063.26-.167.33-.31h.01V28h.425zm2.45-1.54H8.667c.007-.1.028-.193.065-.28.037-.09.087-.168.15-.235.063-.067.138-.118.225-.155.09-.04.19-.06.3-.06.107 0 .203.02.29.06.09.037.167.088.23.155.067.063.118.14.155.23.04.09.063.185.07.285zm.41.72h-.42c-.038.17-.114.297-.23.38-.114.083-.26.125-.44.125-.14 0-.263-.023-.366-.07-.103-.047-.188-.108-.255-.185-.067-.08-.115-.17-.145-.27-.03-.103-.043-.212-.04-.325h1.935c.007-.157-.008-.322-.045-.495-.033-.173-.097-.333-.19-.48-.09-.147-.212-.267-.365-.36-.15-.097-.34-.145-.57-.145-.177 0-.34.033-.49.1-.147.067-.275.16-.385.28-.107.12-.19.262-.25.425-.06.163-.09.343-.09.54.007.197.035.378.085.545.053.167.132.31.235.43.103.12.23.213.38.28.153.067.333.1.54.1.293 0 .537-.073.73-.22.193-.147.318-.365.375-.655zm.495-1.765v3.57h.425v-1.33h.01c.046.077.103.142.17.195.07.05.143.09.22.12.076.03.153.052.23.065.08.013.151.02.215.02.196 0 .368-.035.515-.105.15-.07.273-.165.37-.285.1-.123.173-.267.22-.43.05-.163.075-.337.075-.52s-.025-.357-.075-.52c-.05-.163-.125-.307-.225-.43-.097-.127-.22-.227-.37-.3-.147-.073-.32-.11-.52-.11-.18 0-.345.033-.495.1-.15.063-.26.167-.33.31h-.01v-.35h-.425zm2 1.27c0 .127-.014.25-.04.37-.027.12-.07.227-.13.32s-.14.168-.24.225c-.097.057-.219.085-.365.085-.147 0-.272-.027-.375-.08-.104-.057-.189-.13-.255-.22-.064-.09-.11-.193-.14-.31-.03-.12-.045-.243-.045-.37 0-.12.013-.238.04-.355.03-.117.076-.22.14-.31.063-.093.145-.168.245-.225.1-.057.221-.085.365-.085.136 0 .255.027.355.08.103.053.186.125.25.215.066.09.115.193.145.31.033.113.05.23.05.35zm2.744-.225h-1.486c.007-.1.029-.193.066-.28.036-.09.086-.168.15-.235.063-.067.138-.118.225-.155.09-.04.19-.06.3-.06.106 0 .203.02.29.06.09.037.166.088.23.155.066.063.118.14.155.23.04.09.063.185.07.285zm.41.72h-.42c-.037.17-.114.297-.23.38-.114.083-.26.125-.44.125-.14 0-.262-.023-.365-.07-.104-.047-.189-.108-.255-.185-.067-.08-.116-.17-.146-.27-.03-.103-.043-.212-.04-.325h1.936c.006-.157-.009-.322-.046-.495-.033-.173-.096-.333-.19-.48-.09-.147-.211-.267-.364-.36-.15-.097-.34-.145-.57-.145-.177 0-.34.033-.49.1-.147.067-.275.16-.386.28-.106.12-.19.262-.25.425-.06.163-.09.343-.09.54.007.197.035.378.085.545.054.167.132.31.236.43.103.12.23.213.38.28.153.067.333.1.54.1.293 0 .536-.073.73-.22.193-.147.318-.365.374-.655zm.48-1.765V28h.425v-1.46c0-.117.015-.223.045-.32.033-.1.082-.187.145-.26.063-.073.142-.13.235-.17.097-.04.21-.06.34-.06.163 0 .292.047.385.14.093.093.14.22.14.38V28h.425v-1.7c0-.14-.015-.267-.045-.38-.027-.117-.075-.217-.145-.3-.07-.083-.162-.148-.275-.195-.113-.047-.255-.07-.425-.07-.383 0-.663.157-.84.47h-.01v-.41h-.4zm3.088 1.315c0-.127.014-.25.04-.37.027-.12.07-.227.13-.32s.14-.168.24-.225c.1-.057.222-.085.365-.085.147 0 .272.028.375.085.104.053.187.125.25.215.067.09.115.195.145.315.03.117.045.238.045.365 0 .12-.015.238-.045.355-.026.117-.071.222-.135.315-.063.09-.145.163-.245.22-.1.057-.221.085-.365.085-.136 0-.256-.027-.36-.08-.1-.053-.183-.125-.25-.215-.063-.09-.111-.192-.145-.305-.03-.117-.045-.235-.045-.355zm2 1.27v-3.57h-.425v1.33h-.01c-.046-.077-.105-.14-.175-.19-.066-.053-.138-.095-.215-.125-.076-.033-.153-.057-.23-.07-.076-.013-.148-.02-.215-.02-.196 0-.37.037-.52.11-.146.07-.27.167-.37.29-.096.12-.17.262-.22.425-.046.163-.07.337-.07.52s.025.357.075.52c.05.163.124.307.22.43.1.123.224.222.37.295.15.073.325.11.525.11.18 0 .345-.032.495-.095.15-.063.26-.167.33-.31h.01V28h.425zm2.45-1.54h-1.486c.007-.1.029-.193.065-.28.037-.09.087-.168.15-.235.064-.067.139-.118.225-.155.09-.04.19-.06.3-.06.107 0 .204.02.29.06.09.037.167.088.23.155.067.063.119.14.155.23.04.09.064.185.07.285zm.41.72h-.42c-.037.17-.114.297-.23.38-.114.083-.26.125-.44.125-.14 0-.262-.023-.366-.07-.103-.047-.188-.108-.255-.185-.066-.08-.115-.17-.145-.27-.03-.103-.043-.212-.04-.325h1.935c.007-.157-.008-.322-.045-.495-.033-.173-.096-.333-.19-.48-.09-.147-.211-.267-.365-.36-.15-.097-.34-.145-.57-.145-.176 0-.34.033-.49.1-.146.067-.275.16-.385.28-.106.12-.19.262-.25.425-.06.163-.09.343-.09.54.007.197.035.378.085.545.054.167.132.31.235.43.104.12.23.213.38.28.154.067.334.1.54.1.294 0 .537-.073.73-.22.194-.147.319-.365.375-.655zm.48-1.765V28h.425v-1.46c0-.117.015-.223.045-.32.033-.1.081-.187.145-.26.063-.073.141-.13.235-.17.096-.04.21-.06.34-.06.163 0 .291.047.385.14.093.093.14.22.14.38V28h.425v-1.7c0-.14-.015-.267-.045-.38-.027-.117-.075-.217-.145-.3-.07-.083-.162-.148-.275-.195-.114-.047-.255-.07-.425-.07-.384 0-.664.157-.84.47h-.01v-.41h-.4zm3.368 0v-.775h-.425v.775h-.44v.375h.44v1.645c0 .12.012.217.035.29.023.073.058.13.105.17.05.04.113.068.19.085.08.013.175.02.285.02h.325v-.375h-.195c-.067 0-.122-.002-.165-.005-.04-.007-.072-.018-.095-.035-.023-.017-.04-.04-.05-.07-.007-.03-.01-.07-.01-.12V25.79h.515v-.375h-.515zm2.449-.985V28h.475v-1.635h1.64v-.4h-1.64V24.83h1.87v-.4h-2.345zm2.786.985V28h.425v-1.15c0-.167.017-.313.05-.44.033-.13.087-.24.16-.33.073-.09.17-.158.29-.205.12-.047.265-.07.435-.07v-.45c-.23-.007-.42.04-.57.14-.15.1-.277.255-.38.465h-.01v-.545h-.4zm3.97 2.575c-.073.043-.175.065-.305.065-.11 0-.198-.03-.265-.09-.063-.063-.095-.165-.095-.305-.117.14-.253.242-.41.305-.153.06-.32.09-.5.09-.117 0-.228-.013-.335-.04-.103-.027-.193-.068-.27-.125-.077-.057-.138-.13-.185-.22-.043-.093-.065-.205-.065-.335 0-.147.025-.267.075-.36.05-.093.115-.168.195-.225.083-.06.177-.105.28-.135.107-.03.215-.055.325-.075.117-.023.227-.04.33-.05.107-.013.2-.03.28-.05.08-.023.143-.055.19-.095.047-.043.07-.105.07-.185 0-.093-.018-.168-.055-.225-.033-.057-.078-.1-.135-.13-.053-.03-.115-.05-.185-.06-.067-.01-.133-.015-.2-.015-.18 0-.33.035-.45.105-.12.067-.185.195-.195.385h-.425c.007-.16.04-.295.1-.405.06-.11.14-.198.24-.265.1-.07.213-.12.34-.15.13-.03.268-.045.415-.045.117 0 .232.008.345.025.117.017.222.052.315.105.093.05.168.122.225.215.057.093.085.215.085.365v1.33c0 .1.005.173.015.22.013.047.053.07.12.07.037 0 .08-.008.13-.025v.33zm-.69-1.325c-.053.04-.123.07-.21.09-.087.017-.178.032-.275.045-.093.01-.188.023-.285.04-.097.013-.183.037-.26.07-.077.033-.14.082-.19.145-.047.06-.07.143-.07.25 0 .07.013.13.04.18.03.047.067.085.11.115.047.03.1.052.16.065.06.013.123.02.19.02.14 0 .26-.018.36-.055.1-.04.182-.088.245-.145.063-.06.11-.123.14-.19.03-.07.045-.135.045-.195v-.435zm1.086-1.25V28h.424v-1.46c0-.117.015-.223.045-.32.034-.1.082-.187.146-.26.063-.073.141-.13.235-.17.096-.04.21-.06.34-.06.163 0 .291.047.384.14.094.093.14.22.14.38V28h.425v-1.7c0-.14-.014-.267-.044-.38-.027-.117-.076-.217-.146-.3-.07-.083-.161-.148-.275-.195-.113-.047-.255-.07-.425-.07-.383 0-.663.157-.84.47h-.01v-.41h-.4zm4.533.83h.44c-.017-.153-.057-.285-.12-.395-.063-.113-.145-.207-.245-.28-.097-.073-.21-.127-.34-.16-.127-.037-.264-.055-.41-.055-.203 0-.382.037-.535.11-.153.07-.282.168-.385.295-.1.123-.175.27-.225.44-.05.167-.075.347-.075.54 0 .193.025.372.075.535.053.16.13.298.23.415.103.117.23.207.38.27.153.063.328.095.525.095.33 0 .59-.087.78-.26.193-.173.313-.42.36-.74h-.435c-.027.2-.1.355-.22.465-.117.11-.28.165-.49.165-.133 0-.248-.027-.345-.08-.097-.053-.175-.123-.235-.21-.06-.09-.105-.192-.135-.305-.027-.113-.04-.23-.04-.35 0-.13.013-.255.04-.375.026-.123.07-.232.13-.325.063-.093.147-.168.25-.225.103-.057.232-.085.385-.085.18 0 .323.045.43.135.107.09.177.217.21.38zm.93-1.815V28h.425v-1.46c0-.117.015-.223.045-.32.034-.1.082-.187.145-.26.064-.073.142-.13.235-.17.097-.04.21-.06.34-.06.164 0 .292.047.385.14.094.093.14.22.14.38V28h.425v-1.7c0-.14-.015-.267-.045-.38-.026-.117-.075-.217-.145-.3-.07-.083-.161-.148-.275-.195-.113-.047-.255-.07-.425-.07-.076 0-.156.008-.24.025-.08.017-.158.043-.235.08-.073.033-.14.078-.2.135-.06.053-.106.12-.14.2h-.01V24.43h-.425zm3.229.52v-.52h-.425v.52h.425zm-.425.465V28h.425v-2.585h-.425zm1.343 1.77h-.425c.007.16.04.297.1.41.06.11.14.2.24.27.1.067.215.115.345.145.13.03.267.045.41.045.13 0 .26-.013.39-.04.134-.023.252-.067.355-.13.107-.063.192-.147.255-.25.067-.103.1-.233.1-.39 0-.123-.025-.227-.075-.31-.047-.083-.11-.152-.19-.205-.076-.057-.166-.102-.27-.135-.1-.033-.203-.062-.31-.085-.1-.023-.2-.045-.3-.065-.1-.023-.19-.05-.27-.08-.08-.033-.147-.073-.2-.12-.05-.05-.075-.112-.075-.185 0-.067.017-.12.05-.16.034-.043.077-.077.13-.1.053-.027.112-.045.175-.055.067-.01.132-.015.195-.015.07 0 .139.008.205.025.07.013.134.037.19.07.057.033.103.078.14.135.037.053.058.122.065.205h.425c-.01-.157-.043-.287-.1-.39-.056-.107-.133-.19-.23-.25-.093-.063-.201-.107-.325-.13-.123-.027-.258-.04-.405-.04-.113 0-.228.015-.345.045-.113.027-.217.07-.31.13-.09.057-.165.132-.225.225-.056.093-.085.205-.085.335 0 .167.042.297.125.39.084.093.187.167.31.22.127.05.264.09.41.12.147.027.282.058.405.095.127.033.232.078.315.135.083.057.125.14.125.25 0 .08-.02.147-.06.2-.04.05-.092.088-.155.115-.06.027-.127.045-.2.055-.073.01-.143.015-.21.015-.087 0-.172-.008-.255-.025-.08-.017-.153-.043-.22-.08-.063-.04-.115-.092-.155-.155-.04-.067-.062-.147-.065-.24zm4.035-.725H50.25c.007-.1.029-.193.065-.28.037-.09.087-.168.15-.235.063-.067.138-.118.225-.155.09-.04.19-.06.3-.06.107 0 .203.02.29.06.09.037.167.088.23.155.067.063.119.14.155.23.04.09.063.185.07.285zm.41.72h-.42c-.037.17-.113.297-.23.38-.113.083-.26.125-.44.125-.14 0-.261-.023-.365-.07-.103-.047-.188-.108-.255-.185-.067-.08-.115-.17-.145-.27-.03-.103-.043-.212-.04-.325h1.935c.007-.157-.008-.322-.045-.495-.033-.173-.096-.333-.19-.48-.09-.147-.212-.267-.365-.36-.15-.097-.34-.145-.57-.145-.176 0-.34.033-.49.1-.146.067-.275.16-.385.28-.107.12-.19.262-.25.425-.06.163-.09.343-.09.54.007.197.035.378.085.545.053.167.132.31.235.43.104.12.23.213.38.28.154.067.334.1.54.1.294 0 .537-.073.73-.22.194-.147.319-.365.375-.655zm2.276-.72h-1.485c.006-.1.028-.193.065-.28.036-.09.086-.168.15-.235.063-.067.138-.118.225-.155.09-.04.19-.06.3-.06.106 0 .203.02.29.06.09.037.166.088.23.155.066.063.118.14.155.23.04.09.063.185.07.285zm.41.72h-.42c-.037.17-.114.297-.23.38-.114.083-.26.125-.44.125-.14 0-.262-.023-.365-.07-.104-.047-.189-.108-.255-.185-.067-.08-.115-.17-.145-.27-.03-.103-.044-.212-.04-.325h1.935c.006-.157-.009-.322-.045-.495-.034-.173-.097-.333-.19-.48-.09-.147-.212-.267-.365-.36-.15-.097-.34-.145-.57-.145-.177 0-.34.033-.49.1-.147.067-.275.16-.385.28-.107.12-.19.262-.25.425-.06.163-.09.343-.09.54.006.197.035.378.085.545.053.167.131.31.235.43.103.12.23.213.38.28.153.067.333.1.54.1.293 0 .536-.073.73-.22.193-.147.318-.365.375-.655z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath fill='%23fff' d='M0 0H142V29H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  margin-bottom: 20px;
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-content-subtitle {
  font-family: "Addington CF";
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-content-subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.38;
  }
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-content-title {
  font-family: "Addington CF";
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: left;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-content-title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.21;
  }
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-message-wrapper {
  display: none;
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-button-wrapper {
  padding: 0;
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-button-wrapper .leadin-button {
  height: 48px;
  width: 110px;
  text-transform: uppercase;
  font-weight: bold;
}
@media (max-width: 767px) {
  #leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-button-wrapper .leadin-button {
    width: 100%;
    border-radius: 3px;
    font-family: "Addington CF";
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
  }
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-form-wrapper {
  display: flex;
}
@media (max-width: 767px) {
  #leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-form-wrapper {
    flex-direction: column;
  }
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-form-wrapper .leadin-input-wrapper {
  width: 100%;
  display: flex;
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-input-wrapper label {
  font-size: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-right: 10px;
}
@media (max-width: 767px) {
  #leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-input-wrapper label {
    padding-right: 0;
  }
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-input-wrapper label > * {
  order: 2;
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-input-wrapper label input {
  order: 1;
  margin: 0;
  height: 48px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding-left: 0;
}
@media (max-width: 767px) {
  #leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-input-wrapper label input {
    border-bottom: 0;
  }
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-input-wrapper label input:-ms-input-placeholder {
  font-family: "Addington CF";
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  text-align: left;
  color: #adb2b8;
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-input-wrapper label input::placeholder {
  font-family: "Addington CF";
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  text-align: left;
  color: #adb2b8;
}
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-input-wrapper label span,
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-input-wrapper label input,
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-input-wrapper label div,
#leadinModal-1840612.leadinModal.leadinModal-theme-default .leadin-content-body #leadin-content-form-wrapper .leadin-content-form-right .leadin-input-wrapper label a {
  font-size: 12px;
}

/* # 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: 480px) {
  .mobile-shrink-text span,
.mobile-shrink-text p {
    font-size: 0.5em;
  }
}

.rich-text__content a.button, .rich-text__content .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .rich-text__content p > a {
  max-width: 50%;
}
@media only screen and (max-width: 798px) {
  .rich-text__content a.button, .rich-text__content .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .rich-text__content p > a {
    max-width: 100%;
  }
}
.collection-recently-viewed.section .recently-viewed-products-section.container.has-limit {
  max-width: 1360px;
}

.recently-viewed-products-section {
  width: 100%;
  padding: 50px 0;
}
@media only screen and (max-width: 798px) {
  .recently-viewed-products-section {
    padding: 50px 20px;
  }
}
.recently-viewed-products-section .product-wrap {
  padding: 0;
}
.recently-viewed-products-section .product-wrap:hover {
  border-color: transparent;
}
.recently-viewed-products-section .recently-viewed-products {
  width: 100%;
}
.recently-viewed-products-section .recently-viewed-products__list {
  width: 100%;
}
.recently-viewed-products-section .product-thumbnail {
  padding-top: 27px;
}
.recently-viewed-products-section .product-thumbnail__title {
  margin-bottom: 8px;
}
.recently-viewed-products-section .slider__bar {
  display: none !important;
}
@media only screen and (max-width: 798px) {
  .recently-viewed-products-section .slider__bar {
    display: block !important;
  }
}
.recently-viewed-products-section .recently-viewed-products__title {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .recently-viewed-products-section .recently-viewed-products__title {
    font-weight: 500;
  }
}

@media only screen and (max-width: 798px) {
  .collection .recently-viewed-products-section .recently-viewed-products__title, .search .recently-viewed-products-section .recently-viewed-products__title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 15px;
  }
}

/* # Search
================================================== */
.boost-pfs-filter-products .boost-pfs-filter-message {
  margin-left: auto;
  margin-right: auto;
}

.search .search-hidden {
  display: none !important;
}
.search .boost-pfs-search-result-header {
  margin-bottom: 10px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 20px;
  line-height: 29.96px;
  font-weight: bold;
  text-align: left;
  color: #424240;
}
@media only screen and (min-width: 799px) {
  .search .boost-pfs-search-result-header {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    line-height: 0px;
    letter-spacing: -1.5px;
  }
}

.search-form {
  position: relative;
  max-width: 670px;
  margin: 0 auto;
}
@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 #eeeeee;
  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-form .search__fields .field {
  margin-bottom: 0;
}
.search-form .header__search-button {
  position: absolute;
  right: 0;
  z-index: 5 !important;
}

/* # Search page - default view and results
================================================== */
@media only screen and (max-width: 480px) {
  .search-result__image-container {
    padding-bottom: 20px;
  }
}

.search-result__description {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.search__content .search__results-wrapper {
  position: relative;
}

/* # Search overlay & Popup
================================================== */

[data-show-search-trigger] {
  cursor: pointer;
}
[data-show-search-trigger] * {
  pointer-events: none;
}

.search-overlay__title,
.search-popup__title {
  color: #222222;
}

.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: #000000;
}
.search-menu__item a:hover, .search-menu__item a:focus,
.search-menu__item a:visited:hover,
.search-menu__item a:visited:focus {
  color: #000000;
}

.search-overlay {
  background-color: #ffffff;
  color: #222222;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  z-index: 60;
}
.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: 60px 0;
}

.search-popup {
  display: none;
  background-color: #ffffff;
  color: #222222;
  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;
  }
}

/* # Search autocomplete
================================================== */
.search__results-wrapper {
  display: none;
  position: relative;
}

.search__results {
  width: 100%;
  right: 0;
  left: auto;
  z-index: 30;
  list-style-type: none;
  margin: 0;
  padding: 0 20px;
  overflow: hidden;
  box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
}
@media only screen and (max-width: 798px) {
  .search__results {
    position: relative;
    padding: 0 10px;
    width: 100%;
  }
}
.search__results li {
  display: block;
  width: 100%;
  margin: 0;
  border-top: 1px solid #eeeeee;
  overflow: hidden;
}
.search__results li:nth-child(-n+2) {
  border-top: none;
}
.search__results li a,
.search__results li .no-results {
  display: flex;
  align-items: center;
  color: #6c6c6c;
  font-size: 15px;
  padding: 10px 0;
}
.search__results li a:hover,
.search__results li .no-results:hover {
  color: #000000;
}
.search__results .thumbnail {
  padding: 0;
  max-width: 12%;
  margin-right: 20px;
}
@media only screen and (max-width: 798px) {
  .search__results .thumbnail {
    max-width: 20%;
  }
}
.search__results .thumbnail img {
  display: block;
}
.search__results .all-results .icon {
  margin-left: 4px;
}

.vertical-header__block .search__results-wrapper {
  background-color: white;
  max-width: 40%;
}

.header--vertical .vertical-search__title {
  display: block;
}

.vertical-search__title {
  padding: 10px 20px 0;
  display: none;
}

.page-not-found-page .content .search__results {
  margin: 0;
}

/* #Mobile search
================================================== */
.mobile-search {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 999999;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}
@media only screen and (min-width: 799px) {
  .mobile-search {
    display: none !important;
  }
}
.mobile-search form {
  background-color: white;
  margin: 0;
  padding: 10px 20px 0;
  position: relative;
  min-height: 70vh;
  width: 100%;
}
.mobile-search input#q {
  font-size: 16px;
  padding-left: 40px;
  padding-right: 20px;
  padding-bottom: 12px;
  border: 0;
  border-bottom: 1px solid #eeeeee;
}
.mobile-search input#q:focus, .mobile-search input#q:active {
  border-bottom: 1px solid #eeeeee;
}
.mobile-search .control .icon {
  top: 4px;
  transform: none;
  padding: 0;
  pointer-events: initial;
  z-index: 2;
  cursor: pointer;
  color: #7a7a7a;
}
.mobile-search .search__results-wrapper {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.mobile-search .search__results {
  background-color: white;
  margin-top: 0;
  padding: 0;
}
.mobile-search .item-result:last-child {
  padding-bottom: 10px;
}

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

.product-sidebar--mobile-above {
  padding-bottom: 40px;
}

.product-sidebar--mobile-below {
  padding-bottom: 20px;
}

.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: #222222;
  transition: 0.2s linear;
  display: flex;
  align-items: center;
}
.block__tag-filter .tag-filter__label:hover {
  color: #606060;
}
.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 (min-width: 799px) {
  .slideshow-section section.is-width-wide .slideshow-classic {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 798px) {
  .slideshow-with-text .has-gutter-enabled .image-slideshow {
    margin-bottom: 20px;
  }
}
.slideshow-with-text .slideshow-with-text__container .flickity-page-dots {
  max-width: 330px;
  margin-left: auto;
  margin-right: auto;
}
.slideshow-with-text .slideshow-with-text__top_block {
  margin-bottom: 50px;
}
@media only screen and (min-width: 799px) {
  .slideshow-with-text .slideshow-with-text__top_block {
    margin-bottom: 100px;
  }
}
.slideshow-with-text .slideshow-with-text__top_block .title {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 28px;
  line-height: 33.88px;
  font-weight: bold;
  color: #424240;
}
@media only screen and (min-width: 799px) {
  .slideshow-with-text .slideshow-with-text__top_block .title {
    font-size: 35px;
    line-height: 39.9px;
  }
}
.slideshow-with-text .slideshow-with-text__top_block p {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 22.08px;
  font-weight: 300;
  color: #424240;
}
@media only screen and (min-width: 799px) {
  .slideshow-with-text .slideshow-with-text__top_block p {
    line-height: 20px;
  }
}
.slideshow-with-text .slideshow-with-text__top_block .button, .slideshow-with-text .slideshow-with-text__top_block .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .slideshow-with-text .slideshow-with-text__top_block p > a {
  margin-top: 30px;
}
.slideshow-with-text .slideshow-with-text__top_block .button.button--link-style, .slideshow-with-text .slideshow-with-text__top_block .not-found-404__page .not-found-text p > a.button--link-style, .not-found-404__page .not-found-text .slideshow-with-text .slideshow-with-text__top_block p > a.button--link-style {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 15px;
  line-height: 16.05px;
  font-weight: 500;
  color: #424240;
}
.slideshow-with-text .slideshow-with-text__top_block .column + .column {
  margin-top: 15px;
}
@media only screen and (min-width: 799px) {
  .slideshow-with-text .slideshow-with-text__top_block .column + .column {
    margin-top: 0;
  }
}
@media only screen and (min-width: 799px) {
  .slideshow-with-text {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.slideshow-with-text .text-slideshow__heading.banner__subheading {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
}
.slideshow-with-text .text-slideshow__heading.banner__heading {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 26px;
  font-weight: 700;
  font-style: normal;
}
.slideshow-with-text .flickity-prev-next-button.next {
  right: 0;
}
.slideshow-with-text .flickity-prev-next-button.previous {
  left: 0;
}
.slideshow-with-text .text-slideshow__heading .banner__heading .title,
.slideshow-with-text .text-slideshow__heading .banner__subheading .subtitle .content {
  margin: 0;
}
.slideshow-with-text .text-slideshow__content {
  margin: auto;
  max-width: 330px;
}
.slideshow-with-text .text-slideshow__content .text-slideshow__heading.banner__subheading,
.slideshow-with-text .text-slideshow__content .text-slideshow__heading.banner__heading.title,
.slideshow-with-text .text-slideshow__content .button,
.slideshow-with-text .text-slideshow__content .not-found-404__page .not-found-text p > a,
.not-found-404__page .not-found-text .slideshow-with-text .text-slideshow__content p > a {
  margin: 0;
  margin-bottom: 15px;
}
.slideshow-with-text .text-slideshow__content .text-slideshow__heading.banner__subheading {
  margin-bottom: 5px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 22.08px;
  font-weight: 300;
}
@media only screen and (min-width: 799px) {
  .slideshow-with-text .text-slideshow__content .text-slideshow__heading.banner__subheading {
    line-height: 20px;
  }
}
.slideshow-with-text .text-slideshow__content .text-slideshow__heading.banner__heading.title {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 28px;
  line-height: 33.88px;
  font-weight: 500;
  text-transform: capitalize;
}
@media only screen and (min-width: 799px) {
  .slideshow-with-text .text-slideshow__content .text-slideshow__heading.banner__heading.title {
    font-size: 24px;
    line-height: 28.08px;
  }
}
.slideshow-with-text .text-slideshow__content .text-slideshow__heading.banner__subheading.subtitle.content {
  margin-bottom: 50px;
  font-family: "DM Sans", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: var(--brand-brand-2, #F1EBDD);
}
@media only screen and (min-width: 799px) {
  .slideshow-with-text .text-slideshow__content .text-slideshow__heading.banner__subheading.subtitle.content {
    font-size: 16px;
    line-height: 20px;
  }
}
 .slideshow-with-text .text-slideshow__content .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .slideshow-with-text .text-slideshow__content p > a {
  width: 100%;
  margin: 0;
  padding: 17px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 3px;
}

.slideshow-with-text .text-slideshow__content .image-element__wrap {
  margin-bottom: 25px;
}

.slideshow-with-text .text-slideshow__content .button.button--primary {
  color: var(--brand-brand-2, #F1EBDD);
  text-align: center;
  font-feature-settings: 'clig' off, 'liga' off;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 125% */
  text-decoration-line: underline;
  text-transform: unset;
  background-color: transparent;
}

.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: 1024px) {
  .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%;
  padding-bottom: 60px;
}
@media only screen and (min-width: 1401px) {
  .text-slideshow {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.text-slideshow .flickity-viewport,
.text-slideshow .flickity-slider {
  height: 100%;
}
.text-slideshow .flickity-buttons-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  padding: 0 15px;
  max-width: 595px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.text-slideshow .flickity-buttons-container .previous {
  order: 1;
}
.text-slideshow .flickity-buttons-container .flickity-page-dots {
  order: 2;
  padding: 0;
  align-self: center;
}
.text-slideshow .flickity-buttons-container .next {
  order: 3;
}
.text-slideshow .flickity-buttons-container .flickity-button {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 3px;
  width: 30px;
  height: 30px;
  transform: none;
}
.text-slideshow .flickity-buttons-container .flickity-button .flickity-button-icon {
  margin: 0;
  padding: 0;
  fill: white;
}
@media only screen and (min-width: 799px) {
  .text-slideshow .flickity-buttons-container {
    display: flex;
  }
}
.text-slideshow .flickity-page-dots {
  align-self: flex-end;
  position: static;
  padding-bottom: 3em;
  position: absolute;
  bottom: 40px;
  left: 50px;
  right: 50px;
  width: auto;
  z-index: 50;
}
@media only screen and (max-width: 1024px) {
  .text-slideshow .flickity-page-dots {
    padding-top: 3em;
    padding-bottom: 0;
    order: -1;
  }
}
@media only screen and (min-width: 1025px) {
  .text-slideshow .flickity-page-dots {
    bottom: 10px;
  }
}
.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: 80px 50px 30px 50px;
}

@media only screen and (min-width: 1025px) {
  .text-slideshow__slide {
    padding: 15px 50px;
  }
}

.text-slideshow__content {
  width: 100%;
  opacity: 0;
  animation-delay: 0.2s;
}
.text-slideshow__content.animated.none {
  opacity: 1;
}
.text-slideshow__content .button, .text-slideshow__content .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .text-slideshow__content p > a {
  margin-top: 10px;
}

.text-slideshow__heading {
  margin: 0;
}
.text-slideshow__heading.subtitle {
  font-size: 16px;
}

/* # Slideshow - classic
================================================== */
.slideshow-classic {
  width: 100%;
}

.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;
    background: transparent;
  }
}
.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;
}
.slideshow-classic .flickity-button {
  transform: translateY(-50%);
  z-index: 10;
  top: auto;
  bottom: 160px;
}
@media only screen and (min-width: 799px) {
  .slideshow-classic .flickity-button {
    top: 50%;
    bottom: auto;
  }
}
.slideshow-classic .flickity-button .flickity-button-icon {
  width: 18px;
  height: auto;
}
@media only screen and (min-width: 799px) {
  .slideshow-classic .flickity-button .flickity-button-icon {
    fill: white;
  }
}
.slideshow-classic .flickity-page-dots {
  bottom: 40px;
}
@media only screen and (max-width: 480px) {
  .slideshow-classic .flickity-page-dots {
    bottom: 0;
  }
}
.slideshow-classic.image-slideshow .caption {
  position: static;
  top: auto;
  margin: 0;
  padding: 30px 20px;
}
.slideshow-classic.image-slideshow .caption .caption-content {
  padding: 0;
}
@media only screen and (min-width: 799px) {
  .slideshow-classic.image-slideshow .caption .caption-content {
    padding: 40px;
  }
}
@media only screen and (max-width: 798px) {
  .slideshow-classic.image-slideshow .caption .caption-content {
    width: 100% !important;
    padding: 40px 0;
  }

  .slideshow-classic.image-slideshow .caption .caption-content.text-align-left .buttons {
    width: 80%;
    margin: 0 auto;
    margin-top: 30px;
  }
}
.slideshow-classic.image-slideshow .caption .caption-content.text-align-left .buttons {
  align-items: flex-start;
}
.slideshow-classic.image-slideshow .caption .caption-content.text-align-center .buttons {
  align-items: center;
}
.slideshow-classic.image-slideshow .caption .caption-content.text-align-right .buttons {
  align-items: flex-end;
}
@media only screen and (min-width: 799px) {
  .slideshow-classic.image-slideshow .caption {
    position: absolute;
    padding: 0 60px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.slideshow-classic.image-slideshow .caption .slideshow-classic__heading,
.slideshow-classic.image-slideshow .caption .slideshow-classic__subheading,
.slideshow-classic.image-slideshow .caption .slideshow-classic__buttons {
  padding: 0;
  margin: 0;
}
.slideshow-classic.image-slideshow .caption .slideshow-classic__heading,
.slideshow-classic.image-slideshow .caption .slideshow-classic__subheading {
  padding: 0 40px;
}
@media only screen and (min-width: 799px) {
  .slideshow-classic.image-slideshow .caption .slideshow-classic__heading,
.slideshow-classic.image-slideshow .caption .slideshow-classic__subheading {
    padding: 0;
  }
}
.slideshow-classic.image-slideshow .caption .slideshow-classic__subheading,
.slideshow-classic.image-slideshow .caption .slideshow-classic__buttons {
  margin-top: 20px;
}
.slideshow-classic.image-slideshow .caption .slideshow-classic__heading {
  color: #424240;
}
.slideshow-classic.image-slideshow .caption .slideshow-classic__heading,
.slideshow-classic.image-slideshow .caption .slideshow-classic__heading span {
  font-size: 40px;
  line-height: 40px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-weight: 500;
}
@media only screen and (min-width: 799px) {
  .slideshow-classic.image-slideshow .caption .slideshow-classic__heading,
.slideshow-classic.image-slideshow .caption .slideshow-classic__heading span {
    font-size: 48px;
    line-height: 50px;
  }
}
.slideshow-classic.image-slideshow .caption .slideshow-classic__subheading {
  font-family: "DM Sans", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 22.08px;
  font-weight: 300;
  color: #424240;
}
@media only screen and (min-width: 799px) {
  .slideshow-classic.image-slideshow .caption .slideshow-classic__subheading {
    font-size: 16px;
    line-height: 20px;
  }
}
.slideshow-classic.image-slideshow .caption .slideshow-classic__buttons {
  flex-direction: column;
}
.slideshow-classic.image-slideshow .caption .slideshow-classic__buttons .button--primary, .slideshow-classic.image-slideshow .caption .slideshow-classic__buttons .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .slideshow-classic.image-slideshow .caption .slideshow-classic__buttons p > a,
.slideshow-classic.image-slideshow .caption .slideshow-classic__buttons .button--secondary,
.slideshow-classic.image-slideshow .caption .slideshow-classic__buttons .button--link-style {
  flex: 0 0 100%;
  width: 100%;
}
.slideshow-classic.image-slideshow .caption .slideshow-classic__buttons .button--link-style {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 15px;
  line-height: 16.05px;
  font-weight: 500;
  color: #424240;
  text-transform: none;
  flex: 0 0 auto;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.slideshow-classic.image-slideshow .caption .slideshow-classic__buttons .button + .button, .slideshow-classic.image-slideshow .caption .slideshow-classic__buttons .not-found-404__page .not-found-text p > a + .button, .not-found-404__page .not-found-text .slideshow-classic.image-slideshow .caption .slideshow-classic__buttons p > a + .button, .slideshow-classic.image-slideshow .caption .slideshow-classic__buttons .not-found-404__page .not-found-text p > .button + a, .not-found-404__page .not-found-text .slideshow-classic.image-slideshow .caption .slideshow-classic__buttons p > .button + a, .slideshow-classic.image-slideshow .caption .slideshow-classic__buttons .not-found-404__page .not-found-text p > a + a, .not-found-404__page .not-found-text .slideshow-classic.image-slideshow .caption .slideshow-classic__buttons p > a + a {
  margin-top: 8px;
}
.slideshow-classic.image-slideshow .caption .slideshow-classic__buttons .button--primary, .slideshow-classic.image-slideshow .caption .slideshow-classic__buttons .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .slideshow-classic.image-slideshow .caption .slideshow-classic__buttons p > a {
  flex: 0 0 100%;
  margin: 0;
  width: 100%;
  padding: 17px;
  font-family: "DM Sans", Montserrat, sans-serif;
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
  color: #F1EBDD;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
.slideshow-classic .flickity-page-dots {
  bottom: 15px;
}
.slideshow-classic .flickity-page-dots .dot {
  opacity: 1;
  margin: 0 5px;
  background: #eff3f5;
}
.slideshow-classic .flickity-page-dots .dot.is-selected {
  background: #dfdfdf;
}

.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, .slideshow-classic__buttons .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .slideshow-classic__buttons p > a {
  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, .slideshow-classic__buttons .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .slideshow-classic__buttons p > a {
    width: 100% !important;
    max-width: calc(50% - 6px) !important;
    margin: 0px auto;
  }
}
@media only screen and (max-width: 480px) {
  .slideshow-classic__buttons .button, .slideshow-classic__buttons .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .slideshow-classic__buttons p > a {
    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: "Mundo Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 48px;
  text-transform: none;
}
.slideshow-classic__banner .slideshow-classic__subheading {
  padding-top: 10px;
}
.slideshow-classic__banner .placeholder-svg {
  min-height: 400px;
}

[data-slideshow-home-staging] {
  display: none;
}
@media only screen and (min-width: 799px) {
  [data-slideshow-home-staging] {
    display: block;
  }
}
[data-slideshow-home-staging] .flickity-prev-next-button.previous svg,
[data-slideshow-home-staging] .flickity-prev-next-button.next svg {
  fill: #424240;
}
[data-slideshow-home-staging] .flickity-prev-next-button.previous {
  left: -25px;
}
[data-slideshow-home-staging] .flickity-prev-next-button.next {
  right: -25px;
}
@media only screen and (min-width: 1401px) {
  [data-slideshow-home-staging] .flickity-prev-next-button.previous {
    left: -40px;
  }
  [data-slideshow-home-staging] .flickity-prev-next-button.next {
    right: -40px;
  }
}

[data-slideshow-home-staging-thumbnails] {
  margin: 20px -5px 0 -5px;
}
[data-slideshow-home-staging-thumbnails] .image-slideshow__slide {
  margin: 0 5px;
}
@media only screen and (min-width: 799px) {
  [data-slideshow-home-staging-thumbnails] .image-slideshow__slide,
[data-slideshow-home-staging-thumbnails] .image-slideshow__slide .is-hidden-mobile-only,
[data-slideshow-home-staging-thumbnails] .image-slideshow__slide .is-hidden-desktop-only {
    width: 72px;
    height: 72px;
  }
}
[data-slideshow-home-staging-thumbnails] .image-slideshow__slide.is-selected .image-element__wrap > img {
  opacity: 0.2;
}
[data-slideshow-home-staging-thumbnails] .image-slideshow__slide .image-element__wrap {
  width: 100%;
  height: 100%;
}
[data-slideshow-home-staging-thumbnails] .image-slideshow__slide .image-element__wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
}

@media only screen and (max-width: 798px) {
  [data-slideshow-home-staging-thumbnails] {
    display: flex;
    flex-flow: row wrap;
  }
}
[data-slideshow-home-staging-thumbnails]:after {
  content: "";
  display: none;
}
@media only screen and (min-width: 799px) {
  [data-slideshow-home-staging-thumbnails]:after {
    content: "flickity";
  }
}
@media only screen and (max-width: 798px) {
  [data-slideshow-home-staging-thumbnails] .gallery-cell {
    margin: 0 10px;
    width: calc(50% - 20px);
    height: auto;
    margin-bottom: 20px;
  }
}

.home-staging-page {
  padding-bottom: 80px;
}
.home-staging-page .shopify-section.slideshow-with-text {
  margin: 100px 0 30px 0;
}

/* # 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 #eeeeee;
}
.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 {
  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: #222222;
  margin-bottom: 10px;
  cursor: pointer;
}
.testimonial__nav:first-child {
  margin-right: 10px;
}
.testimonial__nav:hover {
  color: #606060;
}

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

@media only screen and (min-width: 799px) {
  .video-wrapper .plyr--video.plyr--paused .plyr__video-embed iframe {
    z-index: 5;
  }
}

.video-controls--false .plyr__controls {
  display: none;
}

.video-present--false [data-video-element] {
  display: none;
}

.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__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;
}
@media only screen and (max-width: 480px) {
  .video-wrapper .video__text-container {
    position: relative;
    margin: 0;
  }
}
.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, .video-wrapper .video__text-wrapper .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .video-wrapper .video__text-wrapper p > a {
  max-width: 50%;
}
@media only screen and (max-width: 480px) {
  .video-wrapper .video__text-wrapper .button, .video-wrapper .video__text-wrapper .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .video-wrapper .video__text-wrapper p > a {
    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;
  }
}

.items_nav_w {
  display: flex;
  justify-content: space-between;
  margin-top: 39px;
  align-items: center;
}
@media only screen and (max-width: 798px) {
  .items_nav_w {
    display: none;
  }
}
.items_nav_w .count_order_items, .items_nav_w .pagiby_w {
  font-family: "Addington CF";
  font-size: 14px;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  color: #424240;
}
.items_nav_w .pagiby_w {
  display: flex;
  align-items: center;
}
.items_nav_w select {
  margin-left: 10px;
  margin-right: 10px;
  padding: 6px 10px 6px 3px;
  border-radius: 2px;
  border: 1px solid #d3d6d9;
  font-weight: 300;
  text-indent: 7px;
  width: 55px;
  height: 32px;
  border-radius: 0;
  font-size: 14px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 2px;
}

.pagiby_w {
  position: relative;
}

.pagiby_w:before {
  content: "ˇ";
  position: absolute;
  z-index: 1;
  font-size: 30px;
  top: 9px;
  left: 86px;
}

.orders_pagi_w {
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
}
@media only screen and (max-width: 798px) {
  .orders_pagi_w {
    margin-top: 69px;
    justify-content: center;
  }
}
.orders_pagi_w .active .pagination-link {
  background: white;
  color: #424240;
  border-color: #424240;
}
.orders_pagi_w .pagination-link {
  font-family: "Addington CF";
  font-size: 12px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.75px;
  color: #1a1a1a;
  padding: 19px 15px;
  border-radius: 2px;
}
.orders_pagi_w .pagination-link:hover {
  background: white;
  color: #424240;
  border-color: #424240;
}
.orders_pagi_w .pagination-link.prev, .orders_pagi_w .pagination-link.next {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #424240;
}
.orders_pagi_w .pagination-link.prev span, .orders_pagi_w .pagination-link.next span {
  color: #ffff;
  font-size: 40px;
  margin-bottom: 6px;
  margin-left: 3px;
  font-weight: normal;
}
.orders_pagi_w .pagination-link.prev:hover, .orders_pagi_w .pagination-link.next:hover {
  background: white;
  border-color: #424240;
}
.orders_pagi_w .pagination-link.prev:hover span, .orders_pagi_w .pagination-link.next:hover span {
  color: #424240;
}

@media only screen and (max-width: 798px) {
  .related-categories-by-tag {
    flex-direction: column;
    padding: 100px 0;
    overflow-x: hidden;
  }
}
.section-related-categories-by-tag.section__wrapper {
  border-bottom: 1px solid #D6D6D6;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%
}
.section-related-categories-by-tag .container {
  max-width: 1360px
}
@media only screen and (max-width: 798px) {
  .collection .related-categories-by-tag {
    padding: 40px 0 0;
    margin-top: -70px;
  }
  .section-related-categories-by-tag.section__wrapper {
    padding-bottom: 0
  }
}

.related-categories-by-tag__title {
  margin-right: 60px;
  flex: 0 0 auto;
}
@media only screen and (max-width: 798px) {
  .related-categories-by-tag__title {
    width: 100%;
    margin-right: 0;
    padding-left: 0;
    text-align: left;
  }
}

.related-categories-by-tag__tag-list {
  margin: 80px 20px 80px;
  font-size: 0;
}
@media only screen and (max-width: 798px) {
  .related-categories-by-tag__tag-list {
    width: 100%;
    margin: 15px 20px 80px;
    white-space: nowrap;
    overflow-x: scroll;
    height: auto;
  }
}

.related-categories-by-tag_tag {
  font-family: "Helvetica Neue", "DM sans";
  display: inline-block;
  min-width: 100px;
  margin: 10px;
  font-size: 15px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-align: center;
  color: #495240;
  border: 1px solid #495240;
  background-color: #ffffff;
  transition: color 0.2s, background-color 0.5s ease;
  padding: 19px 32.5px 20px 31.5px;
}
@media only screen and (max-width: 798px) {
  .related-categories-by-tag_tag {
    font-family: "DM sans";
    margin: 0 5px 16px;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    padding: 10px 21px;
  }
}
.related-categories-by-tag_tag:hover {
  color: var(--brand-brand-2, #F1EBDD);
  border: 1px solid var(--brand-brand-1, #495240);
  background: var(--brand-brand-1, #495240);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.related-products {
  width: 100%;
  padding-top: 50px;
  padding-right: 0;
  padding-bottom: 50px;
  padding-left: calc((100vW - (1200px + 16px)) / 2);
}
@media only screen and (max-width: 1400px) {
  .related-products {
    padding-left: calc((100vW - (95% + 16px)) / 2);
  }
}
@media only screen and (max-width: 798px) {
  .related-products {
    padding-left: 20px;
  }
}
.related-products .slider__bar {
  display: none;
}
@media only screen and (max-width: 798px) {
  .related-products .slider__bar {
    display: block;
  }
}

.related-products__header {
  margin-bottom: 40px;
}

.related-products__title {
  margin-bottom: 10px;
}

.related-products__link {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  color: #424240;
  text-decoration: underline;
}
.related-products__link .icon {
  margin-left: 10px;
  width: 19px;
  height: 26px;
  transition: transform 0.2s ease;
}
.related-products__link:hover {
  color: #424240;
}
.related-products__link:hover .icon {
  transform: translateX(5px);
}

.related-products__slider .product__grid-item.column {
  width: calc(23% - 16px);
  margin-left: 8px;
  margin-right: 8px;
}
@media only screen and (max-width: 798px) {
  .related-products__slider .product__grid-item.column {
    width: calc(48% - 16px);
  }
}
@media only screen and (max-width: 480px) {
  .related-products__slider .product__grid-item.column {
    width: calc(83% - 16px);
  }
}
.related-products__slider .product-wrap {
  padding: 0;
}
.related-products__slider .product-wrap .product-thumbnail__title {
  margin-bottom: 15px;
}
.related-products__slider .product-wrap:hover {
  border-color: transparent;
}
.related-products__slider .flickity-prev-next-button {
  border-radius: 0;
  background-color: #ffffff;
  transition: box-shadow 0.2s ease;
}
.related-products__slider .flickity-prev-next-button:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.related-products__slider .flickity-prev-next-button.previous {
  display: none;
}
@media only screen and (max-width: 798px) {
  .related-products__slider .flickity-prev-next-button {
    display: none;
  }
}
@media only screen and (max-width: 798px) {
  .related-products__slider {
    margin-bottom: 16px;
  }
}

.cross-sell-products {
  display: flex;
  padding-left: calc((100vW - (1360px - 30px))/ 2);
}
@media only screen and (max-width: 1400px) {
  .cross-sell-products {
    padding-left: calc((100vW - (95% - 30px))/ 2);
  }
}
@media only screen and (max-width: 1024px) {
  .cross-sell-products {
    flex-direction: column;
    padding-left: 0;
  }
}

.cross-sell-products__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  flex-shrink: 0;
  width: 329px;
  height: 329px;
  padding: 25px;
  margin-right: 15px;
  background-color: #424240;
}
@media only screen and (max-width: 1024px) {
  .cross-sell-products__header {
    width: 95%;
    height: auto;
    margin-bottom: 18px;
    margin-left: auto;
    margin-right: auto;
    padding: 47px 30px;
  }
}
@media only screen and (max-width: 798px) {
  .cross-sell-products__header {
    width: calc(100% - 40px);
  }
}
.cross-sell-products__header .cross-sell-products__title, .cross-sell-products__header .cross-sell-products__product-name {
  color: #ffffff;
}
.cross-sell-products__header .cross-sell-products__title {
font-family: Addington CF;
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 28px;
  max-width: 112px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 798px) {
    .cross-sell-products__header .cross-sell-products__title{
      max-width: 100%;
    }
  }
.cross-sell-products__header .cross-sell-products__product-name {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
}
@media only screen and (max-width: 1024px) {
  .cross-sell-products__header .cross-sell-products__product-name {
    font-size: 18px;
    line-height: 25px;
  }
}

.cross-sell-products__grid {
  display: flex;
  width: calc(100% - 329px);
}
@media only screen and (max-width: 1024px) {
  .cross-sell-products__grid {
    width: 100%;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 798px) {
  .cross-sell-products__grid {
    padding-left: 20px;
  }
}
.cross-sell-products__grid .flickity-prev-next-button {
  border-radius: 0;
  background-color: #ffffff;
  transition: box-shadow 0.2s ease;
}
.cross-sell-products__grid .flickity-prev-next-button:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.cross-sell-products__grid .flickity-prev-next-button.previous {
  display: none;
}

.cross-sell-product {
  width: 329px;
  margin-right: 15px;
  position: relative;
}
.cross-sell-product:hover .cross-sell-product__info {
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 480px) {
  .cross-sell-product {
    width: 85%;
    flex: 0 0 85%;
  }
}

.cross-sell-product__image {
  position: relative;
}
.cross-sell-product__image:after {
  content: "";
  display: block;
  pointer-events: none;
  width: 100%;
  padding-bottom: 100%;
}

.cross-sell-product__image, .image-element__wrap {
  height: 100%;
}

.cross-sell-product__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  max-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

.cross-sell-product__info {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.75);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
@media only screen and (max-width: 798px) {
  .cross-sell-product__info {
    padding: 30px;
  }
}
.cross-sell-product__info, .cross-sell-product__info * {
  color: #424240;
}

.cross-sell-product__title {
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
}
.cross-sell-product__title, .cross-sell-product__title:hover {
  color: #424240;
}

.cross-sell-product__price .money {
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.4px;
  color: #424240 !important;
}

.product-info-section {
  padding: 50px 0;
}
@media only screen and (max-width: 798px) {
  .product-info-section {
    padding-top: 40px;
  }
}
.product-info-section.container {
  width: 95%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}
.product-info-section * {
  color: #424240;
}

.product-info-accordion {
  padding-left: 10px;
}
@media only screen and (max-width: 798px) {
  .product-info-accordion {
    margin-bottom: 48px;
    padding-left: 0;
  }
}
.product-info-accordion .accordion__item {
  border-top: 1px solid #d6d6d6;
}
.product-info-accordion .accordion__item:first-child {
  border-color: #424240;
}
.product-info-accordion .accordion__item:last-child {
  border-bottom: 1px solid #d6d6d6;
}
.product-info-accordion .accordion__title {
  font-family: Addington CF;
  position: relative;
  height: 55px;
  font-size: 15px;
  line-height: 55px;
  font-weight: 500;
  cursor: pointer;
}
@media only screen and (max-width: 798px) {
  .product-info-accordion .accordion__title {
    color: var(--text-headline-primary, #424240);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Addington CF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    /* line-height: normal; */
    text-transform: capitalize;
  }
}
.product-info-accordion .accordion__title:before, .product-info-accordion .accordion__title:after {
  position: absolute;
  right: 10px;
  top: 27.5px;
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #424240;
  transition: top 0.2s ease;
}
.product-info-accordion .accordion__title:after {
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}
.product-info-accordion .accordion__title.expanded:after {
  transform: rotate(0deg);
}
.product-info-accordion .accordion__content {
  display: none;
  padding: 10px 55px;
}
@media only screen and (max-width: 798px) {
  .product-info-accordion .accordion__content {
    padding: 10px 25px;
  }
}
.product-info-accordion .accordion__content, .product-info-accordion .accordion__content p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
}

.shipping-returns__title {
  margin-bottom: 10px;
}

.shipping-returns__delivery-options {
  max-width: 390px;
  margin-bottom: 15px;
  border: 1px solid #dfdfdf;
}

.delivery-option {
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
  padding-left: 22px;
}
.delivery-option:not(:last-child) {
  border-bottom: 1px solid #dfdfdf;
}

.delivery-option__content {
  padding-left: 9px;
}

.delivery-option__title {
  font-size: 12px;
  line-height: normal;
  font-weight: 700;
}

.delivery-option__details {
  margin-top: 2px;
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.4px;
}

.shipping-returns__description {
  margin-bottom: 35px;
}

.shipping-returns__link {
  font-size: 13px;
  line-height: 11px;
  font-weight: 500;
  text-decoration: underline;
}
.shipping-returns__link, .shipping-returns__link:hover {
  color: #424240;
}

.callout {
  padding: 20px 80px;
  border: 1px solid #d6d6d6;
  background-color: #F1EBDD;
}
@media only screen and (max-width: 798px) {
  .callout {
    padding: 30px 20px;
  }
}

.callout__image {
  margin-bottom: 10px;
}
.callout__image .image-element__wrap {
  height: 20px;
  max-width: 142px !important;
}
.callout__image .image-element__wrap img {
  height: 100%;
  object-fit: contain;
}

.callout__heading {
  font-family: Addington CF;
  margin: 0 auto 20px;
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
}
@media only screen and (max-width: 798px) {
  .callout__heading {
    margin-bottom: 10px;
  }
}

.callout__subheading {
  font-family: "DM sans";
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
}
@media only screen and (max-width: 798px) {
  .callout__subheading {
    margin-bottom: 28px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
  }
}

a.callout__link.button, .not-found-404__page .not-found-text p > a.callout__link {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
@media only screen and (max-width: 798px) {
  a.callout__link.button, .not-found-404__page .not-found-text p > a.callout__link {
    min-width: 290px;
    max-width: 400px;
    margin: 0 auto;
  }
}

.store-locator {
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
  margin: 2rem 0 0 0;
}
@media only screen and (min-width: 1025px) {
  .store-locator {
    display: block;
    overflow: hidden;
    margin: 50px 0;
    position: relative;
  }
}

.store-locator__head {
  padding: 0 1rem;
}
@media only screen and (min-width: 1025px) {
  .store-locator__head {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 1025px) {
  .store-locator__head,
.store-locator__stores-list-container {
    width: 50%;
    float: left;
    clear: both;
  }
}

@media only screen and (min-width: 1025px) {
  .store-locator__map-view {
    width: 50%;
    float: right;
  }
}

.store-locator__title.title {
  margin: 0 0 20px 0;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 28px;
  line-height: 33.88px;
  font-weight: bold;
  color: #424240;
}
@media only screen and (min-width: 1025px) {
  .store-locator__title.title {
    margin: 0 0 50px 0;
    font-size: 35px;
    line-height: 39.9px;
  }
}

.store-locator__map-view {
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}
@media only screen and (min-width: 1025px) {
  .store-locator__map-view {
    width: 50%;
    height: 720px;
    position: absolute;
    right: 0;
    top: 0;
  }
}

.store-locator__map {
  width: 100%;
  height: 100%;
}

.store-locator__filters {
  margin-bottom: 10px;
}

.store-locator__filters-list {
  display: flex;
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
}

.store-locator-filter {
  flex: 1 0 50%;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding-right: 1em;
  white-space: nowrap;
  cursor: pointer;
}
@media only screen and (min-width: 481px) {
  .store-locator-filter {
    flex: 1 0 33%;
  }
}
@media only screen and (min-width: 1025px) {
  .store-locator-filter {
    flex: 1 0 25%;
  }
}

.store-locator-search__input {
  width: 100%;
  display: block;
  margin: 0.5rem 0 0 0;
}

.store-locator__group-select-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1025px) {
  .store-locator__group-select-wrapper {
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    flex-wrap: nowrap;
  }
}

.store-locator__group-select {
  flex: 1 1 auto;
}

.store-locator__group-find-me {
  flex: 1 0 100%;
  padding: 0.5rem 0;
  text-align: center;
  white-space: nowrap;
}
@media only screen and (min-width: 481px) {
  .store-locator__group-find-me {
    padding: 15px 0;
    text-align: left;
  }
}
@media only screen and (min-width: 1025px) {
  .store-locator__group-find-me {
    flex: 0 0 auto;
  }
}

.store-locator-filter__checkbox {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  margin-right: 0.5em;
  border: 1px solid #ddd;
  position: relative;
}
.store-locator-filter__checkbox::after {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0.05;
}
.store-locator-filter.is-active .store-locator-filter__checkbox::after {
  opacity: 0.7;
}

.store-locator-filter__icon {
  margin-right: 0.5em;
}

.store-locator__group {
  margin-bottom: 20px;
}

.store-locator__stores-list-container {
  margin: 0 0 2rem 0;
}
@media only screen and (min-width: 1025px) {
  .store-locator__stores-list-container {
    margin: 0;
  }
}

.store-locator__stores-list {
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 0;
  max-height: 421px;
}
@media only screen and (min-width: 1025px) {
  .store-locator__stores-list {
    max-height: 629px;
    overflow: auto;
  }
}
.store-locator__stores-list.has-active .store-locator-store:not(.is-active) {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .store-locator__stores-list {
    height: auto !important;
    max-height: none !important;
  }
}

.store-locator__no-stores-found {
  height: 100%;
  flex: 0 0 100%;
  display: flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -moz-flex-direction: column;
  flex-direction: column;
}
.store-locator__no-stores-found p {
  margin-bottom: 1em;
}

.store-locator-store {
  margin-right: 0;
}
@media only screen and (min-width: 1025px) {
  .store-locator-store {
    margin-right: 40px;
  }
}

.store-locator-store {
  display: flex;
  flex-wrap: wrap;
  order: 1;
  padding: 10px;
  padding-left: 50px !important;
  border-bottom: 2px solid #ddd;
  position: relative;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.store-locator-store:hover {
  opacity: 1;
}
.store-locator-store:not(.in-view):not(.is-active):not(.in-active-group) {
  order: 2;
  opacity: 0.5;
}
.filters-active .store-locator-store:not(.in-filter) {
  display: none;
}
@media only screen and (min-width: 481px) {
  .store-locator-store {
    padding: 10px;
  }
}

.store-locator-store__details {
  display: flex;
  width: 100%;
}
.store-locator-store__details .store-locator-store__subtitle {
  margin-bottom: 15px;
}

.store-locator-store__title {
  display: inline-block;
  cursor: pointer;
}

.store-locator-store__icon {
  width: 20px;
  position: absolute;
  left: 16px;
  top: 9px;
}
.store-locator-store.is-active:not(.is-loading) .store-locator-store__icon .icon {
  fill: #f00;
  transition: fill 0.3s ease;
}

.store-locator-store__street-address {
  font-size: 13px;
}

.store-locator-contact__title,
.store-locator-hours__title {
  font-size: 13px;
  text-transform: uppercase;
}

.store-locator-store__contact-details {
  flex: 1 1 auto;
}

.store-locator-store__tags {
  display: flex;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  flex: 1 1 auto;
}

.store-locator-store__tag {
  padding-left: 0.5em;
}

.store-locator-store__additional-details {
  flex: 1 1 100%;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  padding-top: 10px;
  display: none;
}
.store-locator__stores-list.has-active .store-locator-store .store-locator-store__additional-details {
  display: flex;
}
.store-locator-store__additional-details .store-locator-contact,
.store-locator-store__additional-details .store-locator-hours {
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (min-width: 799px) {
  .store-locator-store__additional-details {
    flex-wrap: nowrap;
  }
}
.store-locator-store__additional-details .store-locator-contact,
.store-locator-store__additional-details .store-locator-hours {
  margin-top: 15px;
}

.store-locator-store .store-locator-contact {
  flex: 1 0 50%;
}
.store-info-window .store-locator-contact {
  margin-bottom: 1em;
}

.store-locator-hours {
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
}
.store-locator-store .store-locator-hours {
  flex: 1 0 50%;
}

.store-locator-hours__periods {
  display: flex;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}

.store-locator-hours__period-title {
  flex: 0 0 auto;
  padding-right: 6px;
}

.store-locator-hours__period-times {
  flex: 0 0 auto;
}

.store-info-window__street-address {
  margin-bottom: 1em;
}

.gm-style .gm-style-iw-c {
  border-radius: 0;
}

.store-locator {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 75px;
  margin-bottom: 80px;
  min-height: 720px;
}
@media only screen and (max-width: 1024px) {
  .store-locator {
    margin-top: 50px;
    margin-bottom: 50px;
    max-width: 100%;
    min-height: 370px;
  }
}
@media only screen and (min-width: 1025px) {
  .store-locator {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1360px) {
  .store-locator {
    padding: 0;
  }
}
.store-locator .store-locator__head {
  padding: 0;
}
.store-locator .store-locator__head,
.store-locator .store-locator__stores-list-container {
  width: calc(38% - 60px);
}
@media only screen and (max-width: 1024px) {
  .store-locator .store-locator__head,
.store-locator .store-locator__stores-list-container {
    width: 100%;
  }
}
.store-locator .store-locator__map-view {
  width: 62%;
}
@media only screen and (max-width: 1024px) {
  .store-locator .store-locator__map-view {
    width: 100%;
    order: 2;
    height: 370px;
  }
}
.store-locator .store-locator__group-find-me {
  padding: 0;
  margin-top: 36px;
  margin-bottom: 46px;
  text-align: left;
}
@media only screen and (max-width: 798px) {
  .store-locator .store-locator__group-find-me {
    margin-bottom: 35px;
  }
}
.store-locator .store-locator__stores-list {
  border: none;
}
.store-locator .store-locator-store__icon {
  display: none;
}
.store-locator .store-locator-store {
  border-top: 2px solid #dfdad2;
  border-bottom: none;
  padding: 10px 0 18px;
  padding-left: 0 !important;
}
.store-locator .store-locator-store:first-child {
  border-top: none;
}
.store-locator .store-locator-store.in-view.is-active {
  padding-top: 0;
}
.store-locator .back-to-stores {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: none;
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.93;
  letter-spacing: 0.5px;
  text-align: center;
  color: #6c6c6c;
  border: 1px solid rgba(43, 42, 43, 0.5);
  border-radius: 2px;
  background-color: transparent;
}
@media only screen and (min-width: 799px) {
  .store-locator .store-locator__head {
    padding: 0;
  }
}
.store-locator .store-locator__group-find-me {
  text-align: left;
}
.store-locator .store-locator__titles {
  margin-right: 0;
  border-bottom: 2px solid #ddd;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 28px;
  line-height: 33.88px;
  font-weight: bold;
  color: #424240;
}
@media only screen and (min-width: 799px) {
  .store-locator .store-locator__titles {
    font-size: 35px;
    line-height: 39.9px;
  }
}
@media only screen and (min-width: 1025px) {
  .store-locator .store-locator__titles {
    margin-right: 45px;
  }
}
.store-locator .store-locator-store__title {
  margin-bottom: 10px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  color: #424240;
}
@media only screen and (min-width: 799px) {
  .store-locator .store-locator-store__title {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 28.08px;
  }
}
.store-locator .store-locator-store__title:hover {
  color: #cb1b46;
}
.store-locator .store-locator-data,
.store-locator .store-locator-data > *,
.store-locator .store-locator-data a {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 22.08px;
  font-weight: 300;
  color: #424240;
}
@media only screen and (min-width: 799px) {
  .store-locator .store-locator-data,
.store-locator .store-locator-data > *,
.store-locator .store-locator-data a {
    font-size: 16px;
    line-height: 20px;
  }
}
.store-locator .btn.back-to-stores {
  padding: 15px;
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
  font-family: "Addington CF", Montserrat, sans-serif;
  color: white;
  background: #424240;
  text-transform: uppercase;
  border: none;
}

.has-active-search .store-locator-store.in-view.is-active {
  padding: 10px 0 18px;
}

@media only screen and (max-width: 1024px) {
  .store-locator .store-locator__head,
.store-locator .store-locator__stores-list-container {
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
}

.page-stockist-page .store-locator .title.store-locator__title {
  margin-top: 18px;
}
@media only screen and (max-width: 480px) {
  .page-stockist-page #shopify-section-page-hero__banner .banner__wrapper.is-small .image-element__wrap {
    height: 64vh;
  }
}

.stockist-page-section {
  margin-top: 84px;
}
@media only screen and (max-width: 480px) {
  .stockist-page-section {
    margin-top: 40px;
  }
}

.store-locator-store .store-locator-contact {
  flex: auto;
}

.store-locator-contact,
.store-locator-hours,
.store-locator-store__street-address {
  display: flex;
  flex-direction: row;
}
.store-locator-contact .store-locator-data,
.store-locator-hours .store-locator-data,
.store-locator-store__street-address .store-locator-data {
  height: auto;
}
.store-locator-contact .store-locator-hours__period-title,
.store-locator-hours .store-locator-hours__period-title,
.store-locator-store__street-address .store-locator-hours__period-title {
  flex: 0 0 auto;
  padding-right: 6px;
  display: block;
}
.store-locator-contact .store-locator-hours__period-times,
.store-locator-hours .store-locator-hours__period-times,
.store-locator-store__street-address .store-locator-hours__period-times {
  flex: 0 0 auto;
  display: block;
  text-align: right;
}

.gm-style-iw {
  min-width: 323px !important;
}

.store-locator__stores-list.has-active .see-store-btn-details {
  display: none;
}

.has-active-store .store-locator__subtitle,
.has-active-store .store-locator__search,
.has-active-store .title.store-locator__title {
  display: none;
}
.has-active-store .store-locator-contact,
.has-active-store .store-locator-hours,
.has-active-store .store-locator-store__street-address {
  padding: 0;
  flex: auto;
}
.has-active-store .store-locator-store__additional-details .store-locator-hours {
  display: none;
}
.has-active-store .back-to-stores {
  margin-top: 0;
  cursor: pointer;
}
.has-active-store .back-to-stores.back-to-stores-desktop {
  display: flex;
  order: 3;
}
@media only screen and (max-width: 1024px) {
  .has-active-store .back-to-stores.back-to-stores-desktop {
    display: none;
  }
}
.has-active-store .back-to-stores.back-to-stores-mobile {
  display: none;
  display: flex;
  width: calc(100%);
  margin-bottom: 0;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  order: 3;
}
@media only screen and (max-width: 480px) {
  .has-active-store .back-to-stores.back-to-stores-mobile {
    display: flex;
    margin-bottom: 45px;
  }
}
@media only screen and (min-width: 1025px) {
  .has-active-store .back-to-stores.back-to-stores-mobile {
    display: none !important;
  }
}
.has-active-store .store-locator__stores-list-container {
  margin-bottom: 82px;
}
@media only screen and (max-width: 798px) {
  .has-active-store .store-locator__stores-list-container {
    margin-bottom: 69px;
  }
}
.has-active-store .store-locator__stores-list {
  justify-content: flex-end;
}
.has-active-store .store-locator-store.is-active {
  background-color: transparent;
  border: none;
  margin-right: 0;
}
.has-active-store .store-locator-store__details {
  flex-direction: column;
  padding: 0;
}
.has-active-store .store-locator-store__additional-details {
  flex-direction: column;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  flex-wrap: nowrap;
}
.has-active-store .store-locator__stores-list {
  height: auto;
}
.has-active-store .store-locator__stores-list.has-active {
  height: auto !important;
}

.has-active-store .store-locator__stores-list.has-active {
  max-height: none !important;
}

.store-locator-hours .store-locator-hours__period-times {
  flex: 0 0 auto;
}

.store-locator-data-svg {
  margin-right: 15px;
}

.store-locator:not(.has-active-store) .store-locator-store__subtitle {
  display: none;
}
.store-locator:not(.has-active-store) .store-locator__link-dir {
  display: none;
}
.store-locator:not(.has-active-store) .store-locator-data-svg {
  display: none;
}
.store-locator:not(.has-active-store) .store-locator-store__street-address .store-locator-data {
  margin-left: 0;
}

.store-locator-has-active-store .store-locator__head {
  display: none;
}
.store-locator-has-active-store #shopify-section-page-hero__banner {
  display: none;
}

.message-no_stores_found_text {
  display: none;
}

.store-locator__stores-list-container[data-stores-in-view-count="1"] .store-locator__stores-list {
  max-height: 100% !important;
}

.has-active-search .back-to-stores-desktop {
  display: flex;
  order: 1;
}
@media only screen and (max-width: 798px) {
  .has-active-search .back-to-stores-desktop {
    display: none;
  }
}
.has-active-search .back-to-stores-mobile {
  display: none;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  order: 3;
}
@media only screen and (max-width: 798px) {
  .has-active-search .back-to-stores-mobile {
    display: flex;
    margin-bottom: 45px;
    margin-top: 19px;
  }
}
@media only screen and (max-width: 798px) {
  .has-active-search .store-locator__stores-list {
    height: auto !important;
  }
}
.has-active-search.has-active-store .store-locator__stores-list {
  flex-direction: column;
}

.page-stockist-page .breadcrumb__container {
  display: none;
}
.page-stockist-page .collection__breadcrumb .breadcrumb__container {
  display: block;
}
.page-stockist-page.store-locator-has-active-store .breadcrumb__container {
  display: flex;
}

.back-to-stores-all {
  display: flex;
}

.has-active-search .back-to-stores-all {
  display: none;
}

.home-lookbook {
  max-width: none;
  width: 100%;
  margin-left: 15px;
  margin-right: 15px;
}
@media only screen and (min-width: 799px) {
  .home-lookbook {
    margin-left: 40px;
    margin-right: 40px;
  }
}
.home-lookbook .section-title {
  width: 100%;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  color: #424240;
}
@media only screen and (min-width: 799px) {
  .home-lookbook .section-title {
    font-size: 24px;
    line-height: 28.08px;
  }
}
.home-lookbook [id*=evm-lookbook-] {
  width: 100%;
}
.home-lookbook [id*=evm-lookbook-] ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-lookbook [id*=evm-lookbook-] ul li {
  padding: 0 !important;
  flex: 0 0 100%;
  min-width: 100%;
}
@media only screen and (min-width: 799px) {
  .home-lookbook [id*=evm-lookbook-] ul li:nth-child(n+2) {
    flex: 0 0 calc(50% - 7.5px);
    min-width: calc(50% - 7.5px);
  }
}
@media only screen and (min-width: 799px) and (min-width: 799px) {
  .home-lookbook [id*=evm-lookbook-] ul li:nth-child(n+2) {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
  }
}
.home-lookbook [id*=evm-lookbook-] .evm_lookbook_detail {
  padding: 10px;
  width: 162px !important;
  max-width: 162px !important;
  border-radius: 0 !important;
  border: 1px solid #424240;
}
@media only screen and (min-width: 799px) {
  .home-lookbook [id*=evm-lookbook-] .evm_lookbook_detail {
    padding: 15px;
    width: 210px !important;
    max-width: 210px !important;
  }
}
.home-lookbook [id*=evm-lookbook-] .evm_lookbook_detail .evm_look_book_title,
.home-lookbook [id*=evm-lookbook-] .evm_lookbook_detail .evm_product_price {
  padding: 0 10px;
}
.home-lookbook [id*=evm-lookbook-] .evm_lookbook_detail .evm_lookbook_detail_content,
.home-lookbook [id*=evm-lookbook-] .evm_lookbook_detail .evm_product_price {
  text-align: left;
}
.home-lookbook [id*=evm-lookbook-] .evm_lookbook_detail .evm_lookbook_img {
  width: 100% !important;
  height: 120px !important;
  max-width: none !important;
  background-position: center;
}
@media only screen and (min-width: 799px) {
  .home-lookbook [id*=evm-lookbook-] .evm_lookbook_detail .evm_lookbook_img {
    height: 155px !important;
  }
}
.home-lookbook [id*=evm-lookbook-] .evm_lookbook_detail .evm_look_book_title {
  margin-top: 10px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 18px;
  line-height: 25.02px;
  font-weight: bold;
  color: #424240;
}
.home-lookbook [id*=evm-lookbook-] .evm_lookbook_detail .evm_product_price {
  margin-top: 0;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #424240;
}
.home-lookbook [id*=evm-lookbook-] .evm_shop_now [id*=evm_shopnow_anchor] {
  margin-top: 10px;
  display: block;
  width: 100%;
  padding: 12px !important;
  border-radius: 2px !important;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 14px !important;
  line-height: 14px !important;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: white !important;
}
@media only screen and (min-width: 799px) {
  .home-lookbook [id*=evm-lookbook-] .evm_shop_now [id*=evm_shopnow_anchor] {
    margin-top: 22px;
    padding: 18px !important;
  }
}
.home-lookbook .evm_tag_view .plus_icon {
  width: 28px;
  height: 28px;
  border: 9px solid #000;
  background: #fff !important;
}
.home-lookbook .evm_tag_view .plus_icon .plus_icon_container {
  display: none;
}
.home-lookbook .evm_tag_view .plus_icon:before, .home-lookbook .evm_tag_view .plus_icon:after {
  content: none;
}

.home-instafeed [data-insta-feed-loading] {
  display: none;
}
.home-instafeed > .title {
  margin-bottom: 10px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  color: #424240;
  text-transform: capitalize;
}
@media only screen and (min-width: 799px) {
  .home-instafeed > .title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 28.08px;
  }
}
.home-instafeed .button.button--link-style, .home-instafeed .not-found-404__page .not-found-text p > a.button--link-style, .not-found-404__page .not-found-text .home-instafeed p > a.button--link-style {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 15px !important;
  line-height: 16.05px !important;
  font-weight: 500;
  color: #424240;
}
.home-instafeed #insta-feed {
  margin: 20px -15px 0 -15px;
  padding: 0 !important;
}
.home-instafeed #insta-feed .slide-page {
  margin: 0 15px;
}
.home-instafeed #insta-feed .slide-page .instafeed-container {
  width: calc(16.6666666% - 30px) !important;
}
.home-instafeed #insta-feed .slide-page .instafeed-container img {
  width: 100% !important;
  height: 100% !important;
}
.home-instafeed #insta-feed .slide-page .instafeed-container .instafeed-overlay {
  width: 100% !important;
  height: 100% !important;
}
.home-instafeed #insta-feed .slider-arrow {
  font-size: 0;
  line-height: 0;
}
.home-instafeed #insta-feed .slider-arrow:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-instafeed #insta-feed .slider-arrow[style*=right] {
  width: 77px;
  height: 87px;
  right: 15px !important;
}
.home-instafeed #insta-feed .slider-arrow[style*=right]:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'%3E%3Cpath fill='%23222' d='M13.137 20.747c-.187.215-.182.559.012.767.193.209.502.203.689-.013l5.025-5.793c.183-.21.183-.544 0-.755l-5.025-5.787c-.187-.216-.496-.222-.69-.013-.193.208-.198.552-.011.767l4.698 5.411-4.698 5.416z' /%3E%3C/svg%3E");
}
.home-instafeed #insta-feed .slider-arrow[style*=left] {
  width: 77px;
  height: 87px;
  left: 15px !important;
}
.home-instafeed #insta-feed .slider-arrow[style*=left]:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'%3E%3Cpath fill='%23222' d='M17.863 20.747c.187.215.182.559-.012.767-.193.209-.502.203-.689-.013l-5.025-5.793c-.183-.21-.183-.544 0-.755l5.025-5.787c.187-.216.496-.222.69-.013.193.208.198.552.011.767l-4.698 5.411 4.698 5.416z' /%3E%3C/svg%3E");
}
.home-instafeed #insta-feed-slider {
  padding-bottom: 60px;
}
.home-instafeed #insta-feed-slider .slider-item {
  width: 80%;
  margin-left: 6.5px;
  margin-right: 6.5px;
}
@media only screen and (min-width: 799px) {
  .home-instafeed #insta-feed-slider .slider-item {
    width: calc(16.66666% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
}
.home-instafeed #insta-feed-slider a[href*=-insta-feed] {
  display: block;
}
.home-instafeed #insta-feed-slider a[href*=-insta-feed] .instafeed-container {
  position: relative;
  padding-bottom: 100%;
}
.home-instafeed #insta-feed-slider a[href*=-insta-feed] .instafeed-container .js-lazy-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-instafeed #insta-feed-slider .flickity-button {
  display: none;
  width: 77px;
  height: 87px;
  top: calc(50% - 30px);
  background: white;
  border-radius: 0;
}
.home-instafeed #insta-feed-slider .flickity-button .flickity-button-icon {
  width: 10px;
  height: auto;
}
.home-instafeed #insta-feed-slider .flickity-button.previous {
  left: 0;
}
.home-instafeed #insta-feed-slider .flickity-button.next {
  right: 0;
}
@media only screen and (min-width: 799px) {
  .home-instafeed #insta-feed-slider .flickity-button {
    display: block;
  }
}
.home-instafeed #insta-feed-slider .flickity-page-dots {
  display: none;
  bottom: 0;
}
@media only screen and (min-width: 799px) {
  .home-instafeed #insta-feed-slider .flickity-page-dots {
    display: block;
  }
}

.section_sidebar_rewards {
  width: 100%;
  max-width: 306px;
  margin-right: 60px;
  margin-left: 60px;
}
@media only screen and (max-width: 1024px) {
  .section_sidebar_rewards {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
.section_sidebar_rewards img {
  max-width: 306px;
}
@media only screen and (max-width: 1024px) {
  .section_sidebar_rewards img {
    max-width: 331px;
  }
}
.section_sidebar_rewards .rewards-sidebar-title {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  padding-bottom: 20px;
  padding-top: 20px;
  color: #424240;
}
@media only screen and (max-width: 1024px) {
  .section_sidebar_rewards .rewards-sidebar-title {
    font-size: 20px;
    line-height: 1;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .section_sidebar_rewards .rewards-sidebar-title br {
    display: none;
  }
}
.section_sidebar_rewards .rewards-sidebar-text {
  max-width: 263px;
}
@media only screen and (max-width: 1024px) {
  .section_sidebar_rewards .rewards-sidebar-text {
    max-width: 100%;
  }
}
.section_sidebar_rewards .rewards-sidebar-text p {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  color: #424240;
}
@media only screen and (max-width: 1024px) {
  .section_sidebar_rewards .rewards-sidebar-text p {
    line-height: 1.38;
  }
}
.section_sidebar_rewards .sidebar_nav {
  max-width: 271px;
  margin-top: 52px;
}
@media only screen and (max-width: 1024px) {
  .section_sidebar_rewards .sidebar_nav {
    max-width: 100%;
    margin-top: 20px;
    position: relative;
  }
}
@media only screen and (max-width: 1024px) {
  .section_sidebar_rewards .sidebar_nav p.category_filter_blog.active {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (max-width: 1024px) {
  .section_sidebar_rewards .sidebar_nav ul {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .section_sidebar_rewards .sidebar_nav .title-mob-nav-drobdown span.icon.acount-rewards-nav {
    transform: rotate(90deg);
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 1024px) {
  .section_sidebar_rewards .sidebar_nav.open_nav .title-mob-nav-drobdown span.icon.acount-rewards-nav {
    transform: rotate(270deg);
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 1024px) {
  .section_sidebar_rewards .sidebar_nav.open_nav ul {
    display: block;
    position: absolute;
    width: 100%;
    top: 39px;
    background: #ffff;
    z-index: 39;
  }
}
@media only screen and (max-width: 1024px) {
  .section_sidebar_rewards .sidebar_nav.open_nav ul span.icon.acount-rewards-nav {
    display: none;
  }
}
.section_sidebar_rewards .sidebar_nav li {
  padding: 18px 0;
  border-bottom: 1px solid #dfdfdf;
}
@media only screen and (max-width: 1024px) {
  .section_sidebar_rewards .sidebar_nav li {
    padding: 5px 0;
    border: 1px solid #dfdfdf;
    border-top: 0;
  }
}
.section_sidebar_rewards .sidebar_nav li a, .section_sidebar_rewards .sidebar_nav li .category_filter_blog {
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: 0.4px;
  padding: 10px 10px 9px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #424240;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .section_sidebar_rewards .sidebar_nav li a, .section_sidebar_rewards .sidebar_nav li .category_filter_blog {
    font-size: 13px;
    color: #676f78;
    font-weight: bold;
    line-height: normal;
    letter-spacing: normal;
  }
}
.section_sidebar_rewards .sidebar_nav li a:hover, .section_sidebar_rewards .sidebar_nav li a.active, .section_sidebar_rewards .sidebar_nav li .category_filter_blog:hover, .section_sidebar_rewards .sidebar_nav li .category_filter_blog.active {
  color: #424240;
  text-decoration: underline;
  background: #dfdfdf;
}
.section_sidebar_rewards .sidebar_nav li span.icon.acount-rewards-nav {
  height: 10px;
}
@media only screen and (max-width: 1024px) {
  .section_sidebar_rewards .sidebar_nav li.active-li {
    display: none;
  }
}
.section_sidebar_rewards .sidebar_nav .title-mob-nav-drobdown {
  font-size: 13px;
  font-weight: bold;
  font-stretch: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #dfdfdf;
  padding: 9px 9px 9px 20px;
  cursor: pointer;
  transition: all 0.3s;
  color: #676f78;
}
.section_sidebar_rewards .sidebar_nav .title-mob-nav-drobdown a {
  font-size: 13px;
  font-weight: bold;
  font-stretch: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #676f78;
  width: 100%;
}
@media only screen and (min-width: 1025px) {
  .section_sidebar_rewards .sidebar_nav .title-mob-nav-drobdown {
    display: none;
  }
}
.section_sidebar_rewards .sidebar_nav .title-mob-nav-drobdown span.icon.acount-rewards-nav {
  height: 12px;
}

.faq-rewards-section {
  width: calc(100% - 426px);
  max-width: 872px;
}
@media only screen and (max-width: 1024px) {
  .faq-rewards-section {
    width: 100%;
    max-width: 100%;
    margin-top: 100px;
  }
}
.faq-rewards-section .faq-rewards-wrap {
  overflow: hidden;
  transition: all 0.4s;
}
.faq-rewards-section .faq-rewards-wrap.open {
  border-bottom: 1px solid #d6d6d6;
  height: auto;
  transition: all 0.4s;
}
.faq-rewards-section .faq-rewards-wrap.open .faq-rewards-nav {
  transform: rotate(180deg);
}
.faq-rewards-section .faq-rewards-wrap.open .faq-rewards-title {
  border-bottom: 0;
  padding-bottom: 25px;
}
.faq-rewards-section .faq-rewards-wrap .faq-rewards-title {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  padding: 30px 0;
  border-bottom: 1px solid #d6d6d6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #424240;
}
@media only screen and (max-width: 1024px) {
  .faq-rewards-section .faq-rewards-wrap .faq-rewards-title {
    line-height: 1.11;
    padding: 25px 0;
  }
}
.faq-rewards-section .faq-rewards-wrap:first-child .faq-rewards-title {
  padding-top: 0;
}
.faq-rewards-section .faq-rewards-wrap .faq-rewards-nav {
  height: 14px;
  margin-left: 15px;
}
.faq-rewards-section .faq-rewards-wrap .faq-rewards-nav .icon svg {
  width: 20px;
}
.faq-rewards-section .faq-rewards-wrap .faq-rewards-text {
  height: 0;
  transition: all 0.8s;
}
@media only screen and (max-width: 1024px) {
  .faq-rewards-section .faq-rewards-wrap .faq-rewards-text {
    padding-right: 16px;
  }
}
.faq-rewards-section .faq-rewards-wrap .faq-rewards-text p {
  color: #000;
  margin-bottom: 13px;
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
}
.faq-rewards-section .faq-rewards-wrap .faq-rewards-text p strong {
  color: #424240;
  font-weight: bold;
}
.faq-rewards-section .faq-rewards-wrap .faq-rewards-text p:last-child {
  margin-bottom: 0;
}
.faq-rewards-section .open .faq-rewards-text {
  height: auto;
  padding: 0px 0 24px;
  transition: all 0.8s;
}

.collection-product-banner {
  display: flex;
  height: 100%;
}
.collection-product-banner:not(.collection-product-banner--fullwidth) {
  padding-bottom: 30px;
}
.collection-product-banner:not(.collection-product-banner--fullwidth) .collection-product-banner__body,
.collection-product-banner:not(.collection-product-banner--fullwidth) .collection-product-banner__image-wrap {
  flex: 0 0 100%;
  max-width: 100%;
}
@media only screen and (min-width: 1201px) {
  .collection-product-banner:not(.collection-product-banner--fullwidth) .collection-product-banner__body,
.collection-product-banner:not(.collection-product-banner--fullwidth) .collection-product-banner__image-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.collection-product-banner .collection-product-banner__body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
	text-align: center;
  color: #eff3f5;
  background: #F1EBDD;
  gap: 8px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.collection-product-banner .collection-product-banner__body .collection-product-banner__logo {
    margin-bottom: 16px;
}

.collection-product-banner .collection-product-banner__body .collection-product-banner__title {
  margin-top: 6px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 36px;
  line-height: 35px;
  font-weight: 700;
  color: inherit;
}
.collection-product-banner .collection-product-banner__body .collection-product-banner__description {
  margin-top: 24px;
  font-family: "DM Sans", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: inherit;
}
.collection-product-banner .collection-product-banner__body .button.button--primary, .collection-product-banner .collection-product-banner__body .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .collection-product-banner .collection-product-banner__body p > a {
  margin-top: auto;
  width: 100%;
  padding: 14px;
  font-family: "DM Sans", Montserrat, sans-serif;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #eff3f5;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
.collection-product-banner .collection-product-banner__body .collection-product-banner__phone {
  margin-top: 10px;
}
.collection-product-banner .collection-product-banner__body .collection-product-banner__phone,
.collection-product-banner .collection-product-banner__body .collection-product-banner__email {
  margin-left: auto;
  margin-right: auto;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 13px;
  line-height: 20.02px;
  font-weight: 300;
  text-align: center;
  color: inherit;
}
.collection-product-banner .collection-product-banner__image-wrap {
  display: none;
}
.collection-product-banner .collection-product-banner__image-wrap img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media only screen and (min-width: 1201px) {
  .collection-product-banner .collection-product-banner__image-wrap {
    display: flex;
  }
}
.collection-product-banner.collection-product-banner--fullwidth {
  position: relative;
  flex-direction: column;
  min-height: 210px;
}
.collection-product-banner.collection-product-banner--fullwidth .collection-product-banner__title {
  margin-top: 0;
}
.collection-product-banner.collection-product-banner--fullwidth .collection-product-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.collection-product-banner.collection-product-banner--fullwidth .collection-product-banner__body {
  min-height: 210px;
  align-items: center;
  background: rgba(10, 9, 9, 0.58);
  z-index: 1;
}
.collection-product-banner.collection-product-banner--fullwidth .collection-product-banner__body .collection-product-banner__title,
.collection-product-banner.collection-product-banner--fullwidth .collection-product-banner__body .collection-product-banner__description {
  text-align: center;
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
}
.collection-product-banner.collection-product-banner--fullwidth .collection-product-banner__body .button, .collection-product-banner.collection-product-banner--fullwidth .collection-product-banner__body .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .collection-product-banner.collection-product-banner--fullwidth .collection-product-banner__body p > a {
  margin-top: 20px;
}
.collection-product-banner.collection-product-banner--fullwidth .collection-product-banner__body .button.button--primary, .collection-product-banner.collection-product-banner--fullwidth .collection-product-banner__body .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .collection-product-banner.collection-product-banner--fullwidth .collection-product-banner__body p > a {
  background: transparent;
  max-width: 220px;
}

[id*=hs-form-iframe-] {
  max-width: 100%;
}

.home-staging-sidebar-column {
  display: none;
}
@media only screen and (min-width: 799px) {
  .home-staging-sidebar-column {
    display: block;
  }
}

.home-staging-sidebar .home-staging-sidebar__image {
  margin-bottom: 15px;
}
.home-staging-sidebar .home-staging-sidebar__title {
  margin-bottom: 30px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 27px;
  line-height: 21.87px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #424240;
}
.home-staging-sidebar .home-staging-sidebar__text {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 24px;
  line-height: 28.08px;
  font-weight: bold;
  color: #424240;
}

.home-staging-slideshow-with-text {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.shopify-section.contactus-page {
  padding: 40px 0 40px;
}

h1.contact_form_title {
  margin: 30px 0;
}

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

.action_bottom .button, .action_bottom .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .action_bottom p > a,
.recover-options .button,
.recover-options .not-found-404__page .not-found-text p > a,
.not-found-404__page .not-found-text .recover-options p > a {
  margin-right: 5px;
}

.account-sidebar {
  margin-right: 50px;
}
@media only screen and (max-width: 1024px) {
  .account-sidebar {
    margin-right: 0;
    width: 100%;
  }
}

.active_account_item {
  display: none;
  padding: 12px 16px;
  border: 1px solid #d3d6d9;
}
@media only screen and (max-width: 1024px) {
  .active_account_item {
    display: block;
  }
}

.active_account_item p {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: 0.37px;
  color: #676f78;
}

ul.my_account_nav {
  max-width: 335px;
}

.acoount_container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .acoount_container {
    display: block;
  }
}
.acoount_container .recently-viewed-products-section {
  width: 100% !important;
}

.account-email-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.account-main {
  width: 891px;
}
.account-main .email_pref_checkbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.account-main .email_pref_checkbox .button.button--primary, .account-main .email_pref_checkbox .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .account-main .email_pref_checkbox p > a {
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  width: 217px;
  height: 50px;
  border-radius: 2px;
  margin-top: 49px;
}
@media only screen and (max-width: 1024px) {
  .account-main .email_pref_checkbox .button.button--primary, .account-main .email_pref_checkbox .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .account-main .email_pref_checkbox p > a {
    margin-top: 11px;
  }
}
@media only screen and (max-width: 798px) {
  .account-main .email_pref_checkbox .button.button--primary, .account-main .email_pref_checkbox .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .account-main .email_pref_checkbox p > a {
    width: 100%;
  }
}
.account-main .email_pref_checkbox input[type=checkbox]:checked,
.account-main .email_pref_checkbox input[type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.account-main .email_pref_checkbox input[type=checkbox]:checked + label,
.account-main .email_pref_checkbox input[type=checkbox]:not(:checked) + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  display: flex;
}
.account-main .email_pref_checkbox label:before {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #d3d6d9;
  content: " ";
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.account-main .email_pref_checkbox input[type=checkbox]:checked + label:before {
  content: "✓";
}
.account-main .email_pref_checkbox label {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #424240;
}
@media only screen and (max-width: 1024px) {
  .account-main {
    width: 100%;
    margin-top: 24px;
  }
}
.account-main h1 {
  font-family: "Addington CF";
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  color: #424240;
}

.account_text {
  font-family: "Addington CF";
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #424240;
  width: 100%;
}

.account-header {
  padding-bottom: 28px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
}

h2.account_h2,
.section_my_account__address h2.recently-viewed-products__title {
  font-family: "Addington CF";
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: normal;
  margin-bottom: 10px;
}

.section_my_account__address {
  margin-top: 50px;
}

.adress_account-w {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .adress_account-w {
    display: block;
  }
}

.adress_inner-w {
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  .adress_inner-w {
    width: 100%;
  }
}

.account-nav-container {
  width: 236px;
  border-radius: 2px;
  border: 1px solid #ededed;
  padding: 11px 0;
}
@media only screen and (max-width: 1024px) {
  .account-nav-container {
    width: 100%;
    display: none;
  }
}

.my_account_nav_item {
  position: relative;
  margin-left: 15px;
  margin-right: 13px;
}

.my_account_nav_item.active:after,
.my_account_nav_item:hover:after {
  width: 2px;
  height: 35px;
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  background-color: #000;
}

.my_account_nav_item a {
  padding: 11px 0 10px 0;
  font-family: "Addington CF";
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: normal;
  text-align: left;
  color: #000;
  display: inline-block;
}

.my_account_login_item {
  border-top: 1px solid #ededed;
  margin-top: 5px;
}

span.myaccount_counter {
  width: 19px;
  height: 19px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: auto;
  right: 12px;
  font-size: 12px;
  color: white;
}

.orders-table {
  min-width: 100%;
}

.orders-table tr.odd {
  background: #f2f2f2;
}

.orders-table td {
  font-family: "Addington CF";
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #242424;
}

.orders-table th {
  color: #242424;
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: uppercase;
  padding: 16px 12px;
  padding-right: 3px;
}

.orders-table td p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 200px;
}

.order_status {
  border-radius: 2px;
  font-size: 11px;
  width: auto;
  padding: 7px 38px;
  background: #faa47d;
  text-align: center;
}

.order_status.Fulfilled-order {
  background: #81cb9f;
}

.orders-table .order_status_td {
  padding: 5px;
}

.orders-table td a {
  font-size: 11px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: normal;
  text-align: center;
  color: #00a2e1;
  text-align: center;
  display: inline-block;
  vertical-align: top;
}

.order_link_td {
  text-align: center;
}

.adress_inner-w {
  border-radius: 2px;
  border: solid 1px #e2e2e2;
  position: relative;
  padding: 20px;
}

.edit_adress_link {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 12px;
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.85;
  letter-spacing: normal;
  text-decoration: underline;
  color: #00a2e1;
}
.edit_adress_link:hover {
  color: #424240;
}

.adress_inner-w p {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
}
.adress_inner-w p a {
  color: #424240;
}

.noadress_message {
  margin-top: 32px;
  color: #424240;
}

.last_orders .account_h2 {
  display: flex;
  justify-content: space-between;
}
.last_orders .account_h2 .last_order_view_all {
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.85;
  letter-spacing: normal;
  text-decoration: underline;
  color: #00a2e1;
}
.last_orders .account_h2 .last_order_view_all:hover {
  color: #2222;
}

.adress_inner-w.adress_inner-w_first {
  margin-right: 6px;
}
@media only screen and (max-width: 1024px) {
  .adress_inner-w.adress_inner-w_first {
    margin-right: 0;
    margin-bottom: 12px;
  }
}

.adress_inner-w.adress_inner-w-second {
  margin-left: 6px;
}
@media only screen and (max-width: 1024px) {
  .adress_inner-w.adress_inner-w-second {
    margin-left: 0;
  }
}

p.my_account__address.adress_subtitle {
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
  margin-bottom: 10px;
}

.section_my_account__address section.section {
  width: 100%;
}

.orders-table {
  min-width: 891px;
}

.order-table-btn {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 43px;
  justify-content: center;
  align-items: center;
  top: 0;
  z-index: 10;
  cursor: pointer;
  display: none;
}

@media only screen and (max-width: 1260px) {
  .order-table-btn {
    display: flex;
  }
}
.order-table-container::-webkit-scrollbar {
  display: none;
}

.order-table-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.order-btn-left {
  right: auto;
  left: 0;
}

.order-btn-right {
  right: 0;
  left: auto;
}

.order-table-container {
  position: relative;
  overflow: auto;
}

.order-table-wrapper {
  position: relative;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.order-detailes_w {
  display: flex;
  justify-content: space-between;
}
.order-detailes_w .order_datales_title {
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  color: #424240;
}
.order-detailes_w .order_datales_info {
  margin: 10px 0;
  color: #424240;
}
.order-detailes_w .order_status {
  margin: 7px 0;
  max-width: 150px;
}
.order-detailes_w .button.button--secondary, .order-detailes_w .not-found-404__page .not-found-text p > a.button--secondary, .not-found-404__page .not-found-text .order-detailes_w p > a.button--secondary {
  font-family: "Addington CF";
  border-radius: 2px;
  font-size: 14px;
  padding: 17px 44px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.5px;
  margin-right: 14px;
}

@media only screen and (max-width: 798px) {
  p.tracking_no_info {
    width: 100%;
    text-align: center;
  }
}

.order_detail_inner_trask {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f2f2f2;
  padding: 19px 14px 19px 20px;
  margin-top: 43px;
}
.order_detail_inner_trask .items-link_w {
  display: flex;
}
@media only screen and (max-width: 798px) {
  .order_detail_inner_trask .items-link_w {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}
.order_detail_inner_trask .items-link {
  font-family: "Addington CF";
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-decoration: underline;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .order_detail_inner_trask .items-link {
    font-size: 14px;
    font-weight: normal;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.07;
  }
}
.order_detail_inner_trask .btn_track {
  font-family: "Addington CF";
  font-weight: 500;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  border-radius: 2px;
  padding: 17px 29px;
}
.order_detail_inner_trask .order_detail_inner {
  padding-right: 14px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1024px) {
  .order_detail_inner.shipping_inner,
.order_detail_inner.reorder_inner {
    display: none;
  }
}

.order_detail_inner {
  margin-top: 24px;
}
@media only screen and (max-width: 798px) {
  .order_detail_inner {
    width: 50%;
  }
}

.order-items-w {
  margin-top: 50px;
  margin-bottom: 50px;
}
.order-items-w .table.product-table span {
  color: #424240;
}
.order-items-w .table.product-table thead tr,
.order-items-w .table.product-table tbody tr {
  border: 1px solid #d3d3d3;
}
.order-items-w .table.product-table th {
  text-transform: initial;
  padding: 18px 20px 14px;
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
}
.order-items-w .table.product-table .product_td_inner {
  display: flex;
  margin: 12px;
}
.order-items-w .table.product-table .cline_item_description {
  display: flex;
  flex-direction: column;
  margin-left: 17px;
  margin-top: 21px;
}
.order-items-w .table.product-table .cline_item_description a {
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  color: #424240;
  text-align: left;
}
.order-items-w .table.product-table ul {
  padding: 3px 0 0;
}
.order-items-w .table.product-table ul li {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  padding: 3px 0;
  color: #424240;
}
.order-items-w .table.product-table ul li:last-child {
  margin-bottom: -10px;
}
.order-items-w .table.product-table .item_prod_prise {
  padding: 7px 0;
  color: #424240;
}
.order-items-w .table.product-table td.qwantity {
  vertical-align: middle;
  padding: 20px;
}
.order-items-w .table.product-table td.qwantity p {
  color: #424240;
}
.order-items-w .table.product-table td.subtottal_p {
  vertical-align: middle;
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  min-width: 120px;
}
.order-items-w .table.product-table td.tfoot-title {
  border-left: 1px solid #d3d3d3;
  padding: 10px;
  color: #424240;
}
.order-items-w .table.product-table td.tfoot-info {
  border-right: 1px solid #d3d3d3;
  color: #424240;
  padding: 10px;
}
.order-items-w .table.product-table tr:last-child td.tfoot-title,
.order-items-w .table.product-table tr:last-child td.tfoot-info {
  border-bottom: 1px solid #d3d3d3;
}
@media only screen and (max-width: 1024px) {
  .order-items-w .table.product-table tr:last-child tbody td:first-child {
    width: 60%;
  }
}
@media only screen and (max-width: 798px) {
  .order-items-w .table.product-table tr:last-child tbody td:first-child {
    width: 100%;
  }
}

.content_order_info {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #d3d3d3;
  padding-top: 50px;
  margin-bottom: 50px;
  align-items: center;
}
.content_order_info .content_order_wprap {
  max-width: 626px;
  margin-right: 30px;
  margin-bottom: 15px;
}
.content_order_info .content_order_wprap h2 {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: normal;
  margin-bottom: 10px;
}
@media only screen and (max-width: 798px) {
  .content_order_info .content_order_wprap h2 {
    font-size: 12px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
  }
}
.content_order_info .content_order_wprap p {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .content_order_info .content_order_wprap p {
    font-size: 13px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.54;
    letter-spacing: 0.4px;
  }
}
.content_order_info .learn_more.button.button--secondary, .content_order_info .not-found-404__page .not-found-text p > a.learn_more.button--secondary, .not-found-404__page .not-found-text .content_order_info p > a.learn_more.button--secondary {
  font-family: "Addington CF";
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 17px 66px;
}

@media only screen and (min-width: 1024px) and (max-width: 1260px) {
  .container.main-account_container {
    flex-wrap: nowrap;
  }
  .container.main-account_container .account-main {
    min-width: 722px;
  }
}
.order-details_section {
  padding-top: 50px;
}
.order-details_section .product-table {
  min-width: 100%;
}

@media only screen and (min-width: 1024px) and (max-width: 1260px) {
  .order-details_section tbody td:first-child {
    width: 60%;
  }
}
@media only screen and (max-width: 798px) {
  td.qwantity,
td.subtottal_p,
.quantity_th,
.total_th {
    display: none;
  }
}

@media only screen and (max-width: 798px) {
  .product-table tbody td:first-child {
    width: 100%;
  }
}

@media only screen and (max-width: 798px) {
  td.tfoot-empty {
    display: none;
  }
}

@media only screen and (max-width: 798px) {
  .order_detail_inner_trask {
    flex-wrap: wrap;
    padding: 43px 22px 22px 20px;
  }
}

@media only screen and (max-width: 798px) {
  .items-link_w {
    margin-bottom: 34px;
  }
}

@media only screen and (max-width: 798px) {
  a.btn_track.button--primary, .not-found-404__page .not-found-text p > a.btn_track {
    width: 100%;
    text-align: center;
  }
}

.acount-icon--rotate {
  height: 15px;
  position: absolute;
  right: 15px;
  top: 15px;
  color: #000;
  transition: all 0.3s;
}

.acc-nav-open .acount-icon--rotate {
  transform: rotate(90deg);
  transition: all 0.3s;
}

.customers-reset_password .account-reset-page {
  padding: 60px 0;
}
.customers-reset_password .account-reset-page .button.button--primary, .customers-reset_password .account-reset-page .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .customers-reset_password .account-reset-page p > a {
  width: 100%;
  margin-top: 15px;
  padding: 17px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
}
@media only screen and (min-width: 799px) {
  .customers-reset_password .account-reset-page .button.button--primary, .customers-reset_password .account-reset-page .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .customers-reset_password .account-reset-page p > a {
    width: auto;
  }
}

.customers-order .account_text {
  margin: 15px 0;
}

/* # Blog
================================================== */
.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: #eeeeee;
}

.meta-info-list {
  font-size: 0.8em;
}
.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: #6c6c6c;
}
.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: rgba(108, 108, 108, 0.3);
}

.heading-wrapper.heading-wrapper .button--link-style,
.featured-blog-heading .button--link-style {
  font-family: "DM Sans", Montserrat, sans-serif;
  font-size: 15px !important;
  line-height: 16px !important;
  font-weight: 500;
  color: #424240 !important;
  border-bottom-color: #424240 !important;
}
.heading-wrapper.heading-wrapper .button--link-style:hover,
.featured-blog-heading .button--link-style:hover {
  color: #424240 !important;
  border-bottom-color: #424240 !important;
}
.heading-wrapper.heading-wrapper .button--link-style:focus,
.featured-blog-heading .button--link-style:focus {
  box-shadow: none;
}

.featured-blog__title.title,
.featured-collection__title.title {
  margin-bottom: 10px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-weight: 500;
  color: #424240;
  font-size: 20px !important;
  line-height: 20px !important;
  text-transform: capitalize;
}
@media only screen and (min-width: 799px) {
  .featured-blog__title.title,
.featured-collection__title.title {
    font-size: 24px !important;
    line-height: 28.08px !important;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: thin solid #eeeeee;
  box-shadow: 0 2px 3px rgba(238, 238, 238, 0.1), 0 0 0 1px rgba(238, 238, 238, 0.1);
}
@media only screen and (max-width: 798px) {
  .blog-card {
    margin-bottom: 40px;
  }
}
.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 {
    max-height: 15rem;
  }
}
.blog-card .media-content {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
}
.blog-card .media-content .title {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 24px;
  line-height: 28.08px;
  font-weight: 500;
}
.blog-card .blog-card__read-more {
  margin: auto 1.5rem 1.5rem;
}
.blog-card .blog-card__read-more .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .blog-card .blog-card__read-more p > a {
  height: auto;
  white-space: normal;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 15px;
  line-height: 16.05px;
  font-weight: 500;
}

.blog-card .blog-card__read-more .button {
  height: auto;
  white-space: normal;
  font-family: "DM Sans", Montserrat, sans-serif;
  font-size: 15px;
  line-height: 16.05px;
  font-weight: 500;
}

.blog-card.has-overlay .blog-card__image .image-element__wrap {
  max-width: none !important;
  max-height: none;
  width: 100%;
}
.blog-card .blog-card__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
}
.blog-card .blog-card__overlay.blog-card__overlay.blog-card__overlay * {
  color: white;
}
.blog-card .blog-card__overlay.blog-card__overlay.blog-card__overlay .button--link-style {
  border-bottom-color: white;
}
.blog-card .blog-card__overlay.blog-card__overlay.blog-card__overlay .button--link-style:hover {
  color: #222222;
  border-bottom-color: #222222 !important;
}
.blog-card .blog-card__overlay .card-content,
.blog-card .blog-card__overlay .blog-card__read-more {
  padding: 0 15px;
}
.blog-card .blog-card__overlay .blog-card__read-more {
  margin: 10px 0 0 0;
}
.blog-card .blog-card__overlay .media-content,
.blog-card .blog-card__overlay .blog-card__read-more {
  text-align: center;
}

@media only screen and (min-width: 799px) {
  .blog-posts .flickity-progress-wrap {
    display: none;
  }
}

[data-index-blog-posts]:after {
  content: "";
  display: none;
}
@media only screen and (max-width: 798px) {
  [data-index-blog-posts] .blog-card {
    width: 80% !important;
  }
  [data-index-blog-posts]:after {
    content: "flickity";
  }
}

@media only screen and (min-width: 799px) {
  [data-index-blog-posts-progress] {
    display: none;
  }
}
@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 {
  position: relative;
  max-height: 6em;
  overflow: hidden;
}
.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
================================================== */
#shopify-section-cart__main * {
  color: #424240;
}
#shopify-section-cart__main .money.sale {
  color: #cb1b46 !important;
}

.shipping-messages {
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .shipping-messages {
    -moz-flex-direction: column;
    flex-direction: column;
  }
}

.shipping-messages__message {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
}
@media only screen and (max-width: 798px) {
  .shipping-messages__message {
    line-height: 22px;
  }
}
@media only screen and (max-width: 798px) {
  .shipping-messages__message.shipping-messages__message--empty {
    text-align: center;
  }
}

.shipping-messages__icon .icon {
  margin-right: 20px;
  width: 25px;
  height: 25px;
}
@media only screen and (max-width: 798px) {
  .shipping-messages__icon .icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.cart__empty-cart-message {
  padding: 80px 20px;
}
@media only screen and (max-width: 798px) {
  .cart__empty-cart-message {
    padding: 30px 35px;
  }
}

.cart__text-wrapper {
  margin-top: 50px;
  margin-bottom: 45px;
}

.cart__empty-text,
.cart-page__title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}

@media only screen and (max-width: 798px) {
  .cart-page__title {
    font-size: 20px;
    line-height: 20px;
  }
}

.cart__empty-extra-text {
  font-size: 13px;
  line-height: 18px;
  font-weight: 300;
  letter-spacing: 0.4px;
}

.cart__continue-shopping {
  font-size: 13px;
  line-height: 11px;
  font-weight: 500;
  text-decoration: underline;
}

.heading-wrapper.heading-wrapper--cart-page {
  margin-top: 50px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 798px) {
  .heading-wrapper.heading-wrapper--cart-page {
    margin-top: 15px;
    margin-bottom: 17px;
  }
}

.cart__form {
  max-width: 753px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 20px 100px;
}
@media only screen and (max-width: 798px) {
  .cart__form {
    padding: 20px;
  }
}
.cart__form .shipping-messages__icon .icon {
  margin-right: 10px;
}

.cart__headings {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 17px 15px;
  background-color: #ffffff;
  border: 1px solid #d3d6d9;
}
@media only screen and (max-width: 1024px) {
  .cart__headings {
    display: none;
  }
}

.cart__product-title,
.cart__quantity-title,
.cart__total-title {
  font-size: 13px;
  line-height: normal;
  font-weight: 700;
  text-align: left;
}

.cart__product-title {
  width: 42%;
}

.cart__quantity-title {
  width: 17%;
}

.cart__total-title {
  width: 41%;
}

.cart__item-list {
  width: 100%;
  background-color: #ffffff;
  border-left: 1px solid #d3d6d9;
  border-right: 1px solid #d3d6d9;
}

.cart__card {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d3d6d9;
  padding: 15px 0 15px 15px;
}
@media only screen and (max-width: 798px) {
  .cart__card {
    padding: 0;
  }
}
.cart__card button.swym-button.swym-add-to-wishlist-view-product {
  max-width: -webkit-max-content;
  max-width: max-content;
  display: flex;
}
.cart__card button.swym-button.swym-add-to-wishlist-view-product:after {
  content: "Save to wishlist";
  font: 500 11px "Addington CF";
  color: #424240 !important;
  text-transform: initial;
  text-decoration: underline;
}
.cart__card button.swym-button.swym-add-to-wishlist-view-product.swym-added:after {
  content: "Added to wishlist";
}

 .cart__card-errors {
  color: #f00;
  text-align: center;
  width: 100%;
  margin-top: 10px;
}
 .cart__card-errors.cart__card-errors--hidden {
  display: none;
}
 .cart__errors {
  color: #f00;
  text-align: center;
  width: 100%;
  margin-top: 10px;
}

.cart__errors.cart__errors--hidden {
  display: none;
} 

.item__title {
  margin-bottom: 7px;
}
.item__title,
.item__title a {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
}
@media only screen and (max-width: 798px) {
  .item__title,
.item__title a {
    width: calc(100% - 16px);
    font-size: 12px;
    line-height: 16px;
  }
}

.item__properties {
  margin-bottom: 7px;
}
.item__properties,
.item__properties * {
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
}

.cart__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 105px);
  position: relative;
}
@media only screen and (max-width: 798px) {
  .cart__info {
    flex-direction: column;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    width: calc(100% - 125px);
    padding: 10px 11px 10px 13px;
  }
}
@media only screen and (max-width: 480px) {
  .cart__info {
    width: calc(100% - 115px);
  }
}

.cart__total {
  flex-direction: row;
  text-align: center;
  width: 15%;
}
.cart__total span {
  display: block;
}
.cart__total .money {
  font-size: 13px;
  font-weight: 700;
}

@media only screen and (max-width: 798px) {
  .cart__total {
    display: none;
  }
}

.cart__image {
  width: 105px;
}
@media only screen and (max-width: 798px) {
  .cart__image {
    width: 124px;
  }
}
@media only screen and (max-width: 480px) {
  .cart__image {
    width: 115px;
  }
}

.cart__description {
  width: 30%;
  padding: 0 10px 0 25px;
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
}
@media only screen and (max-width: 798px) {
  .cart__description {
    -moz-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    width: 100%;
    margin-right: auto;
    padding: 0;
    text-align: left;
  }
}
.cart__description .cart__text {
  flex: auto;
}

.cart__price {
  text-align: left;
}
@media only screen and (max-width: 798px) {
  .cart__price {
    display: flex;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
    flex: 0 0 auto;
    text-align: right;
    margin: 16px 0 8px;
  }
}
.cart__price p {
  display: flex;
}
@media only screen and (max-width: 798px) {
  .cart__price p {
    flex-direction: column;
  }
}
.cart__price .money {
  font-size: 13px;
  line-height: normal;
  font-weight: 700;
}
@media only screen and (max-width: 798px) {
  .cart__price .money {
    font-size: 11px;
  }
}
.cart__price .money.was-price {
  order: -1;
  opacity: 1;
  margin-right: 15px;
}
@media only screen and (max-width: 798px) {
  .cart__price .money.was-price {
    margin-right: 0;
  }
}

.cart__quantity {
  display: flex;
  position: relative;
  width: 17%;
}
@media only screen and (max-width: 798px) {
  .cart__quantity {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 20;
  }
}
.cart__quantity .product-quantity-box.purchase-details__quantity {
  width: auto;
}
@media only screen and (max-width: 480px) {
  .cart__quantity .product-quantity-box.purchase-details__quantity {
    margin-top: 0;
  }
}
.cart__quantity .quantity-wrapper.quantity-style--box.is-medium .quantity-plus,
.cart__quantity .quantity-wrapper.quantity-style--box.is-medium .quantity-minus,
.cart__quantity .quantity-wrapper.quantity-style--box.is-medium .quantity-input {
  width: 30px;
  height: 30px;
  min-width: 30px;
  padding: 0;
  border: 0.5px solid;
}
@media only screen and (max-width: 480px) {
  .cart__quantity .quantity-wrapper.quantity-style--box.is-medium .quantity-plus,
.cart__quantity .quantity-wrapper.quantity-style--box.is-medium .quantity-minus,
.cart__quantity .quantity-wrapper.quantity-style--box.is-medium .quantity-input {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
}
.cart__quantity .quantity-wrapper.quantity-style--box.is-medium .quantity-plus,
.cart__quantity .quantity-wrapper.quantity-style--box.is-medium .quantity-minus {
  background-color: transparent;
  border-color: #424240;
}
.cart__quantity .quantity-wrapper.quantity-style--box.is-medium .quantity-plus .icon,
.cart__quantity .quantity-wrapper.quantity-style--box.is-medium .quantity-minus .icon {
  fill: #424240;
}
.cart__quantity .quantity-wrapper.quantity-style--box.is-medium .quantity-plus[disabled],
.cart__quantity .quantity-wrapper.quantity-style--box.is-medium .quantity-minus[disabled] {
  opacity: 0.7;
}
.cart__quantity .quantity-wrapper.quantity-style--box.is-medium .quantity-input {
  border-left: none;
  border-right: none;
  border-color: #adb2b8;
}
@media only screen and (max-width: 480px) {
  .cart__quantity .quantity-wrapper.quantity-style--box.is-medium .quantity-input {
    font-size: 10px !important;
  }
}

.cart-save-for-later {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: #222;
  text-decoration: underline;
  background: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  font-size: 11px;
  line-height: 11px;
  font-weight: 500;
  cursor: pointer;
}
.cart-save-for-later:hover {
  opacity: 0.9;
}

.ajax-cart__product .cart-save-for-later {
  position: absolute;
  right: 20px;
  bottom: 18px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 500;
}
@media only screen and (max-width: 798px) {
  .ajax-cart__product .cart-save-for-later {
    font-size: 11px;
    line-height: 11px;
  }
}

.cart__wishlist-button {
  display: flex;
  justify-content: center;
  width: 18%;
  flex-direction: column;
}
.cart__wishlist-button .swym-button,
.cart__wishlist-button .cart-save-for-later {
  margin-left: auto !important;
}
@media only screen and (max-width: 798px) {
  .cart__wishlist-button {
    position: absolute;
    bottom: 15px;
    right: 13px;
    width: 35%;
    margin-top: 0;
    justify-content: flex-end;
  }
}

.cart__quantity-warning {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.cart__remove {
  width: 20%;
  text-align: center;
}
@media only screen and (max-width: 798px) {
  .cart__remove {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 30px;
  }
}
.cart__remove .close {
  width: 32px;
  height: 32px;
  max-height: 32px;
  max-width: 32px;
  background-color: transparent;
  outline: none;
}
.cart__remove .icon {
  width: 22px;
  height: 22px;
  max-height: 22px;
  max-width: 22px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .cart__remove .icon {
    max-height: 16px;
    max-width: 16px;
  }
}

.original-price {
  opacity: 0.2;
}

.line-item-discount__container {
  color: #cd3535;
  background: rgba(199, 0, 0, 0.1);
  border-radius: 3px;
  font-size: 0.8em;
  padding: 10px;
  margin: 5px 0;
}

.cart__bottom {
  display: grid;
  grid-template-areas: "pickup cost-summary" "pickup checkout";
  grid-template-columns: 55% 45%;
  align-content: start;
  grid-template-rows: 160px;
}
@media only screen and (max-width: 798px) {
  .cart__bottom {
    grid-template-areas: "cost-summary" "pickup" "checkout";
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
}

.cart__store-pickup {
  grid-area: pickup;
}
@media only screen and (max-width: 798px) {
  .cart__store-pickup #storePickupApp {
    margin-top: 0;
  }
}

.cart__cost-summary,
.cart__checkout-container {
  width: 100%;
  padding-left: 23px;
}
@media only screen and (max-width: 798px) {
  .cart__cost-summary,
.cart__checkout-container {
    padding-left: 0;
  }
}

.cart__cost-summary {
  margin-top: 26px;
  margin-bottom: 20px;
  grid-area: cost-summary;
}
@media only screen and (max-width: 798px) {
  .cart__cost-summary {
    margin-bottom: 16px;
  }
}

.cart__summary-item {
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #d6d6d6;
}
.cart__summary-item:not(:last-child) {
  border-bottom: 0;
}
@media only screen and (max-width: 798px) {
  .cart__summary-item {
    padding: 15px;
  }
}
.cart__summary-item * {
  font-size: 13px;
  line-height: normal;
  font-weight: 700;
}
@media only screen and (max-width: 798px) {
  .cart__summary-item * {
    font-size: 14px;
  }
}

.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: #cd3535;
}

.was-price {
  color: #b3b3b3;
}

.cart__checkout-container {
  grid-area: checkout;
}

.cart__featured-links {
  min-width: 236px;
  /* Set a minimum width to match the width of the checkout button */
  margin-top: 15px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  text-align: center;
}

.cart__checkout {
  width: 100%;
}
.cart__checkout .button.checkout, .cart__checkout .not-found-404__page .not-found-text p > a.checkout, .not-found-404__page .not-found-text .cart__checkout p > a.checkout {
  width: 100%;
  height: 50px;
  padding: 0;
  font: 700 14px/50px "Addington CF" !important;
  text-transform: uppercase;
  color: #ffffff !important;
  border: none;
  background-color: #424240;
  outline: none;
}
.cart__checkout .button.checkout:hover, .cart__checkout .not-found-404__page .not-found-text p > a.checkout:hover, .not-found-404__page .not-found-text .cart__checkout p > a.checkout:hover {
  background-color: #606060;
}

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

.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-footer-wrapper {
  border-top: 1px solid #cccccc;
}

.cart-footer {
  justify-content: space-between;
  padding: 20px 0;
}
@media only screen and (max-width: 798px) {
  .cart-footer {
    justify-content: center;
  }
}

.cart-footer__links {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 798px) {
  .cart-footer__links {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 30px;
  }
}
.cart-footer__links li {
  margin-right: 25px;
}
@media only screen and (max-width: 798px) {
  .cart-footer__links li {
    margin-right: 0;
  }
}
.cart-footer__links .cart-footer__link {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #424240;
}
.cart-footer__links .cart-footer__link .icon {
  width: 20px;
  height: 15px;
  margin-right: 9px;
}

.cart-footer__payments .icon {
  width: 38px;
  height: 38px;
  margin-left: 22px;
}

/* # Collection
================================================== */
.boost-pfs-body-no-scroll {
  position: static !important;
  overflow: auto !important;
}
.boost-pfs-body-no-scroll body {
  overflow: auto !important;
  position: static !important;
}

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

.sub-collection-main main {
  min-height: 0;
}

.collection__loading-icon {
  width: 100%;
  display: none;
}

.collection .product__thumbnail.has-padding-bottom,
.search .product__thumbnail.has-padding-bottom {
  padding-bottom: 15px;
}
@media only screen and (min-width: 799px) {
  .collection .product__thumbnail.has-padding-bottom,
.search .product__thumbnail.has-padding-bottom {
    padding-bottom: 20px;
  }
}

:root {
  --collection-banner-order: 7;
  --collection-banner-order-mobile: 5;
}

.boost-pfs-filter-products .product-wrap {
  padding: 0;
}

.boost-pfs-filter-products .collection-product-wrapper {
  order: var(--collection-banner-order);
}
@media only screen and (min-width: 799px) {
  .boost-pfs-filter-products .product-wrap {
    padding: 19px 18px 24px 18px;
  }
  .boost-pfs-filter-products .product-wrap:hover {
    border-color: #D6D6D6;
  }
}
.boost-pfs-filter-products .collection-product-wrapper {
  order: var(--collection-banner-order);
}
@media only screen and (max-width: 1024px) {
  .boost-pfs-filter-products .collection-product-wrapper {
    order: var(--collection-banner-order-mobile);
  }
}

.collection .related-categories-by-tag .related-categories-by-tag__title {
  flex: 0 0 auto;
}

.search .related-categories-by-tag .related-categories-by-tag__title {
  flex: 0 0 auto;
}

.collection-page #shopify-section-collection-featured-collection {
  padding-top: 30px;
}
@media only screen and (min-width: 799px) {
  .collection-page #shopify-section-collection-featured-collection {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 798px) {
  .collection-page .boost-pfs-filter-tree-mobile-style2.boost-pfs-filter-tree-v {
    width: 100% !important;
  }
  .collection-page .boost-pfs-filter-tree-mobile-style2.boost-pfs-filter-tree-v .boost-pfs-filter-options-wrapper {
    width: calc(100% - 20px) !important;
  }
  .collection-page .boost-pfs-filter-tree-mobile-style2 .boost-pfs-filter-mobile-toolbar .boost-pfs-filter-mobile-toolbar-top {
    width: 0 !important;
  }
  .collection-page .boost-pfs-filter-tree-mobile-style2 .boost-pfs-filter-mobile-toolbar .boost-pfs-filter-mobile-toolbar-top {
    right: 0;
    left: auto;
  }
  .collection-page .boost-pfs-filter-tree-mobile-style2 .boost-pfs-filter-mobile-toolbar .boost-pfs-filter-mobile-toolbar-top .boost-pfs-filter-close {
    position: relative;
  }
  .collection-page .boost-pfs-filter-tree-mobile-style2 .boost-pfs-filter-mobile-toolbar .boost-pfs-filter-mobile-toolbar-top .boost-pfs-filter-close > span {
    position: absolute;
    top: 0;
    right: 0;
  }
  .collection-page .boost-pfs-filter-tree-mobile-style2 .boost-pfs-filter-mobile-toolbar .boost-pfs-filter-mobile-toolbar-items .boost-pfs-filter-mobile-toolbar-right button {
    margin-right: 40px;
  }
  .collection-page .boost-pfs-filter-tree-mobile-style2 .boost-pfs-filter-mobile-footer {
    width: 100%;
  }
}
.collection-page .collection__filters {
  margin-bottom: 10px;
  padding: 25px 10px;
  border: 1px solid #d6d6d6;
  border-left: none;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (min-width: 799px) {
  .collection-page .collection__filters {
    padding: 25px 0;
    padding-left: 235px;
  }
}
.collection-page .collection__filters .collection__sort-by-filter {
  height: auto;
  display: flex;
  align-items: center;
  width: auto;
}
.collection-page .collection__filters .collection__sort-by-filter .label {
  margin: 0;
  flex: 0 0 auto;
  margin-right: 18px;
  font-family: "DM Sans", Montserrat, sans-serif;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  color: #424240;
  display: none;
}
@media only screen and (min-width: 799px) {
  .collection-page .collection__filters .collection__sort-by-filter .label {
    display: flex;
  }
}
.collection-page .collection__filters .collection__sort-by-filter .boost-pfs-filter-top-sorting select {
  padding: 0 40px 0 0;
  font-family: "DM Sans", Montserrat, sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  height: auto;
  color: #424240;
  border: none;
  text-decoration: underline;
}
.collection-page .collection__filters .collection__sort-by-filter .boost-pfs-filter-top-sorting select, .collection-page .collection__filters .collection__sort-by-filter .boost-pfs-filter-top-sorting select:focus {
  outline: none;
  box-shadow: none;
}
.collection-page .boost-pfs-filter-tree-v .boost-pfs-filter-refine-by,
.collection-page .boost-pfs-filter-refine-by-wrapper-v .boost-pfs-filter-refine-by {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 22.08px;
  font-weight: 300;
  letter-spacing: normal;
  color: #424240;
  text-align: left;
  text-transform: none;
}
.collection-page .boost-pfs-filter-tree-v .boost-pfs-filter-refine-by .boost-pfs-filter-option-title h3 span,
.collection-page .boost-pfs-filter-refine-by-wrapper-v .boost-pfs-filter-refine-by .boost-pfs-filter-option-title h3 span {
  text-transform: none;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 15px;
  line-height: 15px;
  font-weight: 700 !important;
  color: #424240;
}
.collection-page .boost-pfs-filter-tree-v .boost-pfs-filter-refine-by .boost-pfs-filter-refine-by-items .refine-by-item .refine-by-type .refine-by-option,
.collection-page .boost-pfs-filter-refine-by-wrapper-v .boost-pfs-filter-refine-by .boost-pfs-filter-refine-by-items .refine-by-item .refine-by-type .refine-by-option {
  color: #424240;
  font-weight: 300;
}
.collection-page .boost-pfs-filter-mobile-footer button.boost-pfs-filter-show-result {
  padding: 15px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}
.collection-page .boost-pfs-filter-tree-mobile-button button {
  padding: 15px;
  font-family: "DM Sans", Montserrat, sans-serif;
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
  color: var(--text-font, #424240);
  border: 1px solid var(--brand-brand-1, #495240);
  background: white;
  letter-spacing: 1.6px;
}
.collection-page .boost-pfs-filter-load-more .boost-pfs-filter-load-more-button {
  margin-top: 20px;
  padding: 15px;
  width: 250px;
  max-width: 100%;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
  color: white;
  background: #424240;
  cursor: pointer;
}
.collection-page .boost-pfs-filter-custom-total,
.collection-page .boost-pfs-filter-load-more-total {
  width: auto;
  margin: 0;
  font-family: "DM Sans", Montserrat, sans-serif;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: normal;
  color: #424240;
  text-align: left;
  text-transform: none;
}
@media only screen and (min-width: 799px) {
  .collection-page .boost-pfs-filter-custom-total,
.collection-page .boost-pfs-filter-load-more-total {
    font-size: 16px;
    margin: 0 auto;
    text-align: center;
  }
}
.collection-page .boost-pfs-filter-sidebar {
  color: #424240;
  width: 100%;
}
@media only screen and (min-width: 799px) {
  .collection-page .boost-pfs-filter-sidebar {
    width: 225px;
    padding-top: 40px;
  }
}
.collection-page .boost-pfs-filter-products {
  padding-top: 40px;
  margin-left: 0;
}
@media only screen and (min-width: 799px) {
  .collection-page .boost-pfs-filter-products {
    margin-left: 10px;
    padding-left: 40px;
  }

  .collection-page .boost-pfs-filter-products:has(.one-third) {
    gap: 90px;
  }
}
.collection-page #shopify-section-collection__main,
.collection-page #shopify-section-search__main {
  width: 100%;
}
@media only screen and (min-width: 799px) {
  .collection-page #shopify-section-collection__main,
.collection-page #shopify-section-search__main {
    width: calc(100% - 225px);
  }
}
@media only screen and (min-width: 799px) {
  .collection-page .boost-pfs-filter-products {
    border-left: 1px solid #d6d6d6;
  }
}
.collection-page .boost-pfs-filter-tree-v .boost-pfs-filter-option {
  padding: 0;
}
.collection-page .boost-pfs-filter-tree-v .boost-pfs-filter-option .boost-pfs-filter-option-title .boost-pfs-filter-clear {
  padding: 0;
  margin-right: 20px;
}
.collection-page .boost-pfs-filter-tree-v .boost-pfs-filter-option .boost-pfs-filter-option-title .boost-pfs-filter-option-title-heading {
  padding: 0;
  text-transform: none;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 15px;
  line-height: 15px;
  font-weight: 400 !important;
  color: #424240;
}
.collection-page .boost-pfs-filter-tree-v .boost-pfs-filter-option.boost-pfs-filter-option-collapsed .boost-pfs-filter-option-title .boost-pfs-filter-option-title-heading span:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='15px' viewBox='0 0 24 24' width='15px' fill='%23000000'%0A%3E%3Cpath d='M0 0h24v24H0V0z' fill='none' /%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z' /%3E%3C/svg%3E%0A");
}
.collection-page .boost-pfs-filter-tree-v .boost-pfs-filter-option .boost-pfs-filter-option-title .boost-pfs-filter-option-title-heading {
  position: static;
}
.collection-page .boost-pfs-filter-tree-v .boost-pfs-filter-option .boost-pfs-filter-option-title .boost-pfs-filter-option-title-heading span:before {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  margin: 0;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='15px' viewBox='0 0 24 24' width='15px' fill='%23000000'%0A%3E%3Cpath d='M0 0h24v24H0V0z' fill='none' /%3E%3Cpath d='M19 13H5v-2h14v2z' /%3E%3C/svg%3E%0A");
  width: 15px;
  height: 15px;
}
.collection-page .boost-pfs-filter-tree-v .boost-pfs-filter-option .boost-pfs-filter-option-title {
  padding: 22px 10px;
}
.collection-page .boost-pfs-filter-option-content .boost-pfs-filter-option-item-list .boost-pfs-filter-option-item button {
  display: flex;
}
.collection-page .boost-pfs-filter-option-content .boost-pfs-filter-option-item-list .boost-pfs-filter-option-item button .boost-pfs-check-box {
  margin-right: 5px;
  flex: 0 0 auto;
}
.collection-page .boost-pfs-filter-option-content .boost-pfs-filter-option-item-list .boost-pfs-filter-option-item button .boost-pfs-filter-option-amount {
  margin-left: auto;
}
.collection-page .boost-pfs-filter-option-content .boost-pfs-filter-option-item-list .boost-pfs-filter-option-item button .boost-pfs-filter-option-value {
  margin-right: 3px;
}
.collection-page .boost-pfs-filter-option-content .boost-pfs-filter-option-item-list .boost-pfs-filter-option-item {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 15px;
  line-height: 15px;
  font-weight: 300;
  color: #424240;
}
.collection-page .boost-pfs-filter-option .boost-pfs-filter-option-content .boost-pfs-filter-option-amount {
  opacity: 1;
  white-space: nowrap;
}
.collection-page .boost-pfs-filter-option-content .boost-pfs-filter-option-item-list.boost-pfs-filter-option-item-list-multiple-list li .boost-pfs-check-box {
  position: static;
}
.collection-page .boost-pfs-filter-option-content {
  padding-top: 0;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 20px;
}
.collection-page .boost-pfs-filter-option-content .boost-pfs-filter-option-item-list.boost-pfs-filter-option-item-list-multiple-list li.selected .boost-pfs-check-box:before {
  top: 8px;
  left: 3px;
}
.collection-page .collection-page .boost-pfs-filter-option-content {
  padding-left: 10px;
  padding-right: 20px;
}
.collection-page .boost-pfs-filter-option-content .boost-pfs-filter-option-item-list .boost-pfs-filter-option-item {
  margin: 0;
  padding: 5px 0;
}
.collection-page .boost-pfs-filter-option.boost-pfs-filter-has-scrollbar .boost-pfs-filter-option-content .boost-pfs-filter-option-content-inner ul {
  padding: 0;
  margin: 0;
}
.collection-page .bg-gray {
  background: #f0f0f0;
}
.section__wrapper.seo-collection {
  max-width: 1360px;
}
.collection-page .seo-collection.active .seo-description {
  display: block;
}
.collection-page .seo-collection .seo-title {
  margin-bottom: 20px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 50px;
  line-height: 50px;
  font-weight: 400;
  color: #424240;
}
.collection-page .seo-collection .seo-description {
  margin-bottom: 30px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #424240;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.collection-page .seo-collection .button.button--link-style, .collection-page .seo-collection .not-found-404__page .not-found-text p > a.button--link-style, .not-found-404__page .not-found-text .collection-page .seo-collection p > a.button--link-style {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 400;
  color: #424240;
  outline: none;
}

/* #FAQ
================================================== */
.page-faq__column-wrap {
  width: 100%;
}

@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;
}
.column-wrapper .faq--image {
  padding-left: 36px;
}
@media only screen and (max-width: 798px) {
  .column-wrapper .faq--image {
    padding-left: 0;
    padding-top: 20px;
  }
}

.accordion dt,
.faq-accordion dt {
  border-bottom: 1px solid #eeeeee;
  position: relative;
}
.accordion dt a,
.accordion dt button,
.faq-accordion dt a,
.faq-accordion dt button {
  background: none;
  border: 0;
  color: #6c6c6c;
  cursor: pointer;
  display: block;
  font-size: 1.2rem;
  padding: 20px 20px 20px 40px;
  text-align: left;
  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 small,
.accordion dt .icon,
.faq-accordion dt small,
.faq-accordion dt .icon {
  position: absolute;
  left: 10px;
  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;
}
.accordion dt .accordion-style--plus_and_minus .icon.icon--active,
.faq-accordion dt .accordion-style--plus_and_minus .icon.icon--active {
  display: block;
}

.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(0, 0, 0, 0.03);
}

.accordion dd,
.faq-accordion dd {
  display: none;
  padding: 20px 20px 20px 40px;
}

.faq-accordion dt .icon {
  color: #222222;
}

.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(180deg);
}

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

/* # 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: 24px;
  font-weight: 400;
  line-height: 31.25px;
  font-family: 'DM sans';
  padding: 12px 0;
  border-top: none;
  border-bottom: none;
}
.title.password-page-title {
  font-size: 120px;
  text-transform: uppercase;
  font-weight: 300;
}
@media only screen and (max-width: 798px) {
  .password-page .password-page-message {
    font-size: 18px;
    line-height: 23.44px;
    max-width: 315px;
    margin: 0 auto;
  }
}
.password-page .password-logo {
  max-width: 200px;
  margin: 0 auto;
}
.password-page .password-title {
  font-family: "Mundo Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  text-transform: none;
}
.password-page .overlay {
  
  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 #eeeeee;
  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: #6c6c6c;
}

.storefront-password-form {
  padding-bottom: 30px;
  overflow: auto;
  color: #6c6c6c;
}

.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: #6c6c6c;
}

.customers-addresses .adress-table-w, .customers-addresses .mydetails_form, .customers-account-mydetails .adress-table-w, .customers-account-mydetails .mydetails_form {
  margin-top: 10px;
}
.customers-addresses .adress-table-w .field_name input[type=text], .customers-addresses .adress-table-w .field_name input[type=tel], .customers-addresses .adress-table-w .field_company input[type=text], .customers-addresses .adress-table-w .field_company input[type=tel], .customers-addresses .mydetails_form .field_name input[type=text], .customers-addresses .mydetails_form .field_name input[type=tel], .customers-addresses .mydetails_form .field_company input[type=text], .customers-addresses .mydetails_form .field_company input[type=tel], .customers-account-mydetails .adress-table-w .field_name input[type=text], .customers-account-mydetails .adress-table-w .field_name input[type=tel], .customers-account-mydetails .adress-table-w .field_company input[type=text], .customers-account-mydetails .adress-table-w .field_company input[type=tel], .customers-account-mydetails .mydetails_form .field_name input[type=text], .customers-account-mydetails .mydetails_form .field_name input[type=tel], .customers-account-mydetails .mydetails_form .field_company input[type=text], .customers-account-mydetails .mydetails_form .field_company input[type=tel] {
  border: 0;
  border-bottom: 1px solid #424240;
  margin: 10px;
  color: #000000;
  font-family: "Addington CF";
  font-weight: 300;
  font-size: 16px;
}
.customers-addresses .adress-table-w .field_company input[type=text], .customers-addresses .adress-table-w .field_company input[type=tel], .customers-addresses .mydetails_form .field_company input[type=text], .customers-addresses .mydetails_form .field_company input[type=tel], .customers-account-mydetails .adress-table-w .field_company input[type=text], .customers-account-mydetails .adress-table-w .field_company input[type=tel], .customers-account-mydetails .mydetails_form .field_company input[type=text], .customers-account-mydetails .mydetails_form .field_company input[type=tel] {
  width: calc(100% - 20px);
}
.customers-addresses .adress-table-w .field_company select, .customers-addresses .mydetails_form .field_company select, .customers-account-mydetails .adress-table-w .field_company select, .customers-account-mydetails .mydetails_form .field_company select {
  margin: 10px;
  padding: 7px 15px;
  font-size: 16px;
  color: #000000;
  font-family: "Addington CF";
  font-weight: 300;
  font-size: 16px;
}
.customers-addresses .adress-table-w .field_name, .customers-addresses .mydetails_form .field_name, .customers-account-mydetails .adress-table-w .field_name, .customers-account-mydetails .mydetails_form .field_name {
  display: flex;
}
.customers-addresses .adress-table-w .field_submit, .customers-addresses .mydetails_form .field_submit, .customers-account-mydetails .adress-table-w .field_submit, .customers-account-mydetails .mydetails_form .field_submit {
  display: flex;
  align-items: center;
}
.customers-addresses .adress-table-w .field_submit input.button.button--secondary, .customers-addresses .mydetails_form .field_submit input.button.button--secondary, .customers-account-mydetails .adress-table-w .field_submit input.button.button--secondary, .customers-account-mydetails .mydetails_form .field_submit input.button.button--secondary {
  margin: 10px;
  font-family: "Addington CF";
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  padding: 17px 57px;
  text-transform: uppercase;
}
.customers-addresses .adress-table-w .field_submit button, .customers-addresses .mydetails_form .field_submit button, .customers-account-mydetails .adress-table-w .field_submit button, .customers-account-mydetails .mydetails_form .field_submit button {
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.85;
  color: #00a2e1;
  text-decoration: underline;
  cursor: pointer;
}
.customers-addresses .adress-table-w .td_hiden, .customers-addresses .mydetails_form .td_hiden, .customers-account-mydetails .adress-table-w .td_hiden, .customers-account-mydetails .mydetails_form .td_hiden {
  display: none;
}
.customers-addresses .adress-table-w .address-delete-form button, .customers-addresses .mydetails_form .address-delete-form button, .customers-account-mydetails .adress-table-w .address-delete-form button, .customers-account-mydetails .mydetails_form .address-delete-form button {
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background: transparent;
  cursor: pointer;
}
.customers-addresses .adress-table-w .adress_edit, .customers-addresses .mydetails_form .adress_edit, .customers-account-mydetails .adress-table-w .adress_edit, .customers-account-mydetails .mydetails_form .adress_edit {
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.85;
  color: #00a2e1;
  text-decoration: underline;
  cursor: pointer;
}
.customers-addresses .adress-table-w .orders-table td, .customers-addresses .mydetails_form .orders-table td, .customers-account-mydetails .adress-table-w .orders-table td, .customers-account-mydetails .mydetails_form .orders-table td {
  vertical-align: middle;
}
.customers-addresses .adress-table-w .edit_address, .customers-addresses .mydetails_form .edit_address, .customers-account-mydetails .adress-table-w .edit_address, .customers-account-mydetails .mydetails_form .edit_address {
  border-bottom: 1px solid #efefef;
}
.customers-addresses .field-flex, .customers-account-mydetails .field-flex {
  display: flex;
  align-items: center;
  margin: 10px;
}
.customers-addresses .field-flex label.inline, .customers-account-mydetails .field-flex label.inline {
  margin: 0 10px;
}
.customers-addresses .under-table-w, .customers-account-mydetails .under-table-w {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
@media only screen and (max-width: 798px) {
  .customers-addresses .under-table-w, .customers-account-mydetails .under-table-w {
    flex-direction: column-reverse;
  }
}
.customers-addresses .orders_pagi_w, .customers-account-mydetails .orders_pagi_w {
  margin: 0;
}
.customers-addresses .button_add_adress, .customers-account-mydetails .button_add_adress {
  padding: 0;
}
@media only screen and (max-width: 798px) {
  .customers-addresses .button_add_adress, .customers-account-mydetails .button_add_adress {
    margin-top: 40px;
  }
}
.customers-addresses .adr_form_head, .customers-account-mydetails .adr_form_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid #cccccc;
}
@media only screen and (max-width: 798px) {
  .customers-addresses .adr_form_head, .customers-account-mydetails .adr_form_head {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 17px;
    border-bottom: none;
  }
}
.customers-addresses .control, .customers-account-mydetails .control {
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 798px) {
  .customers-addresses .control, .customers-account-mydetails .control {
    display: block;
  }
}
.customers-addresses .control input, .customers-account-mydetails .control input {
  border: 0;
  border-bottom: 1px solid #d3d6d9;
  width: auto;
  width: 100%;
  font-weight: 500;
  color: #000000;
}
.customers-addresses .control input:focus, .customers-account-mydetails .control input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
  border-bottom: 1px solid #424240;
}
.customers-addresses .control select, .customers-account-mydetails .control select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d3d6d9;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}
@media only screen and (max-width: 798px) {
  .customers-addresses .sity_control, .customers-account-mydetails .sity_control {
    margin-top: 33px;
  }
}
.customers-addresses .name_control, .customers-addresses .second_name_control, .customers-addresses .sity_control, .customers-account-mydetails .name_control, .customers-account-mydetails .second_name_control, .customers-account-mydetails .sity_control {
  width: calc(50% - 15px);
}
@media only screen and (max-width: 798px) {
  .customers-addresses .name_control, .customers-addresses .second_name_control, .customers-addresses .sity_control, .customers-account-mydetails .name_control, .customers-account-mydetails .second_name_control, .customers-account-mydetails .sity_control {
    width: 100%;
  }
}
.customers-addresses .field__flex, .customers-account-mydetails .field__flex {
  display: flex;
  align-items: flex-end;
  margin-top: 38px;
}
@media only screen and (max-width: 798px) {
  .customers-addresses .field__flex, .customers-account-mydetails .field__flex {
    margin-top: 33px;
    display: block;
  }
}
@media only screen and (max-width: 798px) {
  .customers-addresses .second_name_control, .customers-addresses .name_control, .customers-account-mydetails .second_name_control, .customers-account-mydetails .name_control {
    margin-top: 33px;
  }
}
.customers-addresses .field_inline, .customers-account-mydetails .field_inline {
  margin-top: 38px;
}
@media only screen and (max-width: 798px) {
  .customers-addresses .field_inline, .customers-account-mydetails .field_inline {
    margin-top: 33px;
  }
}
.customers-addresses .field_inline .control, .customers-account-mydetails .field_inline .control {
  width: 100%;
}
.customers-addresses .phone_control, .customers-account-mydetails .phone_control {
  max-width: 320px;
}
@media only screen and (max-width: 798px) {
  .customers-addresses .phone_control, .customers-account-mydetails .phone_control {
    width: 100%;
    max-width: 100%;
  }
}
.customers-addresses .fields_spase, .customers-account-mydetails .fields_spase {
  justify-content: space-between;
}
@media only screen and (max-width: 798px) {
  .customers-addresses .fields_spase, .customers-account-mydetails .fields_spase {
    margin-top: 0;
  }
}
.customers-addresses .label_adress, .customers-account-mydetails .label_adress {
  display: block;
  width: auto;
  white-space: nowrap;
  padding-right: 20px;
  font-size: 18px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  font-family: "Addington CF";
  color: #424240;
  padding-bottom: 6px;
}
@media only screen and (max-width: 798px) {
  .customers-addresses .label_adress, .customers-account-mydetails .label_adress {
    font-size: 11px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.54px;
    color: #adb2b8;
  }
}
.customers-addresses .adresss_edit_checkbox, .customers-account-mydetails .adresss_edit_checkbox {
  padding: 50px 0;
  color: #424240;
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  font-family: "Addington CF";
}
@media only screen and (max-width: 798px) {
  .customers-addresses .adresss_edit_checkbox, .customers-account-mydetails .adresss_edit_checkbox {
    padding-bottom: 11px;
  }
}
.customers-addresses .adresss_edit_checkbox label.inline, .customers-account-mydetails .adresss_edit_checkbox label.inline {
  padding-left: 10px;
}
.customers-addresses .adresss_edit_checkbox input[type=checkbox]:checked,
.customers-addresses .adresss_edit_checkbox input[type=checkbox]:not(:checked), .customers-account-mydetails .adresss_edit_checkbox input[type=checkbox]:checked,
.customers-account-mydetails .adresss_edit_checkbox input[type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.customers-addresses .adresss_edit_checkbox input[type=checkbox]:checked + label,
.customers-addresses .adresss_edit_checkbox input[type=checkbox]:not(:checked) + label, .customers-account-mydetails .adresss_edit_checkbox input[type=checkbox]:checked + label,
.customers-account-mydetails .adresss_edit_checkbox input[type=checkbox]:not(:checked) + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  display: flex;
}
.customers-addresses .adresss_edit_checkbox label:before, .customers-account-mydetails .adresss_edit_checkbox label:before {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #d3d6d9;
  content: " ";
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.customers-addresses .adresss_edit_checkbox input[type=checkbox]:checked + label:before, .customers-account-mydetails .adresss_edit_checkbox input[type=checkbox]:checked + label:before {
  content: "✓";
}
.customers-addresses a.button--primary.button.add_new_adress_btn, .customers-addresses .not-found-404__page .not-found-text p > a.add_new_adress_btn, .not-found-404__page .not-found-text .customers-addresses p > a.add_new_adress_btn, .customers-addresses input.changeadress_btn, .customers-account-mydetails a.button--primary.button.add_new_adress_btn, .customers-account-mydetails .not-found-404__page .not-found-text p > a.add_new_adress_btn, .not-found-404__page .not-found-text .customers-account-mydetails p > a.add_new_adress_btn, .customers-account-mydetails input.changeadress_btn {
  font-family: "Addington CF";
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  padding: 17px 57px;
  text-transform: uppercase;
}
.customers-addresses .adress_back_btn, .customers-account-mydetails .adress_back_btn {
  font-family: "Addington CF";
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.85;
  letter-spacing: normal;
  color: #00a2e1;
  cursor: pointer;
  text-decoration: underline;
}
.customers-addresses h2.adress_title_h2, .customers-account-mydetails h2.adress_title_h2 {
  font-family: "Addington CF";
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: normal;
}
@media only screen and (max-width: 798px) {
  .customers-addresses h2.adress_title_h2, .customers-account-mydetails h2.adress_title_h2 {
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    padding-top: 10px;
  }
}
.customers-addresses .section_my_account__adress_table, .customers-account-mydetails .section_my_account__adress_table {
  margin-top: 30px;
}
@media only screen and (max-width: 798px) {
  .customers-addresses .section_my_account__adress_table h2.adress_title_h2, .customers-account-mydetails .section_my_account__adress_table h2.adress_title_h2 {
    font-size: 12px;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
  }
}
.customers-addresses .adress-table-w .orders-table, .customers-account-mydetails .adress-table-w .orders-table {
  min-width: 100%;
}
@media only screen and (max-width: 798px) {
  .customers-addresses .adress-table-w thead, .customers-account-mydetails .adress-table-w thead {
    display: none;
  }
}
@media only screen and (max-width: 798px) {
  .customers-addresses .adress-table-w tr, .customers-account-mydetails .adress-table-w tr {
    position: relative;
    border: 1px solid #d3d6d9;
    margin-bottom: 10px;
    display: block;
    padding: 16px;
  }
}
@media only screen and (max-width: 798px) {
  .customers-addresses .adress-table-w tr.odd, .customers-account-mydetails .adress-table-w tr.odd {
    background: transparent;
  }
}
.customers-addresses .adress-table-w tr td.edit_adress_td, .customers-account-mydetails .adress-table-w tr td.edit_adress_td {
  text-align: right;
}
.customers-addresses .adress-table-w tr td p.adress_table_line, .customers-account-mydetails .adress-table-w tr td p.adress_table_line {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 300px;
}
@media only screen and (max-width: 798px) {
  .customers-addresses .adress-table-w tr td p.adress_table_line, .customers-account-mydetails .adress-table-w tr td p.adress_table_line {
    display: block;
    overflow: visible;
  }
  .customers-addresses .adress-table-w tr td p.adress_table_line span, .customers-account-mydetails .adress-table-w tr td p.adress_table_line span {
    display: none;
  }
}
.customers-addresses .adress-table-w tr td br, .customers-account-mydetails .adress-table-w tr td br {
  display: none;
}
@media only screen and (max-width: 798px) {
  .customers-addresses .adress-table-w tr td br, .customers-account-mydetails .adress-table-w tr td br {
    display: block;
  }
}
@media only screen and (max-width: 798px) {
  .customers-addresses .adress-table-w tr td, .customers-account-mydetails .adress-table-w tr td {
    display: block;
    padding: 0;
    padding-bottom: 6px;
  }
}
@media only screen and (max-width: 798px) {
  .customers-addresses .adress-table-w tr .edit_adress_td, .customers-account-mydetails .adress-table-w tr .edit_adress_td {
    display: block;
    position: absolute;
    top: 22px;
    right: 50px;
  }
}
@media only screen and (max-width: 798px) {
  .customers-addresses .adress-table-w tr .delete_adress_td, .customers-account-mydetails .adress-table-w tr .delete_adress_td {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
  }
}
.customers-addresses input[type=checkbox]:checked,
.customers-addresses input[type=checkbox]:not(:checked),
.customers-addresses .edit_checkbox input[type=checkbox]:checked,
.customers-addresses .edit_checkbox input[type=checkbox]:not(:checked), .customers-account-mydetails input[type=checkbox]:checked,
.customers-account-mydetails input[type=checkbox]:not(:checked),
.customers-account-mydetails .edit_checkbox input[type=checkbox]:checked,
.customers-account-mydetails .edit_checkbox input[type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.customers-addresses input[type=checkbox]:checked + p,
.customers-addresses input[type=checkbox]:not(:checked) + p,
.customers-addresses .edit_checkbox input[type=checkbox]:checked + label,
.customers-addresses .edit_checkbox input[type=checkbox]:not(:checked) + label, .customers-account-mydetails input[type=checkbox]:checked + p,
.customers-account-mydetails input[type=checkbox]:not(:checked) + p,
.customers-account-mydetails .edit_checkbox input[type=checkbox]:checked + label,
.customers-account-mydetails .edit_checkbox input[type=checkbox]:not(:checked) + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.customers-addresses label.checkbox-label p:before,
.customers-addresses .edit_checkbox label:before, .customers-account-mydetails label.checkbox-label p:before,
.customers-account-mydetails .edit_checkbox label:before {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #d3d6d9;
  content: " ";
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.customers-addresses input[type=checkbox]:checked + p:before,
.customers-addresses input[type=checkbox]:checked + label:before, .customers-account-mydetails input[type=checkbox]:checked + p:before,
.customers-account-mydetails input[type=checkbox]:checked + label:before {
  content: "✓";
}
.customers-addresses .edit_default_submit, .customers-account-mydetails .edit_default_submit {
  margin-top: 25px;
}

.customers-account-mydetails .control input {
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #000000; 
}
.customers-account-mydetails .adresss_edit_checkbox {
  padding: 10px 0;
}
.customers-account-mydetails p.change_checkbox_name {
  padding-top: 50px;
}
.customers-account-mydetails .my_account_detales {
  display: none;
  margin: 10px 0;
}
.customers-account-mydetails button.button.button--primary.change_btn_submitt, .change_pass_submitt {
  font-family: "Addington CF";
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  padding: 17px 57px;
  text-transform: uppercase;
  margin-top: 50px;
}
.change_pass_submitt{
  margin-top: 0;
}
@media only screen and (max-width: 798px) {
  .customers-account-mydetails button.button.button--primary.change_btn_submitt, .change_pass_submitt {
    width: 100%;
  }
}

input#curent_pass {
  display: none;
}

.customers-login .login-banner-section {
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px 0 40px;
}
.customers-login .login-banner-section .one-whole.column {
  width: 100%;
  margin: 0;
}
@media only screen and (max-width: 798px) {
  .customers-login .login-banner-section {
    padding: 0;
  }
}
@media only screen and (max-width: 798px) {
  .customers-login .sections_container_w {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px 0 10px;
  }
}

.sections_container_w {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .sections_container_w {
    flex-direction: column;
  }
}
.sections_container_w h2.login_title {
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  color: #424240;
  margin-bottom: 67px;
}
@media only screen and (max-width: 1024px) {
  .sections_container_w h2.login_title {
    font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: normal;
    margin-bottom: 37px;
  }
}
.sections_container_w .control {
  display: flex;
}
.sections_container_w .label, .sections_container_w .selector-wrapper label {
  font-size: 18px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  color: #424240;
  white-space: nowrap;
  font-family: "Addington CF";
}
@media only screen and (max-width: 1024px) {
  .sections_container_w .label, .sections_container_w .selector-wrapper label {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: normal;
  }
}
.sections_container_w .input, .sections_container_w .textarea {
  border: 0;
  border-bottom: 1px solid #d3d6d9;
  margin-left: 20px;
  font-weight: 500;
  color: #000;
}
.sections_container_w .input:focus, .sections_container_w .textarea:focus {
  box-shadow: none;
}
.sections_container_w .field:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .sections_container_w .field:not(:last-child) {
    margin-bottom: 10px;
  }
}
.sections_container_w input.button.button--primary {
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: uppercase;
  padding: 17px 80px;
  margin-top: 20px;
}
@media only screen and (max-width: 1024px) {
  .sections_container_w input.button.button--primary {
    width: 100%;
  }
}
.sections_container_w input.button.button--primary:focus {
  box-shadow: none;
}
.sections_container_w .recover_pass a {
  font-size: 18px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  color: #424240;
  margin: 20px 0 30px;
  text-decoration: underline;
}
.sections_container_w section.section__wrapper {
  margin-top: 100px;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .sections_container_w section.section__wrapper {
    margin-bottom: 50px;
    margin-top: 50px;
  }
}
.sections_container_w section.section__wrapper .cancel-recover-password {
  color: #00a2e1;
}
.sections_container_w section.section__wrapper.section__wrapper_register {
  border-right: 1px solid #d3d6d9;
  padding-right: 30px;
}
@media only screen and (max-width: 1024px) {
  .sections_container_w section.section__wrapper.section__wrapper_register {
    border: 0;
    margin-bottom: 0;
    padding-right: 0;
  }
}
.sections_container_w section.section__wrapper.section__wrapper_register .register, .sections_container_w section.section__wrapper.section__wrapper_register .login_title {
  max-width: 570px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .sections_container_w section.section__wrapper.section__wrapper_register .register {
    padding-bottom: 50px;
    border-bottom: 1px solid #d3d6d9;
  }
}
.sections_container_w section.section__wrapper.section__wrapper_register label.checkbox-label {
  display: flex;
  align-items: center;
}
.sections_container_w section.section__wrapper.section__wrapper_register label.checkbox-label p {
  font-family: "Addington CF";
  font-size: 18px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  display: flex;
  align-items: center;
  padding: 0;
}
@media only screen and (max-width: 1024px) {
  .sections_container_w section.section__wrapper.section__wrapper_register label.checkbox-label p {
    font-size: 16px;
  }
}
.sections_container_w section.section__wrapper.section__wrapper_login {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 30px;
}
@media only screen and (max-width: 1024px) {
  .sections_container_w section.section__wrapper.section__wrapper_login {
    align-items: center;
    padding-left: 0;
  }
}
.sections_container_w section.section__wrapper.section__wrapper_login .login, .sections_container_w section.section__wrapper.section__wrapper_login .login_title {
  max-width: 570px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .sections_container_w section.section__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.sections_container_w input[type=checkbox]:checked,
.sections_container_w input[type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.sections_container_w input[type=checkbox]:checked + p,
.sections_container_w input[type=checkbox]:not(:checked) + p {
  display: inline-block;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sections_container_w label.checkbox-label p:before {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #d3d6d9;
  content: " ";
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.sections_container_w input[type=checkbox]:checked + p:before {
  content: "✓";
}

.container.rewards-content {
  max-width: 1360px;
  width: 95%;
  display: flex;
  padding-top: 100px;
  margin-bottom: 100px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .container.rewards-content {
    display: block;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 120px;
  }
}
.container.rewards-content .section_form_rewards {
  width: calc(100% - 426px);
}
@media only screen and (max-width: 1024px) {
  .container.rewards-content .section_form_rewards {
    width: 100%;
    margin-top: 60px;
  }
}
.container.rewards-content .section_form_rewards h2.rewards_title {
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  margin-bottom: 20px;
  color: #424240;
}
@media only screen and (max-width: 1024px) {
  .container.rewards-content .section_form_rewards h2.rewards_title {
    width: 100%;
    margin-top: 60px;
    font-style: normal;
    font-size: 25px;
    text-transform: none;
    line-height: 1.5;
  }
}
.container.rewards-content .rewards-mob-decor {
  position: absolute;
  top: 20px;
  width: 1px;
  height: 60px;
  background: #424240;
  left: 50%;
}
@media only screen and (max-width: 1024px) {
  .container.rewards-content .section_form_rewards {
    margin-top: 100px;
  }
}

.page-membership .container.rewards-content {
  margin-bottom: 50px;
}
@media only screen and (max-width: 798px) {
  .page-membership .container.rewards-content {
    margin-bottom: 70px;
  }
}

@media only screen and (max-width: 798px) {
  .page-rewards-faq .container.rewards-content {
    margin-bottom: 100px;
  }
}

.blog-create-and-become .container.rewards-content {
  padding-top: 75px;
}

.membership--wrap {
  width: calc(100% - 426px);
}
@media only screen and (max-width: 1024px) {
  .membership--wrap {
    width: calc(100% - 336px);
    width: 100%;
    margin-top: 60px;
  }
}
.membership--wrap .form_content_rewards {
  display: flex;
  border: 1px solid #dfdfdf;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1400px) {
  .membership--wrap .form_content_rewards {
    flex-direction: column;
    border: 0;
    margin-bottom: 50px;
  }
}
.membership--wrap .form_content_rewards_inner_info {
  width: 303px;
  border-right: 1px solid #dfdfdf;
}
@media only screen and (max-width: 1400px) {
  .membership--wrap .form_content_rewards_inner_info {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #dfdfdf;
  }
}
.membership--wrap .form_content_rewards_inner_info .image {
  display: block;
  margin: 40px auto;
  width: 223px;
  height: 127px;
  border-radius: 10px;
}
@media only screen and (max-width: 1024px) {
  .membership--wrap .form_content_rewards_inner_info .image {
    margin-bottom: 30px;
  }
}
.membership--wrap .form_content_rewards_inner_info h3 {
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: center;
  color: #000;
}
@media only screen and (max-width: 1024px) {
  .membership--wrap .form_content_rewards_inner_info h3 {
    display: inline;
    font-size: 28px;
    color: #424240;
  }
}
.membership--wrap .form_content_rewards_inner_info .spend {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: center;
  margin-bottom: 40px;
  color: #000;
}
@media only screen and (max-width: 1024px) {
  .membership--wrap .form_content_rewards_inner_info .spend {
    display: inline;
    margin-left: 5px;
    margin-bottom: 1px;
    color: #424240;
  }
}
@media only screen and (max-width: 1024px) {
  .membership--wrap .form_content_rewards_inner_info .card-text-wrap {
    display: flex;
    text-align: center;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
  }
}
.membership--wrap .form_content_rewards_inner_detales {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 303px);
  padding: 40px 40px 10px 40px;
}
@media only screen and (max-width: 1400px) {
  .membership--wrap .form_content_rewards_inner_detales {
    width: 100%;
    padding: 30px 0 0 0;
  }
}
.membership--wrap .form_content_rewards_inner_detales .membership-detales {
  width: 163px;
  width: 33%;
  padding: 0 10px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 798px) {
  .membership--wrap .form_content_rewards_inner_detales .membership-detales {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 30px;
  }
}
.membership--wrap .form_content_rewards_inner_detales .description {
  max-width: 163px;
  width: 163px;
}
@media only screen and (max-width: 798px) {
  .membership--wrap .form_content_rewards_inner_detales .description {
    max-width: 240px;
    margin: 0 auto;
  }
}
.membership--wrap .form_content_rewards_inner_detales .description p {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #424240;
}
.membership--wrap .form_content_rewards_inner_detales .description p em {
  font-style: normal;
  font-size: 11px;
  line-height: 1.36;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .membership--wrap .form_content_rewards_inner_detales .description p {
    line-height: 1.38;
    text-align: center;
  }
  .membership--wrap .form_content_rewards_inner_detales .description p em {
    font-size: 16px;
    font-weight: 300;
    font-stretch: normal;
    line-height: 1.38;
    text-align: center;
  }
}
.membership--wrap .form_content_rewards_inner_detales img.icon {
  width: 29px;
  height: 29px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 798px) {
  .membership--wrap .form_content_rewards_inner_detales img.icon {
    display: block;
    margin: 0 auto 10px;
  }
}

@media only screen and (max-width: 1024px) {
  .blog-create-and-become .tags_nav {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .blog-create-and-become .tags_nav ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .blog-create-and-become .tags_nav ul::-webkit-scrollbar {
    display: none;
  }
}
.blog-create-and-become .tags_nav a {
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: 0.4px;
  padding: 15px 25px;
  border: 1px solid #424240;
  display: inline-block;
  border-radius: 50px;
  color: #424240;
  text-align: center;
  margin-bottom: 20px;
}
.blog-create-and-become .tags_nav a:hover {
  background: #424240;
  color: #ffff;
}
@media only screen and (max-width: 1024px) {
  .blog-create-and-become .tags_nav a {
    white-space: nowrap;
    margin-right: 10px;
    margin-bottom: 0;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.86;
    letter-spacing: normal;
  }
}
.blog-create-and-become .rewards-sidebar-title_tags {
  padding: 50px 0 30px;
  font-size: 28px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: normal;
  color: #424240;
}
@media only screen and (max-width: 1024px) {
  .blog-create-and-become .rewards-sidebar-title_tags {
    padding: 50px 0 10px;
  }
}
.blog-create-and-become .rewards-sidebar-title {
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  color: #424240;
  padding-top: 0;
  padding-bottom: 9px;
}
@media only screen and (max-width: 1024px) {
  .blog-create-and-become .rewards-sidebar-title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.21;
  }
}
.blog-create-and-become .rewards-sidebar-text {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
}
@media only screen and (max-width: 1024px) {
  .blog-create-and-become .rewards-sidebar-text {
    font-size: 16px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
  }
}
.blog-create-and-become .sidebar_nav {
  max-width: 299px;
  margin-top: 31px;
}
@media only screen and (max-width: 1024px) {
  .blog-create-and-become .sidebar_nav {
    margin-top: 23px;
    max-width: 320px;
  }
}
.blog-create-and-become .container.rewards-content {
  margin-left: calc(80px / 2);
  margin-right: calc(80px / 2);
  width: calc(100% - 80px);
  max-width: calc(100% - 80px);
}
@media only screen and (max-width: 1024px) {
  .blog-create-and-become .container.rewards-content {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 798px) {
  .blog-create-and-become .container.rewards-content {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 50px;
  }
}
.blog-create-and-become .section_sidebar_rewards {
  width: 100%;
  max-width: 299px;
  margin-right: 34px;
  margin-left: 0;
}
@media only screen and (max-width: 1024px) {
  .blog-create-and-become .section_sidebar_rewards {
    border-bottom: 1px solid #d3d6d9;
    max-width: 100%;
  }
}
.blog-create-and-become .membership--wrap {
  width: calc(100% - 333px);
}
@media only screen and (max-width: 1024px) {
  .blog-create-and-become .membership--wrap {
    margin-top: 50px;
    width: 100%;
  }
}
.blog-create-and-become .membership--wrap .container {
  margin-left: -11px;
  margin-right: -11px;
  overflow: hidden;
}
.blog-create-and-become .blog-card {
  width: calc(33% - 19px);
  margin: 11px;
}
@media only screen and (max-width: 1400px) {
  .blog-create-and-become .blog-card {
    width: calc(50% - 22px);
  }
}
@media only screen and (max-width: 798px) {
  .blog-create-and-become .blog-card {
    width: calc(100% - 22px);
  }
}
.blog-create-and-become .blog-topline ul {
  display: flex;
  margin-bottom: 20px;
}
.blog-create-and-become .blog-topline ul a, .blog-create-and-become .blog-topline ul li {
  font-family: HelveticaNeue;
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  color: #424240;
}
@media only screen and (max-width: 1024px) {
  .blog-create-and-become .blog-topline ul a, .blog-create-and-become .blog-topline ul li {
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.14;
    letter-spacing: normal;
  }
}
.blog-create-and-become figure.image img {
  height: 254px;
  object-fit: cover;
}
.blog-create-and-become h4.article_title {
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  text-align: left;
  margin: 20px 20px 10px 20px;
  height: 65px;
  color: #424240;
}
.blog-create-and-become .article_data {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  margin: 0 20px;
  color: #424240;
}
.blog-create-and-become .blog_link.button.button--primary, .blog-create-and-become .not-found-404__page .not-found-text p > a.blog_link, .not-found-404__page .not-found-text .blog-create-and-become p > a.blog_link {
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: uppercase;
  margin: 20px;
  padding: 19px 0;
}
@media only screen and (max-width: 798px) {
  .blog-create-and-become .blog_link.button.button--primary, .blog-create-and-become .not-found-404__page .not-found-text p > a.blog_link, .not-found-404__page .not-found-text .blog-create-and-become p > a.blog_link {
    font-size: 14px !important;
  }
}
.blog-create-and-become .paginate, .blog-create-and-become .paginate_blog_category {
  width: 100%;
  display: flex;
  justify-content: center;
}
.blog-create-and-become .paginate a.button.button--primary.pagination-button__load-more, .blog-create-and-become .paginate .not-found-404__page .not-found-text p > a.pagination-button__load-more, .not-found-404__page .not-found-text .blog-create-and-become .paginate p > a.pagination-button__load-more, .blog-create-and-become .paginate_blog_category a.button.button--primary.pagination-button__load-more, .blog-create-and-become .paginate_blog_category .not-found-404__page .not-found-text p > a.pagination-button__load-more, .not-found-404__page .not-found-text .blog-create-and-become .paginate_blog_category p > a.pagination-button__load-more {
  color: #424240;
  background-color: rgba(0, 0, 0, 0);
  border-color: #424240;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  width: 100%;
  max-width: 335px;
  height: 42px;
  text-transform: uppercase;
  margin-top: 89px;
  font-family: "Addington CF", Montserrat, sans-serif;
}
@media only screen and (max-width: 1024px) {
  .blog-create-and-become .paginate a.button.button--primary.pagination-button__load-more, .blog-create-and-become .paginate .not-found-404__page .not-found-text p > a.pagination-button__load-more, .not-found-404__page .not-found-text .blog-create-and-become .paginate p > a.pagination-button__load-more, .blog-create-and-become .paginate_blog_category a.button.button--primary.pagination-button__load-more, .blog-create-and-become .paginate_blog_category .not-found-404__page .not-found-text p > a.pagination-button__load-more, .not-found-404__page .not-found-text .blog-create-and-become .paginate_blog_category p > a.pagination-button__load-more {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 798px) {
  .blog-create-and-become .paginate a.button.button--primary.pagination-button__load-more, .blog-create-and-become .paginate .not-found-404__page .not-found-text p > a.pagination-button__load-more, .not-found-404__page .not-found-text .blog-create-and-become .paginate p > a.pagination-button__load-more, .blog-create-and-become .paginate_blog_category a.button.button--primary.pagination-button__load-more, .blog-create-and-become .paginate_blog_category .not-found-404__page .not-found-text p > a.pagination-button__load-more, .not-found-404__page .not-found-text .blog-create-and-become .paginate_blog_category p > a.pagination-button__load-more {
    font-size: 14px !important;
    max-width: 100%;
  }
}
.blog-create-and-become .paginate a.button.button--primary.pagination-button__load-more:hover, .blog-create-and-become .paginate .not-found-404__page .not-found-text p > a.pagination-button__load-more:hover, .not-found-404__page .not-found-text .blog-create-and-become .paginate p > a.pagination-button__load-more:hover, .blog-create-and-become .paginate_blog_category a.button.button--primary.pagination-button__load-more:hover, .blog-create-and-become .paginate_blog_category .not-found-404__page .not-found-text p > a.pagination-button__load-more:hover, .not-found-404__page .not-found-text .blog-create-and-become .paginate_blog_category p > a.pagination-button__load-more:hover {
  color: #ffff;
  background-color: #424240;
  border-color: #424240;
}
.blog-create-and-become .card-image.blog-card__image {
  height: 377px;
}
.blog-create-and-become .card-image.blog-card__image figure.image {
  height: 100%;
}
.blog-create-and-become .card-image.blog-card__image figure.image a {
  height: 100%;
}
.blog-create-and-become .card-image.blog-card__image figure.image a .image-element__wrap {
  height: 100%;
  min-height: 100%;
}
.blog-create-and-become .card-image.blog-card__image figure.image a .image-element__wrap img {
  height: 100%;
}

.blog-cratestylingcentre .container.banner__wrap h1.image_banner-title {
  max-width: 464px;
  color: #ffffff;
  letter-spacing: -1.5px;
}
@media only screen and (max-width: 798px) {
  .blog-cratestylingcentre .container.banner__wrap h1.image_banner-title {
    max-width: 228px;
    letter-spacing: normal;
  }
}

.appointment-section {
  max-width: 1240px;
  width: calc(100% - 40px) !important;
  margin-left: auto;
  margin-right: auto;
}
.appointment-section .container.apointment_wrap {
  padding-top: 100px;
  position: relative;
}
.appointment-section .container.apointment_wrap .decor-line {
  position: absolute;
  top: 20px;
  width: 1px;
  height: 60px;
  background: #424240;
  left: 50%;
}
.appointment-section .topsection {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 798px) {
  .appointment-section .topsection {
    flex-direction: column;
    align-items: flex-start;
  }
}
.appointment-section .topsection h2.section_title {
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: left;
  max-width: 508px;
  margin-right: 50px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .appointment-section .topsection h2.section_title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.21;
    letter-spacing: normal;
    margin-bottom: 10px;
  }
}
.appointment-section .topsection .section-description {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .appointment-section .topsection .section-description {
    font-size: 16px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: normal;
  }
}
.appointment-section .columns-w {
  padding: 50px;
  border: 1px solid #dfdfdf;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .appointment-section .columns-w {
    padding: 50px 20px;
  }
}
.appointment-section .columns-w .columns-logo {
  max-width: 356px;
  margin: 0 auto;
}
@media only screen and (max-width: 798px) {
  .appointment-section .columns-w .columns-logo {
    max-width: 263px;
  }
}
.appointment-section .columns-w .columns-inner-w {
  display: flex;
  margin-top: 50px;
  margin-bottom: 55px;
}
@media only screen and (max-width: 798px) {
  .appointment-section .columns-w .columns-inner-w {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.appointment-section .columns-w .column_appointer {
  padding: 15px;
}
@media only screen and (max-width: 798px) {
  .appointment-section .columns-w .column_appointer {
    max-width: 240px;
    padding: 0;
  }
  .appointment-section .columns-w .column_appointer:not(:last-child) {
    padding-bottom: 50px;
  }
}
.appointment-section .columns-w .column_appointer img {
  width: 60px;
  height: 60px;
}
.appointment-section .columns-w .column_appointer .title_appoint {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: normal;
  color: #424240;
  margin: 10px 0;
}
@media only screen and (max-width: 798px) {
  .appointment-section .columns-w .column_appointer .title_appoint {
    line-height: 1.11;
    margin-bottom: 9px;
  }
}
.appointment-section .columns-w .column_appointer .text_appoint {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #424240;
  max-width: 350px;
}
.appointment-section .columns-w .button--primary, .appointment-section .columns-w .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .appointment-section .columns-w p > a {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  height: 50px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
}
@media only screen and (max-width: 798px) {
  .appointment-section .columns-w .button--primary, .appointment-section .columns-w .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .appointment-section .columns-w p > a {
    width: 100%;
    max-width: 100%;
  }
}

.our-stylist-section {
  max-width: 1240px;
  width: calc(100% - 40px) !important;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
}
.our-stylist-section .ourstylist_title {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .our-stylist-section .ourstylist_title {
    font-size: 28px;
    line-height: 1.21;
  }
}
.our-stylist-section .ourstylist_image-w {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
}
@media only screen and (max-width: 798px) {
  .our-stylist-section .ourstylist_image-w {
    width: 100%;
    display: block;
    margin: 0;
  }
}
.our-stylist-section .ourstylist_image-w .ourstylist-image-col {
  width: 50%;
  padding: 0 10px;
}
@media only screen and (max-width: 798px) {
  .our-stylist-section .ourstylist_image-w .ourstylist-image-col {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 798px) {
  .our-stylist-section .ourstylist_image-w .ourstylist-image-col.aditional-photo-col {
    display: none;
  }
}
.our-stylist-section .ourstylist_image-w .ourstylist-image-col img {
  object-fit: cover;
  height: 650px;
  display: block;
}
@media only screen and (max-width: 798px) {
  .our-stylist-section .ourstylist_image-w .ourstylist-image-col img {
    width: 100%;
    height: auto;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    max-width: calc(100% + 40px);
  }
}
.our-stylist-section .ourstylist_image-w .ourstylist-image-col img.ourstylist-img1 {
  margin-bottom: 20px;
  height: 262px;
}
.our-stylist-section .ourstylist_image-w .ourstylist-image-col img.ourstylist-img2 {
  height: 368px;
}
.our-stylist-section .ourstylist_text_w {
  margin: 50px 0;
  width: 100%;
  max-width: 391px;
}
@media only screen and (max-width: 798px) {
  .our-stylist-section .ourstylist_text_w {
    margin-top: 30px;
  }
}
.our-stylist-section .ourstylist_text_w .ourstylist_pretitle {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .our-stylist-section .ourstylist_text_w .ourstylist_pretitle {
    line-height: 1.38;
  }
}
.our-stylist-section .ourstylist_text_w .ourstylist_name {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  margin-bottom: 10px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .our-stylist-section .ourstylist_text_w .ourstylist_name {
    font-size: 20px;
    line-height: 1;
  }
}
.our-stylist-section .ourstylist_text_w .ourstylist_description {
  font-size: 16px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  margin-bottom: 30px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .our-stylist-section .ourstylist_text_w .ourstylist_description {
    line-height: 1.38;
  }
}
.our-stylist-section .ourstylist_text_w .ourstylist_link {
  font-size: 15px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: normal;
  text-decoration: underline;
  cursor: pointer;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  height: 54px;
}

.articles_stylistblog-section {
  max-width: 1240px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 798px) {
  .articles_stylistblog-section {
    padding-left: 20px !important;
  }
}
.articles_stylistblog-section::-webkit-scrollbar {
  height: 6px;
  border-radius: 50px;
}
.articles_stylistblog-section::-webkit-scrollbar-track {
  background: #d6d6d6;
  border-radius: 50px;
}
.articles_stylistblog-section::-webkit-scrollbar-thumb {
  background: #424240;
  border-radius: 50px;
}
.articles_stylistblog-section .flickity-progress-wrap {
  margin-bottom: 40px;
}
.articles_stylistblog-section .stylist_pages {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.articles_stylistblog-section .stylist_pages .article_column {
  width: 290px;
  margin: 0 13px;
}
@media only screen and (max-width: 798px) {
  .articles_stylistblog-section .stylist_pages .article_column {
    margin: 0 3px;
  }
}
.articles_stylistblog-section .stylist_pages .article_column .image-element__wrap img {
  height: 100%;
  object-fit: cover;
}
.articles_stylistblog-section .stylist_pages .article_column:last-child {
  margin-right: 0;
}
.articles_stylistblog-section .stylist_pages .article_column:first-child {
  margin-left: 0;
}
.articles_stylistblog-section .stylist_pages .article_column .image-element__wrap {
  height: 290px;
}
.articles_stylistblog-section .stylist_pages .article_column h4.article_title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.67;
  font-stretch: normal;
  font-style: normal;
  margin-top: 10px;
  color: #424240;
}
.articles_stylistblog-section .stylist_pages .article_column .article-exept {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  margin-bottom: 30px;
  height: 40px;
  overflow: hidden;
  color: #424240;
}
.articles_stylistblog-section .stylist_pages .article_column .article-link {
  font-size: 15px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: normal;
  text-decoration: underline;
  color: #ffffff;
  cursor: pointer;
  width: 100%;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
}

.blog_contactus-section {
  max-width: 1240px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 100px;
  position: relative;
  width: calc(100% - 40px) !important;
}
@media only screen and (max-width: 798px) {
  .blog_contactus-section {
    margin-top: 50px;
  }
}
.blog_contactus-section:before {
  display: block;
  width: 60px;
  height: 1px;
  background: #424240;
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 30px);
  position: absolute;
}
.blog_contactus-section .contactus-blog-container {
  display: flex;
}
.blog_contactus-section .contactus-blog-container .sideebar-blog-contact {
  max-width: 336px;
  margin-right: 50px;
}
@media only screen and (max-width: 798px) {
  .blog_contactus-section .contactus-blog-container .sideebar-blog-contact {
    display: none;
  }
}
.blog_contactus-section .contactus-blog-container .form_content {
  width: calc(100% - 386px);
}
@media only screen and (max-width: 798px) {
  .blog_contactus-section .contactus-blog-container .form_content {
    width: 100%;
  }
}
.blog_contactus-section .contactus-blog-container .block-sect_title {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
  margin-top: 15px;
  color: #424240;
}
.blog_contactus-section .contactus-blog-container .contact-form-title {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .blog_contactus-section .contactus-blog-container .contact-form-title {
    font-size: 20px;
    line-height: 1;
  }
}

.jsarticle-stylist:after {
  content: "flickity";
  display: none;
}

.blog_given-section {
  max-width: 1329px;
  width: 95% !important;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 73px;
}
@media only screen and (max-width: 798px) {
  .blog_given-section {
    padding-bottom: 100px;
  }
}
.blog_given-section .given-blog-container {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  position: relative;
  padding-top: 100px;
}
@media only screen and (max-width: 798px) {
  .blog_given-section .given-blog-container {
    flex-wrap: wrap;
  }
}
.blog_given-section .given-blog-container .decor-line {
  position: absolute;
  top: 20px;
  width: 1px;
  height: 60px;
  background: #424240;
  left: 50%;
}
.blog_given-section .given-blog-container .sideebar-blog-given {
  max-width: 336px;
  margin-right: 40px;
  border: 1px solid #d6d6d6;
  padding: 50px 30px;
}
@media only screen and (max-width: 798px) {
  .blog_given-section .given-blog-container .sideebar-blog-given {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
    width: 100%;
  }
}
@media only screen and (max-width: 798px) {
  .blog_given-section .given-blog-container .sideebar-blog-given img {
    width: 237px;
  }
}
.blog_given-section .given-blog-container .sideebar-blog-given .block-givs-sidebar_text {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  margin-top: 20px;
  margin-bottom: 40px;
  color: #424240;
  width: 336px;
  max-width: 272px;
}
@media only screen and (max-width: 798px) {
  .blog_given-section .given-blog-container .sideebar-blog-given .block-givs-sidebar_text {
    line-height: 1.38;
    width: 100%;
    max-width: 100%;
  }
}
.blog_given-section .given-blog-container .sideebar-blog-given span {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: normal;
  text-align: left;
  margin-right: 20px;
  color: #424240;
}
.blog_given-section .given-blog-container .article-given_content {
  width: 953px;
}
.blog_given-section .given-blog-container .article-given_content .article-given {
  display: flex;
  flex-wrap: nowrap;
}
.blog_given-section .given-blog-container .article-given_content .article-given:after {
  content: "flickity";
  display: none;
}
.blog_given-section .given-blog-container .article-given_content .article-given_column {
  margin: 0 20px;
  position: relative;
  margin-bottom: 30px;
}
@media only screen and (max-width: 798px) {
  .blog_given-section .given-blog-container .article-given_content .article-given_column {
    margin: 0;
    margin-bottom: 30px;
    margin-right: 18px;
  }
}
.blog_given-section .given-blog-container .article-given_content .article-given_column:first-child {
  margin-left: 0;
}
.blog_given-section .given-blog-container .article-given_content .article-given_column:last-child {
  margin-right: 0;
}
.blog_given-section .given-blog-container .article-given_content .article-given_column img {
  width: 291px;
  max-width: 291px;
  height: 456px;
  object-fit: cover;
}
.blog_given-section .given-blog-container .article-given_content .article-given_column .article_text {
  position: absolute;
  top: calc(50% - 30px);
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog_given-section .given-blog-container .article-given_content .article-given_column .article-given_title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  color: #eff3f5;
  width: 212px;
  font-size: 24px;
}
@media only screen and (max-width: 798px) {
  .blog_given-section .given-blog-container .article-given_content .article-given_column .article-given_title {
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
  }
}
.blog_given-section .given-blog-container .article-given_content .article-given_column a.article-given-link {
  position: absolute;
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: normal;
  color: #fff;
  margin-top: 30px;
  text-align: center;
  display: block;
  width: 100%;
  text-decoration: underline;
  cursor: pointer;
  padding: 5px;
}
.blog_given-section .given-blog-container .article-given_content .article-given_column a.article-given-link:hover {
  background: #222;
  text-decoration: none;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}

.wishlist-container {
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .wishlist-container {
    flex-wrap: wrap;
  }
  .wishlist-container .account-sidebar {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .wishlist-container .account-sidebar .active_account_item {
    position: relative;
  }
}

.wishlist-content {
  max-width: 891px;
  padding-bottom: 55px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .wishlist-content {
    width: 100%;
    padding-bottom: 30px;
  }
}

.wishlist-content__header {
  padding-bottom: 30px;
  margin-bottom: 35px;
  border-bottom: 1px solid #cccccc;
}
@media only screen and (max-width: 1024px) {
  .wishlist-content__header {
    padding-bottom: 25px;
    margin-bottom: 0;
    border-bottom: none;
  }
}

.wishlist-content__title h1 {
  font-size: 24px;
  line-height: 28px;
  color: #424240;
}

.wishlist-content__description {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #424240;
}

.wishlist-items-container {
  margin-left: -10px;
  margin-right: -10px;
}

.wishlist-item {
  margin-bottom: 30px;
}
.wishlist-item:nth-child(3n+3) .grid-view-item {
  margin-left: auto;
  margin-right: 0;
}
.wishlist-item:nth-child(3n+2) .grid-view-item {
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .wishlist-item {
    margin-bottom: 20px;
  }
}

.grid-view-item {
  position: relative;
  height: 100%;
  max-width: 260px;
}
@media only screen and (max-width: 1024px) {
  .grid-view-item {
    max-width: 100%;
  }
}

.grid-view-item__icon {
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 11;
  cursor: pointer;
  font-size: 14px;
  line-height: 14px;
  color: #424240;
}

.grid-view-item__image-wrapper .image__container {
  position: relative;
  width: 100%;
}
.grid-view-item__image-wrapper .image__container:after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.grid-view-item__image-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.grid-view-item__link {
  margin-top: 5px;
  color: #424240;
}
.grid-view-item__link:hover {
  color: #606060;
}
@media only screen and (max-width: 1024px) {
  .grid-view-item__link {
    margin-bottom: 15px;
  }
}

.grid-view-item__title {
  padding-bottom: 2px;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  .grid-view-item__title {
    padding-bottom: 15px;
  }
}

.grid-view-item__variant {
  font-size: 11px;
  line-height: 15px;
  font-weight: 300;
}

.grid-view-item__price {
  margin: 2px 0 10px;
}
.grid-view-item__price .price {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.54px;
  color: #424240;
}

.grid-view-item__button.button, .not-found-404__page .not-found-text p > a.grid-view-item__button {
  width: 100%;
  height: 50px;
  border-radius: 2px;
  font: 700 14px/1 "Addington CF";
}
@media only screen and (max-width: 1024px) {
  .grid-view-item__button.button, .not-found-404__page .not-found-text p > a.grid-view-item__button {
    height: 43px;
    font-size: 12px !important;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
}

.page-department-landing .slider-gallery,
.page-department-landing-kids .slider-gallery  {
  width: 100%;
}
.page-department-landing .slider__bar,
.page-department-landing-kids .slider__bar {
  display: none;
}
@media only screen and (max-width: 798px) {
  .page-department-landing .slider__bar,
  .page-department-landing-kids .slider__bar  {
    display: block;
    margin-top: 50px;
  }
}
.page-department-landing .section-title,
.page-department-landing-kids .section-title  {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #424240;
}
.page-department-landing .collection-title,
 .page-department-landing-kids .collection-title{
  margin-top: 15px;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #424240;
}
.page-department-landing .collection-link,
.page-department-landing-kids .collection-link {
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  text-decoration: underline;
}
.page-department-landing .collection-link, .page-department-landing .collection-link:hover,
.page-department-landing-kids .collection-link, .page-department-kids .collection-link:hover, {
  color: #424240;
}

.department-landing__header {
  padding: 50px 0;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .department-landing__header {
    flex-direction: column;
    padding: 20px 0 30px;
  }
}

.department-landing__title {
  margin-right: 20px;
  flex: 0 0 285px;
  font-size: 35px;
  line-height: 50px;
  font-weight: 700;
}
@media only screen and (max-width: 1400px) {
  .department-landing__title {
    width: 35%;
  }
}
@media only screen and (max-width: 798px) {
  .department-landing__title {
    width: 100%;
    margin-bottom: 15px;
    flex: 0 0 0;
  }
    .department-landing__title img {
      padding: 0 49px;
    }

}

.department-landing__description {
  width: 78%;
  padding-left: 15px;
  font-size: 13px;
  line-height: 15px;
  font-weight: 300;
}
@media only screen and (max-width: 1400px) {
  .department-landing__description {
    width: 65%;
  }
}
@media only screen and (max-width: 798px) {
  .department-landing__description {
    width: 100%;
    padding-left: 0;
  }
}

.collections-list-with-overlay {
  position: relative;
  padding-bottom: 70px;
  /*&:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 60px;
    height: 1px;
    background-color: $brand-primary;
  }*/
}
@media only screen and (max-width: 798px) {
  .collections-list-with-overlay {
    padding-bottom: 20px;
  }
}
.collections-list-with-overlay .collection-with-overlay {
  width: calc(25% - 10px);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}
@media only screen and (max-width: 798px) {
  .collections-list-with-overlay .collection-with-overlay {
    width: calc(50% - 10px);
    margin-bottom: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .collections-list-with-overlay .collection-with-overlay {
    width: calc(100% - 64px);
  }
}
.collections-list-with-overlay .collection-with-overlay__image {
  position: relative;
  width: 100%;
}
.collections-list-with-overlay .collection-with-overlay__image:after {
  content: "";
  display: block;
  pointer-events: none;
  width: 100%;
  padding-bottom: 100%;
}
.collections-list-with-overlay .collection-with-overlay__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  max-height: 100%;
  min-width: 100%;
  object-fit: cover;
}
.collections-list-with-overlay .collection-with-overlay__image .collection-with-overlay__overlay {
  width: 100%;
  height: 100%;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 19;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease, opacity 0.2s ease;
}
.collections-list-with-overlay .collection-with-overlay__image .collection-with-overlay__overlay .collection-with-overlay__overlay-title {
  font-size: 28px;
  line-height: 30px;
  font-weight: 700;
}
.collections-list-with-overlay .collection-with-overlay__image:hover .collection-with-overlay__overlay {
  visibility: visible;
  opacity: 1;
}
.collections-list-with-overlay .collection-with-overlay__info {
  padding: 0 7px;
}

.collections-list-featured .department-landing-featured-collection_section {
  padding-bottom: 100px;
}
@media only screen and (max-width: 798px) {
  .collections-list-featured .department-landing-featured-collection_section {
    padding-top: 40px;
  }
}
.collections-list-featured .department-landing-featured-collection__image {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
}
.collections-list-featured .department-landing-featured-collection__image:after {
  content: "";
  display: block;
  pointer-events: none;
  width: 100%;
  padding-bottom: 156%;
}
.collections-list-featured .department-landing-featured-collection__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  max-height: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}
.collections-list-featured .department-landing-featured-collection__slider {
  padding-top: 15px;
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (max-width: 798px) {
  .collections-list-featured .department-landing-featured-collection__slider {
    margin-left: 30px;
  }
}
.collections-list-featured .department-landing-featured-collection__slider.flickity-enabled.is-draggable .flickity-viewport {
  cursor: initial;
}
@media only screen and (max-width: 798px) {
  .collections-list-featured .department-landing-featured-collection__slider.flickity-enabled.is-draggable .flickity-viewport {
    cursor: grab;
  }
}
.collections-list-featured .department-landing-featured-collection__slider .flickity-prev-next-button.previous {
  left: -30px;
}
.collections-list-featured .department-landing-featured-collection__slider .flickity-prev-next-button.next {
  right: 20px;
}
.collections-list-featured .department-landing-featured-collection.column {
  width: calc(25% - 50px);
  margin-left: 25px;
  margin-right: 25px;
}
@media only screen and (max-width: 798px) {
  .collections-list-featured .department-landing-featured-collection.column {
    width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .collections-list-featured .department-landing-featured-collection.column {
    width: 85%;
    margin-left: 3px;
    margin-right: 3px;
  }
}
@media only screen and (max-width: 798px) {
  .collections-list-featured .slider__bar {
    margin-top: 5px;
  }
}

.new-arrivals-slider-section .new-arrivals-slider-section_inner {
  padding-bottom: 50px;
}
.new-arrivals-slider-section .slider-gallery {
  padding-top: 30px;
}
.new-arrivals-slider-section .product-wrap {
  padding: 0;
  border: none;
}
.new-arrivals-slider-section .flickity-prev-next-button.next {
  right: -10px;
}
.new-arrivals-slider-section .flickity-prev-next-button.previous {
  left: -30px;
}
@media only screen and (max-width: 798px) {
  .new-arrivals-slider-section .flickity-prev-next-button {
    display: none;
  }
}
@media only screen and (max-width: 798px) {
  .new-arrivals-slider-section .slider__bar {
    margin-top: 45px;
  }
}

.page-customer-service .main .section {
  max-width: 1240px;
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .page-customer-service .main .section.section__wrapper {
    width: 100%;
    padding: 0 20px;
  }
}
.page-customer-service .header-section .section {
  max-width: 1385px;
  width: 95%;
}

.customer-service .customer-service__title {
  padding-top: 50px;
}
.customer-service .customer-service__title h1 {
  font-family: "Addington CF";
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .customer-service .customer-service__title h1 {
    font-size: 28px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.21;
    letter-spacing: normal;
    text-align: center;
  }
}
.customer-service .customer-service__wrap {
  display: flex;
  padding-bottom: 100px;
  padding-top: 26px;
}
@media only screen and (max-width: 798px) {
  .customer-service .customer-service__wrap {
    padding-top: 30px;
    padding-bottom: 50px;
    flex-direction: column;
  }
}
.customer-service .customer-service__category-item {
  padding-bottom: 17px;
  padding-top: 20px;
  border-bottom: 1px solid #dfdfdf;
}
@media only screen and (max-width: 798px) {
  .customer-service .customer-service__category-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #dfdfdf;
    border-top: 1px solid #dfdfdf;
    margin-top: -1px;
  }
}
@media only screen and (max-width: 798px) {
  .customer-service .customer-service__category-item.active-mobile span {
    text-align: center;
    display: flex;
    justify-content: center;
  }
}
.customer-service .customer-service__category-item.active-mobile span::after {
  display: none;
}
.customer-service .customer-service__category-item.active-mobile span::before {
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 20 20'%3E%3Cpath fill='%23222' d='M8.758 13.831c-.125.144-.121.373.008.512s.335.135.46-.009l3.35-3.862c.121-.14.121-.363 0-.503L9.225 6.11c-.126-.143-.331-.147-.46-.008-.13.139-.133.368-.008.511l3.132 3.608-3.132 3.61z'/%3E%3C/svg%3E%0A");
  width: 20px;
  height: 20px;
  content: "";
  transform: rotate(180deg);
  position: absolute;
  left: 0;
}
.customer-service .customer-service__category-item.active-desktop span {
  background: #dfdfdf;
  text-decoration: underline;
}
@media only screen and (max-width: 798px) {
  .customer-service .customer-service__category-item.active-desktop span {
    background: transparent;
    text-decoration: none;
  }
}
.customer-service .customer-service__category-item span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 35px;
  margin: 0 -18px 0 -15px;
  padding: 0 18px 0 15px;
  font-family: "Addington CF";
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
  cursor: pointer;
}
@media only screen and (max-width: 798px) {
  .customer-service .customer-service__category-item span {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.11;
    text-align: left;
  }
}
.customer-service .customer-service__category-item span::before {
  display: none;
}
.customer-service .customer-service__category-item span::after {
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 20 20'%3E%3Cpath fill='%23222' d='M8.758 13.831c-.125.144-.121.373.008.512s.335.135.46-.009l3.35-3.862c.121-.14.121-.363 0-.503L9.225 6.11c-.126-.143-.331-.147-.46-.008-.13.139-.133.368-.008.511l3.132 3.608-3.132 3.61z'/%3E%3C/svg%3E%0A");
  width: 20px;
  height: 20px;
  content: "";
}
.customer-service .customer-service__category-item span:hover {
  background: #dfdfdf;
  text-decoration: underline;
}
@media only screen and (max-width: 798px) {
  .customer-service .customer-service__category-item span:hover {
    background: transparent;
    text-decoration: none;
  }
}
.customer-service .customer-service__qa-item {
  padding-bottom: 30px;
  border-bottom: 1px solid #d6d6d6;
  font-family: "Addington CF";
  display: none;
}
@media only screen and (min-width: 799px) {
  .customer-service .customer-service__qa-item.active-desktop {
    display: block;
  }
}
@media only screen and (max-width: 798px) {
  .customer-service .customer-service__qa-item.active-mobile {
    display: block;
  }
}
.customer-service .customer-service__qa-item-answer {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  padding-top: 25px;
  padding-right: 30px;
  display: none;
  color: #424240;
  margin-bottom: -6px;
}
.customer-service .customer-service__qa-item-answer pre {
  background: #eee;
  border-radius: 3px;
  width: 100%;
}
.customer-service .customer-service__qa-item-answer ul, .customer-service .customer-service__qa-item-answer ol {
  padding: 10px 0 10px 20px;
}
.customer-service .customer-service__qa-item-answer ul {
  list-style-type: disc;
}
.customer-service .customer-service__qa-item-answer p {
  padding: 15px 0;
}
.customer-service .customer-service__qa-item-answer p:last-child {
  padding-bottom: 0;
}
.customer-service .customer-service__qa-item-answer p:first-child {
  padding-top: 0;
}
@media only screen and (max-width: 798px) {
  .customer-service .customer-service__qa-item-answer p {
    padding: 15px 0;
    margin-bottom: 0;
  }
  .customer-service .customer-service__qa-item-answer p:last-child {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 798px) {
  .customer-service .customer-service__qa-item-answer {
    padding-right: 0;
    padding-top: 10px;
  }
}
.customer-service .customer-service__qa-item-question {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  cursor: pointer;
}
@media only screen and (max-width: 798px) {
  .customer-service .customer-service__qa-item-question {
    padding-top: 25px;
  }
}
.customer-service .customer-service__qa-item-question::after {
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 20 20'%3E%3Cpath fill='%23222' d='M8.758 13.831c-.125.144-.121.373.008.512s.335.135.46-.009l3.35-3.862c.121-.14.121-.363 0-.503L9.225 6.11c-.126-.143-.331-.147-.46-.008-.13.139-.133.368-.008.511l3.132 3.608-3.132 3.61z'/%3E%3C/svg%3E%0A");
  width: 20px;
  height: 20px;
  content: "";
  transform: rotate(90deg);
  transition: all 0.3s;
}
.customer-service .customer-service__qa-item-question.active-question::after {
  transform: rotate(270deg);
  transition: all 0.3s;
}
.customer-service .customer-service__left {
  flex-basis: 267px;
}
@media only screen and (max-width: 798px) {
  .customer-service .customer-service__left {
    flex-basis: 0;
    margin-bottom: 30px;
  }
}
.customer-service .customer-service__right {
  flex: 1;
  padding-left: 100px;
}
@media only screen and (max-width: 798px) {
  .customer-service .customer-service__right {
    padding-left: 0;
  }
}

.article_shop-ookbook {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding-top: 50px;
  position: relative;
  padding-bottom: 20px;
}
.article_shop-ookbook .article_shop-ookbook-title {
  text-align: center;
  color: #424240;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
}
@media only screen and (max-width: 1024px) {
  .article_shop-ookbook .article_shop-ookbook-title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.21;
    letter-spacing: normal;
  }
}
.article_shop-ookbook .lookbook_code::after {
  content: "&";
  font-size: 1px;
  color: #ffffff;
  height: 0;
}
.article_shop-ookbook .evm_tag_view .plus_icon {
  width: 28px;
  height: 28px;
  border: 9px solid #000;
  background: #fff !important;
}
.article_shop-ookbook .hotspot:before, .article_shop-ookbook .hotspot:after {
  display: none;
}
.article_shop-ookbook .plus_icon_container {
  font-size: 0;
}
.article_shop-ookbook .evm_lookbook_detail {
  padding: 10px;
  width: 162px !important;
  max-width: 162px !important;
  border-radius: 0 !important;
  border: 1px solid #424240;
}
@media only screen and (min-width: 799px) {
  .article_shop-ookbook .evm_lookbook_detail {
    padding: 15px;
    width: 210px !important;
    max-width: 210px !important;
  }
}
.article_shop-ookbook .evm_lookbook_detail .evm_look_book_title,
.article_shop-ookbook .evm_lookbook_detail .evm_product_price {
  padding: 0 10px;
}
.article_shop-ookbook .evm_lookbook_detail .evm_lookbook_detail_content,
.article_shop-ookbook .evm_lookbook_detail .evm_product_price {
  text-align: left;
}
.article_shop-ookbook .evm_lookbook_detail .evm_lookbook_img {
  width: 100% !important;
  height: 120px !important;
  max-width: none !important;
  background-position: center;
}
@media only screen and (min-width: 799px) {
  .article_shop-ookbook .evm_lookbook_detail .evm_lookbook_img {
    height: 155px !important;
  }
}
.article_shop-ookbook .evm_lookbook_detail .evm_look_book_title {
  margin-top: 10px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 15px;
  line-height: 25.02px;
  font-weight: bold;
  color: #424240;
}
.article_shop-ookbook .evm_lookbook_detail .evm_product_price {
  margin-top: 0;
  font-family: "Addington CF", Montserrat, sans-serif !important;
  font-size: 16px;
  line-height: 20px;
  font-size: 11px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.54px;
  color: #424240;
}
.article_shop-ookbook .evm_shop_now [id*=evm_shopnow_anchor] {
  margin-top: 10px;
  display: block;
  width: 100%;
  padding: 12px !important;
  border-radius: 2px !important;
  font-family: "Addington CF", Montserrat, sans-serif !important;
  font-size: 14px !important;
  line-height: 14px !important;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #eff3f5 !important;
}
@media only screen and (min-width: 799px) {
  .article_shop-ookbook .evm_shop_now [id*=evm_shopnow_anchor] {
    margin-top: 22px;
    padding: 18px !important;
  }
}

.article .free-wall {
  margin: auto;
}
.article .free-wall-logo {
  margin: auto;
  height: 420px;
}
.article .size2-2 {
  width: 80px;
  height: 80px;
}
.article .size11 {
  height: 160px;
  width: 160px;
}
.article .size12 {
  width: 160px;
  height: 320px;
}
.article .size21 {
  width: 320px;
  height: 160px;
}
.article .size22 {
  height: 320px;
  width: 320px;
}
.article .size13 {
  width: 160px;
  height: 480px;
}
.article .size31 {
  width: 480px;
  height: 160px;
}
.article .size23 {
  width: 320px;
  height: 480px;
}
.article .size24 {
  width: 320px;
  height: 640px;
}
.article .size32 {
  width: 480px;
  height: 320px;
}
.article .size33 {
  width: 480px;
  height: 480px;
}
.article .size34 {
  width: 480px;
  height: 640px;
}
.article .size43 {
  width: 640px;
  height: 480px;
}
.article .size35 {
  width: 480px;
  height: 800px;
}
.article .size53 {
  width: 800px;
  height: 480px;
}
.article .size36 {
  width: 480px;
  height: 960px;
}
.article .donate form {
  height: 100%;
  width: 100%;
  background: #2c3e50;
}
.article .donate form .paypal {
  display: block;
  margin: auto;
  padding: 20px 0px 0px 0px;
  outline: 0;
}
.article .img-demo {
  vertical-align: bottom;
  list-style: none;
  margin: 0;
  padding: 0;
}
.article .img-demo li {
  float: left;
  width: 25%;
  text-align: center;
}
.article .img-demo li img {
  border: 2px solid white;
  width: 98px;
  height: 98px;
}
.article .float-left {
  float: left;
}
.article .float-right {
  float: right;
}
.article .clearfix:before,
.article .clearfix:after {
  content: "";
  display: table;
}
.article .clearfix:after {
  clear: both;
}
.article .clearfix {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
}
.article .rest-left {
  margin-left: 244px;
}
.article .brick {
  background-color: white;
  float: left;
  cursor: default;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.article .brick .cover {
  overflow: hidden;
  margin: 20px;
}
.article .brick .read-more {
  position: absolute;
  display: none;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 12px;
  background: black;
  background: rgba(0, 0, 0, 0.45);
}
.article .brick:hover .read-more {
  display: block;
  cursor: pointer;
}
.article .brick .desc {
  display: none;
}
.article .full-width .float-left {
  display: none;
}
.article .full-width .desc {
  display: block;
}
.article .full-width.brick {
  box-shadow: none;
  overflow: visible;
  border: none !important;
  background: none !important;
}
.article .full-width.brick .cover {
  margin: 0px 20px;
  color: #333;
}
.article .full-width.brick .cover * {
  text-shadow: none;
}
.article .full-width.brick .cover code {
  color: #666;
}
.article .open .float-left {
  display: none;
}
.article .cell {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  background-color: #222;
}
.article [class*=-share] {
  cursor: pointer;
  margin: 20px 0;
  line-height: 30px;
  padding-left: 30px;
}
.article .brick img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stylist_section {
  margin-left: calc(80px / 2);
  margin-right: calc(80px / 2);
  width: calc(100% - 80px);
}
@media only screen and (max-width: 1024px) {
  .stylist_section {
    width: 100%;
    margin: 0;
  }
}
.stylist_section .stylist_container {
  display: flex;
  min-height: 460px;
}
@media only screen and (max-width: 1024px) {
  .stylist_section .stylist_container {
    height: auto;
    flex-direction: column;
  }
}
.stylist_section .stylist_container .stylist_column {
  width: 50%;
  background: #e9e2e2;
}
.stylist_section .stylist_container .stylist_column.stylist_photo_column {
  width: calc(50% - 11px);
}
@media only screen and (max-width: 1024px) {
  .stylist_section .stylist_container .stylist_column.stylist_photo_column {
    width: 100%;
  }
}
.stylist_section .stylist_container .stylist_column.stylist_info_column {
  width: calc(50% + 11px);
}
@media only screen and (max-width: 1024px) {
  .stylist_section .stylist_container .stylist_column {
    width: 100%;
  }
}
.stylist_section .stylist_container .stylist_column .image-element__wrap img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.stylist_section .stylist_container .stylist_column.stylist_info_column {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .stylist_section .stylist_container .stylist_column.stylist_info_column {
    padding: 20px;
    width: 100%;
  }
}
.stylist_section .stylist_container .article_content {
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
  margin-bottom: 68px;
  height: 240px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .stylist_section .stylist_container .article_content {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.21;
    letter-spacing: normal;
    height: auto;
  }
}
.stylist_section .stylist_container .article_content p {
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
}
@media only screen and (max-width: 1024px) {
  .stylist_section .stylist_container .article_content p {
    font-size: 28px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.21;
    letter-spacing: normal;
  }
}
.stylist_section .stylist_container .article_title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.67;
  line-height: 1.25;
  letter-spacing: normal;
  color: #424240;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1024px) {
  .stylist_section .stylist_container .article_title {
    line-height: 1.11;
  }
}
.stylist_section .stylist_container .article-exept {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
}
@media only screen and (max-width: 1024px) {
  .stylist_section .stylist_container .article-exept {
    line-height: 1.38;
  }
}

.section_article_stylist .decor-line {
  position: absolute;
  top: 20px;
  width: 1px;
  height: 60px;
  background: #424240;
  left: 50%;
}
.section_article_stylist .section_2column_article_text {
  padding: 110px 0 50px;
  display: flex;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .section_article_stylist .section_2column_article_text {
    flex-direction: column;
  }
}
.section_article_stylist .section_2column_article_text .column_article_text {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #424240;
}
.section_article_stylist .section_2column_article_text .column_article_text.column-article-title {
  width: calc( 50% + 15px);
}
@media only screen and (max-width: 1024px) {
  .section_article_stylist .section_2column_article_text .column_article_text.column-article-title {
    width: 100%;
  }
}
.section_article_stylist .section_2column_article_text .column_article_text.column_article_text_text {
  width: calc( 50% - 15px);
  padding-top: 10px;
}
@media only screen and (max-width: 1024px) {
  .section_article_stylist .section_2column_article_text .column_article_text.column_article_text_text {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .section_article_stylist .section_2column_article_text .column_article_text {
    font-size: 16px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: normal;
    width: 100%;
    color: #424240;
  }
}
.section_article_stylist .section_2column_article_text .column_article_text h2 {
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  max-width: 586px;
  color: #424240;
}
@media only screen and (max-width: 1024px) {
  .section_article_stylist .section_2column_article_text .column_article_text h2 {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.21;
    letter-spacing: normal;
  }
}

.section_article_stylist {
  max-width: 1238px;
  margin: 0 auto;
}
.section_article_stylist .decor_horisontal {
  width: 60px;
  height: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #424240;
  top: 50px;
}
.section_article_stylist .section_midle_article_text {
  padding-top: 50px;
  position: relative;
}
.section_article_stylist .section_midle_article_text .midle_article_text {
  color: #424240;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: center;
  margin: 50px auto;
  max-width: 611px;
}
@media only screen and (max-width: 1024px) {
  .section_article_stylist .section_midle_article_text .midle_article_text {
    font-size: 22px;
  }
}
.section_article_stylist .section_midle_article_text .button--primary, .section_article_stylist .section_midle_article_text .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .section_article_stylist .section_midle_article_text p > a {
  display: block;
  margin: 0 auto;
  width: 250px;
  height: 50px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
}
@media only screen and (max-width: 1024px) {
  .section_article_stylist .section_midle_article_text .button--primary, .section_article_stylist .section_midle_article_text .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .section_article_stylist .section_midle_article_text p > a {
    width: 100%;
  }
}
.section_article_stylist .article_all_stylist {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 50px 0;
}
.section_article_stylist .article_all_stylist .decor_horisontal {
  top: 0;
}
.section_article_stylist .article_all_stylist .articles_stylistblog-section {
  width: 100%;
}
.section_article_stylist .article_all_stylist h2 {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  color: #424240;
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .section_article_stylist .article_all_stylist h2 {
    font-size: 28px;
    line-height: 1.21;
  }
}

.article-stylingcentre .evm_tagged_img {
  padding-top: 5px !important;
}
@media only screen and (max-width: 1024px) {
  .article-stylingcentre .articles_stylistblog-section .stylist_pages .article_column .article-exept {
    margin-bottom: 26px;
  }
}

.section__page-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}
.section__page-wrapper .container {
  width: 100%;
  padding: 0 20px;
}

.page-banner__container {
  max-width: 1360px;
  margin: 0 auto 20px auto;
}
@media (max-width: 799px) {
  .page-banner__container {
    height: 495px;
  }
}
.page-banner__container .page-banner__wrap {
  position: relative;
}
@media (max-width: 799px) {
  .page-banner__container .page-banner__wrap {
    height: 100%;
  }
}
.page-banner__container .page-banner__wrap .page-banner__title {
  position: absolute;
  bottom: 15px;
  left: 60px;
  font-family: "Addington CF";
  font-size: 50px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  color: #eff3f5;
  max-width: 660px;
}
@media (max-width: 799px) {
  .page-banner__container .page-banner__wrap .page-banner__title {
    font-size: 40px;
    left: 20px;
    bottom: 30px;
  }
}
@media (max-width: 799px) {
  .page-banner__container .page-banner__wrap .page-banner__image {
    height: 100%;
  }
}
@media (max-width: 799px) {
  .page-banner__container .page-banner__wrap .page-banner__image img {
    height: 100%;
    object-fit: cover;
  }
}

.page-content__box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -40px 50px -40px;
}
@media (max-width: 799px) {
  .page-content__box {
    margin: 0;
  }
}
@media (max-width: 799px) {
  .page-content__box.page-content__box-second .page-content__box-left {
    order: 2;
  }
}
@media (max-width: 799px) {
  .page-content__box.page-content__box-second .page-content__box-right {
    order: 1;
  }
}

.page-content__box-left {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
}
@media (max-width: 799px) {
  .page-content__box-left {
    flex-basis: 100%;
    margin-bottom: 10px;
    padding: 0;
  }
}

.page-content__box-right {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
}
@media (max-width: 799px) {
  .page-content__box-right.page-content__box-right-image {
    margin: 0 -20px;
    padding: 0;
  }
}
@media (max-width: 799px) {
  .page-content__box-right {
    flex-basis: 100%;
    margin-bottom: 30px;
    padding: 0;
  }
}

.page-content__vertical-line {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.page-content__vertical-line::after {
  width: 1px;
  height: 60px;
  background: #424240;
  content: "";
  display: block;
  position: relative;
  left: 50%;
}

.page-content__horizontal-line {
  width: 100%;
  position: relative;
  margin-bottom: 50px;
}
.page-content__horizontal-line::after {
  width: 60px;
  height: 1px;
  background: #424240;
  content: "";
  display: block;
  position: relative;
  left: 50%;
  margin-left: -30px;
}

.page-content__box-heading {
  font-family: "Addington CF";
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
  padding-bottom: 10px;
}
.page-content__box-heading.page-content__box-heading-title {
  font-size: 35px;
  line-height: 1.14;
  padding-bottom: 0;
}
@media (max-width: 799px) {
  .page-content__box-heading.page-content__box-heading-title {
    font-size: 28px !important;
  }
}

.page-content__box-subheading {
  font-family: "Addington CF";
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
}

.page-content__box-image {
  width: 100%;
  max-height: 335px;
}
@media (max-width: 799px) {
  .page-content__box-image {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

.page-content__box-block {
  margin: 0 auto;
}

.page-content__box-block-text {
  text-align: center;
  max-width: 830px;
  margin: 0 auto 50px auto;
  font-family: "Addington CF";
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  color: #424240;
}
@media (max-width: 799px) {
  .page-content__box-block-text {
    max-width: 260px;
    font-size: 28px;
  }
}

.page-content__gray-box {
  display: flex;
  margin-bottom: 100px;
}
@media (max-width: 799px) {
  .page-content__gray-box {
    margin-bottom: 50px;
  }
}

.page-content__gray-box-left {
  flex-basis: 50%;
}
@media (max-width: 799px) {
  .page-content__gray-box-left {
    display: none;
  }
}

.page-content__gray-box-right {
  flex-basis: 50%;
  padding: 50px 40px 40px 40px;
  background: #424240;
  color: #eff3f5;
}
@media (max-width: 799px) {
  .page-content__gray-box-right {
    flex-basis: 100%;
  }
}

.page-content__gray-box-image {
  max-height: 400px;
  width: 100%;
  overflow: hidden;
}
.page-content__gray-box-image img {
  width: 100%;
  object-fit: cover;
}

.page-content__gray-box-title {
  font-family: "Addington CF";
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  margin-bottom: 20px;
}
@media (max-width: 799px) {
  .page-content__gray-box-title {
    font-size: 20px;
  }
}

.page-content__gray-box-text {
  font-family: "Addington CF";
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
}
@media (max-width: 799px) {
  .page-content__gray-box-text {
    font-size: 16px;
  }
}

.page-content__gray-box-button {
  margin-top: 40px;
}
.page-content__gray-box-button a {
  font-family: "Addington CF";
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  text-transform: uppercase;
  padding: 11px 62px;
  color: #eff3f5;
  border: 1px solid #eff3f5;
}
@media (max-width: 799px) {
  .page-content__gray-box-button a {
    width: 100%;
    display: block;
  }
}

.page-content__env-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 799px) {
  .page-content__env-wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.page-content__env-item {
  flex-basis: 240px;
  margin-bottom: 100px;
  color: #424240;
  font-family: "Addington CF";
}
@media (max-width: 799px) {
  .page-content__env-item {
    flex-basis: 100%;
    margin-bottom: 58px;
  }
}

.page-content__env-item-logo {
  margin-bottom: 10px;
}
.page-content__env-item-logo svg,
.page-content__env-item-logo .icon {
  width: 47px;
  height: 47px;
}
@media (max-width: 799px) {
  .page-content__env-item-logo svg,
.page-content__env-item-logo .icon {
    width: 80px;
    height: 80px;
  }
}

.page-content__env-item-heading {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: normal;
  text-align: left;
  margin-bottom: 5px;
}

.page-content__env-item-text {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
}

.b2b-page .section__page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
.b2b-page .section__page-wrapper .container {
  width: 100%;
  padding: 0 20px;
}
.b2b-page .page-banner__container .page-banner__wrap .page-banner__title {
  left: 100px;
  bottom: 60px;
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  text-align: left;
}
@media (max-width: 768px) {
  .b2b-page .page-banner__container .page-banner__wrap .page-banner__title {
    left: 20px;
    bottom: 20px;
    font-size: 40px;
  }
}
.b2b-page .page-content__box {
  margin: 0 -20px 50px -20px;
}
.b2b-page .page-content__box-left {
  flex-basis: 427px;
  padding: 0 20px 0 20px;
}
.b2b-page .page-content__box-right {
  flex: 1;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .b2b-page .page-content__box-right {
    margin-bottom: 0;
  }
}
.b2b-page .page-content__box-heading.page-content__box-heading-title {
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: left;
}
.b2b-page .page-content__box-subheading {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
}

.page-content__create-and-become {
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .page-content__create-and-become {
    display: none;
  }
}

.page-content__create-and-become-wrap {
  display: flex;
  width: 100%;
  margin: 0 -10px;
}

.page-content__create-and-become-item {
  flex-basis: 31.25%;
  padding: 0 10px;
  max-height: 295px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-content__create-and-become-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-content__create-and-become-item.page-content__create-and-become-item-long {
  flex-basis: calc(100% - (31.25% * 2));
}

.page-content__create-and-become-item-title {
  position: absolute;
  color: #eff3f5;
  font-family: "Addington CF";
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: center;
}

.page-content__job {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 100px;
  color: #424240;
  font-family: "Addington CF";
}

.page-content__job-left {
  flex-basis: 365px;
}
@media (max-width: 768px) {
  .page-content__job-left {
    flex-basis: 100%;
  }
}

.page-designer-rewards-program .b2b-page .page-content__box-left {
  flex-basis: 50%;
}
@media (max-width: 768px) {
  .page-designer-rewards-program .b2b-page .page-content__box-left {
    flex-basis: 100%;
  }
}
.page-designer-rewards-program .b2b-page .page-content__box-right {
  flex-basis: 50%;
  padding-left: 42px;
}
@media (max-width: 768px) {
  .page-designer-rewards-program .b2b-page .page-content__box-right {
    flex-basis: 100%;
    padding-left: 20px;
  }
}

.page-content__job-right {
  flex: 1;
  padding-left: 90px;
}
@media (max-width: 768px) {
  .page-content__job-right {
    flex-basis: 100%;
    padding-left: 0;
    padding-top: 50px;
  }
}

.page-content__job-info-heading {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .page-content__job-info-heading {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.page-content__job-info-heading span {
  text-decoration: underline;
}

.page-content__job-info-subheading {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
}

.page-content__job-content-title {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
}
@media (max-width: 768px) {
  .page-content__job-content-title {
    font-size: 20px;
  }
}

.page-content__job-dropdown-item-wrap {
  display: none;
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  padding-bottom: 24px;
}
.page-content__job-dropdown-item-wrap p {
  padding-bottom: 5px;
}
.page-content__job-dropdown-item-wrap ol,
.page-content__job-dropdown-item-wrap ul {
  padding-left: 20px;
}

.page-content__job-dropdown-item {
  border-bottom: 1px solid #d6d6d6;
}

.page-content__job-dropdown-item-title {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  position: relative;
  padding: 30px 0;
  cursor: pointer;
}
.page-content__job-dropdown-item-title::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='20' fill='none' viewBox='5 4 14 24'%3E%3Cpath fill='%23222' d='M17.863 20.747c.187.215.182.559-.012.767-.193.209-.502.203-.689-.013l-5.025-5.793c-.183-.21-.183-.544 0-.755l5.025-5.787c.187-.216.496-.222.69-.013.193.208.198.552.011.767l-4.698 5.411 4.698 5.416z'/%3E%3C/svg%3E");
  right: 0;
  position: absolute;
  z-index: 4;
  font-size: 1.1em;
  transform: rotate(270deg);
  top: 50%;
  margin-top: -10px;
  transition: all 0.3s;
}
.page-content__job-dropdown-item-title.is-active::after {
  transform: rotate(90deg);
  transition: all 0.3s;
}

.page-content__box-heading-title {
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  margin-bottom: 20px;
  color: #424240;
}

#shopify-section-page__b2b-business-partner-program .page-content__box-left {
  flex-basis: 50%;
  padding-right: 6px;
  padding-left: 40px;
}
@media (max-width: 768px) {
  #shopify-section-page__b2b-business-partner-program .page-content__box-left {
    flex-basis: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
#shopify-section-page__b2b-business-partner-program .page-content__box-right {
  flex-basis: 50%;
  padding-right: 40px;
  padding-left: 60px;
}
@media (max-width: 768px) {
  #shopify-section-page__b2b-business-partner-program .page-content__box-right {
    flex-basis: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
#shopify-section-page__b2b-business-partner-program .page-content__job-info-heading {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
}

.page-content__logo-content {
  display: block;
  margin-bottom: 20px;
}
.page-content__logo-content img {
  max-width: 328px;
}

.page-about-us .page-content__vertical-line + .page-content__box {
  margin-bottom: 20px;
}
.page-about-us .page-content__gray-box-logo .image-element__wrap {
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 20px;
}
@media only screen and (min-width: 799px) {
  .page-about-us .page-content__gray-box-button {
    margin-top: 50px;
  }
}
.page-about-us .page-content__env-title {
  margin-bottom: 50px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 35px;
  line-height: 39.9px;
  font-weight: 700;
  color: #424240;
}

.about-us-section {
  padding-bottom: 40px;
}
@media only screen and (min-width: 799px) {
  .about-us-section {
    padding-bottom: 17px;
  }
}
.about-us-section .page-content__box-heading.page-content__box-heading-title {
  margin-bottom: 20px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 28px;
  line-height: 33.88px;
  font-weight: bold;
  color: #424240;
}
@media only screen and (min-width: 799px) {
  .about-us-section .page-content__box-heading.page-content__box-heading-title {
    font-size: 35px;
    line-height: 39.9px;
  }
}
.about-us-section .page-content__box-heading {
  margin-bottom: 5px;
  padding: 0;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 18px;
  line-height: 19.98px;
  font-weight: bold;
  color: #424240;
}
@media only screen and (min-width: 799px) {
  .about-us-section .page-content__box-heading {
    font-size: 18px;
    line-height: 25.02px;
  }
}
.about-us-section .page-content__box-right.page-content__box-right-image {
  margin: 0 -20px;
  width: calc(100% + 40px);
  flex-basis: calc(100% + 40px);
}
@media only screen and (min-width: 799px) {
  .about-us-section .page-content__box-right.page-content__box-right-image {
    margin: 0;
    width: 100%;
    flex-basis: 50%;
  }
}
.about-us-section .page-content__box.page-content__box-second .page-content__box-left {
  margin-bottom: 50px;
}
.about-us-section .page-content__gray-box .page-content__gray-box-left .page-content__gray-box-image {
  max-height: none;
  height: 100%;
}
.about-us-section .page-content__gray-box .page-content__gray-box-left .page-content__gray-box-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-us-section .page-content__gray-box .page-content__gray-box-right {
  padding: 50px 20px 40px 20px;
}
@media only screen and (min-width: 799px) {
  .about-us-section .page-content__gray-box .page-content__gray-box-right {
    padding: 50px 40px 40px 40px;
  }
}
.about-us-section .page-content__gray-box .page-content__gray-box-text {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #eff3f5;
}
@media only screen and (min-width: 799px) {
  .about-us-section .page-content__gray-box .page-content__gray-box-text {
    line-height: 20px;
  }
}
.about-us-section .page-content__gray-box .page-content__gray-box-button {
  margin-top: 30px;
}
@media only screen and (min-width: 799px) {
  .about-us-section .page-content__gray-box .page-content__gray-box-button {
    margin-top: 40px;
  }
  .about-us-section .page-content__gray-box .page-content__gray-box-button > a {
    display: inline-flex;
    justify-content: center;
    min-width: 298px;
  }
}
.about-us-section .page-content__gray-box .page-content__gray-box-button > a {
  padding: 13px 15px;
}
.about-us-section .page-content__box-image {
  max-height: none;
}

.not-found-404__page .search-form .icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.not-found-404__page .not-found-text {
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 22.08px;
  font-weight: 300;
  color: #424240;
}
.not-found-404__page .not-found-text p > a {
  padding: 17px;
  font-family: "Addington CF", Montserrat, sans-serif;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
}

.article-create-and-become .container.banner__wrap .image_banner-title, .all_article_content_section .container.banner__wrap .image_banner-title {
  max-width: 580px;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .container.banner__wrap .image_banner-title, .all_article_content_section .container.banner__wrap .image_banner-title {
    width: 316px;
  }
}
.article-create-and-become .article_product_section, .article-create-and-become .article_video_section, .article-create-and-become .article_lagre_image_section, .all_article_content_section .article_product_section, .all_article_content_section .article_video_section, .all_article_content_section .article_lagre_image_section {
  display: block;
  max-width: 1040px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article_product_section, .article-create-and-become .article_video_section, .article-create-and-become .article_lagre_image_section, .all_article_content_section .article_product_section, .all_article_content_section .article_video_section, .all_article_content_section .article_lagre_image_section {
    width: calc(100% - 40px);
  }
}
.article-create-and-become .breadcrumb__wrapper, .all_article_content_section .breadcrumb__wrapper {
  margin-top: 80px;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .breadcrumb__wrapper, .all_article_content_section .breadcrumb__wrapper {
    margin-top: 50px;
  }
}
.article-create-and-become .breadcrumb__wrapper .breadcrumb ul, .article-create-and-become .breadcrumb__wrapper .breadcrumb ol, .all_article_content_section .breadcrumb__wrapper .breadcrumb ul, .all_article_content_section .breadcrumb__wrapper .breadcrumb ol {
  justify-content: flex-start;
}
.article-create-and-become .breadcrumb__wrapper a, .article-create-and-become .breadcrumb__wrapper span, .all_article_content_section .breadcrumb__wrapper a, .all_article_content_section .breadcrumb__wrapper span {
  font-weight: 400;
  color: #424240;
  font-size: 18px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .breadcrumb__wrapper a, .article-create-and-become .breadcrumb__wrapper span, .all_article_content_section .breadcrumb__wrapper a, .all_article_content_section .breadcrumb__wrapper span {
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.14;
  }
}
.article-create-and-become .article_data, .all_article_content_section .article_data {
  margin-bottom: 50px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article_data, .all_article_content_section .article_data {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article_data span.devider, .all_article_content_section .article_data span.devider {
    padding-left: 7px;
    padding-right: 7px;
  }
}
.article-create-and-become .article_content, .all_article_content_section .article_content {
  margin-bottom: 50px;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article_content, .all_article_content_section .article_content {
    margin-bottom: 30px;
  }
}
.article-create-and-become .article_content h2, .all_article_content_section .article_content h2 {
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: left;
  margin-bottom: 30px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article_content h2, .all_article_content_section .article_content h2 {
    font-size: 28px;
    line-height: 1.21;
  }
}
.article-create-and-become .article_content p, .all_article_content_section .article_content p {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article_content p, .all_article_content_section .article_content p {
    line-height: 1.38;
  }
}
.article-create-and-become .large_image_mobile, .article-create-and-become .large_img_mob_empty, .all_article_content_section .large_image_mobile, .all_article_content_section .large_img_mob_empty {
  margin-bottom: 30px;
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 799px) {
  .article-create-and-become .large_image_mobile, .article-create-and-become .large_img_mob_empty, .all_article_content_section .large_image_mobile, .all_article_content_section .large_img_mob_empty {
    display: none;
  }
}
.article-create-and-become .large_img, .all_article_content_section .large_img {
  margin-bottom: 30px;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .large_img, .all_article_content_section .large_img {
    display: none;
  }
}
.article-create-and-become .bottom_text, .all_article_content_section .bottom_text {
  margin-bottom: 50px;
  color: #424240;
}
.article-create-and-become .article_video_section, .all_article_content_section .article_video_section {
  margin-bottom: 100px;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article_video_section, .all_article_content_section .article_video_section {
    margin-bottom: 50px;
  }
}
.article-create-and-become .article_video_section h2, .all_article_content_section .article_video_section h2 {
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: left;
  margin-bottom: 30px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article_video_section h2, .all_article_content_section .article_video_section h2 {
    font-size: 28px;
    line-height: 1.21;
  }
}
.article-create-and-become .article_video_section p, .all_article_content_section .article_video_section p {
  color: #424240;
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  margin-bottom: 30px;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article_video_section p, .all_article_content_section .article_video_section p {
    line-height: 1.38;
  }
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article_video_section .video_article_w, .all_article_content_section .article_video_section .video_article_w {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.article-create-and-become .article_product_tags, .all_article_content_section .article_product_tags {
  display: flex;
  align-items: center;
  margin-top: 50px;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article_product_tags, .all_article_content_section .article_product_tags {
    margin-bottom: 30px;
    display: block;
  }
}
.article-create-and-become .article_product_tags .article_product_tags_inner, .all_article_content_section .article_product_tags .article_product_tags_inner {
  white-space: nowrap;
  width: 100%;
}
.article-create-and-become .article_product_tags .article_product_tags_inner .article_product_tags_wrap, .all_article_content_section .article_product_tags .article_product_tags_inner .article_product_tags_wrap {
  overflow-x: auto;
  width: calc(100% - 103px);
  padding-bottom: 20px;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article_product_tags .article_product_tags_inner .article_product_tags_wrap, .all_article_content_section .article_product_tags .article_product_tags_inner .article_product_tags_wrap {
    width: 100%;
  }
}
.article-create-and-become .article_product_tags .article_product_tags_inner .article_product_tags_wrap::-webkit-scrollbar, .all_article_content_section .article_product_tags .article_product_tags_inner .article_product_tags_wrap::-webkit-scrollbar {
  display: none;
}
.article-create-and-become .article_product_tags .article_product_tags_inner .article_product_tags_wrap::-webkit-scrollbar-track, .all_article_content_section .article_product_tags .article_product_tags_inner .article_product_tags_wrap::-webkit-scrollbar-track {
  display: none;
}
.article-create-and-become .article_product_tags .article_product_tags_inner .article_product_tags_wrap::-webkit-scrollbar-thumb, .all_article_content_section .article_product_tags .article_product_tags_inner .article_product_tags_wrap::-webkit-scrollbar-thumb {
  display: none;
}
.article-create-and-become .article_product_tags h2, .all_article_content_section .article_product_tags h2 {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
  padding: 0 40px 40px 0;
  white-space: nowrap;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article_product_tags h2, .all_article_content_section .article_product_tags h2 {
    font-size: 28px;
    line-height: 1.21;
    padding-bottom: 10px;
  }
}
.article-create-and-become .article_product_tags a.related-categories-by-tag_tag, .all_article_content_section .article_product_tags a.related-categories-by-tag_tag {
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 3px;
  letter-spacing: 0.4px;
  height: 47px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article_product_tags a.related-categories-by-tag_tag, .all_article_content_section .article_product_tags a.related-categories-by-tag_tag {
    height: 26px;
    font-size: 14px;
  }
}
.article-create-and-become .slider_container_flickty, .all_article_content_section .slider_container_flickty {
  max-width: 1040px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 90px;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .slider_container_flickty, .all_article_content_section .slider_container_flickty {
    margin-bottom: 170px;
    width: calc(100% - 40px);
  }
}
.article-create-and-become .slider_container_flickty h2, .all_article_content_section .slider_container_flickty h2 {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: center;
  margin-bottom: 30px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .slider_container_flickty h2, .all_article_content_section .slider_container_flickty h2 {
    text-align: left;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 20px;
  }
}
.article-create-and-become .slider_container_flickty .gallery-cell.thumbnail, .all_article_content_section .slider_container_flickty .gallery-cell.thumbnail {
  width: 25%;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .slider_container_flickty .gallery-cell.thumbnail, .all_article_content_section .slider_container_flickty .gallery-cell.thumbnail {
    width: auto;
    margin-right: 24px;
  }
}
.article-create-and-become .slider_container_flickty .gallery-cell.thumbnail .product-wrap, .all_article_content_section .slider_container_flickty .gallery-cell.thumbnail .product-wrap {
  width: 180px;
  margin: 0 auto;
  padding: 0;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .slider_container_flickty .gallery-cell.thumbnail .product-wrap, .all_article_content_section .slider_container_flickty .gallery-cell.thumbnail .product-wrap {
    width: 157px;
  }
}
.article-create-and-become .slider_container_flickty .gallery-cell.thumbnail .product-wrap:hover, .all_article_content_section .slider_container_flickty .gallery-cell.thumbnail .product-wrap:hover {
  border-color: #ffff;
}
.article-create-and-become .slider_container_flickty .gallery-cell.thumbnail a.product-thumbnail__title, .all_article_content_section .slider_container_flickty .gallery-cell.thumbnail a.product-thumbnail__title {
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: normal;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .slider_container_flickty .gallery-cell.thumbnail a.product-thumbnail__title, .all_article_content_section .slider_container_flickty .gallery-cell.thumbnail a.product-thumbnail__title {
    line-height: 1;
  }
}
.article-create-and-become .slider_container_flickty .main-carousel:after, .all_article_content_section .slider_container_flickty .main-carousel:after {
  content: "flickity";
  display: none;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .slider_container_flickty .main-carousel, .all_article_content_section .slider_container_flickty .main-carousel {
    padding-bottom: 30px;
  }
  .article-create-and-become .slider_container_flickty .main-carousel::-webkit-scrollbar, .all_article_content_section .slider_container_flickty .main-carousel::-webkit-scrollbar {
    display: none;
  }
  .article-create-and-become .slider_container_flickty .main-carousel::-webkit-scrollbar-track, .all_article_content_section .slider_container_flickty .main-carousel::-webkit-scrollbar-track {
    display: none;
  }
  .article-create-and-become .slider_container_flickty .main-carousel::-webkit-scrollbar-thumb, .all_article_content_section .slider_container_flickty .main-carousel::-webkit-scrollbar-thumb {
    display: none;
  }
}
.article-create-and-become .flickity-progress-wrap, .all_article_content_section .flickity-progress-wrap {
  display: none;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .flickity-progress-wrap, .all_article_content_section .flickity-progress-wrap {
    display: block;
  }
}
.article-create-and-become .bottom_section, .all_article_content_section .bottom_section {
  max-width: 994px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .bottom_section, .all_article_content_section .bottom_section {
    width: calc(100% - 40px);
  }
}
.article-create-and-become .bottom_section h2, .all_article_content_section .bottom_section h2 {
  font-size: 28px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: #424240;
}
.article-create-and-become .bottom_section .bottom_section_inner, .all_article_content_section .bottom_section .bottom_section_inner {
  display: flex;
  align-items: center;
  border: 1px solid #d6d6d6;
  padding: 40px;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .bottom_section .bottom_section_inner, .all_article_content_section .bottom_section .bottom_section_inner {
    flex-direction: column;
    padding: 20px 30px 30px 30px;
  }
}
.article-create-and-become .bottom_section .bottom_section_inner h3, .all_article_content_section .bottom_section .bottom_section_inner h3 {
  font-size: 28px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: normal;
  margin-bottom: 30px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .bottom_section .bottom_section_inner h3, .all_article_content_section .bottom_section .bottom_section_inner h3 {
    margin-bottom: 20px;
  }
}
.article-create-and-become .bottom_section .bottom_section_inner p, .all_article_content_section .bottom_section .bottom_section_inner p {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  color: #424240;
}
.article-create-and-become .bottom_section .bottom_section_inner_col, .all_article_content_section .bottom_section .bottom_section_inner_col {
  width: 50%;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .bottom_section .bottom_section_inner_col, .all_article_content_section .bottom_section .bottom_section_inner_col {
    width: 100%;
  }
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .bottom_section .section_inner_col1, .all_article_content_section .bottom_section .section_inner_col1 {
    width: 100%;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    margin-bottom: 20px;
  }
}
.article-create-and-become .bottom_section .section_inner_col2, .all_article_content_section .bottom_section .section_inner_col2 {
  padding-left: 40px;
  border-left: 1px solid #d6d6d6;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .bottom_section .section_inner_col2, .all_article_content_section .bottom_section .section_inner_col2 {
    border-left: 0;
    padding-left: 0;
  }
}
.article-create-and-become .bottom_section .section_inner_col2 .button--primary, .article-create-and-become .bottom_section .section_inner_col2 .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .article-create-and-become .bottom_section .section_inner_col2 p > a, .all_article_content_section .bottom_section .section_inner_col2 .button--primary, .all_article_content_section .bottom_section .section_inner_col2 .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .all_article_content_section .bottom_section .section_inner_col2 p > a {
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 47px;
  width: 262px;
  margin-top: 50px;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .bottom_section .section_inner_col2 .button--primary, .article-create-and-become .bottom_section .section_inner_col2 .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .article-create-and-become .bottom_section .section_inner_col2 p > a, .all_article_content_section .bottom_section .section_inner_col2 .button--primary, .all_article_content_section .bottom_section .section_inner_col2 .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .all_article_content_section .bottom_section .section_inner_col2 p > a {
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
  }
}
.article-create-and-become .article-2comn-text-image .given-artcl-buttons_section, .all_article_content_section .article-2comn-text-image .given-artcl-buttons_section {
  max-width: 1040px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article-2comn-text-image .given-artcl-buttons_section, .all_article_content_section .article-2comn-text-image .given-artcl-buttons_section {
    padding-top: 50px;
    width: calc(100% - 40px);
  }
}
.article-create-and-become .article-2comn-text-image .given-artcl-buttons_section .prew-btn_w, .article-create-and-become .article-2comn-text-image .given-artcl-buttons_section .next-btn_w, .all_article_content_section .article-2comn-text-image .given-artcl-buttons_section .prew-btn_w, .all_article_content_section .article-2comn-text-image .given-artcl-buttons_section .next-btn_w {
  width: 159px;
}
.article-create-and-become .article-2comn-text-image .given-artcl-buttons_section .btn-share_block, .all_article_content_section .article-2comn-text-image .given-artcl-buttons_section .btn-share_block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-create-and-become .article-2comn-text-image .given-artcl-buttons_section .btn-share_block span, .all_article_content_section .article-2comn-text-image .given-artcl-buttons_section .btn-share_block span {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article-2comn-text-image .given-artcl-buttons_section .btn-share_block, .all_article_content_section .article-2comn-text-image .given-artcl-buttons_section .btn-share_block {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
  }
}
.article-create-and-become .article-2comn-text-image .given-artcl-buttons_section .btn-share_block a, .all_article_content_section .article-2comn-text-image .given-artcl-buttons_section .btn-share_block a {
  color: #424240;
  margin: 10px;
  display: inline-block;
  line-height: 1;
  display: flex;
}
.article-create-and-become .article-2comn-text-image .given-artcl-buttons_section .btn-share_block a .icon svg, .all_article_content_section .article-2comn-text-image .given-artcl-buttons_section .btn-share_block a .icon svg {
  height: 27px;
}
.article-create-and-become .article-2comn-text-image .given-artcl-buttons_section .btn-share_block a .icon svg path, .all_article_content_section .article-2comn-text-image .given-artcl-buttons_section .btn-share_block a .icon svg path {
  fill: #424240;
}
.article-create-and-become .article-2comn-text-image .given-artcl-buttons_section .button-secondary, .all_article_content_section .article-2comn-text-image .given-artcl-buttons_section .button-secondary {
  color: #424240;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.85;
  letter-spacing: 0.4px;
  border: 1px solid #424240;
  width: 159px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
  padding: 10px;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .article-2comn-text-image .given-artcl-buttons_section .button-secondary, .all_article_content_section .article-2comn-text-image .given-artcl-buttons_section .button-secondary {
    font-size: 15px;
  }
}
.article-create-and-become .article-2comn-text-image .given-artcl-buttons_section .button-secondary span.icon, .all_article_content_section .article-2comn-text-image .given-artcl-buttons_section .button-secondary span.icon {
  margin-left: 10px;
}
.article-create-and-become .article-2comn-text-image .given-artcl-buttons_section .button-secondary:hover, .all_article_content_section .article-2comn-text-image .given-artcl-buttons_section .button-secondary:hover {
  color: #ffff;
  background: #424240;
}
.article-create-and-become .article-2comn-text-image .given-artcl-buttons_section .button-secondary:hover path, .all_article_content_section .article-2comn-text-image .given-artcl-buttons_section .button-secondary:hover path {
  fill: #ffff;
}
.article-create-and-become .article-2comn-text-image .given-artcl-buttons_section a.before-article span.icon, .all_article_content_section .article-2comn-text-image .given-artcl-buttons_section a.before-article span.icon {
  margin-right: 10px;
  margin-left: 0;
  height: 14px;
}
.article-create-and-become .flickity-button.flickity-prev-next-button.previous, .all_article_content_section .flickity-button.flickity-prev-next-button.previous {
  left: -30px;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .flickity-button.flickity-prev-next-button.previous, .all_article_content_section .flickity-button.flickity-prev-next-button.previous {
    display: none;
  }
}
.article-create-and-become .flickity-button.flickity-prev-next-button.next, .all_article_content_section .flickity-button.flickity-prev-next-button.next {
  right: -30px;
}
@media only screen and (max-width: 798px) {
  .article-create-and-become .flickity-button.flickity-prev-next-button.next, .all_article_content_section .flickity-button.flickity-prev-next-button.next {
    display: none;
  }
}

.small_banner_section, .all_article_content_section {
  max-width: 1240px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
  padding-top: 50px;
  position: relative;
}
@media only screen and (max-width: 798px) {
  .small_banner_section, .all_article_content_section {
    width: calc(100% - 40px);
  }
}
.small_banner_section .decor-line, .all_article_content_section .decor-line {
  position: absolute;
  top: 20px;
  width: 1px;
  height: 60px;
  background: #424240;
  left: 50%;
}
.small_banner_section .under_bunner_text_w, .all_article_content_section .under_bunner_text_w {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .small_banner_section .under_bunner_text_w, .all_article_content_section .under_bunner_text_w {
    flex-direction: column;
  }
}
.small_banner_section .under_bunner_text_w h2, .all_article_content_section .under_bunner_text_w h2 {
  width: 262px;
  margin-right: 59px;
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  color: #424240;
}
@media only screen and (max-width: 1024px) {
  .small_banner_section .under_bunner_text_w h2, .all_article_content_section .under_bunner_text_w h2 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 28px;
  }
}
.small_banner_section .under_bunner_text_w .under_bunner_text, .all_article_content_section .under_bunner_text_w .under_bunner_text {
  width: calc(100% - 321px);
}
@media only screen and (max-width: 1024px) {
  .small_banner_section .under_bunner_text_w .under_bunner_text, .all_article_content_section .under_bunner_text_w .under_bunner_text {
    width: 100%;
  }
}
.small_banner_section .under_bunner_text_w .under_bunner_text p, .all_article_content_section .under_bunner_text_w .under_bunner_text p {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  margin-bottom: 15px;
  color: #424240;
}
.small_banner_section .under_bunner_text_w .under_bunner_text p:last-child, .all_article_content_section .under_bunner_text_w .under_bunner_text p:last-child {
  margin: 0;
}
.small_banner_section .under_bunner_text_w .under_bunner_text a, .all_article_content_section .under_bunner_text_w .under_bunner_text a {
  color: #424240;
}
.small_banner_section .small_bunner_w, .all_article_content_section .small_bunner_w {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 100px 0;
}
@media only screen and (max-width: 1024px) {
  .small_banner_section .small_bunner_w, .all_article_content_section .small_bunner_w {
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
  }
}
.small_banner_section .small_bunner_w .small_banner_text, .all_article_content_section .small_bunner_w .small_banner_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6d6d6;
  border-right: 0;
  height: 100%;
  width: 100%;
  max-width: 547px;
}
@media only screen and (max-width: 1024px) {
  .small_banner_section .small_bunner_w .small_banner_text, .all_article_content_section .small_bunner_w .small_banner_text {
    border: 1px solid #d6d6d6;
  }
}
.small_banner_section .small_bunner_w .small_banner_text img, .all_article_content_section .small_bunner_w .small_banner_text img {
  width: 237px;
}
@media only screen and (max-width: 798px) {
  .small_banner_section .small_bunner_w .small_banner_text img, .all_article_content_section .small_bunner_w .small_banner_text img {
    width: 178px;
  }
}
.small_banner_section .small_bunner_w .small_banner_text h2, .all_article_content_section .small_bunner_w .small_banner_text h2 {
  margin: 30px 0;
  text-align: center;
  max-width: 362px;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .small_banner_section .small_bunner_w .small_banner_text h2, .all_article_content_section .small_bunner_w .small_banner_text h2 {
    font-size: 20px;
    line-height: 1;
    max-width: 257px;
  }
}
.small_banner_section .small_bunner_w .small_banner_text p, .all_article_content_section .small_bunner_w .small_banner_text p {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  max-width: 209px;
  text-align: center;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .small_banner_section .small_bunner_w .small_banner_text p, .all_article_content_section .small_bunner_w .small_banner_text p {
    line-height: 1.38;
  }
}
.small_banner_section .small_bunner_w .small_banner_image, .all_article_content_section .small_bunner_w .small_banner_image {
  width: 56%;
  max-width: 693px;
  height: 537px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .small_banner_section .small_bunner_w .small_banner_image, .all_article_content_section .small_bunner_w .small_banner_image {
    height: auto;
    width: 100%;
    max-width: 100%;
  }
}
.small_banner_section .small_bunner_w .small_banner_image img, .all_article_content_section .small_bunner_w .small_banner_image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .small_banner_section .small_bunner_w .small_banner_image img, .all_article_content_section .small_bunner_w .small_banner_image img {
    height: 351px;
    width: 100%;
  }
}
.small_banner_section .small_bunner_w .small_bunner_coll.small_banner_text, .all_article_content_section .small_bunner_w .small_bunner_coll.small_banner_text {
  width: 44%;
  height: 537px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .small_banner_section .small_bunner_w .small_bunner_coll.small_banner_text, .all_article_content_section .small_bunner_w .small_bunner_coll.small_banner_text {
    padding: 40px 0;
    height: auto;
    width: 100%;
    max-width: 100%;
  }
}
.small_banner_section .sub_bunner_text_w h2, .all_article_content_section .sub_bunner_text_w h2 {
  font-size: 28px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: normal;
  margin-bottom: 10px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .small_banner_section .sub_bunner_text_w h2, .all_article_content_section .sub_bunner_text_w h2 {
    line-height: 1.21;
  }
}
.small_banner_section .sub_bunner_text_w p, .all_article_content_section .sub_bunner_text_w p {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  margin-bottom: 10px;
  color: #424240;
}
.small_banner_section .sub_bunner_text_w p:last-child, .all_article_content_section .sub_bunner_text_w p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 798px) {
  .small_banner_section .sub_bunner_text_w p, .all_article_content_section .sub_bunner_text_w p {
    line-height: 1.38;
  }
}

.article_gallary_section, .all_article_content_section {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
  position: relative;
}
@media only screen and (max-width: 798px) {
  .article_gallary_section, .all_article_content_section {
    padding-bottom: 100px;
  }
}
.article_gallary_section .container.article_gallary, .all_article_content_section .container.article_gallary {
  display: block;
  max-width: 1240px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.article_gallary_section h2, .all_article_content_section h2 {
  font-size: 28px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  margin-bottom: 30px;
  margin-top: 50px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .article_gallary_section h2, .all_article_content_section h2 {
    line-height: 1.21;
    margin-bottom: 10px;
  }
}
.article_gallary_section .carousel-main, .all_article_content_section .carousel-main {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
@media only screen and (max-width: 798px) {
  .article_gallary_section .carousel-main, .all_article_content_section .carousel-main {
    display: none;
  }
}
.article_gallary_section .carousel-main .carousel-cell.gallary-article_main_cell.is-selected, .all_article_content_section .carousel-main .carousel-cell.gallary-article_main_cell.is-selected {
  width: 100%;
}
.article_gallary_section .carousel-main .carousel-cell.gallary-article_main_cell.is-selected img.gallary-article_img, .all_article_content_section .carousel-main .carousel-cell.gallary-article_main_cell.is-selected img.gallary-article_img {
  width: 100%;
  height: 227px;
  object-fit: cover;
}
.article_gallary_section .carousel-main .flickity-viewport, .all_article_content_section .carousel-main .flickity-viewport {
  transition: height 0.2s;
}
.article_gallary_section .carousel-nav, .all_article_content_section .carousel-nav {
  width: 100%;
  padding-bottom: 50px;
}
@media only screen and (max-width: 798px) {
  .article_gallary_section .carousel-nav, .all_article_content_section .carousel-nav {
    display: flex;
    flex-wrap: wrap;
    width: 340px;
    margin: 0 auto;
    padding-bottom: 0;
  }
}
.article_gallary_section .carousel-nav .gallary-article_cell, .all_article_content_section .carousel-nav .gallary-article_cell {
  width: 100px;
  height: 100px;
  margin-right: 20px;
}
@media only screen and (max-width: 798px) {
  .article_gallary_section .carousel-nav .gallary-article_cell, .all_article_content_section .carousel-nav .gallary-article_cell {
    width: 150px;
    height: 150px;
    margin-right: 0;
    margin: 10px;
  }
}
.article_gallary_section .carousel-nav .gallary-article_cell.is-selected, .all_article_content_section .carousel-nav .gallary-article_cell.is-selected {
  opacity: 0.4;
}
.article_gallary_section .carousel-nav .gallary-article_cell img.gallary-article_img, .all_article_content_section .carousel-nav .gallary-article_cell img.gallary-article_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article_gallary_section .carousel:after, .all_article_content_section .carousel:after {
  content: "flickity";
  display: none;
}
@media only screen and (max-width: 798px) {
  .article_gallary_section .carousel:after, .all_article_content_section .carousel:after {
    content: "";
  }
}

.article-2comn-text-image .bottom_section, .all_article_content_section .bottom_section {
  max-width: 994px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 86px;
}
@media only screen and (max-width: 798px) {
  .article-2comn-text-image .bottom_section, .all_article_content_section .bottom_section {
    padding-bottom: 80px;
    margin-bottom: 50px;
  }
}
.article-2comn-text-image .bottom_section h2, .all_article_content_section .bottom_section h2 {
  font-size: 28px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: #424240;
}
.article-2comn-text-image .bottom_section .bottom_section_inner, .all_article_content_section .bottom_section .bottom_section_inner {
  display: flex;
  align-items: center;
  border: 1px solid #d6d6d6;
  padding: 40px;
}
@media only screen and (max-width: 798px) {
  .article-2comn-text-image .bottom_section .bottom_section_inner, .all_article_content_section .bottom_section .bottom_section_inner {
    flex-direction: column;
    padding: 20px 30px 30px 30px;
  }
}
.article-2comn-text-image .bottom_section .bottom_section_inner h3, .all_article_content_section .bottom_section .bottom_section_inner h3 {
  font-size: 28px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: normal;
  margin-bottom: 30px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .article-2comn-text-image .bottom_section .bottom_section_inner h3, .all_article_content_section .bottom_section .bottom_section_inner h3 {
    margin-bottom: 20px;
  }
}
.article-2comn-text-image .bottom_section .bottom_section_inner p, .all_article_content_section .bottom_section .bottom_section_inner p {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  color: #424240;
}
.article-2comn-text-image .bottom_section .bottom_section_inner_col, .all_article_content_section .bottom_section .bottom_section_inner_col {
  width: 50%;
}
@media only screen and (max-width: 798px) {
  .article-2comn-text-image .bottom_section .bottom_section_inner_col, .all_article_content_section .bottom_section .bottom_section_inner_col {
    width: 100%;
  }
}
@media only screen and (max-width: 798px) {
  .article-2comn-text-image .bottom_section .section_inner_col1, .all_article_content_section .bottom_section .section_inner_col1 {
    width: 100%;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    margin-bottom: 20px;
  }
}
.article-2comn-text-image .bottom_section .section_inner_col2, .all_article_content_section .bottom_section .section_inner_col2 {
  padding-left: 40px;
  border-left: 1px solid #d6d6d6;
}
@media only screen and (max-width: 798px) {
  .article-2comn-text-image .bottom_section .section_inner_col2, .all_article_content_section .bottom_section .section_inner_col2 {
    border-left: 0;
    padding-left: 0;
  }
}
.article-2comn-text-image .bottom_section .section_inner_col2 .button--primary, .article-2comn-text-image .bottom_section .section_inner_col2 .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .article-2comn-text-image .bottom_section .section_inner_col2 p > a, .all_article_content_section .bottom_section .section_inner_col2 .button--primary, .all_article_content_section .bottom_section .section_inner_col2 .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .all_article_content_section .bottom_section .section_inner_col2 p > a {
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 47px;
  width: 262px;
  margin-top: 50px;
  color: #eff3f5;
}
@media only screen and (max-width: 798px) {
  .article-2comn-text-image .bottom_section .section_inner_col2 .button--primary, .article-2comn-text-image .bottom_section .section_inner_col2 .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .article-2comn-text-image .bottom_section .section_inner_col2 p > a, .all_article_content_section .bottom_section .section_inner_col2 .button--primary, .all_article_content_section .bottom_section .section_inner_col2 .not-found-404__page .not-found-text p > a, .not-found-404__page .not-found-text .all_article_content_section .bottom_section .section_inner_col2 p > a {
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
  }
}
.article-2comn-text-image .given-artcl-buttons_section, .all_article_content_section .given-artcl-buttons_section {
  max-width: 1240px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 798px) {
  .article-2comn-text-image .given-artcl-buttons_section, .all_article_content_section .given-artcl-buttons_section {
    padding-top: 38px;
    width: calc(100% - 40px);
  }
}
.article-2comn-text-image .given-artcl-buttons_section .prew-btn_w, .article-2comn-text-image .given-artcl-buttons_section .next-btn_w, .all_article_content_section .given-artcl-buttons_section .prew-btn_w, .all_article_content_section .given-artcl-buttons_section .next-btn_w {
  width: 159px;
}
.article-2comn-text-image .given-artcl-buttons_section .btn-share_block, .all_article_content_section .given-artcl-buttons_section .btn-share_block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
}
.article-2comn-text-image .given-artcl-buttons_section .btn-share_block span, .all_article_content_section .given-artcl-buttons_section .btn-share_block span {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  color: #424240;
}
@media only screen and (max-width: 798px) {
  .article-2comn-text-image .given-artcl-buttons_section .btn-share_block span, .all_article_content_section .given-artcl-buttons_section .btn-share_block span {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 798px) {
  .article-2comn-text-image .given-artcl-buttons_section .btn-share_block, .all_article_content_section .given-artcl-buttons_section .btn-share_block {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 248px;
  }
}
.article-2comn-text-image .given-artcl-buttons_section .btn-share_block a, .all_article_content_section .given-artcl-buttons_section .btn-share_block a {
  color: #424240;
  margin: 10px;
  display: inline-block;
  line-height: 1;
  display: flex;
}
.article-2comn-text-image .given-artcl-buttons_section .btn-share_block a .icon svg, .all_article_content_section .given-artcl-buttons_section .btn-share_block a .icon svg {
  height: 27px;
}
.article-2comn-text-image .given-artcl-buttons_section .btn-share_block a .icon svg path, .all_article_content_section .given-artcl-buttons_section .btn-share_block a .icon svg path {
  fill: #424240;
}
.article-2comn-text-image .given-artcl-buttons_section .button-secondary, .all_article_content_section .given-artcl-buttons_section .button-secondary {
  color: #424240;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.85;
  letter-spacing: 0.4px;
  border: 1px solid #424240;
  width: 159px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
  padding: 10px;
}
.article-2comn-text-image .given-artcl-buttons_section .button-secondary span.icon, .all_article_content_section .given-artcl-buttons_section .button-secondary span.icon {
  margin-left: 10px;
}
.article-2comn-text-image .given-artcl-buttons_section .button-secondary:hover, .all_article_content_section .given-artcl-buttons_section .button-secondary:hover {
  color: #ffff;
  background: #424240;
}
.article-2comn-text-image .given-artcl-buttons_section .button-secondary:hover path, .all_article_content_section .given-artcl-buttons_section .button-secondary:hover path {
  fill: #ffff;
}
.article-2comn-text-image .given-artcl-buttons_section a.before-article span.icon, .all_article_content_section .given-artcl-buttons_section a.before-article span.icon {
  margin-right: 10px;
  margin-left: 0;
  height: 14px;
}

.all_article_content_section {
  max-width: 1240px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
}
@media only screen and (max-width: 798px) {
  .all_article_content_section {
    width: calc(100% - 40px);
  }
}
.all_article_content_section ul {
  list-style: unset;
  padding-left: 25px;
}
.all_article_content_section ol {
  padding-left: 25px;
}

.masonry_layout {
  max-width: 1240px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

/* # 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
================================================== */
body {
  max-height: none !important;
  position: static !important;
  top: auto !important;
  max-width: 100vw;
  width: 100vw;
}

html.bcsf-mobile--open, html.is-search-focused, html.ajax-cart-is-visible {
  overflow: hidden;
}

#mobile-header .mobile-sticky-search.bcsf-mobile--open {
  display: none;
  pointer-events: none;
}

.swym-button.swym-add-to-wishlist-view-product:not(.swym-loaded) {
  display: none !important;
}

.seo_description {
    overflow: hidden;
    transition: all 0.5s;
    margin-bottom: 8px !important;
}
.openseoblock {
  color: #424240;
  cursor: pointer;
  font-family: DM Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.07px;
  line-height: 1.2; /* 106.667% */
  text-decoration-line: underline;
  text-underline-offset: 4px;
}
.openseoblock:after {
  content: '+';
  margin-left: 8px;
  position: absolute;
}
.openseoblock.expanded:after {
  content: '-'
}
.openseoblock:hover{
 text-decoration: underline;
}

.giftcd_notes {
    font-family: "Addington CF", Helvetica, Arial;
    text-align: center;
    font-size: 13px;
    color: red!important;
   margin-top: 10px;
   margin-bottom: 10px;
 }

 .back-to-top{
   bottom: 200px;
    width: 60px;
    height: 60px;
    color: #222;
    position: fixed;
    right: 0;
    z-index: 103;
    border: 1px solid #666;
    text-decoration: none;
    background: #fff;
    z-index: 103;
    border: 1px solid #ccc;
    text-decoration: none;
    box-sizing: content-box;
    padding: 0;
    margin: 0;
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
 }
 span.back-to-top-text {
    /* color: darkblue; */
    font-size: 10px;
}
.back-to-top span.icon{
    height: 20px;
    width: 20px;
}

.gallery__link_text{
  font-size: 28px;
  font-weight: 700;
    color: #fff;
}

.customers-register-without-password .header-section .sticky-menu-wrapper,
.customers-register-without-password .header-section .header__icons,
.customers-register-without-password .footer,
.customers-register-without-password .mobile-icons,
.customers-register-without-password .mobile-dropdown,
.customers-register-without-password #theme-ajax-cart.is-drawer,
.customers-register-without-password .header-section .header__search {
  display: none;
}

.customers-register-without-password .sections_container_w section.section__wrapper.section__wrapper_register {
  padding-right: 0;
  border-right: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.customers-register-without-password .sections_container_w section.section__wrapper.section__wrapper_register .register {
  padding-bottom: 0;
  border-bottom: none;
}

.customers-register-without-password h2.login_title {
  margin-bottom: 10px;
}

.customers-register-without-password #create_customer {
  margin-top: 50px;
}

.customers-register-without-password .login__text {
  font-size: 18px;
  color: #222;
}

body {
  font-family: "DM sans";
}


/* mobile menu fixes */



.submenu__input:checked~.mobile-menu__submenu.has-mega-menu {

    z-index: 100;

}


.submenu__input:checked~.submenu__label{

  position: static;

}


.submenu__input:checked~.submenu__label span.close-dropdown {

  left:0;

  z-index: 101;

  height: 71px;

}


.submenu__input:checked~.submenu__label span.close-dropdown.index{

   z-index: 100;

}
  #recently-viewed-products .product-wrap .swym-button.swym-add-to-wishlist-view-product{
    top: 0;
    right: 0;
}

  .disabled_button {
    pointer-events: none;
}

.snipet-form-popup{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.popup-snipet-modal-overlay {
    background: #000000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.5;
    cursor: pointer;
}

.popup-snipet-modal {
    position: absolute;
    background: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    z-index: 10;
    width: 851px;
    align-items: stretch;
    align-self: stretch;
}

.popup-snipet-modal__left.leadin-content-form-left {
    width: 347px;
        flex-shrink: 0;
}

.popup-snipet-modal__right.leadin-content-form-right {
    padding: 50px;
}

.leadin-content-logo {
    width: 142px;
    margin-bottom: 20px;
}

.leadin-content-title {
    font-family: HelveticaNeue;
    font-size: 35px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.14;
    letter-spacing: normal;
    text-align: left;
    color: #424240;
    margin-bottom: 20px;
}

.leadin-content-subtitle {
    font-family: HelveticaNeue;
    font-size: 16px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    margin-bottom: 20px;
}

.leadin-content-close {
    margin-top: 20px;
}

.popup-snipet-modal__left.leadin-content-form-left img {
    height: 100%;
    object-fit: cover;
}

.leadin-content-close{
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.07;
    color: #424240;
    text-decoration: underline;
}
.close-popupmodal {
    position: absolute;
    top: -26px;
    right: -29px;
    cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  .popup-snipet-modal {
    width: auto;
  }
  .popup-snipet-modal__left.leadin-content-form-left {
    display: none;
  }
}

@media only screen and (max-width: 798px) {

  .popup-snipet-modal__right.leadin-content-form-right {
    padding: 50px 20px;
  }
  .leadin-content-logo {
    margin-bottom: 10px;
  }
  .leadin-content-title{
    font-size: 28px;
    line-height: 1.21;
    margin-bottom: 10px;
  }
  .leadin-content-subtitle{
    font-size: 16px;
    line-height: 1.38;
    margin-bottom: 10px;
  }
  .leadin-content-close{
    margin-top: 10px;
  }
  .popup-snipet-modal {
    top: 05%;
    bottom: auto;
    transform: translate(-50%, 0%);
  }

  .popup-snipet-modal {
    top: 05%;
    bottom: auto;
    transform: translate(-50%, 0%);
    width: 335px;
    max-height: 90vh;
  }
  .popup-snipet-modal__right{
    overflow: auto;
  }
  .close-popupmodal{
    right: -6px;
  }
}

.mega-menu__custom .mega-menu__linklist-collection .mega-menu__linklist-collection-wrap.mega-menu__linklist-collection-wrap--with-image2 {
    padding: 40px 45px 51px;
    max-height: 500px;
}

.navbar-item img.mega-menu__linklist-collection-image2 {
    max-height: 100%;
    height: 100%;
}

.mega-menu__custom .mega-menu__linklist-collection .mega-menu__linklist-collection-wrap.mega-menu__linklist-collection-wrap--with-image2 .mega-menu__linklist-collection-title {
    flex-basis: initial;
}

.mega-menu__custom .mega-menu__linklist-collection .mega-menu__linklist-collection-wrap.mega-menu__linklist-collection-wrap--with-image2 .mega-menu__linklist-collection-title {
    flex-basis: initial;
    width: 320px;
    height: 100%;
    font-size: 12px;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
        letter-spacing: 0;
}

.mega-menu__custom .mega-menu__linklist-collection .mega-menu__linklist-collection-wrap.mega-menu__linklist-collection-wrap--with-image2 .mega-menu__linklist-collection-description {
    flex: unset;
    flex-basis: unset;
    height: 383px;
    padding-left: 45px;
    width: calc(100% - 320px);
    height: 100%;
}

img.mega-menu__linklist-collection-image {
  height: 100%;
}

a.mega-menu_image-link{
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  display: block;
  margin-top: 12px;
} 

.mega-menu__custom .mega-menu__linklist-collection .mega-menu__linklist-collection-wrap.mega-menu__linklist-collection-wrap--with-image2 .mega-menu__linklist-collection-title,
.mega-menu__custom .mega-menu__linklist-collection .mega-menu__linklist-collection-wrap.mega-menu__linklist-collection-wrap--with-image  .mega-menu__linklist-collection-title{
   flex-basis: unset;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 0;
}

.container.container--pagination {
    padding-bottom: 30px;
} 

.rewards-content .membership--wrap * {
   font-family: "Addington CF"!important;
   font-weight: 500!important;
}

.yotpo .promoted-products-box .yotpo-main-title {
  color: var(--text-headline-primary, #424240);
  font-feature-settings: 'clig' off, 'liga' off;
  font-family: Addington CF;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; 
}

.yotpo .promoted-products-box .promoted-products .yotpo-promoted-product .yotpo-product-name {
  color: var(--text-headline-primary, #424240);
  font-feature-settings: 'clig' off, 'liga' off;
  font-family: Addington CF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
}

.boost-pfs-filter-scroll-to-top {
  display: none !important;
}

/* Start 974517423 */
.all_article_content_section .slider_container_flickty .gallery-cell.thumbnail .product-wrap .swym-button.swym-add-to-wishlist-view-product{
  top: 5px;
  right: 5px;
}
/* End 974517423 */

@media screen and (max-width: 749px) {
  .page-about-us .page-content__gray-box {
    flex-direction: column;
  }
  .page-about-us .page-content__gray-box-left {
    display: block;
  }
}

.message__error {
  font-size: 13px;
  line-height: 11px;
  color: #cd3535 !important;
  margin: 12px 0 24px;
}
.message__error svg {
  fill:  #cd3535 !important;
  width: 16px;
  height: 16px;
  position: relative;
  top: 3px;
}
@media only screen and (min-width: 798px) {
  .page-banner {
    display: block;
  }
  .page-banner-mobile {
    display: none;
  }
}
@media only screen and (max-width: 798px) {
  .page-banner {
    display: none;
  }
  .page-banner-mobile {
    display: block;
  }
  .page-banner-mobile .page-banner__image img {
    width: 100%;
  }
}

.sku-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 10px;
}

.cart-message-discount {
  background: #F1EBDD;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  gap: 5px;

  padding: 15px 22px;

  margin-top: 20px;
}

.cart-message-title {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.cart-message-description {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
 }

/* navigation revamp */
body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-child, body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-grandchild {
  display: block;
  width: 100%;
  height: 100%;
}
body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-child-wrap, body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-grandchild-wrap {
  position: absolute;
  top: 0;
  background: #fff;
  z-index: 5;
  padding: 0;
}
body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-child-wrap.active, body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-grandchild-wrap.active {
  display: block;
}
body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-child-title, body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-grandchild-title {
  font-family: "Addington CF";
  display: block;
  margin: 0 12px;
  padding: 25px 0;
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: normal;
  text-align: center;
  border-bottom: 1px solid #d3d6d9;
  position: relative;
  margin-bottom: 15px;
}
body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-child-title::before, body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-grandchild-title::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='20' fill='none' viewBox='6 9 14 14'%3E%3Cpath fill='%23222' d='M17.863 20.747c.187.215.182.559-.012.767-.193.209-.502.203-.689-.013l-5.025-5.793c-.183-.21-.183-.544 0-.755l5.025-5.787c.187-.216.496-.222.69-.013.193.208.198.552.011.767l-4.698 5.411 4.698 5.416z'/%3E%3C/svg%3E");
  left: 0;
  position: absolute;
  z-index: 4;
  top: 50%;
  margin-top: -10px;
}
body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-child-nth, body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-grandchild-nth {
  padding: 6px 20px;
}
body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__custom-linklist ul li a.mega-menu__linklist-link--arrow::after, body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__custom-linklist ul li a.mega-menu__linklist-child-link--arrow::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='20' fill='none' viewBox='6 9 14 14'%3E%3Cpath fill='%23222' d='M17.863 20.747c.187.215.182.559-.012.767-.193.209-.502.203-.689-.013l-5.025-5.793c-.183-.21-.183-.544 0-.755l5.025-5.787c.187-.216.496-.222.69-.013.193.208.198.552.011.767l-4.698 5.411 4.698 5.416z'/%3E%3C/svg%3E");
  right: 0;
  transform: rotate(180deg);
  position: absolute;
  z-index: 4;
  top: 50%;
  margin-top: -10px;
}
body .mobile-menu__content .mega-menu .mega-menu__custom .menu__heading {
  font-family: "Addington CF";
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: normal;
  text-align: left;
  padding: 25px 0;
  margin: 0 20px;
  border-bottom: 0.5px solid #d3d6d9;
  display: flex;
  justify-content: center;
  position: relative;
}
body .mobile-menu__content .mega-menu .mega-menu__linklist-child-box, body .mobile-menu__content .mega-menu .mega-menu__linklist-grandchild-box {
  display: block;
  margin: 40px 20px;
}
body .mobile-menu__content .mega-menu .mega-menu__linklist-child-box.mega-menu__linklist-child-box-mobile, body .mobile-menu__content .mega-menu .mega-menu__linklist-grandchild-box.mega-menu__linklist-grandchild-box-mobile {
  display: block;
  margin: 40px 20px 80px 20px;
}
body .mobile-menu__content .mega-menu__linklist-child.active, body .mobile-menu__content .mega-menu__linklist-grandchild.active {
  display: flex;
  position: absolute;
  background: #fff;
  z-index: 4;
  height: 100%;
  max-height: 100%;
}
body .mobile-menu__content .mega-menu__linklist-child .mega-menu__linklist-child-nth, body .mobile-menu__content .mega-menu__linklist-grandchild .mega-menu__linklist-grandchild-nth {
  flex-basis: 100%;
}
body .mega-menu .mega-menu__linklist-link, body .mega-menu .mega-menu__linklist-child-link {
  display: inline-block;
  padding: 0.5em 0;
  line-height: 1;
}
body .mega-menu__section.is-active .mega-menu {
  max-height: 628px;
}
body .mega-menu__custom::after {
  margin-left: 25%;
}
body .mega-menu__custom .mega-menu__custom-linklist {
  flex: 0 0 25%;
}
body .mega-menu__custom .mega-menu__custom-linklist li a {
  color: #222;
}
body .mega-menu__custom .mega-menu__custom-linklist li a.active {
  text-decoration: none;
}
body .mega-menu__custom .mega-menu__linklist-child, body .mega-menu__custom .mega-menu__linklist-grandchild {
  display: none;
  flex: 1 1 auto;
}
body .mega-menu__custom .mega-menu__linklist-child.active, body .mega-menu__custom .mega-menu__linklist-grandchild.active {
  display: flex;
  max-height: 628px;
}
body .mega-menu__custom .mega-menu__linklist-child-wrap, body .mega-menu__custom .mega-menu__linklist-grandchild-wrap {
  padding: 40px 0;
}
body .mega-menu__custom .mega-menu__linklist-grandchild-wrap {
  padding: 0 24px;
}
body .mega-menu__custom .mega-menu__linklist-child-wrap.active, body .mega-menu__custom .mega-menu__linklist-grandchild-wrap.active {
  flex-wrap: wrap;
  height: 100%;
}
body .mega-menu__custom .mega-menu__linklist-grandchild-wrap.active {
  display: flex;
  flex-direction: column;
  column-gap: 24px;
}
body:has(.mega-menu__linklist-grandchild-over.active) .mega-menu__custom .mega-menu__linklist-grandchild-wrap.active {
  align-items: center;
}
body .mega-menu__custom .mega-menu__linklist-child-content, body .mega-menu__custom .mega-menu__linklist-grandchild-content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
body .mega-menu__linklist-child-content {
  flex-direction: column;
  padding: 0 14px;
}
body .mega-menu__custom .mega-menu__linklist-child-box, body .mega-menu__custom .mega-menu__linklist-grandchild-box {
  margin-left: auto;
}
body .mega-menu__custom .mega-menu__linklist-grandchild-nth {
  flex-basis: 13%;
  padding: 6px 0;
}
body:has(.mega-menu__linklist-grandchild-over.active) .mega-menu__custom .mega-menu__linklist-grandchild-nth {
  width: calc(50% - 12px);
}
body .mega-menu__custom .mega-menu__linklist-child-nth a, body .mega-menu__custom .mega-menu__linklist-grandchild-nth a {
  height: 70px;
}
body .mega-menu__custom .mega-menu__linklist-child-nth a .mega-menu__linklist-child-nth-title, body .mega-menu__custom .mega-menu__linklist-grandchild-nth a .mega-menu__linklist-grandchild-nth-title {
  font-family: "Addington CF";
  font-size: 13px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
  margin-left: 20px;
}
body .mega-menu__custom .mega-menu__linklist-child-nth a .mega-menu__linklist-child-nth-img, body .mega-menu__custom .mega-menu__linklist-grandchild-nth a .mega-menu__linklist-grandchild-nth-img {
  height: 70px;
}
body .mega-menu__custom .mega-menu__linklist-child-nth a .mega-menu__linklist-child-nth-img img, body .mega-menu__custom .mega-menu__linklist-grandchild-nth a .mega-menu__linklist-grandchild-nth-img img {
  height: 60px;
  max-height: none;
}
body .mega-menu__custom .mega-menu__linklist-child-view-all, body .mega-menu__custom .mega-menu__linklist-grandchild-view-all {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 20px;
  flex-basis: 100%;
}
body .mega-menu__custom .mega-menu__linklist-child-view-all a, body .mega-menu__custom .mega-menu__linklist-grandchild-view-all a {
  font-family: "Addington CF";
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.85;
  letter-spacing: normal;
  text-align: left;
  color: #424240;
  text-decoration: underline;
}
body .mega-menu__title, body .mega-menu__linklist-grandchild-title {
  font-family: Addington CF;
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.4px;
  text-align: left;
  color: #424240;
  margin-bottom: 24px;
  padding-left: 24px;
}
body .mega-menu__custom .mega-menu__linklist-grandchild-nth:nth-child(8) {
  margin-top: 40px;
}
body:has(.mega-menu__linklist-grandchild-over.active) .mega-menu__linklist-grandchild-title {
  width: calc(50% - 12px);
}
body:has(.mega-menu__linklist-grandchild-over.active) .mega-menu__custom .mega-menu__linklist-child-box {
  display: none !important;
}
body .mega-menu__tier-2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: unset !important;
  flex-basis: 33% !important;
}
body .mega-menu__tier-2 .mega-menu__linklist-child-link {
  font-family: Addington CF;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  text-align: left;
  color: #3f4245;
  width: 100%;
  padding: 12px 24px;
}
body .mega-menu__tier-2 .mega-menu__linklist-child-link.active {
  background: #dfdfdf;
  text-decoration: none;
}
body .mega-menu__linklist-child-wrapper, body .mega-menu__linklist-grandchild-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
body .mega-menu__linklist-child-wrapper .mega-menu__linklist-child-link, body .mega-menu__linklist-grandchild-wrapper .mega-menu__linklist-child-link {
  position: relative;
}
body .mega-menu__linklist-child-wrapper .mega-menu__linklist-link--arrow::after {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='currentColor' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  position: absolute;
  right: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
body .mega-menu__linklist-child-content-wrapper {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
body .mega-menu__linklist-grandchild-wrap .mega-menu__linklist-child-box {
  display: none;
}

body .mega-menu__custom .mega-menu__linklist-child-nth a,
body .mega-menu__custom .mega-menu__linklist-grandchild-nth a {
  display: flex;
  justify-content: space-between;
  background: #f2f2f2;
  align-items: center;
  height: 70px;
} 

.mega-menu__custom .mega-menu__linklist-child-wrap,
.mega-menu__custom .mega-menu__linklist-grandchild-wrap {
  display: none;
  flex-wrap: wrap;
  padding: 40px 0;
  min-height: 100%;
  width: 100%;
  flex: 1;
  overflow: auto;
}

@media screen and (min-width: 1023px) {
  body .mega-menu__custom .mega-menu__linklist-grandchild-nth a .mega-menu__linklist-grandchild-nth-title {
    font-size: 14px;
    font-weight: normal;
  }
}

@media screen and (max-width: 990px) {
  body .mega-menu__linklist-grandchild-wrap .mega-menu__linklist-child-box {
    display: block;
  }

  body .mega-menu__linklist-child-content {
    padding: 0;
  }

  body .mega-menu__title, body .mega-menu__linklist-grandchild-title {
    display: none;
  }

  body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-child-link {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.11;
    letter-spacing: normal;
    text-align: left;
    padding: 25px 0;
    margin: 0 20px;
    border-bottom: 0.5px solid #d3d6d9;
    width: auto;
    color: #424240;
    height: auto;
    position: relative;
  }

  body .mobile-menu__content .mega-menu__linklist-child-wrapper .mega-menu__linklist-link--arrow::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='20' fill='none' viewBox='6 9 14 14'%3E%3Cpath fill='%23222' d='M17.863 20.747c.187.215.182.559-.012.767-.193.209-.502.203-.689-.013l-5.025-5.793c-.183-.21-.183-.544 0-.755l5.025-5.787c.187-.216.496-.222.69-.013.193.208.198.552.011.767l-4.698 5.411 4.698 5.416z'/%3E%3C/svg%3E");
    right: 0;
    transform: rotate(180deg);
    position: absolute;
    z-index: 4;
    top: 50%;
    margin-top: -10px;
  }

  body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-child-link {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.11;
    letter-spacing: normal;
    text-align: left;
    padding: 25px 0;
    margin: 0 20px;
    border-bottom: 0.5px solid #d3d6d9;
    width: auto;
    color: #424240;
    height: auto;
    position: relative;
  }
  
  .image-with-text.image-with-text-1 .image-with-text__text-column {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  /* Navigation revamp mobile */
  body .mobile-menu .mobile-menu-link, 
  body .mobile-menu .mobile-menu__item,
  body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__custom-linklist ul li a,
  body .mobile-menu__content .mega-menu .mega-menu__custom .menu__heading,
  body .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-child-link {
    font-weight: 400;
  }

  .mobile-menu__content {
    background: #f6f6f6;
  }
  
  body .mega-menu__custom .mega-menu__linklist-grandchild-nth a .mega-menu__linklist-grandchild-nth-title {
    font-size: 18px;
    font-weight: normal;
  }
  body .mobile-secondary-menu .mobile-secondary-sub-menu {
    z-index: 99;
  }
  .mega-menu__custom .mega-menu__linklist-child-wrap, .mega-menu__custom .mega-menu__linklist-grandchild-wrap {
    display: none;
  }
  .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-child-wrap.active, 
  .mobile-menu__content .mega-menu .mega-menu__custom .mega-menu__linklist-grandchild-wrap.active {
      display: block;
  }

  .mobile-secondary-menu .mobile-secondary-menu__item .mobile-secondary-menu__item-title > span {
    font-weight: normal;
    font-size: 18px;
  }

  .mobile-secondary-menu .mobile-secondary-sub-menu__child a,
  .mobile-secondary-menu .mobile-secondary-sub-menu__title,
  .mobile-secondary-menu .mobile-secondary-sub-menu__title > span {
    font-weight: normal;
  }
}
