/** Shopify CDN: Minification failed

Line 22:32 Cannot use type selector "__marquee-outer" directly after nesting selector "&"
Line 26:3 Cannot use type selector "__heading" directly after nesting selector "&"
Line 31:3 Cannot use type selector "__marquee-outer" directly after nesting selector "&"
Line 35:3 Cannot use type selector "__item" directly after nesting selector "&"
Line 42:3 Cannot use type selector "__logo" directly after nesting selector "&"
Line 49:3 Cannot use type selector "__logo-link" directly after nesting selector "&"
Line 56:3 Cannot use type selector "__logo-image" directly after nesting selector "&"

**/
.press-logo-carousel {
  background-color: var(--background_color);
  color: var(--primary_text);
  overflow: hidden;
  display: block;

  &:has(press-logo.is-disabled) {
    overflow: visible;
  }

  &:has(press-logo.is-disabled) &__marquee-outer {
    overflow: visible;
  }

  &__heading {
    color: var(--primary_text);
    margin-bottom: 1.5rem;
  }

  &__marquee-outer {
    width: 100%;
  }

  &__item {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 0;
  }

  &__logo {
    display: flex;
    align-items: center;
    line-height: 0;
    width: auto;
  }

  &__logo-link {
    display: block;
    line-height: 0;
    color: inherit;
    text-decoration: none;
  }

  &__logo-image {
    display: block;
    width: auto;
    height: 30px;
    max-height: 30px;
    object-fit: contain;
    object-position: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
}

press-logo {
  display: block;
  width: 100%;

  &.is-disabled .press-logo__track {
    animation: none;
    transform: translateX(0);
    width: 100%;
  }

  &.is-disabled .press-logo__viewport {
    justify-content: center;
  }

  &.is-disabled .press-logo__cycle {
    width: 100%;
    justify-content: center;
  }
}

.press-logo-carousel__logo-image {
  height: 30px;
}

.press-logo__viewport {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 30px;
}

.press-logo__track {
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: center;
  width: max-content;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.press-logo__cycle {
  display: flex;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 30px;
  height: 30px;
  /* Prevent whitespace text nodes from adding extra seam spacing */
  font-size: 0;
  line-height: 0;
}


.press-logo__cycle:not(:last-child) {
  margin-right: 30px;
}

@media (max-width: 1024px) {


  press-logo.is-disabled .press-logo__viewport {
    justify-content: flex-start;
  }

  press-logo.is-disabled .press-logo__cycle {
    justify-content: center;
    gap: 30px;
    padding-left: 30px;
  }

  .press-logo-carousel--three-logos press-logo.is-disabled .press-logo__cycle {
    justify-content: space-between;
    gap: 30px;
    padding-left: 0;

  }

}

  .press-logo-carousel__logo,
  .press-logo-carousel__logo-link {
    display: flex;
  }

@media (min-width: 1025px) {

  .press-logo__viewport {
    height: 40px;
  }

  .press-logo__cycle {
    height: 40px;
    gap: 64px;
  }

  .press-logo__cycle:not(:last-child) {
    margin-right: 64px;
  }

  .press-logo-carousel__logo,
  .press-logo-carousel__logo-link {
    line-height: 0;
  }

  .press-logo-carousel__logo-image {
    height: 40px;
    max-height: 40px;
  }
}


press-logo:not(.is-ready) {
  opacity: 0;
}

press-logo.is-ready {
  opacity: 1;
}