/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 11 2026 | 00:09:38 */
.promo-topbar {
  background: inherit !important;
  color: inherit !important;
  font-size: inherit;
  line-height: inherit;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

.promo-topbar__desktop {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  min-height: auto;
}

.promo-topbar__mobile {
  display: none;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  padding: 0;
   min-height: auto;
}

.promo-topbar__track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  width: max-content;
  margin: 0;
  padding: 0;
  animation: promoScroll 22s linear infinite;
}

.promo-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  line-height: inherit;
}

.promo-topbar__icon {
  width: 15px;
  height: 15px;
  min-width: 15px;
  color: currentColor;
  flex-shrink: 0;
}

.promo-topbar__sep {
  opacity: 0.6;
  margin: 0 8px;
  padding: 0;
}

@keyframes promoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .promo-topbar__desktop {
    display: none;
  }
	.promo-topbar{
		 max-height: 5px !important;
	}

  .promo-topbar__mobile {
    display: block;
  }

  .promo-topbar__track {
    animation-duration: 28s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-topbar__track {
    animation: none;
  }
}