.fscomp-top-bar {
  background: var(--fs-top-bar-bg, #cf2d72);
  border-top: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--fs-top-bar-border, #cf336e), transparent 55%);
  width: 100%;
  position: relative;
  z-index: 120;
  box-sizing: border-box;
  overflow: hidden;
}

.fscomp-top-bar__inner {
  padding: var(--fs-top-bar-py, 10px) 0;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
}

.fscomp-top-bar__text,
.fscomp-top-bar__link {
  align-items: center;
  color: var(--fs-top-bar-color, #ffffff);
  display: inline-flex;
  font-size: var(--fs-top-bar-font-size, 14px);
  font-weight: 700;
  gap: clamp(2.5rem, 7vw, 6rem);
  justify-content: flex-start;
  letter-spacing: 0.04em;
  line-height: 1.25;
  min-width: max-content;
  padding-inline-start: 100%;
  text-decoration: none;
  text-transform: uppercase;
  animation: fscomp-top-bar-marquee 22s linear infinite;
}

.fscomp-top-bar__link:hover {
  animation-play-state: paused;
  text-decoration: none;
}

.fscomp-top-bar__text span,
.fscomp-top-bar__link span {
  white-space: nowrap;
}

.fscomp-top-bar.is-fixed {
  position: fixed;
  top: var(--fscomp-admin-bar-offset, 0px);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}

body.fscomp-has-fixed-top-bar {
  padding-top: var(--fscomp-top-bar-offset, 0px);
}

@keyframes fscomp-top-bar-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fscomp-top-bar__text,
  .fscomp-top-bar__link {
    animation: none;
    justify-content: center;
    min-width: 100%;
    padding-inline: 16px;
    text-align: center;
  }

  .fscomp-top-bar__text span:not(:first-child),
  .fscomp-top-bar__link span:not(:first-child) {
    display: none;
  }
}

body.admin-bar .fscomp-top-bar.is-fixed {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .fscomp-top-bar.is-fixed {
    top: 46px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .fscomp-top-bar {
    border-bottom-width: 1px;
  }

  .fscomp-top-bar__inner {
    padding-block: 8px;
  }

  .fscomp-top-bar__text,
  .fscomp-top-bar__link {
    font-size: 12px;
    line-height: 1.3;
  }
}

/* MOBILE MUY CHICO */
@media (max-width: 480px) {
  .fscomp-top-bar__inner {
    padding-block: 7px;
  }

  .fscomp-top-bar__text,
  .fscomp-top-bar__link {
    font-size: 11px;
    line-height: 1.25;
  }
}
