/** Shopify CDN: Minification failed

Line 86:1 Unexpected "}"

**/


.tabbed-content--tabs button, .tabbed-content--tabs button:after {
  transition: all 0.25s cubic-bezier(0.104, 0.204, 0.492, 1); }


.tabbed-content {
  display: block; }
  .tabbed-content-wrapper {
    background: var(--color-bg, var(--bg-body, #fff)); }
    .tabbed-content-wrapper .section-header p {
      color: var(--color-body); }
  .tabbed-content.text-width-small {
    max-width: 800px;
    margin: 0 auto; }
  .tabbed-content.text-width-medium {
    max-width: 100%;
    margin: 0; }
  .tabbed-content.text-width-large {
    max-width: 1200px;
    margin: 0 auto; }
  .tabbed-content--scroll {
    width: 100%;
    display: block;
    margin-bottom: 30px;
    transform: translateZ(0px); }
    .tabbed-content--scroll s {
      z-index: 10; }
  .tabbed-content--tabs {
    display: block;
    text-align: left;
    width: 100%;
    white-space: nowrap;
    overflow: scroll; }
    .tabbed-content--tabs:after {
      
      display: block;
      height: 1px;
      width: 100%;
      border-bottom: 1px solid var(--color-border);
      background: transparent;
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 0; }
    .tabbed-content--tabs::-webkit-scrollbar {
      display: none; }
    .tabbed-content--tabs button {
      display: inline-flex;
      min-height: 22px;
      color: rgba(var(--color-tabs), 1);
      margin-right: 14px;
      font-size: 16px;
      line-height: 21.6px;
      font-weight: 500;
      padding: 10px 16px;
      position: relative;
      border: 1px solid; 
      border-radius: 30px;
      z-index: 2; }
      .tabbed-content--tabs button:after {
        display: block;
        height: 2px;
        width: 100%;
        background: rgba(var(--color-tabs), 1);
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 3;
        transform: scale(1, 0);
        transform-origin: bottom center; }
      .tabbed-content--tabs button svg {
        fill: rgba(var(--color-tabs), 0.6);
        margin-right: 11px;
        width: 15px;
        height: auto; }
      .tabbed-content--tabs button.active {
        color: rgba(var(--color-tabs), 1);
        background-color: var(--solid-button-background, var(--color-accent));
        border-color: var(--solid-button-background, var(--color-accent));
}}
        .tabbed-content--tabs button.active:after {
          transform: scale(1, 1); }
        .tabbed-content--tabs button.active svg {
          fill: rgba(var(--color-tabs), 1); }
    .tabbed-content--tabs.tabs-center {
      text-align: center; }
      .tabbed-content--tabs.tabs-center button {
        margin: 0 17px; }
    .tabbed-content--tabs.tabs-right {
      text-align: right; }
      .tabbed-content--tabs.tabs-right button {
        margin: 0 0 0 34px; }
  .tabbed-content--content {
    display: none;
    color: var(--color-body); }
    @media only screen and (min-width: 768px) {
      .tabbed-content--content {
        column-count: var(--columns, 1); } }
    .tabbed-content--content.active {
      display: block; }

.tabbed-content--tabs button:not(.active):hover {
  background-color: rgba(255,255,255,0.25);
  transition: 0.4s ease;
}

@media screen and (min-width: 1068px) {
   .tabbed-content-wrapper .row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
   }
}

.tabbed-content-wrapper .section-header--content {
  flex-direction: column-reverse;
}

.tab-images-wrapper {
  min-height: 24rem;
  height: 100%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .tab-images-wrapper {
    min-height: 75vh;
  }
}

.tab-images-wrapper .tab__image {
  position: absolute;
  width: 100%;
  height: 100%;
}

.tab-images-wrapper .tab__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--card-border-radius);
}

.tabbed__content {
  position: relative;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 767px) {
  .tabbed__content {
    margin-top: 16px;
  }

  .tabbed-content-wrapper  > .row {
    flex-direction: column-reverse;
  }

  .tabbed-content--tabs button {
    font-size: 15px;
    line-height: 22.28px;
  }
}

tabbed-content.tabbed-content {
  flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tabbed-content--tabs.tabs-left {
  display: flex;
    flex-wrap: wrap;
    row-gap: 14px;
}

.tab__image {
  display: none; /* Hide all images initially */
}

.tab__image:first-child {
  display: block; /* Show only the first image by default */
}


