/* marquee div container */
.nexus-gym-marquee {
  height: 30px;
  overflow: hidden;
  position: relative;
  font-family: ;
}
/* nested div inside the container */
.nexus-gym-marquee div {
  display: block;
  width: 200%;
  position: absolute; 
  overflow: hidden;
  animation: marquee 50s linear infinite;
}
/* span with text */
{#
.nexus-gym-marquee span {
  float: left;
  width: 50%;
}
#}

.nexus-gym-marquee .hs_cos_wrapper_type_icon svg {
  padding: 0 10px;
}

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