.body-progressbars {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin: 3.3% 1.2%;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  color: var(--akzent);
  font-size: 9px;
  margin-bottom: -25px;
}

.body-progressbar {
  width: 40%;
  height: 35px;
  background: #efefef66;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  font-family:  'Roboto', sans-serif;
  text-transform: uppercase;
  color: var(--banner-color);
  font-size: 9px;
  margin-bottom: -25px;
  position: relative;
}

.body-progressbar-left {
  background: #efefefb3;
  height: 35px;
  padding: 0px;
  box-sizing: border-box;
  font-family:  'Roboto', sans-serif;
  text-transform: uppercase;
  font-size: 9px;
  min-width: 0%;
  left; 0;
}

.body-progressbar-right {
  margin: 0px;
  min-width: 0%;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    height: 100%;
    background: transparent;
}

.left {
    left: 0;
    justify-content: flex-start;
}

.right {
    right: 0;
    justify-content: flex-end;
}