.running-line {
  position: relative;
  background-color: #3f4041;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  box-sizing: border-box;
  padding-block: 7px;
}
.running-line__body {
  display: flex;
  align-items: center;
}
.running-line__list {
  display: flex;
  align-items: center;
  gap: 100px;
}
.running-line__item {
  display: flex;
  align-items: center;
  gap: 14px;
  pointer-events: none;
  user-select: none;
}
.running-line__item span {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}
.running-line__item span svg {
  width: 100%;
  height: 100%;
  color: #fff;
}
.running-line__item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.24;
  color: #fff;
}

/*

@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}*/