/** Shopify CDN: Minification failed

Line 1931:0 Unexpected "}"

**/
body {
  grid-template-rows: auto auto auto 1fr auto;
}
a {
  text-decoration: none;
  color: inherit;
}
.h0, .h1, .h2, .h3, .h4, .h5, h1, h2, h3, h4, h5 {
  line-height: 1.15;
/*   color: var(--color-base-text); */
}
.text-center {
  text-align: center;
}
.button.button--white {
    --color-button: var(--color-base-outline-button-labels);
    --color-button-text: var(--color-base-outline-button-labels);
    --alpha-button-background: 0;
    --alpha-button-border: 0.2;
}

@media only screen and (min-width: 750px) {
  .h1, h1 {
    font-size: 4.8rem;
  }
}

h2,
.h2 {
  font-size: 2.2rem;
}

@media only screen and (min-width: 750px) {
  h2,
  .h2 {
    font-size: 2.8rem;
  }
}
  
@media screen and (min-width: 750px) {
  .spaced-section {
    margin-top: calc(6rem + var(--page-width-margin));
  }
}
.spaced-section {
  margin-top: 6rem;
}

.heading_left {
  text-align: left;
  justify-content: flex-start;
}
.heading_center {
  text-align: center;
  justify-content: center;
}
.heading_right {
  text-align: right;
  justify-content: flex-end;
}

.title-wrapper-with-link > * {
  margin: 0;
}
  
/*** Form fields ****/
textarea.spr-form-input,
select.spr-form-input,
input.spr-form-input,
.customer .field input, .customer select, .field__input, .select__select {
  border-radius: 4px;
  box-shadow: 0 0 0 .1rem rgba(var(--color-foreground),.35)
}
a.spr-icon:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
  
/*** Add 5 columns to grid ****/
@media screen and (min-width: 990px) {
  .grid--quarter-max.grid--5-col-desktop .grid__item {
    max-width: 20%;
  }
}
@media screen and (min-width: 750px) {

  .grid--5-col-tablet .grid__item {
    width: calc(20% - 1rem * 3 / 4);
  }
}
@media screen and (min-width: 990px) {
  .grid--5-col-desktop .grid__item {
    width: calc(20% - 1rem * 3 / 4);
  }
}
  
/*** Grid Hack ***/
.grid.grid-col-size-20 .grid__item {
  width: 20%;
}
.grid.grid-col-size-25 .grid__item {
  width: 25%;
}
.grid.grid-col-size-33 .grid__item {
  width: 33.3333%;
}
.grid.grid-col-size-50 .grid__item {
  width: 50%;
}
.grid.grid-col-size-100 .grid__item {
  width: 100%;
  max-width: 100%;
}
.grid[class*="col-size"] {
  padding: 2rem!important;
  margin-left: -2rem!important;
  width: calc(100% + 2rem);
}
.grid[class*="col-size"] .multicolumn-list__item {
  padding-left: 2rem !important;
  padding-bottom: 2rem !important;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 980px) {
  .grid.grid-desk-col-size-20 .grid__item {
    width: 20%;
  }
  .grid.grid-desk-col-size-25 .grid__item {
    width: 25%;
  }
  .grid.grid-desk-col-size-33 .grid__item {
    width: 33.3333%;
  }
  .grid.grid-desk-col-size-50 .grid__item {
    width: 50%;
  }
  .grid.grid-desk-col-size-100 .grid__item {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .grid.grid-tablet-col-size-20 .grid__item {
    width: 20%;
  }
  .grid.grid-tablet-col-size-25 .grid__item {
    width: 25%;
  }
  .grid.grid-tablet-col-size-33 .grid__item {
    width: 33.3333%;
  }
  .grid.grid-tablet-col-size-50 .grid__item {
    width: 50%;
  }
  .grid.grid-tablet-col-size-100 .grid__item {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .grid.grid-mob-col-size-20 .grid__item {
    width: 20%;
  }
  .grid.grid-mob-col-size-25 .grid__item {
    width: 25%;
  }
  .grid.grid-mob-col-size-33 .grid__item {
    width: 33.3333%;
  }
  .grid.grid-mob-col-size-50 .grid__item {
    width: 50%;
  }
  .grid.grid-mob-col-size-100 .grid__item {
    width: 100%;
    max-width: 100%;
  }
}


/*** Add Medium Page Width ****/
@media screen and (min-width: 750px) {
  .page-width--medium {
    padding: 0 9rem;
  }
}
@media screen and (min-width: 990px) {
  .page-width--medium {
    max-width: 90rem;
    padding: 0;
  }
}

/**** Responsive images ****/
.rimage-outer-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.rimage-wrapper {
  position: relative;
  transition: background 150ms;
}

.rimage-wrapper.lazyload--placeholder {
  background: #f0f0f0;
}

.rimage-wrapper .rimage__image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rimage-wrapper .rimage__image.blur-in {
  -webkit-filter: blur(10px);
  filter: blur(10px);
  transition: filter 400ms, -webkit-filter 400ms;
}

.rimage-wrapper .rimage__image.blur-in.lazyloaded {
  -webkit-filter: blur(0);
  filter: blur(0);
}

.rimage-wrapper .rimage__image.fade-in {
  opacity: 0;
  transition: opacity 500ms;
}

.rimage-wrapper .rimage__image.fade-in.lazyloaded {
  opacity: 1;
}

.rimage-wrapper .rimage__image.cover {
  object-fit: cover;
}

.rimage-background {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.rimage-wrapper .rimage-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rimage-background[data-parent-fit="contain"] {
  background-size: contain;
}

.rimage-background.fade-in {
  opacity: 0;
  transition: opacity 500ms;
}

.rimage-background.fade-in.lazyloaded {
  opacity: 1;
}

.rimage-background-wrapper {
  transition: background 150ms;
}

.rimage-background-wrapper.lazyload--placeholder {
  background: #f0f0f0;
}

/*** Card borders ***/
.card-wrapper {
  border: none !important;
}

/*** Multicolumn card, made it a link so needs DB ****/
.multicolumn-card {
  display: block;
}
.multicolumn-card__info h3.size-small {
  font-size: .9em;
}
.multicolumn-card__info h3.size-large {
  font-size: 1.5em;
}

/*** Border Radius ****/
.button, .customer button, .shopify-challenge__button {
  border-radius: 7px;
}

/*** Remove ugly underlines from links ****/
.article-card__title,
.header__active-menu-item,
.header__menu-item span,
.link--text,
.card-information__text,
.link {
  text-decoration: none !important;
}

/*** Announcement Bar ***/
.announcement-bar__message {
  padding: 1.2rem 2rem 1rem 2rem;
}
#shopify-section-announcement-bar .slider-button {
  width: 37px;
  height: 37px;
  background: transparent !important;
  color: #fff;
/*   opacity: 1; */
  bottom: 0;
}
#shopify-section-announcement-bar .slider-button .icon {
  height: .75rem!important;
}
#shopify-section-announcement-bar .slider-button.glide__arrow--right {
  right: 0;
}
#shopify-section-announcement-bar .slider-button.glide__arrow--left {
  left: 0;
}
@media screen and (max-width: 768px) {
  #shopify-section-announcement-bar .slider-button {
    display: none;
  }
}
/*** Announcement Bar END ***/

/*** Header ***/
.header {
  padding-top: 1rem;
  padding-bottom: 1rem;
/*   max-width: none !important; */
}
/* body.ecomm .header {
  max-width: 100%;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
} */
.header__icon .icon {
  height: 2.5rem;
  width: 2.5rem;
}
.header__icon--cart .icon {
  height: 5.5rem;
  width: 5.5rem;
}
.cart-count-bubble {
  line-height: 1;
  padding-left: 1px;
}

/*** Footer ***/
.footer-block:last-child {
  margin-left: auto;
  min-width: 255px;
}
.footer-block .list-social {
  justify-content: flex-start;
  margin-bottom: 20px;
  margin-top: -10px;
}
.footer-block .list-social .list-social__item:first-child .list-social__link {
  padding-left: 0;
}
.footer-block.footer-block--menu {
  padding-bottom: 0;
}
.footer__column--info {
  flex-direction: row-reverse !important;
  justify-content: space-between !important;
  align-items: center !important;
}
.footer__content-bottom .footer__copyright {
  display: inline-flex;
  align-items: center;
}
.footer__content-bottom .copyright__content {
  font-size: 1.3rem; 
  line-height: 1;
}
.footer__content-bottom .country-select {
  font-size: 2rem;
  line-height: 1;
  margin-right: 7px;
}
@media screen and (max-width: 750px) {
  .footer {
   	text-align: center; 
  }
  .footer-block__details-content .list-menu__item {
    justify-content: center;
  }
  .footer-block__details-content .list-menu__item--link {
    padding-top: .4rem !important;
    padding-bottom: .4rem !important;
  }
}

/*** Navigation ***/
.list-menu__item {
  font-weight: 500;
}
.header__submenu.list-menu {
    padding: 1rem 0;
    width: 25rem;
    border: none;
    background-color: #f7f7f7;
    border-radius: 6px;
}
.header__inline-menu details:hover>.header__submenu {
    opacity: 1;
    transform: translateY(0);
    animation: animateMenuOpen .2s ease;
    z-index: 100;
}
details details {
  position: relative;
}
details details .header__submenu {
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0 !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  background-color: #f1f1f1  !important;
}
.header__submenu .header__submenu .header__menu-item {
  padding-left: 1.8rem;
}
.menu-drawer {
  border-top: none;
  border-bottom: none;
}
.menu-drawer-container details {
  position: static;
}
/* 
.header__inline-menu details:hover>.header__submenu {
  opacity: 1;
  transform: translateY(0);
  animation: animateMenuOpen var(--duration-default) ease;
  z-index: 1;
}
 */
/*** Main hero banner ****/
.banner {
/*   min-height: 0 !important; */
}

.banner.banner--size-small .banner__content {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.banner.banner--size-medium .banner__content {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.banner.banner--size-large .banner__content {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.banner.banner--size-xlarge .banner__content {
  padding-top: 16rem;
  padding-bottom: 16rem;
}

@media screen and (min-width: 750px) {
  
  .banner__content.banner__content--center {
    align-items: center;
  }
  .banner__content.banner__content--flex-end {
    align-items: flex-end;
  }
  .banner__content.banner__content--flex-start {
    align-items: flex-start;
  }
  .banner__content.banner__content--justify-center {
    justify-content: center;
  }

  .banner__content.banner__content--justify-flex-start,
  .banner__content.banner__content--justify-flex-start .banner__box>.banner__buttons {
    justify-content: flex-start;
  }
  .banner__content.banner__content--justify-flex-start .banner__box {
/*     text-align: left; */
  }

  .banner__content.banner__content--justify-flex-end,
  .banner__content.banner__content--justify-flex-end .banner__box>.banner__buttons {
    justify-content: flex-end;
  }
  .banner__content.banner__content--justify-flex-end .banner__box {
/*     text-align: right; */
  }
  .banner--desktop-transparent .banner__box {
    max-width: 60rem !important;
    padding-top: 3rem;
    padding-bottom: 3rem;
    --color-foreground: inherit !important;
    --color-button: inherit !important;
    --color-button-text: inherit !important;
  }
}
/*** Main hero banner END ****/

/*** Logos Section ****/
.section_id_logos .title-wrapper-with-link {
/*   text-align: center; */
/*   justify-content: center; */
}
.section_id_logos .multicolumn-list {
  flex-wrap: nowrap;
}
.section_id_logos .multicolumn-list .multicolumn-list__item {
/*   width: auto !important; */
  margin: 0 !important;
  flex-shrink: 1;
}
.section_id_logos .multicolumn-list .multicolumn-list__item .multicolumn-card {
  display: block !important;
}
.section_id_logos .multicolumn-list .multicolumn-list__item .media>img {
  object-fit: contain; 
}
.section_id_logos .multicolumn-card__info {
  padding: 0 !important;
}

@media screen and (max-width: 1000px) {
 .section_id_logos .grid {
   flex-wrap: wrap;
   justify-content: center;
 }
 .section_id_logos .background-none .multicolumn-list__item {
   width: 33.333%;
   flex-shrink: 0;
 }
 .section_id_logos .background-none .multicolumn-card__image-wrapper {
   margin: 0 !important;
 }
}
@media screen and (max-width: 550px) {
 .section_id_logos .background-none .multicolumn-list__item {
   width: 50%;
   padding-left: 10px;
   padding-right: 10px;
 }
}
/*** Logos Section END ****/

/*** Featured Collection - Centre align heading ****/
.collection .title-wrapper-with-link {
/*   justify-content: center; */
}  
/*** Featured Collection - Centre align heading END ****/

/*** Product Grid Item ****/
.grid__item,
#product-grid .grid__item {
  flex-grow: 0;
}
#product-grid .grid__item {
  display: flex;
  flex-direction: column;
}
.card-wrapper .rating-star {
  --color-icon: #654EA3;
  --letter-spacing: 0.2 !important;
  --font-size: 1.6 !important;
}
.card-wrapper .rating-count {
  opacity: .75;
}
.card-wrapper .card-information {
  min-height: 8rem;
  text-align: center;
}
.card-wrapper .card-information .price {
  justify-content: center;
}
.card-wrapper+product-form {
  padding-top: 13px;
  margin-top: auto;
  display: block;
}
.card-wrapper+product-form .button {
  padding: 1rem;
  min-height: 0;
  font-size: 1.4rem;
}
.card-wrapper+product-form .button:hover {
  color: #fff !important;
  background: var(--gradient-base-accent-1) !important;
}
/*** Product Grid Item END ****/

/*** Multicolumn stop centered if only one ****/
.multicolumn-list {
  justify-content: center;
}
.multicolumn-list__item .multicolumn-card {
  align-items: center;
/*   display: flex; */
  height: 100%;
}
.multicolumn-list__item:only-child {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
/*** Multicolumn stop centered if only one END ****/

/*** Breadcrumbs ***/
.breadcrumb {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  font-size: 1.4rem;
  width: 100%;
  background: rgba(var(--color-foreground),.04);
}
.breadcrumb .breadcrumb-inner {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb span {
  display: inline;
  padding: 0 1px;
}
/*** Breadcrumbs END ***/
  
/*** Product Page ****/
.product .product__tax {
  display: none;
}

.product .product__info-container>*+* {
    margin: 0.9rem 0;
}
.product .product-form__submit {
  margin-top: .3rem;
  width: 85%;
}
.product #BIS_trigger {
  width: 85% !important;
}
.product .product__info-container .product-form,
.product .product__info-container .product__description {
    margin: 0.9rem 0;
}
.product .product__description p,
.product .product__description ul {
  margin-top: 0;
  margin-bottom: .9rem;
  font-size: 1.4rem;
}

@media screen and (min-width: 990px) {
  .product-section .product:not(.product--no-media):not(.featured-product) .product__media-wrapper {
    max-width: 50%;
    width: calc(50% - 1rem / 2);
  }

  .product-section .product:not(.product--no-media):not(.featured-product) .product__info-wrapper {
    max-width: 50%;
    width: calc(50% - 1rem / 2);
  }
}

.carousel:focus-visible {
  box-shadow: none !important;
  outline: none !important;
}

.carousel-main {
  margin-bottom: 1rem;
}
.carousel-main .flickity-page-dots {
  display: none !important;
}
.carousel-main .carousel-cell {
  width: 100% !important;
}
.carousel-nav .carousel-cell {
  width: 20% !important;
  padding: 0 5px;
}

.icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.icons .icon {
  width: 48%;
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 400;
  line-height: 1.3;
}
.icons .icon .image {
  height: 29px;
  display: inline-flex;
  margin-right: 17px;
  width: 29px;
  border-radius: 50%;
  align-items: center;
  flex-shrink: 0;
}
.icons .icon .image img {
  max-height: 100%;
  display: inline-block;
  max-width: 100%;
  object-fit: contain;
}
.product h1.product__title {
  font-size: 4rem;
}
.product .product__text.subtitle {
  display: inline-block;
  padding: 5px 17px;
  background: #f7f7f7;
  border-radius: 44px;
  font-size: 1.5rem;
  margin: 0;
}
.product .distributors-cont {
  position: relative;
  margin: 1.5rem 0;
}
.product .distributors {
  width: 100%;
  left: 0;
  top: calc(100% + 4px);
  position: absolute;
  opacity: 0;
  pointer-events: none;
  padding: 10px 14px;
/*   background: #f7f7f7; */
  border-radius: 5px;
  transition: opacity .2s ease;
  background: #fff;
  box-shadow: rgb(0 0 0 / 6%) 0 4px 12px;
  z-index: 100;
  border: .1rem solid rgba(var(--color-foreground),.04);
}
.product .distributors.open {
  opacity: 1;
  pointer-events: all;
}
.product .distributors .view_all_distributors {
  display: block;
  margin-top: 3px;
  font-size: 1.4rem;
  cursor: pointer;
}
.product .distributors .view_all_distributors .icon-wrap {
  position: relative;
  transition: right .2s ease;
}
.product .distributors .view_all_distributors:hover .icon-wrap {
  right: -4px;
}
.product .distributors .distributor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 6px 0;
}
.product .distributors .distributor img {
  height: 29px;
  display: inline-block;
}
  


.product .sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  background: #fff;
  box-shadow: rgb(0 0 0 / 2%) 0px -3px 5px 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 1s cubic-bezier(0, 1, 0, 1);
  z-index: 100;
}
.product .sticky-atc.show {
  max-height: 1000px;
  transition: max-height 1s ease-in-out;
}
.product .sticky-atc .page-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.product .sticky-atc .mini-product .h4 {
  margin: 0 0 8px 0;
}
.product .sticky-atc .mini-product .price {
  line-height: 1;
}

.section-distributors {
}
.section-distributors .page-width {
  max-width: 100rem;
}
.section-distributors .distributors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
  max-height: 130px;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.section-distributors .distributors-grid.open {
  max-height: 4000px;
  transition: max-height 1s ease-in-out;
}
.section-distributors .distributors-expand {
  text-align: center;
  margin-top: 10px;
  cursor: pointer;
}
.section-distributors .distributors-expand svg { 
  height: 10px;
  color: #000;
}
.section-distributors .open+.distributors-expand {
  transform: rotate(180deg);
}
.section-distributors .distributor {
  padding: 20px;
  align-items: center;
  display: flex;
  max-width: 20%;
  height: 130px;
}
.section-distributors .distributor img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 750px) {
  .section-distributors .distributor {
    padding: 13px;
    max-width: 33.333%;
  }
}
/*** Product Page END ****/

/*** Contact Page ****/
section#shopify-section-template--14174846910720__form .title {
  margin-top: 0;
}
section#shopify-section-template--14174846910720__form #ContactForm {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
/*** Contact Page END ****/

/*** Downloads ****/
.multicolumn.downloads .multicolumn-card__info:first-child {
  padding-bottom: 0;
}
.multicolumn.downloads .multicolumn-card__info.download-button .button {
  margin-top: 0;
}
/*** Downloads END ****/

/*** Hero ****/
.section-hero .banner {
  background-size: cover;
  background-position: center top;
}
.section-hero .banner__box {
  background-color: transparent;
}
.section-hero .banner__box p:last-child {
  margin-bottom: 0 !important;
}
.section-hero .mobile-image {
  display: none;
  max-width: 100%;
}
@media (max-width: 768px) {
  .section-hero .banner {
    border-bottom: #664fa1 solid 30px;
    background: #fff !important;
  }
  .section-hero .banner:after {
    display: none !important;
  }
  .section-hero .mobile-image {
    display: block;
  }
  .section-hero .banner__content {
    padding: 0 !important;
  }
  .section-hero .banner__box {
    padding: 2.5rem;
    background-color: #fff !important;
    --color-button-text: 255 255 255 !important;
    --color-button: 101 78 163 !important;
    --color-foreground: var(--color-base-text) !important;
  }
}
/*** Hero END ****/

/*** Image Banner ****/
.banner .banner__box.force-white .banner__heading {
  color: #fff !important;
}
.banner .banner__box.title-shadow .banner__heading span {
  text-shadow: 0 0 60px #3c3c3c;
}
.banner .banner__richtext.size-small {
  font-size: .9em;
}
.banner .banner__richtext.size-large {
  font-size: 1.2em;
}
/*** Hero END ****/

/*** Rich Text ***/
.rich-text__text.rich-text__text-s {
  font-size: .9em;
}
.rich-text__text.rich-text__text-m {
  font-size: 1em;
}
.rich-text__text.rich-text__text-l {
  font-size: 1.1em;
}
.rich-text__text.rich-text__text-xl {
  font-size: 1.2em;
}
.rich-text__text.rich-text__text-xxl {
  font-size: 1.3em;
}
/*** Rich Text END ***/

/*** FAQ ****/
.faq-section+.faq-section {
  margin-top: 0 !important;
}
.faq-section .accordion {
  padding: 20px 0;
  border-bottom: .1rem solid rgba(var(--color-foreground),.04);
}
.faq-section .accordion .answer {
  max-height: 0;
  overflow: hidden;
}
.faq-section .accordion .answer .rte {
  margin-top: 2rem;
}
.faq-section .accordion.open .answer {
  max-height: 2000px;
}
.faq-section .accordion h3.question {
  position: relative;
  cursor: pointer;
  margin: 0;
  padding-right: 35px;
}
.faq-section .accordion h3.question:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 8px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #654ea3;
  border-bottom: none;
}
.faq-section .accordion.open h3.question:after {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #654ea3;
}
  
.faq-section .accordion .images {
	display: flex;
	flex-wrap: wrap;
	margin-left: -20px;
}
.faq-section .accordion .images .card {
	flex-shrink: 0;
	margin-left: 20px;
	margin-top: 20px;
}
.faq-section .accordion .card.width_100 {
	width: calc(100% - 20px);
}
.faq-section .accordion .card.width_75 {
	width: calc(75% - 20px);
}
.faq-section .accordion .card.width_50 {
	width: calc(50% - 20px);
}
.faq-section .accordion .card.width_33 {
	width: calc(33.3333% - 20px);
}
.faq-section .accordion .card.width_25 {
	width: calc(25% - 20px);
}
  
.faq-section .accordion .images .card .rimage-outer-wrapper {
  max-width: 100% !important;
}
.faq-section .accordion .images .card .card__text h4 {
}
  
/*** FAQ END ****/

/*** Blog ***/
.article-card {
  border-radius: 4px;
  overflow: hidden; 
}
.article-template__hero-container:first-child {
  margin-top: 0 !important;
  max-width: 100% !important;
}
.related-articles .blog-articles,glide__slides
.main-blog .blog-articles {
 grid-gap: 2rem; 
}
@media screen and (min-width: 750px) {
  .related-articles .blog-articles,
  .main-blog .blog-articles {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.blog-categories {
  margin-bottom: 4rem; 
  position: relative;
}
.blog-categories .h4 {
  display: inline-block;
  margin: 0 10px 0 0;
}
.blog-categories .button {
  margin-right: 10px;
  margin-bottom: 4px;
}
@media screen and (max-width: 600px) {
  .blog-categories .h4 {
    position: relative;
    display: block;
    margin: 0 0 10px 0;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: .1rem;
    border-radius: 7px;
    padding: 1.2rem 2.6rem;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    font: inherit;
    text-decoration: none;
    border: 0.1rem solid transparent;
    min-width: 12rem;
    min-height: 45px;
    -webkit-appearance: none;
    appearance: none;
    background: #fff;
    --color-button: var(--color-base-outline-button-labels);
    --color-button-text: var(--color-base-outline-button-labels);
    --alpha-button-background: 0;
    --alpha-button-border: .2;
    background-color: rgba(var(--color-button),var(--alpha-button-background));
    box-shadow: 0 0 0 0.1rem rgba(var(--color-button),var(--alpha-button-border));
    color: rgb(var(--color-button-text));
    transition: box-shadow var(--duration-short) ease;
    line-height: 1.2;
  }
  .blog-categories .button.button--white:after,
  .blog-categories .h4:after {
    position: absolute;
    content: "\25BE";
    right: 13px;
  }
  .blog-categories .button {
    display: none;
  }
  .blog-categories .button.button--white {
    display: inline-block;
    position: relative;
/*     padding: 0;
    border: none !important;
    box-shadow: none;
    height: auto;
    line-height: 1;
    min-height: 0;
    width: auto;
    min-width: auto;
    margin: 0;
    pointer-events: none; */
    width: 100%;
    text-align: center;
    background: #fff;
  }
  .blog-categories.opened {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
    padding: 2rem;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .blog-categories.opened .button {
    margin: 0 0 4px 0;
    width: 100%;
    display: block;
    text-align: center;
  }
  .blog-categories:not(.opened) .button.button--white {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
  }
  .blog-categories.opened .button.button--white {
    background: #f1edff;
  }
  .blog-categories.opened .button.button--white:after {
    opacity: 0;
  }
}

article.article-template .article-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
article.article-template .article-nav .article-template__link {
  font-size: 1.4rem;
}
article.article-template .article-nav .prev {
  margin-right: auto;
}
article.article-template .article-nav .next {
  margin-left: auto;
}
article.article-template .article-nav .next .icon-wrap {
  transform: none;
  margin-right: 0;
  margin-left: 1rem;
}
  
article.article-template .related-articles {
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
}
.related-articles .related-articles__heading+.blog-articles {
  margin-top: 3rem;
}
article.article-template .related-articles .article-card__header {
  line-height: .8 !important;
  margin-bottom: 1.2rem !important;
  margin-top: 0 !important;
}

aside.blog-col > h3 {
  margin-bottom: 2rem;
}
aside.blog-col > h3:first-child {
  margin-top: 0;
}
aside.blog-col .categories {
  background: #f7f7f7;
  padding: 0.9rem 0;
  border-radius: 4px;
}
aside.blog-col .categories .cat {
  display: block;
  padding: 0.7rem 1.4rem;
  font-size: 1.6rem;
  color: rgba(var(--color-foreground),.75);
/*   border-top: 0.1rem solid rgba(var(--color-foreground),.04); */
}
aside.blog-col .categories .cat:hover {
  color: rgba(var(--color-foreground),1);
}
aside.blog-col .categories .cat:last-child {
/*   border-bottom: 0.1rem solid rgba(var(--color-foreground),.04); */
}
aside.blog-col .categories .cat.cat--active {
  color: rgba(var(--color-button),var(--alpha-button-background));
}
aside.blog-col .article-card {
  margin-bottom: 1rem;
}
aside.blog-col .article:last-child article {
  margin-bottom: 0;
}
aside.blog-col .article-card .article-card__info {
  padding: 1.4rem;
}
aside.blog-col .article-card .article-card__info .article-card__header {
  margin-bottom: 0;
}
aside.blog-col .article-card .article-card__info .article-card__title {
  margin: 0 0 .2rem 0;
}
  
@media screen and (max-width: 750px) {
 
  aside.blog-col {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  
}
  
section.main-article-section {
  padding-top: 4rem;
}
/*** Blog END ***/
  
/*** Review Blocks ***/
section.review-blocks .rating {
  margin-bottom: -5px;
}
section.review-blocks .rating svg {
  fill: #00b0b9;
  display: inline-block;
  width: 21px;
  margin: 0 1px;
}
section.review-blocks .rte {
  margin-top: 1rem;
}
section.review-blocks .rte p {
  font-style: italic;
}
section.review-blocks .multicolumn .button {
  margin-top: 2.3rem !important;
/*   width: 100%; */
}
section.review-blocks .review-product {
  margin: 9px 0;
  color: #848484;
}
section.review-blocks .review-date {
  margin: 10px 0 0px 0;
  color: #afafaf;
  font-size: 1.4rem;
}
  
/*** Review Blocks END ***/

/*** Account ***/
.customer .account-menu ul {
  padding-left: 0;
}
.customer .account-menu ul li a {
  text-decoration: none !important;
}
/*** Account END ***/
  
/*** Collage ***/
.collage {
  gap: 2.2rem !important;
}
/*** Collage END ***/
  
/*** Mosaic ***/
.collage--mosaic {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
}
.collage--mosaic .collage-card {
  flex-grow: 1;
  width: calc(25% - 20px);
  margin-left: 20px;
  margin-bottom: 20px;
}
.collage--mosaic .collage-card .card {
  background: var(--gradient-base-accent-1) !important;
}
.collage--mosaic .collage-card .card h3 {
  color: #fff;
}
.collage--mosaic .collage-card .media>img {
  width: 101%;
  max-width: 101%;
}
.collage--mosaic .collage-card:nth-child(1),
.collage--mosaic .collage-card:nth-child(6) {
  width: calc(50% - 20px);
}
.collage--mosaic .collage-card:nth-child(1) .card,
.collage--mosaic .collage-card:nth-child(6) .card,
.collage--mosaic .collage-card:nth-child(1) img,
.collage--mosaic .collage-card:nth-child(6) img {
  position: static;
}
  
@media screen and (min-width: 768px) {
  
  .collage--mosaic .collage-card .collage-content__info,
  .collage--mosaic .collage-card .overlay-card {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 2rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s ease;
  }
  .collage--mosaic .collage-card .overlay-card {
    background: var(--gradient-base-accent-1) !important;
  }
  .collage--mosaic .collage-card:hover .collage-content__info {
    opacity: 1;
  }
  .collage--mosaic .collage-card:hover .overlay-card {
    opacity: .7;
  }
  .collage--mosaic .collage-card .card h3 {
    font-size: 2rem;
  }
  
}
  
@media screen and (max-width: 767px) {
  
  .collage--mosaic .collage-card {
    width: calc(50% - 20px) !important;
  }
  .collage--mosaic .collage-card .card,
  .collage--mosaic .collage-card img {
    position: static !important;
  }
  
}
/*** Mosaic END ***/
  
/*** Stats ***/
.stats-blocks .stats {
  display: flex;
}
.stats-blocks .stats .stat {
  width: 33.333%;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}
.stats-blocks .stats .stat .stat_bar_outer {
  position: relative;
}
.stats-blocks .stats .stat .stat_bar_outer h3 {
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
}
.stats-blocks .stats .stat .stat_bar {
/*   width: 200px; */
  height: 170px;
}
.stats-blocks .stats .stat .stat_bar > svg {
  height: 100%;
  display: inline-block;
}
.stats-blocks .stats .stat h4 {
  margin-top: 30px;
  font-size: 1.7rem;
}
  
@media screen and (max-width: 767px) {

  .stats-blocks .stats {
    display: block;
  }
  .stats-blocks .stats .stat {
    width: 100%;
  }

}
/*** Stats END ***/
  
/*** Compare ***/
.compare-blocks {
  overflow: hidden;
}
.compare-blocks .row {
  align-items: center;
}
.compare-blocks .compare_point {
  position: relative;
  padding-left: 49px;
  margin-bottom: 30px;
  text-align: left;
}
.compare-blocks .compare_point:last-child {
  margin-bottom: 0;
}
.compare-blocks .compare_point h5 {
  margin: 0 0 10px 0;
  font-size: 1.85rem;
}
.compare-blocks .compare_point p {
  margin: 0;
  line-height: 1.4;
  font-size: 1.5rem;
  letter-spacing: 0.4px;
}
.compare-blocks .compare_point .number {
  width: 30px;
  height: 30px;
  background: #654ea3;
  display: inline-flex;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  left: 0;
}
.compare-blocks .compare_image {
/*   align-self: stretch; */
  margin-top: 20px;
  margin-bottom: 20px;
}
.compare-blocks .compare_image .media {
  padding-bottom: 100%;
}
.compare-blocks .compare_image .media > img {
  object-fit: contain;
}

@media screen and (max-width: 750px) {
  .compare-blocks .compare_image  {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
/*** Compare END ***/
  
/*** Image with Text - add 2nd image ***/
.image-with-text .grid--3-col-tablet {
  margin-left: -4rem !important;
}
.image-with-text .grid--3-col-tablet .grid__item {
  padding-left: 4rem !important;
}
.image-with-text .grid--3-col-tablet .image-with-text__content {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
  
@media screen and (max-width: 750px) { 
  .image-with-text .grid--3-col-tablet .grid__item:nth-child(2) {
    margin-top: 3rem;
  } 
}
/*** Image with Text - add 2nd image END ***/

/*** Sustainability Partners logo align center ***/
.multicolumn {
  overflow: hidden;
}
.section_id_sus_partners .multicolumn-list {
  margin-top: 10px;
}
.section_id_sus_partners .multicolumn-list__item .multicolumn-card {
  display: flex;
}
/*** Sustainability Partners logo align center END ***/

/*** Sustainability Block Hover ***/
.section_id_sus_blocks .multicolumn-list__item .multicolumn-card {
  position: relative;
}
.section_id_sus_blocks .multicolumn-list__item .multicolumn-card__info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
/*   background: #644ea3; */
  opacity: 0;
  transition: opacity .2s ease;
}
.section_id_sus_blocks .multicolumn-list__item:hover .multicolumn-card__info {
  opacity: 1;
  background: #644ea3;
}
.section_id_sus_blocks .multicolumn-list__item .multicolumn-card__image-wrapper {
  overflow: hidden;
}
.section_id_sus_blocks .multicolumn-list__item:hover .multicolumn-card__image-wrapper .media {
  filter: blur(41px);
  transform: scale(31.5);
}

.section_id_sus_blocks .multicolumn-list__item .multicolumn-card__info p {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.1;
}
/*** Sustainability Block Hover END ***/
  
/*** Image Banner ***/
.banner__media.banner__media_mob {
  display: none;
}
.banner__media.banner__media_mob:before {
  display: none !important;
}
.banner__media.banner__media_mob img {
  position: static !important;
}
@media screen and (max-width: 750px) {
  .banner__media {
    display: none !important;
    
  }
  .banner__media.banner__media_mob {
    display: block !important;
  }
}
/*** Image Banner END ***/
  

/*** Featured Collection Slider ***/
.collection .slider.slider--tablet {
  position: relative;
  flex-wrap: inherit;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-left: 1rem;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}
.collection .slider.slider--tablet .slider__slide {
  margin-bottom: 0;
  padding-bottom: 0;
}
.collection .slider-buttons {
  display: flex;
}
  
.slider-button {
  box-shadow: none !important;
  background: #f7f7f7 !important;
  border-radius: 50% !important; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0 0 0;
  opacity: .5;
}
.slider-button .icon {
  height: 1rem !important;
}
.collection .glide .glide__slide {
  padding: 3px;
  display: flex;
  flex-direction: column;
  height: auto;
}
.glide__arrow--right {
  right: 1.4em;
}
.glide__arrow--left {
  left: 1.4em;
}
/*** Featured Collection Slider END ***/
  
/*** Modal ***/
body.noverflow {
  overflow: hidden;
}
.wmodal {
  display: none;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  width: 100vw;
  min-height: 100vh;
  z-index: 999;
/*   overflow: auto; */
  background: rgb(var(--color-foreground),.5);
}
.wmodal.open {
  display: flex;
}
.wmodal .wmodal-inner {
  width: 500px;
  max-width: calc(100% - 2rem);
  background: #fff;
  padding: 2.9rem;
  border-radius: 11px;
  position: relative;
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border: 4px solid #654ea3;
}
.wmodal .wmodal-inner .wmodal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: inline-block;
  cursor: pointer;
}
.wmodal .wmodal-inner .wmodal-close svg {
  width: 1.8rem;
  height: 1.8rem;
}
.wmodal .wmodal-inner p {
  margin: 0 0 10px 0;
}
.wmodal .wmodal-inner p:last-child {
  margin-bottom: 0;
}
/*** Modal END ***/
  
/*** Video Section ***/
.image-with-text .image-with-text__content {
  align-items: center;
  text-align: center;
}
/*** Video Section END ***/
  
/*** Links ***/
section.link-blocks-section .link-blocks {
  display: flex;
  flex-wrap: wrap;
}
section.link-blocks-section .link-blocks.align_left {
  text-align: left;
}
section.link-blocks-section .link-blocks.align_center {
  text-align: center;
}
section.link-blocks-section .link-blocks.align_right {
  text-align: right;
}
section.link-blocks-section .link-block {
  width: 25%;
  padding-right: 3%;
  margin-bottom: 25px;
}
/*** Links END ***/
  
  /*** Event Card ***/
.blog-events .event.filtered_d,
.blog-events .event.filtered_s {
  display: none;
}
.article-template__hero-container,
.event-card .article-card__image-wrapper {
  position: relative;
}
.event_date {
  position: absolute;
  top: 20px;
  right: 20px;
  text-align: center;
  background: #fff;
  /* padding: 0.6rem; */
  border-radius: 4px;
  overflow: hidden;
}
.event_date .day {
  font-size: 3rem;
  line-height: 1;
  font-weight: 500;
  color: #644ea3;
  padding: 0.4rem 0.6rem;
}
.event_date .month {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  background: #644ea3;
  padding: 0.5rem 0.6rem;
}
/*** Event Card END ***/

/*** Events Page ***/
.blog-events .empty {
  display: none;
  height: 200px;
  align-items: center;
  justify-content: center;
  grid-column: 1 / span 3;
}
.blog-events[data-count="0"] .empty {
  display: flex;
}
  
.blog-header {
  margin-bottom: 3.5rem;
  display: flex;
  gap: 2rem;
}
.blog-header .event-search {
  width: 40%;
}
.blog-header .event-search,
.blog-header .event-dates {
  display: flex;
  border-radius: 4px;
  flex-grow: 1;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground),.35);
}
.blog-header > div > div:not(:last-child) {
  border-right: 1px solid #eee;
}
.blog-header .event-dates select,
.blog-header input {
  border: none;
  box-shadow: none !important;
  border-radius: 0;
}
.blog-header input.field__input {
  padding: 1.5rem;
}
.blog-header .event-icon {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blog-header .event-icon svg {
  height: 2rem;
  width: 2rem;
  color: #654ea3;
  vertical-align: middle;
}
@media (max-width: 540px) {
  .blog-header {
    flex-direction: column-reverse;
    gap: 1.3rem;
  }
  .blog-header .event-search {
    width: 100%;
  }
}
/*** Events Page END ***/


/*** Event Page ***/
.event-page aside .item {
  margin-bottom: 2rem;
  padding: 1.6rem;
  border-radius: 4px;
  background-color: rgba(var(--color-foreground),.04);
}
.event-page aside .item h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}
.event-page aside .info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.event-page aside p {
  margin: 0 0 0 1rem;
  font-size: 1.5rem;
  opacity: 0.9;
}
.event-page aside p a {
  text-decoration: underline;
  color: #644ea3;
}
.event-page aside .icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
/*   top: -1px; */
}
.event-page aside .icon svg {
  height: 2rem;
  width: 2rem;
  color: #654ea3;
  vertical-align: middle;
}
.event-page aside .icon svg path {
  fill: #654ea3;
}
.event-page aside .register {
  width: 100%;
}
/*** Event Page END ***/
  
    
/*** Reviews Slider ***/
.review-blocks .reviews-button {
  margin-top: 2rem;
}
.review-blocks .flickity-viewport {
  background-color: #f7f7f7;
}
.review-blocks .multicolumn-list {
  box-shadow: none !important;
  padding-left: 0;
  padding-right: 0;
}
.review-blocks .multicolumn-list__item {
  width: 33.3333%;
  padding: 0 10px;
/*   margin: 0 0.66665%; */
/*   height: 100%; */
}
.review-blocks .multicolumn-list__item:before,
.review-blocks .multicolumn-list__item:after {
  content: '';
  width: 10px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  height: 1000px;
}
.review-blocks .multicolumn-list__item:after {
  left: initial;
  right: 0;
}
.review-blocks .multicolumn-list__item .multicolumn-card {
  background: none !important;
}
.review-blocks .flickity-page-dots {
  left: 0;
}

@media (min-width: 767px) {
  .review-blocks .flickity-prev-next-button.previous {
    left: -30px;
  }
  .review-blocks .flickity-prev-next-button.next {
    right: -30px;
  }
}
@media (max-width: 768px) {
  .review-blocks .multicolumn-list__item {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .review-blocks .multicolumn-list__item {
    width: 100%;
  }
}
/*** Reviews Slider END ***/

@media (max-width: 768px) {
  .glide__arrows {
    display: none;
  }
}


.collection-hero--white-background {
    background-color: #fff !important;
}
}