.winners__wrap {
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
}
.winners__title {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
  padding: 8px;
  border-radius: 4px 0 0 4px;
}
.winners__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding-left: 100%;
  animation: scroll linear infinite;
  width: max-content;
}
.winners__item {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
  margin-left: 25px;
}
.winners__item img {
  margin-right: 5px;
}
.winners__item span {
  margin-right: 5px;
  font-weight: 800;
}
.winners__line {
  display: flex;
  align-items: center;
  flex: 1 1;
  width: 100%;
  overflow: hidden;
  border-radius: 0 4px 4px 0;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*# sourceMappingURL=winners.css.map */
