/* decorative line */
.doctor-carousel-wrapper .decorator-line {
  /* position: relative; */
  background-color: #37afb9;
  width: 60px;
  height: 3px;
  right: 171px;
}

/* indicator dots */
.doctor-carousel-wrapper .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #dcdad5;
  border: none;
  opacity: 1;
}
.doctor-carousel-wrapper .carousel-indicators button.active {
  background-color: #00a09b;
}

/* “alle Ärzte” button */
.alle-aerzte-button {
  background-color: transparent;
  color: #00a99d;
  border: 3px solid #00a99d;
  border-radius: 8px;
  padding: 15px 40px;
  font-size: 28px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}
.alle-aerzte-button:hover {
  background-color: #00a99d;
  color: #fff;
}
.bg-arzt {
  background-color: #004164;
}
/* arrows */
.doctor-carousel-arrows .btn-svg-arrow {
  line-height: 1;
}
.doctor-carousel-arrows .carousel-arrow-svg {
  width: 52px;
  height: auto;
  fill: #00a09b;
  transition: transform 0.2s ease-in-out;
}
.doctor-carousel-arrows button[data-bs-slide="prev"] .carousel-arrow-svg {
  transform: rotate(180deg);
}
.doctor-carousel-arrows .btn-svg-arrow:hover .carousel-arrow-svg {
  transform: scale(1.1);
}
.doctor-carousel-arrows button[data-bs-slide="prev"]:hover .carousel-arrow-svg {
  transform: rotate(180deg) scale(1.1);
}

.doctor-carousel-responsive .carousel-inner {
  display: flex;
}
.doctor-carousel-responsive .carousel-item {
  display: block;  
  flex: 0 0 100%; 
}


/* Mobile adjustments */
@media (max-width: 992px) {
  .doctor-carousel-wrapper .decorator-line {
    position: relative;
    background-color: #37afb9;
    width: 60px;
    height: 3px;
    right: 195px !important;
  }

  .doctor-carousel-wrapper .d-block.d-md-none .alle-aerzte-button {
    display: block;
    width: 100%;
    padding: 5px 15px;
    box-sizing: border-box;
    text-align: left;
    font-size: 21px;
  }

    .doctor-carousel-responsive .carousel-item {
    flex-basis: 50%; 
  }
}
