@font-face {
  font-family: BizzoCategoryIcons;
  src: url("../img/categories/donor-icons.woff") format("woff");
  font-display: block;
}
.category-ribbon {
  overflow: hidden;
  width: 100%;
  margin: 0 0 16px;
  background: linear-gradient(110deg, #182b47, #2b1d3b 58%, #182b47);
  border-radius: 7px;
  border-block: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, #e7bb13, transparent) 1;
}
.category-ribbon-track {
  display: flex;
  width: max-content;
  animation: category-ribbon-scroll 48s linear infinite;
}
.category-ribbon-group {
  display: flex;
  flex: 0 0 auto;
}
.category-ribbon .category-ribbon-link {
  position: relative;
  display: flex;
  flex: 0 0 144px;
  width: 144px;
  min-height: 70px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 23px 12px 12px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.3;
}
.category-ribbon-link > span:last-child {
  max-width: 66px;
}
.category-ribbon-link::after {
  content: "";
  position: absolute;
  right: 0;
  width: 18px;
  height: 3px;
  background: linear-gradient(
    90deg,
    #bd9620 0 30%,
    transparent 30% 45%,
    #fdd009 45% 60%,
    transparent 60% 75%,
    #bd9620 75%
  );
  transform: scaleY(0.5);
}
.category-ribbon-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
#bizzo-site #content .category-ribbon-glyph {
  font: 26px/1 BizzoCategoryIcons;
  font-family: BizzoCategoryIcons !important;
  width: 26px;
  flex-shrink: 0;
  text-align: center;
}
.category-ribbon-link:hover,
.category-ribbon-link:focus-visible {
  color: #ffcf19;
  background: #ffffff08;
}
.category-ribbon-link:focus-visible {
  outline: 2px solid #ffcf19;
  outline-offset: -4px;
}
.category-ribbon:focus-within .category-ribbon-track {
  animation-play-state: paused;
}
@media (hover: hover) {
  .category-ribbon:hover .category-ribbon-track {
    animation-play-state: paused;
  }
}
@keyframes category-ribbon-scroll {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .category-ribbon {
    overflow-x: auto;
  }
  .category-ribbon-track {
    animation: none;
  }
  .category-ribbon-group[aria-hidden] {
    display: none;
  }
}
