@media screen and (max-width: 800px) {
  .container {
    padding: 15px !important;
  }
  .progress-section-label {
    font-size: 0;
    padding: 0 !important;
  }
  .progress-section-label:before {
    font-size: 1rem;
  }
  .progress-label {
    text-align: right !important;
  }
}
.container {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 80px;
}

.container .swiper-button-next, .container .swiper-button-prev {
	top: 35px!important;
    color: var(--wp--preset--color--custom-bdn-blau);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
	z-index: 2!important;
}

.container .swiper-button-next:after, .container .swiper-button-prev:after {
    font-size: 1.8rem;
    aspect-ratio: 1;
}

/* Progress Bars Container */
.progress-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: auto;
  padding: 20px 20px;
  background: #ffffff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border-radius: 12px;
}

.progress-container:after {
  content: "";
  position: absolute;
  width: calc(100% - 40px);
  top: 20px;
  bottom: 80%;
  background: linear-gradient(to right, transparent 24.9%, black 25%, transparent calc(25% + 1px), transparent 49.9%, black 50%, transparent calc(50% + 1px), transparent 74.9%, black 75%, transparent calc(75% + 1px));
  left: 20px;
  right: 20px;
  opacity: 0.25;
  pointer-events: none;
}

.progress-sections {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.progress-therapy-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.progress-section-label {
  box-sizing: border-box;
  width: 25%;
  text-align: center;
  /* border-right: 1px solid black; */
  padding: 0 20px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.progress-section-label.active:before {
  transform: scale(1.3);
}

.progress-section-label:last-child {
  border-right: none;
}

.progress-section-label:before {
  content: "1";
  position: relative;
  aspect-ratio: 1;
  padding: 5px;
  background: #ffe58f;
  border-radius: 50%;
  display: inline-flex;
  align-self: center;
  justify-self: baseline;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.4s ease;
}


.progress-section-label:nth-child(2):before {
  content: "2";
  background: #f0bb77;
}

.progress-section-label:nth-child(3):before {
  content: "3";
  background: #e1925e;
}

.progress-section-label:nth-child(4):before {
  content: "4";
  background: #d36846;
}

.progress-section-label:nth-child(5):before {
  content: "5";
  background: #c43f2d;
}

.progress-fill[data-stage="2"]{
	background: #f0bb77;
}

.progress-fill[data-stage="3"]{
	background: #e1925e;
}

.progress-fill[data-stage="4"]{
	background: #d36846;
}

.progress-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: flex-start;
  flex-direction: column;
  margin-bottom: 10px;
  margin-bottom: 4px;
  border-top: 1px dotted rgba(0, 0, 0, 0.3607843137);
  padding-top: 4px;
}

.progress-therapie-label {
  border-top: 1px solid black;
}

.progress-therapie-label,
.progress-label {
  font-size: 16px;
  text-align: left;
  color: black;
  font-weight: 600;
  padding: 5px 0 10px 0;
  background: white;
  z-index: 2;
}

.progress-label {
  position: absolute;
  left: 12px;
  top: 1px;
  font-size: 12px;
  background: transparent;
}
.progress-label.offset-25 {
  left: calc(25% + 12px);
}
.progress-label.offset-50 {
  left: calc(50% + 12px);
}

.progress-bar {
  height: 22px;
  background: #e0e0e0;
  border-radius: 11px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 50%;
  transition: all 0.4s ease, background-color 0.4s ease;
  border-radius: 20px;
}

/* Colors for Intensity */
.stage-1 {
  background: #ffe58f;
}

.stage-2 {
  background: #f0bb77;
}

.stage-3 {
  background: #e1925e;
}

.stage-4 {
  background: #d36846;
}

#fill-1, #fill-2 {
  width: 33.3333333333%;
}
#fill-1.stage-2, #fill-2.stage-2 {
  margin-left: 33.3333333333%;
}
#fill-1.stage-3, #fill-2.stage-3 {
  margin-left: 66.6666666667%;
}
#fill-1.stage-4, #fill-2.stage-4 {
  width: 0%;
  margin-left: 100%;
}

#fill-6, #fill-7, #fill-8 {
  width: 50%;
}
#fill-6.stage-2, #fill-7.stage-2, #fill-8.stage-2 {
  margin-left: 50%;
}
#fill-6.stage-3, #fill-7.stage-3, #fill-8.stage-3 {
  width: 0%;
  margin-left: 100%;
}
#fill-6.stage-4, #fill-7.stage-4, #fill-8.stage-4 {
  width: 0%;
  margin-left: 100%;
}

#fill-3, #fill-4 {
  width: 0%;
}
#fill-3.stage-2, #fill-4.stage-2 {
  width: 50%;
}
#fill-3.stage-3, #fill-4.stage-3 {
  width: 50%;
  margin-left: 50%;
}
#fill-3.stage-4, #fill-4.stage-4 {
  width: 0%;
  margin-left: 100%;
}

#fill-5 {
  width: 0%;
}
#fill-5.stage-3 {
  width: 50%;
}
#fill-5.stage-4 {
  width: 50%;
  margin-left: 50%;
}

/* 3/5 */
/* Swiper Styles */
.swiper-container {
  position: relative;
  flex-grow: 1;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 60px;
  background: white;
  border-radius: 12px;
}

/*
        .swiper-slide {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            box-sizing: border-box;

            h3 {
                font-size: 24px;
                margin-bottom: 10px;

                &:before {
                    display: inline-flex !important;
                    content: attr(data-stage);
                    position: relative;
                    aspect-ratio: 1;
                    padding: 5px;
                    background: #ffe58f;
                    border-radius: 50%;
                    display: inline-flex;
                    align-self: center;
                    justify-self: baseline;
                    align-items: center;
                    justify-content: center;
                    font-weight: 600;
                    width: 37px;
                    margin-right: 10px;
                }

                &[data-stage="2"]:before {
                    background: #f0bb77;
                    color: white;
                }

                &[data-stage="3"]:before {
                    background: #e1925e;
                    color: white;
                }

                &[data-stage="4"]:before {
                    background: #d36846;
                    color: white;
                }

                &[data-stage="5"]:before {
                    background: #c43f2d;
                    color: white;
                }
            }

        }

        p {
            font-size: 18px;
            margin-bottom: 30px;
        }
*/
/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #000;
  font-size: 24px;
}/*# sourceMappingURL=alzheimer-therapieschema.css.map */