/** Shopify CDN: Minification failed

Line 231:21 Unterminated string token

**/
/*
 *  1.0. Mixins
*/
toggle-tab {
  display: block;
  margin-bottom: 0 !important;
}
toggle-tab + toggle-tab {
  border-top: 1px solid var(--color-borders-main);
}
toggle-tab.opened .toggle__title {
  cursor: pointer;
  pointer-events: all;
}
toggle-tab.opened .toggle__title .toggle__icon {
  transform: rotate(180deg);
}
toggle-tab.opened .toggle__title + .toggle__content {
  display: block;
}

.toggle__title {
  width: 100%;
  position: relative;
  padding: 1rem 0;
  cursor: pointer;
  font-weight: var(--font-weight-body-bold);
  transition: all 100ms linear;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toggle__title .toggle__icon {
  flex-shrink: 0;
}
.toggle__title .toggle__icon svg * {
  transition: all 100ms linear;
  fill: var(--color-text-main);
}
.toggle__title + .toggle__content {
  padding-bottom: 1.1875rem;
  display: none;
}

.toggle__content {
  overflow-x: auto;
}

.toggle--faq {
  transition: all 100ms linear;
}
.no-touchevents .toggle--faq:hover {
  background-color: var(--color-fourth-background-main);
}
.toggle--faq.opened {
  background-color: var(--color-third-background-main);
}
.toggle--faq .toggle__content {
  padding-inline-start: calc(var(--gutter-regular) * 0.5 + 0.8125rem + var(--gutter-small));
  -webkit-padding-start: calc(var(--gutter-regular) * 0.5 + 0.8125rem + var(--gutter-small));
  padding-inline-end: calc(13px + var(--gutter-small));
  padding-top: var(--gutter-regular);
  padding-bottom: var(--gutter-small);
  border-top: solid 1px var(--color-borders-main);
}
.toggle--faq .toggle__content figure {
  max-width: 100%;
}
.toggle--faq .toggle__subtitle {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  margin-top: 0.1875rem;
}
.toggle--faq .toggle__subtitle svg {
  width: 1.25rem;
  height: 1.25rem;
  overflow: visible;
}
.toggle--faq .toggle__subtitle svg * {
  stroke: var(--color-text-main);
  stroke-width: 0.25rem;
}
.toggle--faq .toggle__title {
  display: grid;
  grid-template-columns: 0.8125rem 1fr max-content;
  grid-template-areas: "toggle-icon heading button";
  font-weight: var(--font-weight-body);
  grid-column-gap: var(--gutter-small);
  padding-inline-start: calc(var(--gutter-regular) * 0.8);
  -webkit-padding-start: calc(var(--gutter-regular) * 0.8);
  padding-inline-end: calc(var(--gutter-regular) * 0.8);
}
.toggle--faq .toggle__title > .button {
  grid-area: button;
}
@media screen and (max-width: 767px) {
  .toggle--faq .toggle__title {
    grid-template-columns: 0.8125rem 1fr;
    grid-template-areas: "toggle-icon heading" "button .";
  }
  .toggle--faq .toggle__title > .button {
    width: max-content;
  }
}
.toggle--faq .toggle__heading {
  grid-area: heading;
}
.toggle--faq .toggle__heading span {
  display: inline-block;
  width: 100%;
}
.toggle--faq .toggle__icon-alternate {
  grid-area: toggle-icon;
  align-self: start;
}
.toggle--faq .toggle__icon-alternate path {
  fill: var(--color-text-main);
}
.toggle--faq .toggle__icon--minus {
  display: none;
}
.toggle--faq.opened .toggle__icon--plus {
  display: none;
}
.toggle--faq.opened .toggle__icon--minus {
  display: block;
}

.faq-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--grid-gap);
}
@media screen and (max-width: 1023px) {
  .faq-layout {
    grid-template-columns: 100%;
  }
}

.contact-cell {
  padding: calc(var(--gutter-regular) * 1.5);
}
.contact-cell input, .contact-cell textarea {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .contact-cell {
    position: sticky;
    top: 1.25rem;
  }
}

table {
    border-collapse: collapse;
    border-spacing: 0;
  min-width: 350px;
  max-width: 600px;
}
table thead tr th {
    font-family: "LL Circular", sans-serif;
    font-feature-settings: "ss06";
    font-size: 0.875rem;
    line-height: 1.125rem;
    font-weight: 500;
    text-align: left;
    padding: 4px 6px 4px 6px;
    word-break: break-word;
}
table thead tr th:first-child {
    width: 50%;
}
th:first-child {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.outline {
   border: 1px solid #000000;
}
.outline tr{
   border: 1px solid #000000;
}
.no-outline {
  border: none!important;
}

thead {
   border: 1px solid #000000;
  border-bottom: 20px solid #000000;
}
tbody {
   border: 1px solid #000000;
}

tbody th {
  border-bottom: 3px solid #000000;
}

thead tr {
  border-bottom: none;
}

thead td {
  font-weight: bold;
}

.light {
  font-weight: lighter!important;
}

td {
  padding: 5px;
}

.bottom-line {
  border-bottom: 10px solid #000000;
}

tbody td + td {
  text-align: center;
}
.title {
  text-align: center'
}
.mid-line {
  border-bottom: 4px solid #000000;
}