.catalognotice-safe-zone {
  align-items: center;
  background: #fff;
  contain: layout style;
  display: flex;
  gap: 7px;
  min-height: 27px;
  padding: 5px 12px 11px;
  padding-left: 18px;
  padding-right: 18px;
}

.catalognotice-dots {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 2px;
}

.catalognotice-dot {
  background: #e9e9e9;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 6px;
  padding: 0;
  transform: scaleY(1);
  transform-origin: center;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  width: 2.5px;
}

.catalognotice-dot.catalognotice-active {
  background: #c9a646;
  transform: scaleY(0.417);
}

.catalognotice-messages {
  flex: 1;
  height: 18px;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.catalognotice-slide {
  color: #6e6e73;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  left: 0;
  letter-spacing: -0.24px;
  line-height: normal;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  text-overflow: ellipsis;
  top: 0;
  transition: opacity 0.5s ease;
  white-space: nowrap;
  width: 100%;
}

.catalognotice-slide.catalognotice-slide-active {
  opacity: 1;
}

.catalognotice-text {
  background: linear-gradient(90deg,
      #537da8,
      #9fbee0,
      #efe2ad,
      #c9a646,
      #c9a646);
  -webkit-background-clip: text;
  background-size: 220% 220%;
  -webkit-text-fill-color: transparent;
  animation: catalognotice-gradient 6.5s ease-in-out infinite;
  background-clip: text;
}

@keyframes catalognotice-gradient {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  to {
    background-position: 0 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalognotice-dot {
    transition: none;
  }

  .catalognotice-slide {
    transition: none;
  }

  .catalognotice-text {
    animation: none;
  }
}

@media (max-width: 380px) {
  .catalognotice-safe-zone {
    min-height: 26px;
    padding-bottom: 10px;
    padding-top: 5px;
  }

  .catalognotice-slide {
    font-size: 13px;
  }
}
