.wf-marquee-wrapper {
  padding-top: var(--pad-top);
  padding-bottom: var(--pad-bot);
  overflow: hidden;
  position: relative;
  width: 100%;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.wf-marquee-wrapper.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.wf-marquee-wrapper .marquee-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 50px;
  position: relative;
}
@media screen and (max-width: 749px) {
  .wf-marquee-wrapper .marquee-header {
    margin-bottom: 2.4rem;
  }
}
.wf-marquee-wrapper .marquee-title {
  margin: 0;
}
@media screen and (max-width: 749px) {
  .wf-marquee-wrapper .marquee-title {
    font-size: var(--mobile-title-size);
  }
}
.wf-marquee-wrapper .marquee-toggle-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  border-radius: 50%;
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: absolute;
  right: 29px;
  bottom: 5px;
}
.wf-marquee-wrapper .marquee-toggle-btn:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
.wf-marquee-wrapper .marquee-toggle-btn svg {
  width: 32px;
  height: 32px;
  display: block;
}
.wf-marquee-wrapper .marquee-toggle-btn .icon-play {
  display: none;
}
.wf-marquee-wrapper .marquee-toggle-btn.is-paused .icon-pause {
  display: none;
}
.wf-marquee-wrapper .marquee-toggle-btn.is-paused .icon-play {
  display: block;
}
.wf-marquee-wrapper .marquee-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: default;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black var(--fade-width), black calc(100% - var(--fade-width)), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black var(--fade-width), black calc(100% - var(--fade-width)), transparent 100%);
}
@media screen and (max-width: 749px) {
  .wf-marquee-wrapper .marquee-wrap {
    cursor: grab;
  }
  .wf-marquee-wrapper .marquee-wrap:active {
    cursor: grabbing;
  }
}
.wf-marquee-wrapper .marquee-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: max-content;
  align-items: center;
  gap: var(--gap);
  white-space: nowrap;
  will-change: transform;
}
.wf-marquee-wrapper .marquee-content {
  display: inline-flex !important;
  align-items: center;
  gap: var(--gap);
  flex-shrink: 0 !important;
}
.wf-marquee-wrapper .marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf-marquee-wrapper .marquee-image {
  display: block;
  height: var(--logo-height);
  width: auto;
  object-fit: contain;
  max-width: none !important;
  pointer-events: none;
}
@media screen and (max-width: 749px) {
  .wf-marquee-wrapper .marquee-image {
    height: var(--mobile-logo-height);
  }
}
.wf-marquee-wrapper .marquee-placeholder {
  height: var(--logo-height);
  width: 100px;
  background: #e0e0e0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 749px) {
  .wf-marquee-wrapper .marquee-placeholder {
    height: var(--mobile-logo-height);
  }
}
@media (prefers-reduced-motion: reduce) {
  .wf-marquee-wrapper, .wf-marquee-wrapper .marquee-wrap {
    overflow: visible !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    padding: 0 24px;
  }
  .wf-marquee-wrapper .marquee-track {
    transform: none !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    width: 100% !important;
    white-space: normal !important;
  }
  .wf-marquee-wrapper .marquee-content {
    flex-wrap: wrap !important;
    justify-content: center !important;
    width: 100% !important;
    row-gap: var(--gap) !important;
  }
  .wf-marquee-wrapper .marquee-clone {
    display: none !important;
  }
}
@media screen and (max-width: 749px) {
  .wf-marquee-wrapper.is-stationary-mobile .marquee-toggle-btn {
    display: none;
  }
  .wf-marquee-wrapper.is-stationary-mobile .marquee-wrap {
    cursor: default;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    padding: 0 24px;
  }
  .wf-marquee-wrapper.is-stationary-mobile .marquee-track {
    transform: none !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    width: 100% !important;
    white-space: normal !important;
  }
  .wf-marquee-wrapper.is-stationary-mobile .marquee-content {
    flex-wrap: wrap !important;
    justify-content: center !important;
    width: 100% !important;
    row-gap: var(--gap) !important;
  }
  .wf-marquee-wrapper.is-stationary-mobile .marquee-clone {
    display: none !important;
  }
}
/*# sourceMappingURL=marquee.css.map */
