.dynht-bar {
  --dynht-speed: 50s;
  --dynht-shift: 0px;
  --dynht-gap: 40px;
  --dynht-sep-size: 14px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.elementor-widget-dynht_header_ticker,
.elementor-widget-dynht_header_ticker > .elementor-widget-container {
  overflow: hidden !important;
  max-width: 100%;
  width: 100%;
}

.dynht-bar.is-full-width {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
}

.dynht-bar.is-sticky {
  position: sticky;
  top: 0;
  z-index: 9999;
}

.dynht-bar__link {
  display: block;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.dynht-bar__link:hover,
.dynht-bar__link:focus {
  color: inherit;
  text-decoration: none;
}

.dynht-track-wrap {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 10px 0;
  box-sizing: border-box;
}

.dynht-bar.has-edge-fade .dynht-track-wrap {
  mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}

.dynht-track {
  display: flex;
  align-items: center;
  width: max-content;
  flex-wrap: nowrap;
  animation: dynht-scroll var(--dynht-speed) linear infinite;
  will-change: transform;
}

.dynht-track.is-reverse {
  animation-name: dynht-scroll-reverse;
}

.dynht-bar.is-paused:hover .dynht-track,
.dynht-bar.is-paused:focus-within .dynht-track {
  animation-play-state: paused;
}

.dynht-group {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  flex-shrink: 0;
  gap: var(--dynht-gap);
  padding-right: var(--dynht-gap);
  white-space: nowrap;
}

.dynht-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.dynht-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--dynht-sep-size);
  line-height: 1;
}

.dynht-item__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.dynht-item.is-highlight {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #00d4ff;
}

.dynht-separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.7;
  font-size: var(--dynht-sep-size);
  line-height: 1;
  user-select: none;
}

.dynht-separator svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.dynht-separator--image img {
  display: block;
  width: var(--dynht-sep-size);
  height: var(--dynht-sep-size);
  object-fit: contain;
}

@keyframes dynht-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(var(--dynht-shift) * -1), 0, 0);
  }
}

@keyframes dynht-scroll-reverse {
  from {
    transform: translate3d(calc(var(--dynht-shift) * -1), 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 767px) {
  .dynht-track-wrap {
    padding: 9px 0;
  }

  .dynht-item {
    font-size: 12px;
  }

  .dynht-bar {
    --dynht-gap: 28px;
    --dynht-sep-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dynht-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .dynht-group + .dynht-group {
    display: none;
  }

  .dynht-group {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    padding-right: 0;
  }

  .dynht-item {
    white-space: normal;
  }
}
