/** Shopify CDN: Minification failed

Line 110:16 Expected identifier but found whitespace
Line 110:21 Unexpected ";"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:article (INDEX:1) */
.article-content {
  font-size: 1.05rem;
  line-height: 1.9;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.article-content p {
  margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content blockquote {
  border-left: 4px solid var(--bs-primary);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #6c757d;
  font-style: italic;
}
/* END_SECTION:article */

/* START_SECTION:blog (INDEX:2) */
.card-img-top {
  object-fit: cover;
  height: 350px;
}

.card-title {
  min-height: 3rem;
}

.pagination {
  gap: 0.5rem;
}

.pagination .page,
.pagination .prev,
.pagination .next {
  display: inline-flex;
}

.pagination a,
.pagination span {
  padding: 0.5rem 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  text-decoration: none;
}
/* END_SECTION:blog */

/* START_SECTION:header (INDEX:8) */
.navbar-toggler-icon {
  filter: var(--bs-dark);
}

.site-header a {
  color: var(--bs-body-color);
}

.header-logo {
  color: var(--bs-primary);
}

shopify-account svg,
.site-header a svg,
.site-header svg {
  width: 1.5rem;
  height: auto;
}

.cart-badge {
    font-size: 0.65rem;
    line-height: 1.15em;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Firefox */
scrollbar-width: thin;
scrollbar-color: rgba(var(--bs-primary-rgb),0.2) transparent;

/* Chrome, Safari, Edge */
.currency-list::-webkit-scrollbar { width: 4px; }
.currency-list::-webkit-scrollbar-track { background: transparent; }
.currency-list::-webkit-scrollbar-thumb {
  background: rgba(var(--bs-primary-rgb),0.2);
  border-radius: 9999px;
}
.currency-list::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--bs-primary-rgb),0.35);
}

@media (max-width: 992px) {
#currency-dropdown .dropdown-menu {
    transform: translateX(25%);
}
}
/* END_SECTION:header */

/* START_SECTION:search (INDEX:15) */
.card-img-top {
    object-fit: cover;
    height: 250px;
  }

  .pagination {
    gap: 0.5rem;
  }

  .pagination .page,
  .pagination .prev,
  .pagination .next {
    display: inline-flex;
  }

  .pagination a,
  .pagination span {
    padding: 0.5rem 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    text-decoration: none;
  }
/* END_SECTION:search */

/* START_SECTION:welcome-screen (INDEX:16) */
.welcome-screen {
      height:100vh;
      height:100dvh;
    }
    .marquee-track {
      width: max-content;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
    }

    .marquee.left .marquee-track {
      animation-name: scroll-left;
    }

    .marquee.right .marquee-track {
      animation-name: scroll-right;
    }

    .scrolling-height {
        height: 33.33vh;
        height: 33.33dvh;
        height: calc(100vh / 3);
        height: calc(100dvh / 3);
        height: calc(90lvh / 3);
        max-width: initial;
    }

    @media (max-width: 768px) {
      .scrolling-height {
          height: 20vh;
          height: 20dvh;
          height: 18lvh;
      }
    }

    @keyframes scroll-left {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }

    @keyframes scroll-right {
      from {
        transform: translateX(-50%);
      }
      to {
        transform: translateX(0);
      }
    }

    .welcome-screen-mw {
      max-width:400px;
    }
/* END_SECTION:welcome-screen */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:17) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:18) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:25) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */