.onemo-tags{
  position: relative;
  overflow: hidden;
}

.onemo-tags-gradient{
  position: absolute;
  z-index: 2;
  height: 50%;
  width: 100%;
}
.onemo-tags-gradient-top{
  background: linear-gradient(#fff, rgba(255,255,255,0.9), rgba(255,255,255,0.75), rgba(255,255,255,0.001));
}
.onemo-tags-gradient-bottom{
  bottom: 0;
  background: linear-gradient(rgba(255,255,255,0.001), #fff);
}

.onemo-tag{
  position: absolute;
  z-index: 1;
  top: 100%;
  white-space: nowrap;
  transition: top 10s linear;
  /* text-shadow: 0px 0px 2px #fff; */
  text-shadow: 0px 2px 5px rgba(255,255,255,1);
  color: #555;
  background: radial-gradient(circle at center, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 70%),
            rgb(255, 255, 255, 0);
  border-radius: var(--radius);
  padding: 15px;
}
.onemo-tag-animate{
  top: -10% !important;
}

#tagsup-demo{
  width: 100%;
  max-height: 100%;
  height: 160px;
  margin: 0 auto;
  margin-top: -25px;
  z-index: 1;
}