/* Marquee Component */
.marquee-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1060;
  transition: .3s ease-in-out;
}

.marquee {
  height: 36px;
  width: 180%;
  border: 1px solid #eed;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
}

.marquee--inner {
  display: block;
  width: 2000%;
  margin: 3px 0;
  position: absolute;
  animation: 20s linear infinite marquee;
}

.marquee--inner:hover {
  animation-play-state: paused;
}

.marquee--inner span {
  float: left;
  width: 100%;
}

.marquee--inner span img {
  width: 20px;
}

.marquee--inner span .orb p {
  font-family: manrope;
  font-size: var(--font-size-14);
}

.marquee--inner span .orb p:nth-child(2) {
  font-weight: 800!important;
  margin: 0 8px;
}

.marquee--inner span .orb p:nth-child(3) {
  margin: 0 8px;
}

@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

.orb {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 37.7px;
  float: left;
  position: relative;
}

.orb::after {
  content: "";
  position: absolute;
  right: -34px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #efeaea;
}

.orb:hover {
  cursor: pointer;
}
