/** Shopify CDN: Minification failed

Line 2844:20 Expected ":"

**/
@charset "utf-8";

@font-face {
  font-family: "Relay";
  src: url("//bjorkandberries-devsite.myshopify.com/cdn/shop/t/34/assets/Relay-Regular.woff2?v=70130666062578381531782233813") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #93272c;
  --color-white: #ffffff;
  --color-black: #000000;
  --scale: 1;
  --header-height: auto;
  --font-family-base: "Relay";
}

@media (min-width: 1500px) {
  :root {
    --scale: 1.1875;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  :root {
    --scale: 0.9;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  :root {
    --scale: 0.8;
  }
}
@media (max-width: 767.98px) {
  :root {
    --scale: 0.6;
  }
}

@-ms-viewport {
  width: device-width;
}

.header-container--wrapper[data-theme="dark"] {
  --background-color: var(--color-black);
  --background-color: transparent;
  --color: var(--color-white);
  --color-hover: var(--color-white);
  --color-focus: var(--color-white);
  --color-active: var(--color-white);
}
.header-container--wrapper[data-theme="light"] {
  --background-color: transparent;
  --color: var(--color-black);
  --color-hover: var(--color-black);
  --color-focus: var(--color-black);
  --color-active: var(--color-black);
}
.header-container--wrapper {
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: white;
  z-index: 2147483647;
  position: relative;
}

.no-scroll .header-container--wrapper {
  z-index: 995;
}

.header-container {
  background-color: var(--background-color);
  color: var(--color);
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  align-items: center;
}

.cart-open .header-container,
.menu-open .header-container {
  border-bottom: 1px solid;
}
.header-col--logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-col--logo a {
  display: block;
  color: var(--color);
}
.header-col--logo a:hover svg,
.header-col--logo a:focus svg,
.header-col--logo a:focus-within svg {
  color: var(--color-primary);
}
.header-col--logo a:hover {
  color: var(--color-hover);
}
.header-col--logo a:focus {
  color: var(--color-focus);
}
.header-col--logo a:active {
  color: var(--color-active);
}
@media (max-width: 991.98px) {
  .header-col--logo a {
    height: 19.34px;
    width: 178px;
    /* margin-left: 1.25rem; */
  }
  
  .header-col--logo a svg {
    display: block;
    fill: var(--color);
    height: 19.34px;
    width: 178px;
  }
}
@media (min-width: 992px) {
  .header-col--logo a {
    width: 200px;
    height: 21.73px;
    /* margin-left: 24px; */
  }
  .header-col--logo a svg {
    display: block;
    width: 200px;
    height: 21.73px;
  }
}
.header-col--links {
  font-size: 13px;
  text-transform: lowercase;
  grid-gap: 1em;
}

.header-col--links .menu-link {
  display: flex;
  align-items: center;
  grid-gap: 2px;
  color: var(--color);
  cursor: pointer;
}

.header-col--links .menu-link .menu-cart-count {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: -webkit-baseline-middle;
  margin-top: 2px;
  letter-spacing: -0.03em;
}

.header-col--links .menu-link:hover {
  color: var(--color-hover);
}
.header-col--links .menu-link:focus {
  color: var(--color-hover);
}
.header-col--links .menu-link:active {
  color: var(--color-active);
}
.header-col--links .menu-link svg {
  display: block;
  height: 24px;
  width: 24px;
  fill: var(--color);
}
@media (max-width: 767.98px) {
  .header-container {
    padding: 1.563rem 1.125rem;
  }
  .header-col--toggle {
    grid-column: 23/25;
    grid-row-start: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .header-col--logo {
    height: 19.34px;
    width: 178px;

    grid-column-start: 1;
    grid-row-start: 1;
  }
  .header-col--links {
    display: flex;
    position: absolute;
    right: 3.5rem;
    grid-gap: 6px;
  }
  .header-col--links .menu-link svg {
    width: 24px;
    height: 24px;
  }
  /* .menu-link[data-action="toggle-search"] {
    display: none;
  } */
  .menu-account {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .header-container {
    padding: 1.25rem 2rem;
  }
  .header-col--toggle {
    grid-column: span 2;
  }
  .header-col--logo {
    grid-column: 11/15;
  }
  .header-col--links {
    grid-column: 15/25;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.header-navigation {
  z-index: 100;
  padding-top: var(--header-height);
  top: 0;
  position: absolute;
  width: 100%;
  transition-duration: 250ms;
  transform: translateY(-110%);
}
.menu-open .header-navigation {
  transform: translateY(0);
}
.header-navigation::before {
  content: "";
  display: block;
  width: 100%;
  height: var(--header-height);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-color: #fff;
  z-index: -1;
}
.header-navigation__container {
  background-color: #fff;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-bottom: 1px solid;
  margin-bottom: -1px;
  width: 100%;
}
@media (min-width: 1100px) {
  .header-navigation__container {
    min-height: 100vh;
    max-height: 1100px;
    width: 100%;
  }
}
.header-navigation__container .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  grid-column: span 12 !important;
  padding: 1.25rem;
}
@media (max-width: 1100px) {
  .header-navigation__container .nav-list {
    padding: calc(var(--header-height) / 2);
  }
}

@media (min-width: 1100px) {
  .header-navigation__container .nav-list {
    padding: 2.25rem;
  }
}
.header-navigation__container .nav-figure {
  overflow: hidden;
  display: none;
}
@media (min-width: 768px) {
  .header-navigation__container .nav-figure {
    display: block;
  }
}
.header-navigation__container .nav-figure video,
.header-navigation__container .nav-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-navigation__container figure {
  margin: 0;
}
@media (min-width: 1100px) {
  .header-navigation__container .nav-list {
    grid-column: span 6 !important;
    border-right: 1px solid;
  }
  .header-navigation__container .nav-figure {
    grid-column: span 6 !important;
  }
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-list__item {
  line-height: 42px;
  display: flex;
  min-height: 42px;
  flex-direction: column;
}

.nav-item {
  text-transform: lowercase;
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 42px;
  letter-spacing: 0.15em;
  font-size: 18px;
  cursor: pointer;
}

@media (min-width: 1100px) {
  .nav-item {
    line-height: 42px;
    min-height: 42px;
    font-size: 20px;
  }

  .nav-item__child {
    font-size: 17px !important;
  }
}

.section-break {
  display: block;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid;
}

.nav-item__child.is-active {
  opacity: 0.55;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.nav-list__parent a.nav-item__parent {
  user-select: none;
  transition-duration: 100ms;
  transition-property: color;
  will-change: color;
  position: relative;
  max-width: 290px;
}

.nav-list__parent a.nav-item__parent svg {
  transition-duration: 150ms;
  transition-property: transform;
  will-change: transform;
}

.nav-list__parent a.nav-item__parent:hover {
  color: var(--color-primary);
}
.nav-list__parent a.nav-item__parent:focus {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.nav-list__parent.is-active a.nav-item__parent,
.nav-list__item.is-active > a.nav-item {
  color: var(--color-primary);
}

.nav-list__parent.is-active a.nav-item__parent svg {
  transform: rotate(90deg);
}
.nav-list__parent.is-active a.nav-item__parent::after {
  width: 100%;
}
.nav-list__parent .nav-item__child {
  transition-duration: 150ms;
  transition-property: opacity;
  will-change: opacity;
}
.nav-list__parent .nav-item__child:hover,
.nav-list__parent .nav-item__child:focus {
  opacity: 0.55;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.nav-list__sub {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
.nav-list__sub[aria-expanded="false"] {
  overflow: hidden;
  visibility: none;
  height: 0;
}
.nav-list__sub[aria-expanded="true"] {
  transition-duration: 200ms;
  transition-delay: 100ms, 200ms, 250ms;
  transition-property: padding-top, padding-bottom, opacity;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  opacity: 1;

  margin-bottom: 1.25rem;
  margin-left: 1rem;
  margin-top: 1rem;
}

.nav-item svg {
  display: block;
  width: 18px;
  height: 18px;
}
.nav-item__child {
  font-size: 15px;
}
.menu-btn {
  --menu-btn-color: var(--color-black);
  --menu-btn-color-hover: var(--color-primary);
  --menu-btn-color-active: var(--color-primary);
  --menu-btn-color-active-hover: var(--color-primary);
  --menu-btn-height: 18px;
  --menu-btn-width: 24px;
  --menu-btn-bar-height: 2px;
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
}
[data-theme="light"] .menu-btn {
  --menu-btn-color: var(--color-black);
  --menu-btn-color-hover: var(--color-black);
  --menu-btn-color-active: var(--color-black);
  --menu-btn-color-active-hover: var(--color-black);
}
[data-theme="dark"] .menu-btn {
  --menu-btn-color: var(--color-white);
  --menu-btn-color-hover: var(--color-white);
  --menu-btn-color-active: var(--color-white);
  --menu-btn-color-active-hover: var(--color-white);
}
.menu-btn.is-active:hover,
.menu-btn:hover {
  opacity: 0.7;
}
.menu-btn.is-active .menu-btn-inner,
.menu-btn.is-active .menu-btn-inner:after,
.menu-btn.is-active .menu-btn-inner:before {
  background-color: var(--menu-btn-color-active);
}
.menu-btn-box {
  position: relative;
  display: inline-block;
  width: var(--menu-btn-width);
  height: var(--menu-btn-height);
}
.menu-btn-inner {
  top: 50%;
  margin-top: -1px;
  display: block;
}
.menu-btn-inner,
.menu-btn-inner:after,
.menu-btn-inner:before {
  position: absolute;
  width: var(--menu-btn-width);
  height: var(--menu-btn-bar-height);
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 0;
  background-color: var(--menu-btn-color);
}
.menu-btn-inner:after,
.menu-btn-inner:before {
  display: block;
  content: "";
}
.menu-btn-inner:before {
  top: -5px;
}
.menu-btn-inner:after {
  bottom: -5px;
}
.menu-btn .menu-btn-inner:after,
.menu-btn .menu-btn-inner:before {
  transition: bottom 0.08s ease-out 0s, top 0.08s ease-out 0s, opacity 0s linear;
}
.menu-btn.is-active .menu-btn-inner:after,
.menu-btn.is-active .menu-btn-inner:before {
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s linear 0.08s;
  opacity: 0;
}
.menu-btn.is-active .menu-btn-inner:before {
  top: 0;
}
.menu-btn.is-active .menu-btn-inner:after {
  bottom: 0;
}
:root {
  --list-grid-gap-x: 0.2em;
  --list-grid-ar: 3/4;
}
.grid-column-inner {
  display: grid;
}
.grid-container {
  border-top: 1px solid;
}
.grid-container:nth-of-type(n + 2) {
  border-top: 1px solid;
}
.grid-container:last-of-type {
  border-bottom: 1px solid;
}

[data-section-settings].grid-container:last-of-type {
  border-bottom: 0px !important;
}
[data-section-settings].grid-container:first-of-type {
  border-top: 0px !important;
}

.shopify-grid--section:first-of-type,
.shopify-grid--section:nth-of-type(n + 2) {
  border-top: 1px solid;
}
.shopify-grid--section:last-of-type {
  border-bottom: 1px solid;
}

@media (max-width: 768px) {
  [data-grid-type="col2"] .grid-items .grid-span\:6\@sm:first-of-type {border-right: 1px solid;}
  [data-grid-type="col2"] .grid-items .grid-span\:6:first-of-type {border-right: 1px solid;}
  [data-grid-type="col2"] .grid-items .grid-span\:12:first-of-type {border-bottom: 1px solid;}

  [data-grid-type="col2x"] .grid-items .grid-span\:6\@sm:first-of-type {border-right: 1px solid;}
  [data-grid-type="col2x"] .grid-items .grid-span\:6:first-of-type {border-right: 1px solid;}
  [data-grid-type="col2x"] .grid-items .grid-span\:12:first-of-type {border-bottom: 1px solid;}

  [data-grid-type="col5"][data-orientation="left"] .grid-item.grid-span\:6:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="left"] .grid-item.grid-span\:6:nth-of-type(2) {
    border-top: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="right"] .grid-item.grid-span\:6:nth-of-type(3),
  [data-grid-type="col5"][data-orientation="right"] .grid-item.grid-span\:6:nth-of-type(4) {
    border-bottom: 1px solid;
  }
  
  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:12 {
    border-top: 1px solid;
  }
  
  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:12 {
    border-bottom: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:6:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:6:nth-of-type(3) {
    border-right: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:6:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:6:nth-of-type(2) {
    border-bottom: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6:nth-of-type(3) {
    border-right: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6:nth-of-type(2) {
    border-bottom: 1px solid;
  }

  [data-grid-type="col4"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6:nth-of-type(1),
  [data-grid-type="col4"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6:nth-of-type(3) {
    border-right: 1px solid;
  }

  [data-grid-type="col4"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6:nth-of-type(1),
  [data-grid-type="col4"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6:nth-of-type(2) {
    border-bottom: 1px solid;
  }

  [data-grid-type="col4"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:12:nth-of-type(1),
  [data-grid-type="col4"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:12:nth-of-type(2),
  [data-grid-type="col4"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:12:nth-of-type(3) {
    border-bottom: 1px solid;
  }

  [data-grid-type="col4"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6:nth-of-type(1),
  [data-grid-type="col4"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6:nth-of-type(2) {
    border-bottom: 1px solid;
  }

  [data-grid-type="col4"] .grid-items .grid-span\:3:nth-of-type(1),
  [data-grid-type="col4"] .grid-items .grid-span\:3:nth-of-type(2),
  [data-grid-type="col4"] .grid-items .grid-span\:3:nth-of-type(3) {
    border-right: 1px solid;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  [data-grid-type="col2"] .grid-item:first-of-type {
    border-right: 1px solid;
  }
  [data-grid-type="col2x"] .grid-item:first-of-type {
    border-right: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="left"] .grid-col:first-of-type {
    border-right: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:6\@md:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:6\@md:nth-of-type(3) {
    border-right: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:6\@md:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:6\@md:nth-of-type(2) {
    border-bottom: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="right"] .grid-col:first-of-type {
    border-right: 1px solid;
  }
  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6\@md:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6\@md:nth-of-type(3) {
    border-right: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6\@md:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6\@md:nth-of-type(2) {
    border-bottom: 1px solid;
  }

  [data-grid-type="col4"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6\@md:nth-of-type(1),
  [data-grid-type="col4"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6\@md:nth-of-type(3) {
    border-right: 1px solid;
  }

  [data-grid-type="col4"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6\@md:nth-of-type(1),
  [data-grid-type="col4"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6\@md:nth-of-type(2) {
    border-bottom: 1px solid;
  }

  [data-grid-type="col4"] .grid-items .grid-span\:3\@md:nth-of-type(1),
  [data-grid-type="col4"] .grid-items .grid-span\:3\@md:nth-of-type(2),
  [data-grid-type="col4"] .grid-items .grid-span\:3\@md:nth-of-type(3) {
    border-right: 1px solid;
  }
}

@media (min-width: 992px) and (max-width: 1099.98px) {
  [data-grid-type="col2"] .grid-item:first-of-type {
    border-right: 1px solid;
  }
  [data-grid-type="col2x"] .grid-item:first-of-type {
    border-right: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="left"] .grid-col:first-of-type {
    border-right: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:6\@lg:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:6\@lg:nth-of-type(3) {
    border-right: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:6\@lg:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:6\@lg:nth-of-type(2) {
    border-bottom: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="right"] .grid-col:first-of-type {
    border-right: 1px solid;
  }
  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6\@lg:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6\@lg:nth-of-type(3) {
    border-right: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6\@lg:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6\@lg:nth-of-type(2) {
    border-bottom: 1px solid;
  }

  [data-grid-type="col4"] .grid-items .grid-span\:3\@lg:nth-of-type(1),
  [data-grid-type="col4"] .grid-items .grid-span\:3\@lg:nth-of-type(2),
  [data-grid-type="col4"] .grid-items .grid-span\:3\@lg:nth-of-type(3) {
    border-right: 1px solid;
  }
}

@media (min-width: 1100px) {
  [data-grid-type="col2"] .grid-item:first-of-type {
    border-right: 1px solid;
  }
  [data-grid-type="col2x"] .grid-item:first-of-type {
    border-right: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="left"] .grid-col:first-of-type {
    border-right: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:6\@xl:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:6\@xl:nth-of-type(3) {
    border-right: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:6\@xl:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="left"]
    .grid-col:last-of-type
    > .grid-items
    .grid-span\:6\@xl:nth-of-type(2) {
    border-bottom: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="right"] .grid-col:first-of-type {
    border-right: 1px solid;
  }
  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6\@xl:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6\@xl:nth-of-type(3) {
    border-right: 1px solid;
  }

  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6\@xl:nth-of-type(1),
  [data-grid-type="col5"][data-orientation="right"]
    .grid-col:first-of-type
    > .grid-items
    .grid-span\:6\@xl:nth-of-type(2) {
    border-bottom: 1px solid;
  }

  [data-grid-type="col4"] .grid-items .grid-span\:3\@xl:nth-of-type(1),
  [data-grid-type="col4"] .grid-items .grid-span\:3\@xl:nth-of-type(2),
  [data-grid-type="col4"] .grid-items .grid-span\:3\@xl:nth-of-type(3) {
    border-right: 1px solid;
  }
}

.grid-row {
  --grid-gap: 1px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  /*     grid-gap:var(--grid-gap) */
}
.grid-row > .grid-col {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  /*     grid-gap:var(--grid-gap) */
}
.grid-row > .grid-col > .grid-items {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-column: span 12;
}

.grid-row > .grid-col > .grid-items > .grid-item {
  grid-column: span 12;
}

.grid-span\:12 {
  grid-column: span 12 !important;
}
.grid-span\:6 {
  grid-column: span 6 !important;
}
.grid-span\:4 {
  grid-column: span 4 !important;
}
.grid-span\:3 {
  grid-column: span 3 !important;
}
@media (max-width: 767.98px) {
  .grid-span\:12\@sm {
    grid-column: span 12 !important;
  }
  .grid-span\:6\@sm {
    grid-column: span 6 !important;
  }
  .grid-span\:4\@sm {
    grid-column: span 4 !important;
  }
  .grid-span\:3\@sm {
    grid-column: span 3 !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .grid-span\:12\@md {
    grid-column: span 12 !important;
  }
  .grid-span\:6\@md {
    grid-column: span 6 !important;
  }
  .grid-span\:4\@md {
    grid-column: span 4 !important;
  }
  .grid-span\:3\@md {
    grid-column: span 3 !important;
  }
}
@media (min-width: 992px) and (max-width: 1099.98px) {
  .grid-span\:12\@lg {
    grid-column: span 12 !important;
  }
  .grid-span\:6\@lg {
    grid-column: span 6 !important;
  }
  .grid-span\:4\@lg {
    grid-column: span 4 !important;
  }
  .grid-span\:3\@lg {
    grid-column: span 3 !important;
  }
}
@media (min-width: 1100px) {
  .grid-span\:12\@xl {
    grid-column: span 12 !important;
  }
  .grid-span\:6\@xl {
    grid-column: span 6 !important;
  }
  .grid-span\:4\@xl {
    grid-column: span 4 !important;
  }
  .grid-span\:3\@xl {
    grid-column: span 3 !important;
  }
}
.ar-3\:4 {
  aspect-ratio: 3/4;
}
@media sm {
  .ar-3\:4\@sm {
    aspect-ratio: 3/4;
  }
}
@media md {
  .ar-3\:4\@md {
    aspect-ratio: 3/4;
  }
}
@media lg {
  .ar-3\:4\@lg {
    aspect-ratio: 3/4;
  }
}
@media xl {
  .ar-3\:4\@xl {
    aspect-ratio: 3/4;
  }
}
.ar-16\:9 {
  aspect-ratio: 16/9;
}
@media sm {
  .ar-16\:9\@sm {
    aspect-ratio: 16/9;
  }
}
@media md {
  .ar-16\:9\@md {
    aspect-ratio: 16/9;
  }
}
@media lg {
  .ar-16\:9\@lg {
    aspect-ratio: 16/9;
  }
}
@media xl {
  .ar-16\:9\@xl {
    aspect-ratio: 16/9;
  }
}
.grid-item {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.grid-item img,
.grid-item video {
  width: 102%;
  height: 102%;
  display: block;
  object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.grid-item video {
  left: -1px;
  width: calc(100% + 2px);
}
.grid-spacer {
  background-color: #fff;
  margin-bottom: -1px;
  padding: 5rem 2.5rem;
  background-repeat: no-repeat;
  background-size: cover;
}
.product-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  justify-content: space-between;
  font-size: 13px;
  -webkit-font-smoothing: antialiased;
  line-height: 1.125;
  padding: 1rem;
  pointer-events: none;
}

@media (max-width: 768px) {
  .product-meta {
    grid-template-columns: 1fr max-content;
    padding: 10px;
  }
}

.product-meta__title {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 1100px) {
  .product-meta__title {
    width: max-content;
  }
}
.product-meta__title h3,
.product-meta__title p {
  font-size: inherit;
  margin: 0;
  padding: 0;
}

.product-meta__title h3,
.product-meta__title p {
  font-weight: 400;
  letter-spacing: 0.125em;
  text-transform: lowercase;
}

.product-meta__title p {
  margin-top: 5px;
}
.product-meta__title p:last-child,
.product-meta__title h3:last-child {
  margin-bottom: 0;
}

img {
  user-select: none;
  pointer-events: none;
}
.product-label {
  position: absolute;
  left: 12px;
  top: 12px;
  background-color: #000;
  color: #fff;
  padding: 7px 8px;
  line-height: 1;
  text-transform: lowercase;
  letter-spacing: 0.125em;
  font-size: 12px;
  z-index: 1;
}
.product-rating {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  z-index: 10;
  bottom: 1.75rem;
}
.product-rating svg {
  display: block;
  width: 14px;
  height: 14px;
}
.product-meta__details {
  text-align: right;
  align-items: flex-end;
  display: flex;
  justify-content: flex-end;
  text-transform: lowercase;
}
.product-meta__details .price-tags p {
  font-size: inherit;
  letter-spacing: 0.125em;
  margin: 0;
  line-height: 1.414;
}
.product-meta__details p.sale-price {
  text-decoration: line-through;
}
@media (max-width: 768px) {
  .product-rating {
    grid-gap: 2px;
    margin-bottom: 6px;
  }
  .product-rating svg {
    width: 12px;
    height: 12px;
  }
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background-color: #9e9e9e;
}
::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 0;
  border-radius: 999em;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-primary);
}
.grid-item figure {
  margin: 0;
}

/* Fixes */
.sr-only,
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .product-meta__title h3 + p {
    display: none;
  }
}

.Header__LogoImage,
.Header__LogoImage svg {
  margin: 0;
  display: block;
  width: 145px;
  height: 15.75px;
}

@media (min-width: 641px) {
  .Header__LogoImage,
  .Header__LogoImage svg {
    margin: 0;
    display: block;
    width: 145px;
    height: 15.75px;
  }
}

@media (max-width: 768px) {
  .grid-span\:12 > .product-meta > .product-meta__title h3,
  .grid-span\:12 > .product-meta > .product-meta__details p.price,
  .grid-span\:12 > .product-meta > .product-meta__details p.sale-price,
  .grid-span\:12 > .product-meta > .product-meta__title p {
    font-size: 14px;
    margin-bottom: 0;
    white-space: nowrap;
  }
  
  .grid-span\:12 > .product-meta > .product-meta__details .price-tags p,
  .grid-span\:12 > .product-meta > .product-meta__details p.price,
  .grid-span\:12 > .product-meta > .product-meta__details p.sale-price {
      line-height: 1;
  }

  .grid-span\:12 > .product-meta {
    padding-bottom: 1rem;
  }

  .grid-span\:6 > .product-meta > .product-meta__title h3,
  .grid-span\:6 > .product-meta > .product-meta__details p.price,
  .grid-span\:6 > .product-meta > .product-meta__details p.sale-price,
  .grid-span\:6 > .product-meta > .product-meta__title p {
    font-size: 10px;
    line-height: 1;
  }

  .grid-span\:6 > .product-meta > .product-meta__details p.price,
  .grid-span\:6 > .product-meta > .product-meta__details p.sale-price {
    line-height: 1;
  }
}

@media (max-width: 640px) {
  .grid-span\:12 > .product-meta__title h3,
  .grid-span\:12 > .product-meta__title p {
    font-size: 12px;
    line-height: 1;
  }
}

.Header__MainNav * {
  text-transform: lowercase;
}

.grid-item figure img.featured-image {
  opacity: 1;
}

.grid-item figure img.second-image {
  opacity: 0;
}

.grid-item figure {
  position: relative;
}
.grid-item figure img,
.grid-item figure video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.grid-item figure a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.grid-item figure img {
  transition-duration: 150ms;
  transition-property: opacity;
  will-change: opacity;
}

.grid-item.grid-span\:3\@xl.grid-span\:3\@lg figure img.hidden,
.grid-item.grid-span\:6\@xl.grid-span\:6\@lg figure img.hidden {
  opacity: 0 !important;
}

.grid-item.grid-span\:3\@xl.grid-span\:3\@lg figure img.visible,
.grid-item.grid-span\:6\@xl.grid-span\:6\@lg figure img.visible {
  opacity: 1 !important;
}

.nav-figure .image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.nav-figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.nav-figure img:hover {
  opacity: 0.8; /* Adjust the opacity value as desired */
}

.Search[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  top: 0;
  z-index: 994;
  padding-top: calc(var(--header-height) + 46px);
  position: fixed;
}

.Search__SearchBar {
  border: 1px solid;
  background-color: white !important;
  padding: 0.5rem 1rem !important;
}

.Search__SearchBar:focus-within {
  background-color: #f1f2f3;
}

.Search__SearchBar input { outline: 0; }
.Search__SearchBar input:focus { outline: 0; }

.Search__Close svg {
  width: 20px;
  height: 20px;
}
.Search__Inner {
  padding: 2rem;
  border-top: 1px solid;
}
.Search__Results {
  padding: 0;
  margin: 0;
}

input[type="search"] {
  padding: 0;
  font-family: var(--font-family-base) !important;
}

input[type="search"]::placeholder {
  font-family: var(--font-family-base) !important;
}

.Drawer[aria-hidden] {
  top: 0;
  max-height: 100vh;
  height: 100vh;
  z-index: 2147483649;
}

.Drawer[aria-hidden="true"] {
  user-select: none;
  pointer-events: none;
}

@media (min-width: 992px) {
  .Drawer[aria-hidden="false"] {
    border-left: 1px solid;
  }  
}

.Drawer--fromRight .Drawer__Container {
  padding: 1rem;
  margin-top: 0;
}

.Drawer__Content {
  height: calc(100% - 69px);
  max-height: calc(100% - 69px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

@media (min-width: 992px) {
  .Drawer__Content {
    height: calc(100vh - calc(var(--header-height)* 1));
    max-height: calc(100vh - calc(var(--header-height)* 1));
    padding: 0 0 1rem;
  }
}

.Drawer__Header {
  padding: 1rem;
  margin: 0;
  text-transform: lowercase;
  border-bottom: 1px solid;
}
.Drawer--fromRight .Drawer__Close {
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}
.Drawer__Close svg {
  width: 13px;
  height: 13px;
}
.CartItem__Remove {
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: underline;
}
.CartItem__Title,
.CartItem__Meta {
  font-size: 13px;
  line-height: 1.1;
  text-transform: lowercase;
}

.empty_cart {
  text-transform: lowercase;
  margin: 1rem;
}
.CartItem__Meta {
  max-width: 130px;
  line-height: 1.414;
}
.CartItem__Actions {
  margin-top: 0;
}
.CartItem__Info {
  text-transform: lowercase;
  padding-left: 1rem;
}

.CartItemWrapper:not(:last-child) {
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

.CartItem__QuantitySelector {
  margin-right: 0;
}
.CartItem__Price {
  text-transform: lowercase;
  line-height: 1;
  font-size: 13px;
}
.Drawer__Main {
}
.Cart .Drawer__Footer {
  width: 100%;
  margin-bottom: 0;
  text-transform: lowercase;
  border-top: 1px solid;
  padding: 1rem !important;
  padding-bottom: 0 !important;
}

@media (min-width: 992px) {
  .complimentaryHeader {
      border-top: 1px solid #ddd;
      margin-top: 1rem !important;
      padding: 1rem !important;
  }
  .empty_cart {
    text-align: left;
    margin: 0 !important;
    padding: 1rem !important;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 992px) {
  .Cart .Drawer__Footer {
    position: relative;
    bottom: 0;
    background: white;
    z-index: 100;
  }
  .complimentaryHeader {
     border-top: 1px solid #ddd;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 13px;
  }
  .complimentaryWrapper { margin-bottom: 1rem; }
  .complimentaryFlickity {
    padding-left: 1rem;
  }
}

.totalBlok_wo {
      font-size: 15px;
    margin-bottom: .25em;
}
.Cart__Taxes {
  margin: 0;
  font-size: 12px;
}

.Cart__Checkout {
  text-transform: lowercase;
}
.QuantitySelector__CurrentQuantity {
  top: 2px;
  position: relative;
}
.Drawer__Main,
.Drawer--fromRight .Drawer__Container {
  width: 100%;
}

.CartItem__ImageWrapper {
  margin: 0;
}

.CartItem {
  display: flex;
  width: 100%;
  position: relative;
  flex-direction: row;
  margin-top: 0;
}

.Cart__ItemList {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  grid-gap: 1rem;
}

.CartItemWrapper {
  width: 100%;
}

.Footer {
  text-transform: lowercase;
}

.Footer__Block--newsletter .news--block.mr--M {
  display: none !important;
}

.grid-atc {
  position: absolute;
  top: 1rem;
  right: 1rem;
  bottom: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  text-align: center;
  justify-content: center;
  display: block;
  background-color: transparent;
  color: #000;
}

.grid-atc svg {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  fill: black;
}

.grid-item .grid-atc {
  opacity: 0;
  will-change: opacity;
  transition-duration: 150ms;
  transition-property: opacity;
}

.grid-item:hover .grid-atc,
.grid-item:focus .grid-atc,
.grid-item:focus-within .grid-atc {
  opacity: 1;
}

* {
  text-transform: lowercase !important;
}

.sproduct-wrapper {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.sproduct-wrapper * {
  letter-spacing: 0.1em;
}

@media (min-width: 1300px) {
  .sproduct-wrapper .sproduct-gallery {
    grid-column: span 6;
  }
  .sproduct-wrapper .sproduct-meta {
    grid-column: span 6;
  }
}
@media (max-width: 1299.98px) {
  .sproduct-wrapper .sproduct-gallery {
    grid-column: span 12;
  }
  .sproduct-wrapper .sproduct-meta {
    grid-column: span 12;
  }
}

.sproduct-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow-x: hidden;
}

.sproduct-gallery .sproduct-gallery--thumbnails {
  order: 2;
}

@media (min-width: 1300px) {
  .sproduct-gallery {
    border: 1px solid;
    border-left: 0px;
    border-top: 0px;
    border-bottom: 0px;
  }
  .sproduct-gallery .sproduct-gallery--thumbnails {
    margin-top: -1px;
    order: -1;
    grid-column: span 1;
  }
  .sproduct-gallery .sproduct-gallery--thumbnails li {
    border-bottom: 1px solid;
  }
  /*   .sproduct-gallery .sproduct-gallery--thumbnails li:last-child { border-bottom: 0px; } */
  .sproduct-gallery--preview {
    grid-column: span 5;
    border-left: 1px solid;
  }
}

@media (max-width: 1299.98px) {
  .sproduct-gallery {
    border-bottom: 1px solid;
  }

  .sproduct-gallery .sproduct-gallery--thumbnails {
    margin-top: -1px;
    order: -1;
    border-right: 1px solid;
    grid-column: span 1;
  }
  .sproduct-gallery .sproduct-gallery--thumbnails ul {
    flex-direction: column;
  }
  .sproduct-gallery .sproduct-gallery--thumbnails li {
    border-bottom: 1px solid;
  }
  .sproduct-gallery--preview {
    grid-column: span 6;
  }
  .sproduct-gallery .sproduct-gallery--thumbnails {
    display: none;
  }

  .sproduct-gallery--preview {
    position: relative;
  }

  .preview-arrow.left-arrow,
  .preview-arrow.right-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
  }
  .preview-arrow.left-arrow svg,
  .preview-arrow.right-arrow svg {
    display: block;
    width: 24px;
    height: 24px;
    display: none;
  }
  .preview-arrow.left-arrow {
    left: 0;
  }
  .preview-arrow.right-arrow {
    right: 0;
  }
}

.sproduct-gallery--preview figure {
  height: 100%;
  margin: 0;
}
.sproduct-gallery--preview figure img {
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: filter 100ms linear;
  filter: blur(10px);
}
.sproduct-gallery--preview figure img.is-active {
  filter: blur(0);
}

.sproduct-gallery--thumbnails {
  position: relative;
}
.sproduct-gallery--thumbnails ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  touch-action: pan-y;
}
@media (min-width: 992px) {
  .sproduct-gallery--thumbnails ul {
    flex-direction: column;
  }
}
.sproduct-gallery--thumbnails ul li a {
  transition-duration: 100ms;
  transition-property: opacity;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
  object-fit: cover;
}
.sproduct-gallery--thumbnails ul li a:hover {
  opacity: 0.85;
}
.sproduct-gallery--thumbnails ul li img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

@media (min-width: 1024px) {
  .sproduct-gallery--thumbnails {
    display: block;
    overflow: hidden;
    padding: 0;
    position: relative;
  }

  .sproduct-gallery--thumbnails ul {
    height: 100%;
    left: 0;
    overflow: auto;
    position: absolute;
    top: 1px;
    width: calc(100% + 1px);
  }
  .sproduct-gallery--thumbnails ul::-webkit-scrollbar {
    display: none;
  }
  .sproduct-gallery {
    overflow-y: hidden;
  }
}

.slide-up-arrow,
.slide-down-arrow {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  cursor: pointer;
}

.slide-up-arrow svg,
.slide-down-arrow svg {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.slide-up-arrow {
  top: 0;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0)
  );
}
.slide-down-arrow {
  bottom: -1px;
  background-image: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0)
  );
}

.sproduct-gallery--thumbnails ul {
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-padding: 100px;
}

.sproduct-gallery--thumbnails ul li {
  scroll-snap-align: start;
}

/* @media (max-width: 1024px) {
  .sproduct-gallery {
    border-bottom: 1px solid;
    overflow: hidden;
  }

  .sproduct-gallery--preview {
    border-bottom: 1px solid;
  }

  .sproduct-gallery--thumbnails ul li:not(:last-child) {
    border-right: 1px solid;
  }
} */
.sproduct-meta {
  padding: 0 1rem;
}

@media (min-width: 1299.98px) {
  .sproduct-meta {
    padding: 0 2rem;
  }
}
.sproduct-meta--header {
  display: grid;
  justify-content: space-between;
  padding: 2rem 0;
  align-items: flex-start;
  grid-template-columns: 1fr max-content;
}

.sproduct-meta--header h1,
.sproduct-header--right{
  font-size: 1.25rem;
  line-height: 1;
}


[data-oke-rendered] {
  min-height: 20px;
  align-items: center;
  display: flex;
  margin: 0;
}

.oke-sr {
  padding-bottom: 0 !important;
  height: 16px;
    display: flex;
    position: relative;
}


@media screen and (min-width: 1024px) {
    .sproduct-label .ProductItem__Label {
        padding: 6px 7px;
        line-height: 1;
    }
}
@media (max-width: 992px) {
  .sproduct-meta--header h1:not(:last-child) {
    margin-bottom: 0.75em;
  }
}

.sproduct-header--btn {
  width: 100%;
  background-color: #000;
  text-align: center;
  display: block;
  height: 42px;
  line-height: 42px;
  margin-bottom: 1.563rem;
  text-decoration: none;
  color: #fff;
  transition-duration: 100ms;
  transition-property: background-color;
  will-change: background-color;
}
.sproduct-header--btn:hover,
.sproduct-header--btn:focus {
  background-color: #222;
}

.sproduct-meta--description {
  text-transform: lowercase;
  padding-bottom: 1rem;
}
.sproduct-meta--description p {
  line-height: 1.563;
}
.sproduct-meta--description p:not(:last-child) {
  margin-bottom: 1em;
}
.sproduct-meta--description p a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
}
.sproduct-meta--description p a:hover,
.sproduct-meta--description p a:focus {
  color: #222;
}

.sproduct-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  width: 100%;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 6px;
}
.sproduct-pagination a {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 999em;
  background-color: white;
  border: 1px solid #000;
}
.sproduct-pagination a.active {
  background-color: #000;
}

.product-header--details {
  display: flex;
  grid-gap: 0;
  max-width: 100%;
  flex-direction: column;
}

.product-header--details span {
  display: block;
}

.sproduct-meta--tabs {
  margin-top: 1.563rem;
}
.sproduct-meta--tabs > a {
  border-top: 1px solid;
  padding-top: 1.563rem;
  padding-bottom: 1.563rem;
  cursor: pointer;
}
.sproduct-meta--tabs > a:hover h3 {
  text-decoration: underline;
}
.sproduct-meta--tab {
  padding: 1rem 0;
  margin: 0;
}
.sproduct-meta--tab p {
  line-height: 1.563;
  font-size: 1rem;
}
.sproduct-meta--tab p:not(:last-child) {
  margin-bottom: 1em;
}

.sproduct-tab--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
  text-transform: lowercase;
  height: 42px;
  line-height: 42px;
}
.sproduct-tab--header svg {
  display: block;
  width: 18px;
  height: 18px;
  transform: rotate(180deg);
  will-change: transform;
  transition-duration: 150ms;
  transition-property: transform;
}
.sproduct-tab--header span {
  font-size: 1rem;
  margin: 0;
  line-height: 1;
}
.sproduct-tab--header[aria-selected=true] span { text-decoration: underline; }
.sproduct-tab--header[aria-selected="true"] + .sproduct-tab--content {
  margin-bottom: 1.563rem;
  margin-top: 0;
}
.sproduct-tab--header[aria-selected="true"] svg {
  transform: rotate(0);
}


.sproduct-tab--content,
.sproduct-meta--description {
  max-height: 145px;
  overflow-y: scroll;
  border-right: 0;
  padding: 0 2rem 0 0;
}


.sproduct-tab--content p,
.sproduct-tab--content p a,
.sproduct-tab--content ul,
.sproduct-tab--content ol {
  font-size: 1rem;
}

.sproduct-tab--content p:not(:last-child),
.sproduct-tab--content ul:not(:last-child),
.sproduct-tab--content ol:not(:last-child) {
  margin-bottom: .5em;
}

.sproduct-tab--content p:last-child,
.sproduct-tab--content ul:last-child,
.sproduct-tab--content ol:last-child {
  margin-bottom: 1em;
}

.sproduct-tab--content{
}

@media (max-width: 768px) {
  .sproduct-tab--content,
  .sproduct-meta--description {
    max-height: 100%;
    padding-right: 0;
  }
}
.sproduct-tab--content {
  position: relative;
}

.sproduct-tab--content::-webkit-scrollbar,
.sproduct-meta--description::-webkit-scrollbar {
  width: 3px;
  background-color: #fff;
}
.sproduct-tab--content::-webkit-scrollbar-track,
.sproduct-meta--description::-webkit-scrollbar-track {
  background-color: #fff;
}
.sproduct-tab--content::-webkit-scrollbar-thumb,
.sproduct-meta--description::-webkit-scrollbar-thumb {
  background-color: #93272c;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.okeReviews {
  width: 100% !important;
  max-width: 100% !important;
}

@media (min-width: 1300px) {
  .okeReviews {
    margin: 0 !important;
    padding: 0 !important;
  }
  .oke-w-header {
    border-right: 1px solid;
  }
  .oke-w-header {
    padding: 2rem;
  }
  .oke-w-main {
    padding: 2rem;
  }
}

.oke-is-large {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-bottom: 1px solid;
}

.oke-is-large .oke-w-header {
  grid-column: span 3;
}
.oke-is-large .oke-w-main {
  grid-column: span 9;
}
.oke-is-large .oke-w-main + .oke-w-main {
  display: none;
}
.oke-is-large .oke-w-controls {
  display: none;
}

.oke-is-large .oke-w-recommendsModule,
.oke-is-large .oke-w-ratingAverageModule-count {
  display: none;
}

.sproduct-video--wrapper {
  height: 100%;
  position: relative;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  border-bottom: 1px solid;
}

.sproduct-video--wrapper .sproduct-video {
  position: relatve;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.sproduct-video {
  display: block;
  height: auto;
  max-width: calc(100% + 1px);
  object-fit: cover;
  width: calc(100% + 1px);
}

@media (min-width: 62em) {
  .sproduct-video {
    height: 100%;
  }
}



body.menu-open .PageOverlay,
body.search-open .PageOverlay,
body.cart-open .PageOverlay {
    opacity: .5;
    visibility: visible;
}



[data-grid-type="col2x"] .grid-item:not([data-item="video"]) > a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

[data-grid-type="col5"] .grid-item a {
	 display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;	
}

.grid-item figure a:focus,
.grid-item a:focus { opacity: 0.35; }

[data-grid-type="col5"] .grid-item .product-meta {
  z-index: 3;
}

.announcement__bar {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 45px;
  font-size: 13px;
  background-color: #000;
  color: #fff;
  user-select: none;
  text-transform: lowercase;
  transition-property: margin-top;
  transition-duration: 150ms;
  will-change: margin-top;
}

.menu-open .announcement__bar {
  margin-top: -45px;
}

.announcement__container {
  display: flex;
  height: 100%;
  width: 100%;
  overflow: hidden;
	white-space: nowrap;
	
}

.announcement__container .announcement__group {
	top: 0;
	left: 0;
	height: 100%;
	width: 200%;

	position: absolute;
	white-space: nowrap;
	will-change: transform;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.announcement__container .announcement__group.is-animating {
 animation: AnimateAnnouncementBar 40s linear infinite;
}

.announcement__container .announcement__group .announcement__item {

	white-space: nowrap;
  letter-spacing: 0.125em;
	text-align: center;
	float: left;
	white-space: nowrap;
	display: inline-block;
}
.announcement__container .announcement__group 
.announcement__container .announcement__group .announcement__item a:hover, .announcement__container .announcement__group .announcement__item a:focus {
  outline: 0;
  text-decoration: underline;
}

@keyframes AnimateAnnouncementBar {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

@keyframes AnimateAnnouncementBarMobile {
  0% {
    left: 100%;
  }
  100% {
    left: -200%;
  }
}




.ProductForm__Variants {
    border: 1px solid;
    padding: 0;
}

.ProductForm__Option {
    width: 100%;
    min-width: 100%;
    margin: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.dropdown-content {
    position: absolute;
    min-width: 160px;
    z-index: 1;
    padding: 0;
    border: 0;
    background-color: #fff;
    margin-left: -1px;
    width: calc(100% + 2px);
    border-right: 1px solid;
    border-left: 1px solid;
    border-bottom: 1px solid;
    z-index: 1000 !important;
}


.ProductForm__AddToCart[disabled="disabled"] {
  display: none;
}

@media only screen and (max-width: 1025px) {
  .variants { padding-top: 0; padding-bottom: 0; }
  .dropdown-content { width: calc(100% + 2px); }
}
#myDropdown {
    padding: 0;
    border-top: 1px solid #eee;
}

#myDropdown li.single-option {
  min-height: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0.5rem;
  margin-top: 0;
  background-color: #f1f2f3;
  will-change: background-color;
  transition-duration: 150ms;
  transition-property: background-color;
}

#myDropdown li.single-option:hover label,
#myDropdown li.single-option:focus label {
    color: #93272c;
}




/* #myDropdown li.single-option:last-child {
    border-bottom: 1px solid #000;
} */

#myDropdown li.single-option label {
    padding: 0;
    width: 100%;
    text-align: left;
}
  
.ProductForm__Variants #variants--btn {
    padding: .5rem;
    border-bottom: 0 solid;
}



@media only screen and (max-width: 1025px) {
    .ProductForm__Variants { margin-bottom: 0 !important; }
    .variants { padding-top: 0 !important; padding-bottom: 0 !important; }
    .dropdown-content { width: calc(100% + 2px) !important; }
}


.grid-span\:6\@xl[data-item="video"] a {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  z-index: 10;
}




.product--title--height_mobile {
    height: auto !important;
    min-height: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 0.25em;
}

.ProductItem__Wrapper header {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .ProductItem__Wrapper header {
    height: 190px;
  }  
}
.ProductItem__Info {
    margin-top: 0 !important;
}
.product_item--extra {
    min-height: auto !important;
    margin: 0 0 .825rem !important;
}

.ProductItem__Info .okeReviews[data-oke-container],
.ProductItem__Info div.okeReviews {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-bottom: 0 !important;
}

.ProductItem__Info .okendoWrapper {
    min-height: auto !important;
    margin: 0 0 .825rem !important;
}

@media screen and (min-width: 1025px) {
    .shopify-section--bordered>.Section--spacingNormal {
        padding: 0 0 50px;
    }
}

@media only screen and (min-width: 1025px) {
    #product_recommended .Carousel__Cell {
        padding: 0;
        border-right: 1px solid;
        border-top: 1px solid;
        border-bottom: 1px solid;
    }
    #product_recommended .Carousel__Cell:last-of-type {
        border-right: 0px;
    }
}

@media only screen and (max-width: 1024.98px) {
  .ProductItem {
    border: 1px solid;
  }
  .ProductRecommendations .Carousel__Cell {
        width: 65% !important;
        margin-left: 20px !important;
    }
}

.oke-state-empty-text { font-size: 1rem !important; }
.oke-is-large {opacity:0;}
.oke-is-large[data-state="empty"] .oke-state-empty {
        display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.oke-is-large[data-state="empty"] .oke-w-main {
    grid-column: span 12 !important; 
}

.oke-is-large[data-state="empty"] .oke-state--noTopBorder {
  padding: 1.563rem !important
}



.Button--primary, .shopify-payment-button__button--unbranded,
#shopify-product-reviews .spr-summary-actions-newreview,
#shopify-product-reviews .spr-button-primary:not(input) {
  background-color: #000;
  border-color: #000;
  color: #FFF;
}

.Button--primary:before,
.shopify-payment-button__button--unbranded:before,
#shopify-product-reviews .spr-summary-actions-newreview:before,
#shopify-product-reviews .spr-button-primary:not(input):before {
  display: none;
}

.Button--primary:not([disabled]):hover,
.shopify-payment-button__button--unbranded:not([disabled]):hover,
#shopify-product-reviews .spr-summary-actions-newreview:not([disabled]):hover,
#shopify-product-reviews .spr-button-primary:not([disabled]):hover:not(input) {
  color: #000;
  border-color: #000;
  background-color: #FFF;
}

.content_tpc table:not(:last-child),
.content_tpc ul:not(:last-child),
.content_tpc ol:not(:last-child){
  margin-bottom: 1.563em;
}

.CartItem__Discount svg {
  width: 1em;
  height: 1em;
}


.v-h1,
.Footer__Title,
.product_item--extra,
.product--title--height_mobile,
.ProductItem__Label,
.sproduct-header--left,
.ProductForm__AddToCart { text-transform: lowercase; }

.copyrightinfo,
.news--block .Footer__Title,
.news--block p,
.sproduct-tab--header,
.sproduct-meta--description,
.sproduct-meta--description p a {
    text-transform: none;
}

video::-webkit-media-controls:not(.audio-only) [pseudo="-webkit-media-controls-panel"] [pseudo="-internal-media-controls-overflow-button"] {
display: none; }

.play-video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    border-radius: 999em;
    background-color: white;
    transition-duration: 150ms;
}
.play-video svg { display: block; width: 40px; height: 40px; }
.play-video:hover,
.play-video:focus {
  background-color: black;
  color: white;
}



@media (min-width: 1100px) {
    [data-grid-type="col2"] .grid-item.grid-span\:6\@xl[data-item="image"],
    [data-grid-type="col4"] .grid-item.grid-span\:3\@xl[data-item="image"] {
        position: relative;
    }

    [data-grid-type="col2"] .grid-item.grid-span\:6\@xl[data-item="image"] a,
    [data-grid-type="col4"] .grid-item.grid-span\:3\@xl[data-item="image"] a {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    [data-grid-type="col2"] .grid-item.grid-span\:12\@md[data-item="image"],
    [data-grid-type="col4"] .grid-item.grid-span\:6\@md[data-item="image"] {
        position: relative;
    }

    [data-grid-type="col2"] .grid-item.grid-span\:12\@md[data-item="image"] a,
    [data-grid-type="col4"] .grid-item.grid-span\:3\@xl[data-item="image"] a {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
    }
}

@media (max-width: 768px) {
    [data-grid-type="col2"] .grid-item[data-item="image"],
    [data-grid-type="col4"] .grid-item[data-item="image"] { position: relative; }

    [data-grid-type="col2"] .grid-item[data-item="image"] a,
    [data-grid-type="col4"] .grid-item[data-item="image"] a {         position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
     }
}

.needsclick div[role="dialog"] { z-index: 2147483647 !important; }

/* Menu Cart */
#menu-cart {
  position: relative;
}
#menu-cart .menu-cart-count {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 4px;
  font-size: 10px;
  font-weight: bold;
}

/* Quick Add */
.sold-out--label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    letter-spacing: 0.08em;
    font-weight: 400;
    line-height: 1;
}

.quickadd-container {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  width: 42px;
  height: 42px;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 1rem;
  padding-right: 1rem;
}

.quickadd-container .quickadd-variant {
    background-color: #FFF;
    color: #000;
    border: 1px solid #000;
    font-size: 16px;
    padding: 0;
    cursor: pointer;
    transition: background .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.quickadd-variant svg {
  display: block;
  width: 18px;
  height: 18px;
}

.quickadd-variant:hover {
  background-color: #fff;
}


@media (min-width: 992px) {
  .quickadd-container { 
    transition-duration: 250ms;
    transition-property: opacity;
    will-change: opacity;
    opacity: 0;
  }
  .grid-item:hover .quickadd-container { opacity: 1 }

  .quickadd-variant svg {
    transition-duration: 250ms;
    transition-property: transform;
  }

  .quickadd-variant.is-adding svg {
    transform: rotate(180deg);
  }

  .quickadd-variant {
    transition-duration: 250ms;
    transition-property: color, background-color, border-color;
    will-change: color, background-color, border-color;
  }
  .grid-item .quickadd-variant:active { background-color: #000; color: #FFF; border-color: #000; }
}

@media (max-width: 767.98px) {
  .header-col--links .menu-link svg {
    width: 24px;
    height: 24px;
  }
  .menu-link[data-action="toggle-search"] svg {
    width: 20px;
    height: 20px;
    margin-top: 4px;
  }
}

.custom-toast {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  background-color: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 325235235235325;
  transform: translateY(20px);
}

.custom-toast.visible {
  opacity: 1;
  transform: translateY(0);
}


@media (min-height: 1024px) {
    .menu-open {
      width: 100%;
      position: fixed;
    }

    .menu-fixed .header-container--wrapper {
        position: fixed;
        top: -1px;
    }

    .menu-fixed .header-container {
        border-bottom: 1px solid;
    }

    .menu-fixed .header-container--after {
        height: calc(var(--header-height) - 1px);
    }
    
    .menu-fixed.menu-open .header-navigation {
        top: calc(var(--header-height) + 1px);
        position: fixed;
        padding-top: calc(var(--header-height) -1px);
    }
}

@media (max-width: 500px) {
        .menu-fixed .header-container--wrapper {
            position: fixed;
            top: -1px;
        }

        .menu-fixed .header-container {
            border-bottom: 1px solid;
        }

        .menu-fixed .header-container--after {
            height: calc(var(--header-height) - 1px);
        }
        
        .menu-fixed.menu-open .header-navigation {
            top: calc(var(--header-height) - 1px);
            position: fixed;
            padding-top: calc(var(--header-height) -1px);
        }

        .nav-list__item {
            min-height: 38px;
            line-height: 38px;
        }
        .nav-item {
            height: 38px;
            font-size: 16px;
        }
        .nav-list .section-break {
            margin-top: 16px;
            padding-top: 16px;
        }

        .section-break {
          background
        }

    body.menu-fixed.menu-open {
        overflow-y: hidden;
    }
}

body {
  overflow-x: hidden;
}