/* Progress bar for Sitzungstermine */
.ar--progressbar {
  width: 100%;
}

.td-progress__intro {
  margin-top: .5em;
}

.td-progress {
  max-width: 100%;
  display: flex;
  align-items: baseline;
  height: 140px;
  padding-right: 38px;
}

.td-progress__rocket {
  position: absolute;
  top: -22px;
  left: 0%;
  transform: translateX(-50%);
  transition: left 500ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.td-progress__rocket .td-progress__rocket_wrap {
  background-color: #ffffff;
  border-radius: 999px;
  border: 3px solid #a71930;
  padding: 8px;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.td-progress__rocket .td-progress__rocket_wrap svg {
  color: #a71930;
}

.td-progress__meta {
  width: 130px;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  padding: 6px 10px;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}
.td-progress__meta span {
  display: inline-flex;
  text-align: center;
}

.td-progress__bar {
  position: relative;
  height: 14px;
  border-top-left-radius: 99px;
  border-bottom-left-radius: 99px;
  background: #eaeaea;
  overflow: visible; /* wichtig für Icons */
  width: 100%;
}

.td-progress__fill {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: #a71930;
  transition: width 500ms ease;
}

.td-progress__flag {
  width: 24px;
}
