/** Shopify CDN: Minification failed

Line 697:68 Unexpected "img"

**/
/***************************************************
* GRAFIKR Theme Components
****************************************************/

/**
* Payment Methods
**/

.gtc\:payment-methods__list {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	list-style:none;
  margin-inline-start: 0;
}

.gtc\:payment-methods__list-item {
	width: 2.375rem;
	height: 1.5rem;
}

/**********************************/
/* GTC Cart Terms */
/**********************************/

/* Variables */
:root {
  --terms-modal-background: #ffffff;
}

.gtc\:terms.gtc\:terms--cart-page {
  display: flex;
}

.gtc\:terms__label {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.gtc\:terms__label a {
  text-decoration: underline;
}

.gtc\:terms__label p {
  letter-spacing: normal;
}

.gtc\:terms__label input[type='checkbox'] {
  align-self: flex-start;
  margin: 0;
  /* This is used to compensate for the text line-height, this might need to be adjusted */
  margin-top: 0.3em;
}

.gtc\:terms__label > a {
  text-decoration: underline;
}

/* Terms modal */

.gtc\:terms-modal {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  max-height: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  overflow: hidden;


  pointer-events: none;
  z-index: 51;

  /* Change this value is the modal is not hidden, after decline */
  transform: translateY(30rem);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gtc\:terms-modal--cart-page{
  position: fixed;
}

.gtc\:terms-modal[open] {
  transform: translateY(0);
}

/* When open*/

.gtc\:terms-modal[open] .gtc\:terms-modal__content > *,
.gtc\:terms-modal[open] .gtc\:terms-modal__footer {
  pointer-events: all;
}

/* Terms content*/
.gtc\:terms-modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;

  overflow: hidden;
  pointer-events: none;
}

.gtc\:terms-modal__content a {
  text-decoration: underline;
}

.gtc\:terms-modal__content > * {
  background: var(--terms-modal-background);
  width: 100%;
}

.gtc\:terms-modal__content-inner:first-of-type {
  margin-top: auto;
}

.gtc\:terms-modal__content-inner {
  display: flex;
  flex-direction: column;
}


.gtc\:terms-modal__content-inner > * {
  margin: 0 auto;
  max-width: 50rem;
}

.gtc\:terms-modal__terms-text-inner *:last-child {
  margin-bottom: 0;
}

/* Terms content - header */

.gtc\:terms-modal__heading {
  padding: 2rem 0 0;
}

.gtc\:terms-modal__heading,
.gtc\:terms-modal__terms-text {
  text-align: center;
}

/* Terms - expandeble content */

.gtc\:terms-modal__expandable-content {
  position: absolute;
  overflow: auto;
  left: 0;
  bottom: 0;
  right: 0;
  max-height: 100%;
  transform: translateY(101%);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  visibility: hidden;
}

.gtc\:terms-modal[expanded='true'] .gtc\:terms-modal__expandable-content {
  transform: translateY(0);
}

.gtc\:terms-modal__expandable-content .gtc\:terms-modal__content-inner {
  padding: 2rem;
}

/* Terms - expandeble content - header */

.gtc\:terms-modal__expanded-header {
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  width: 100%;
  min-height: 4rem;

  background-color: var(--terms-modal-background);
  box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 0.2);
}

.gtc\:terms-modal__expanded-header-inner {
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
  padding-right: 5rem;
}

.gtc\:terms-modal__expanded-header-inner > * {
  padding: 0;
  margin: 0;
}

.gtc\:terms-modal__expanded-close {
  position: absolute;
  top: 50%;
  right: 2rem;
  margin-left: auto;
  aspect-ratio: 1;
  width: 2.5rem;
  /* border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.5); */
  background-color: var(--terms-modal-background);
  cursor: pointer;
  transform: translateY(-50%);
}

.gtc\:terms-modal__expanded-close > * {
  pointer-events: none;
}

.gtc\:terms-modal__expanded-close svg {
  position: absolute;
  top: 50%;
  left: 50%;
  color: black;
  transform: translate(-50%, -50%);
}

/* Terms footer */
.gtc\:terms-modal__footer {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  background: var(--terms-modal-background);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-bottom: max(30px, env(safe-area-inset-bottom, 0px) + 30px);

  pointer-events: all;

  transition: box-shadow 0.6s 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

[expanded='true'] .gtc\:terms-modal__footer {
  box-shadow: inset 0px 1px 0px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Terms overlay */

.gtc\:terms-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;

  opacity: 0;
  pointer-events: none;
  visibility: hidden;

  background-color: rgba(0, 0, 0, 0.6);
  z-index: 50;

  transition: visibility 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gtc\:terms-modal[open] + .gtc\:terms-modal__overlay {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

/*********************/
/* GTC General */
/*********************/
gtc-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  height: 100%;
}

gtc-trigger > svg {
  width: 1.1em;
  height: auto;
}

.gtc\:scroll-lock {
  overflow: hidden;
}

.gtc\:close-button {
  inline-size: 42px;
  font-size: 42px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  padding: 0;
  cursor: pointer;

  background: transparent;
  border: none;
}

.gtc\:close-button > * {
  grid-area: 1/1;
  width: 0.75em;
  height: 0.75em;
}

[data-gtc-close] > * {
  pointer-events: none;
}

/*********************/
/* GTC Drawer */
/*********************/

.gtc\:drawer {
  --gtc-drawer-background: rgb(255, 255, 255);
  --gtc-drawer-border-color: #eee;
  --gtc-drawer-text-primary: rgb(0, 0, 0);
  --gtc-drawer-spacing-x: 32px; /* Assuming the root font size is 16px */
  --gtc-drawer-spacing-y: 24px; /* Assuming the root font size is 16px */

  visibility: hidden;

  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: calc(100vw - var(--gtc-drawer-spacing-x));
  max-width: 740px;
  background: var(--gtc-drawer-background);

  transform: translateX(100%);
  transition: visibility 0.3s cubic-bezier(0.4, 0, 0.22, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.22, 1);

  pointer-events: none;
  z-index: 90000;
}

@media screen and (min-width: 700px) {
  .gtc\:drawer {
    --gtc-drawer-spacing-x: 32px; /* Assuming the root font size is 16px */
    --gtc-drawer-spacing-y: 24px; /* Assuming the root font size is 16px */
  }
}

.gtc\:drawer[open] {
  pointer-events: all;
  transform: translateX(0);
  visibility: visible;

  transition: visibility 0s cubic-bezier(0.4, 0, 0.22, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.22, 1);
}

.gtc\:drawer__header {
  position: sticky;
  top: 0;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: var(--gtc-drawer-spacing-y) var(--gtc-drawer-spacing-x);
  width: 100%;
  border-bottom: 1px solid var(--gtc-drawer-border-color);

  z-index: 2;
}

.gtc\:drawer__title {
  margin: 0;
}

.gtc\:drawer__body {
  height: 100%;
  padding: var(--gtc-drawer-spacing-y) var(--gtc-drawer-spacing-x);
  overflow: auto;
}

.gtc\:drawer__body iframe,
.gtc\:drawer__body video
{
  max-width: 100%;
}

/*********************/
/* GTC modal */
/*********************/

.gtc\:modal {
  /* variables */
  --gtc-modal-background: rgb(255, 255, 255);
  --gtc-modal-border-color: #eee;
  --gtc-modal-text-primary: rgb(0, 0, 0);
  --gtc-modal-spacing-x: 32px; /* Assuming the root font size is 16px */
  --gtc-modal-spacing-y: 24px; /* Assuming the root font size is 16px */

  display: flex;
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 900px;
  width: calc(100% - var(--gtc-modal-spacing-x));
  max-height: 600px;
  padding: 0;
  overflow: hidden;
  background: var(--gtc-modal-background);
  transform: translateY(5rem) translate(-50%, -50%);
  z-index: 90000;
  border: 1px solid var(--gtc-modal-border-color);
  border-radius: 0;

  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  opacity: 0;
  visibility: hidden;

  transition: visibility 0.3s cubic-bezier(0.4, 0, 0.22, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.22, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.22, 1);
}

@media screen and (min-width: 700px) {
  .gtc\:modal {
    --gtc-modal-spacing: 2rem;
  }
}

.gtc\:modal[open] {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);

  transition: visibility 0s cubic-bezier(0.4, 0, 0.22, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.22, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.22, 1);
}

.gtc\:modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--gtc-modal-spacing-y) var(--gtc-modal-spacing-x);

  border-bottom: 1px solid var(--gtc-modal-border-color);
}

.gtc\:modal__header > * {
  margin: auto 0;
}

.gtc\:modal hr {
  width: 100%;
}

.gtc\:modal__container {
  overflow: auto;
  gap: 1rem;
  padding: var(--gtc-modal-spacing-y) var(--gtc-modal-spacing-x);
}

.gtc\:modal__content iframe,
.gtc\:modal__content video
{
  max-width: 100%;
}

[data-gtc-modal] .text-full {
  display: none;
}

.gtc\:modal .text-full {
  display: block;
}

.gtc\:modal .text-truncated {
  display: none;
}



/*********************/
/* GTC overlay */
/*********************/

.gtc\:overlay {
  display: block;
  position: fixed;
  min-height: 100lvh;
  background: #0006;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  z-index: 30;

  opacity: 0;
  visibility: hidden;

  transition: visibility 0.6s cubic-bezier(0.4, 0, 0.22, 1),
    opacity 0.6s cubic-bezier(0.4, 0, 0.22, 1);
  pointer-events: none;
}

body.gtc\:overlay-open .gtc\:overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: all;

  transition: visibility 0.3s cubic-bezier(0.4, 0, 0.22, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.22, 1);
}

/*********************/
/* Linked products */
/*********************/
/* Variables */
:root {
  --gtc-linked-product-button-background: #000000;
  --gtc-linked-product-button-text-color: #ffffff;
  --gtc-linked-product-gap: 1rem;
  --gtc-linked-product-border-color: #bbbbbb;
  --gtc-linked-product-variant-radius: var(--variant-radius, 0px);

  --gtc-linked-product-modal-background: var(--background, #ffffff);
}

.gtc\:visually-hidden {
  opacity: 0;
  pointer-events: none;
}

.gtc\:fade-in:not([hidden]),
:not(.gtc\:visually-hidden) .gtc\:fade-in {
  animation: fade-in 0.5s ease-in-out;
}

.gtc\:object-cover,
.gtc\:linked-product img.gtc\:object-cover {
  object-fit: cover !important;
  padding: 0 !important;
}

.gtc\:generic-swatch {
  position: absolute;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.gtc\:linked-products {
  padding-bottom: 24px;
}

.gtc\:linked-products [data-current-color-name] {
  opacity: 0.7;
}

.gtc\:linked-products .label {
  display: block;
  margin-bottom: 0.5rem;
}

.gtc\:linked-products__container {
  display: grid;
  position: relative;
  z-index: 1;
}

.gtc\:linked-products__container:not(:has(img)) .gtc\:linked-product__container {
  aspect-ratio: 1;
}

.gtc\:linked-products__button {
  order: 1;
}

.gtc\:linked-products__button .gtc\:linked-products__button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  height: 100%;

  background-color: var(--gtc-linked-product-button-background);
  color: var(--gtc-linked-product-button-text-color);
  border: 1px solid currentColor;

  pointer-events: none;
}

.gtc\:linked-products__button .gtc\:linked-products__button-container .gtc\:linked-products__button-container-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 30%;
  z-index: 1;
}

.gtc\:linked-products__button .gtc\:linked-products__button-container .gtc\:linked-products__button-container-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gtc\:linked-products__button .gtc\:linked-products__button-container svg {
  z-index: 2;
}

.gtc\:linked-products__button svg {
  width: 35%;
}

.gtc\:linked-product {
  position: relative;
}

.gtc\:linked-product__container {
  position: relative;
  display: grid;
  place-content: center;
  border: 1px solid var(--gtc-linked-product-border-color);
  border-radius: var(--gtc-linked-product-variant-radius);
  background: rgb(var(--secondary-background));
  overflow: hidden;
}


.gtc\:linked-product--rounded .gtc\:linked-product > a,
.gtc\:linked-product--rounded .gtc\:linked-product__container,
.gtc\:linked-product--rounded .gtc\:linked-products__button-container {
  border-radius: 8px;
}

.gtc\:linked-product--round .gtc\:linked-product > a,
.gtc\:linked-product--round .gtc\:linked-product__container,
.gtc\:linked-product--round .gtc\:linked-products__button-container {
  border-radius: 9999px;
  aspect-ratio: 1;
}

.gtc\:linked-product img {
  object-fit: contain;
  height: 100%;
  width: 100%;
  padding: 0.25rem;
}

.gtc\:linked-product a,
.gtc\:linked-product a:empty {
  display: block;
}

/*********************/
/* Linked products - Swatches */
/*********************/

.gtc\:linked-products__swatches {
  margin-top: 1rem;
}

.gtc\:linked-products__swatches .gtc\:linked-products__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.gtc\:linked-products__swatches .gtc\:linked-products__container > *img {
  object-fit: contain;
}

.gtc\:swatch-count {
  white-space: nowrap;
  order: 1;
}

.gtc\:swatch-count::before {
  content: '+';
}