.harmony-jackpot-widget-title {
  max-width: 80%;
  padding: 0 5px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(var(--b-sc), 1);
  background: rgba(var(--b), 1);
}
.hm-row-bc.has-Ortak-Widget {
  overflow: hidden;
  position: relative;
}
.layout-header-holder-bc .harmony-jackpot-widget-title {
  display: none;
}
.layout-header-holder-bc .running-line-wrapper {
  border-bottom: 1px solid rgba(var(--hero));
}
.layout-content-holder-bc .hm-row-bc.has-Ortak-Widget {
  padding-top: 8px;
}
.layout-content-holder-bc .running-line-wrapper {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-style: solid;
  border-image: radial-gradient(
      50% 50% at 50% 50%,
      rgba(var(--hero), 1) 0%,
      rgba(var(--hero), 0.2) 100%
    )
    1;
}
.running-line {
  display: flex;
  align-items: center;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: backwards;
}
[dir="ltr"] .running-line {
  animation-name: running-line-LTR;
}
[dir="rtl"] .running-line {
  animation-name: running-line-RTL;
}
@keyframes running-line-LTR {
  0% {
    transform: translate(5%);
  }
  to {
    transform: translate(-100%);
  }
}
@keyframes running-line-RTL {
  0% {
    transform: translate(-5%);
  }
  to {
    transform: translate(100%);
  }
}
.running-line-item {
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.running-line-item + .running-line-item:before {
  content: "";
  font-family: BetConstruct-Icons, sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: rgba(var(--hero), 1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
[dir="ltr"] .running-line-item + .running-line-item:before {
  left: -7px;
}
[dir="rtl"] .running-line-item + .running-line-item:before {
  right: -7px;
}
.running-line-item-label {
  font-size: 14px;
  white-space: nowrap;
  color: rgba(var(--b-sc), 0.8);
  letter-spacing: 1px;
}
.running-line-item-value {
  font-size: 14px;
  white-space: nowrap;
  color: rgba(var(--b-sc), 1);
  margin-inline-start: 5px;
}
.harmony-jackpot-widget-title {
  font-size: 14px;
  line-height: 18px;
}
.running-line-item:hover {
  cursor: pointer;
}
