.agenda-ticker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.4;
}

.agenda-ticker-label {
  background-color: #032be7;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-flex;
  margin-right: 12px;
  align-items: center;
    gap: 8px;
  white-space: nowrap;
}
.agenda-ticker-icon {
  font-size: 16px;
  line-height: 1;
}

.agenda-ticker-items {
  position: relative;
  display: inline-block;
  height: 1.5em;
 min-width: 300px;

}

.agenda-ticker-item {
  position: absolute;
  left: 0;
  top: 2px;
  opacity: 0;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.4;
  transition: opacity 0.5s ease;
    font-weight: normal !important;
}

.agenda-ticker-item.visible {
  opacity: 1;
}
.agenda-ticker-label,
.agenda-ticker-item {
  font-family: 'Craftidia-Medium', sans-serif !important;
}
@media screen and (max-width: 600px) {
  .agenda-ticker {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .agenda-ticker-label {
    font-size: 15px;
    padding: 6px 12px;
    border-radius: 6px;
  }

  .agenda-ticker-items {
    min-width: 100%;
    padding-bottom: 0 !important;
   margin-bottom: 0 !important;
  }

  .agenda-ticker-item {
    font-size: 14px;
    text-align: left;
    margin-bottom: 0 !important;
  }
}
.agenda-ticker-icon svg {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
}
