/* Bilder Galerie Details */
.custom-carousel {
  position: absolute;
  transform: translateY(-50%);
  height: 60px;
  width: 60px;
  line-height: 62px;
  background: #81ed9b;
  transition: all .3s ease;
  margin: 0;
  color: #fff;
  border-radius: 0;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
}

.custom-container {
  max-width: 2000px;
}

.custom-img {
  width: 100%;
  max-width: 100%;
}


.info-section h4 {
  margin-top: 20px;
}

.info-section p, .info-section ul {
  margin-bottom: 10px;
}

.bw-img {
  filter: grayscale(100%);
}

.content-container img {
  width: 100%;
  height: auto;
}


/* faq btn show more */
#show-more-btn {
  position: absolute;
  bottom: 30px;
  right: 40px
}

.d-none {
  display: none;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.accordion-content.show {
  opacity: 1;
}


/* Flatpickr */

/* Custom Flatpickr Styles */
.flatpickr-calendar {
  background-color: #f9f5f6;
  cursor: pointer;
  /* Hintergrundfarbe */
}

.flatpickr-day, .flatpickr-hour, .flatpickr-minute {
  color: #1d2a34;
  /* Textfarbe */
}

/* .flatpickr-day:hover, .flatpickr-hour:hover, .flatpickr-minute:hover {
      background-color: #cccccc; 
  } */

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
  background-color: #81ed9b;
  /* Hintergrundfarbe der ausgewählten Tage */
  color: white;
  /* Textfarbe der ausgewählten Tage */
}

.flatpickr-time {
  border-bottom: 1px solid #81ed9b;
  cursor: pointer;
}

.flatpickr-time input {
  color: #fff;
}

.flatpickr-confirm {
  padding: 1rem;
}

.flatpickr-confirm:hover {
  cursor: pointer;
}



