 .icon 
{
	height:20px
}

/* Hauptcontainer */
.custom-dropdown {
  position: relative;
  width: 48px;
  font-family: Arial, sans-serif;
  cursor: pointer;
  user-select: none;
}

/* Der ausgewählte Bereich & die einzelnen Optionen */
.dropdown-selected, .dropdown-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border: 1px solid #ccc;
  background-color: #aaa;
}

.dropdown-selected {
  border-radius: 4px;
}

/* Die Optionen-Liste */
.dropdown-options {
  display: none; /* Standardmäßig unsichtbar */
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
}

/* Hover-Effekt für Optionen */
.dropdown-option:hover {
  background-color: #f0f0f0;
}

/* Klasse zum Einblenden via JavaScript */
.custom-dropdown.open .dropdown-options {
  display: block;
}



 
 .img-box {
        height: 100%;
    }
	
	 
    .img-box img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
	
	* {
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.overlay-wrapper {
    position: relative;
}

.overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)  ;
    background: rgba(255, 255, 255, 0.6); /* heller halbtransparenter Hintergrund */
    padding: 10px;
    border-radius: 8px;
	height:100%;
	width:100%;
 
}

.overlay-icon2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)  ;
    
    padding: 10px;
    border-radius: 8px;
 
}

.overlay-icon img {
    width: 40px;   /* Bild kleiner */
    height: auto;  /* Proportionen bleiben */
}


.carousel-indicators [data-bs-target] {
    width: 120px;        /* Länge der weißen Linie */
    height: 10px;        /* Höhe der Linie */
    background-color: rgba(255,255,255,0.8); /* Weiß, leicht transparent */
    border-radius: 5px; /* Abgerundete Ecken */
}

.carousel-indicators .active {
    background-color: #fff; /* Aktiver Balken komplett weiß */
}

 
.carousel-indicators
{
	 awidth: 100px;
	 background-color:rgba(125,125,125,0.2);
	  border-radius: 3px; /* Abgerundete Ecken */
}

 :root {
    --bs-border-radius: 2rem;
}
 .carousel-item {
    position: relative; /* wichtig für Overlay */
}

.carousel-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.7);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    z-index: 10;
    backdrop-filter: blur(4px); /* optional, sehr edel */
}

.carousel-overlay h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.carousel-overlay a {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
}


.carousel-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-item:hover .carousel-overlay {
    opacity: 1;
}
.carousel-control-prev,.carousel-control-next
{
	background-color:rgba(255,255,255,0.0);
	width:3%;
}

.carousel-control-prev:hover,.carousel-control-next:hover
{
	 background-color:rgba(125,125,125,0.2);
	
}