@media (max-width: 1140px) {
  .roller-wrapper{
    margin-left: -12px;
    margin-right: -12px;
  }
}

.tdgt-wrap{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border-radius: 6px;
  background: transparent;
  margin-top: 18px;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 12px;
}

body.td-dark-mode .tdgt-wrap{
  background: rgba(255,255,255,.08);
}

.tdgt-label{
  flex: 0 0 auto;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
  background-color: #cc2e2e;
  color: #fff;
  padding: 0px 6px;
  border-radius: 6px;
}

.tdgt-label a{
  color: inherit;
  text-decoration: none;
}

.tdgt-track{
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
}

.tdgt-marquee{
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: tdgt-scroll var(--tdgt-speed, 45s) linear infinite;
}

.tdgt-marquee-inner{
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.tdgt-link{
  color: inherit;
  text-decoration: none;
}

.tdgt-link:hover{
  text-decoration: underline;
}

.tdgt-sep{
  opacity: .7;
  padding: 0 10px;
}

.tdgt-time{
  opacity: .75;
  margin-right: 6px;
  font-variant-numeric: tabular-nums;
}

/* pause on hover (desktop) */
.tdgt-wrap:hover .tdgt-marquee{
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}

/* move exactly one copy width (because there are two identical copies) */
@keyframes tdgt-scroll{
  0%{transform: translateX(0)}
  100%{transform: translateX(-50%)}
}