﻿.karussel {
    display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	}
.slideshow {
    box-shadow: 0px 0px 10px gray;
    border-radius: 20px;
    position: relative;
	}
	
.slide  {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s;
	}
	
.slide-bild  {
    width: 100%;
    	}
    	
.slide-textbereich  {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #33CCFF;
    text-align: center;
    font-family: sans-serif;
    padding: 0 15% 0 15%;
       	}
.slide-ueberschrift  {
    margin: 10px 0;
    	}
.slide-beschreibung  {
    margin: 0;
    	}
.pfeil-hover  {
    color: white;
    background-color: #33CCFF;
            }
a.pfeil {
    color: #33CCFF;
    background-color: transparent;
        }
.pfeil  {
     position:absolute;
     top: 0;
     bottom: 0;
     display: flex;
     justify-content: center;
     align-items: center;
     width: 15%;
     color: #33CCFF;
     user-select: none;
     cursor: pointer;  	
     }
.pfeil-links  {
     left: 0;
        	}
        	
.pfeil-rechts  {
     right: 0;
        	}

.indikatoren-liste  {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     color: #33CCFF;
     list-style-type: none;
     display: flex;
     justify-content: center;
     margin: 0;
     padding: 0;
      }         
.indikator  {
     padding: 0 10px;
     color: #33CCFF;
     user-select: none;
     cursor: pointer;
     opacity: 0.4;
     transition: opacity 1s;
        	}
 
.aktiv  {
     opacity: 1;
        	}
            
@media only screen and (min-width:1000px){
    .karussel {
        width:100%;
        height: 50vh;
        padding-bottom: 3%;
    }
    .slideshow {
        width: 78vw;
        height: 50vh;
    }
    .pfeil  {
        font: bold 40px Arial, sans-serif;
    }
    .slide-textbereich  {
        top: 65%;
    }
    .slide-ueberschrift  {
        font-size: 2em;
            }
    .slide-beschreibung  {
        font-size: 1,4em;
    }
    .indikatoren-liste  {
        font-size: 40px;
            }     
}

@media only screen and (min-width:499px) and (max-width:999px){
    .karussel {
        width:100%;
        height: 30vh;
        padding-bottom: 0%;
    }
    .slideshow {
        width: 78vw;
        height: 30vh;
    }
    .pfeil  {
        font: bold 30px Arial, sans-serif;
    }
    .slide-textbereich  {
        top: 60%;
    }
    .slide-ueberschrift  {
        font-size: 0,5em;
            }    
    .slide-beschreibung  {
        font-size: 0,2em;
            }
    .indikatoren-liste  {
        font-size: 30px;
            } 
}

@media only screen and (max-width:498px){
    .karussel {
        width:100%;
        height: 30vh;
        padding-bottom: 0;
    }
    .slideshow {
        width: 100vw;
        height: 30vh;
    }
    .pfeil  {
        font: bold 20px Arial, sans-serif;
    }
    .slide-textbereich  {
        top: 50%;
    }
    .slide-ueberschrift  {
        font-size: 0,5em;
            }
    .slide-beschreibung  {
        font-size: 0,2em;
            }
    .indikatoren-liste  {
        font-size: 20px;
            } 
   
}
