/* Sprechblasen */

.mySlides {display:none}
.w3-left, .w3-right, .w3-badge {cursor:pointer}
.w3-badge {height:17px;width:17px;padding:0}



/* Pinnwand */

  
 .accordion {
      width: 100%; 
      border: 1px solid #ccc;
      border-radius: 5px;
	  margin-top: 10px;
      overflow: hidden;
	   background-color: white;
      color: black;
    }

    /* Header mit Fade + Zoom */
    .accordion-header {
      background-color: #e0e0e0;
	  color:black;
      padding: 15px;
	  font-size: 20pt;
      font-weight: bold;
      user-select: none;
      transition:   opacity .8s ease;
      opacity: 1; 
    }

    .accordion-header.fade-out {
      opacity: 0; 
    }

    .accordion-header.fade-in {
      opacity: 1; 
    }

    /* Content Fade */
    .accordion-content {
      padding: 15px;
      height: 300px;
      overflow-y: auto;
      opacity: 1;
      transition: opacity .8s ease;
    }

    .accordion-content.fade-out {
      opacity: 0;
    }
	
	/* Create 3 unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left; 
  min-width: 360px;  
  max-width: 360px;  
  background-color: #000000;
  padding-left: 0px;
  padding-right: 10px;
}
/* re column */
.rightcolumn {   
  float: right; 
  background-color: #000000;
  padding : 0px; 
}   
 
.cardPinnwandMini {
  background-color: #000000;
  padding: 0px;
  margin-top: 10px;
  margin-bottom: 0px;
} 

.card {
  background-color: #000000;
  padding: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
} 

.rightcolumn:after {
  content: "";
  display: table;
  clear: both;
}
 

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
  
  
  
  
  
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} 
 

.sidenav {
  height: 100%;
  width: 0; 
  background-color: #111;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  overflow-x: hidden;
  padding-top: 70px;
  transition: 0.6s;

}
.sidenav a {
  padding: 9px 9px 9px 33px;
  text-decoration: none;
  font-size: 22px;
  color: #f1f1f1;
  display: block;
  transition: 0.4s;
  border-bottom: 0px solid #f1f1f1;
  
}


.sidenav a:hover{
  background:#f1f1f1;
}


.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 32px;
  margin-left: 30px;
}
 


.button {
  background-color: #4E4E4E;  
  border: none;
  color: white;
  padding: 12px 12px ;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 47%; 
}  
.buttonOS  {
  background-color: #4E4E4E;  
  border: none;
  color: white;
  padding:  2px  9px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  border-radius: 50%; 
}  
.buttonSettings {
  background-color: #4E4E4E;  
  border: none;
  color: white;
  padding:  2px  9px;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  border-radius: 0%; 
} 
.buttonCOLOR {
  background-color: #4E4E4E;  
  border: none;
  color: white;
  padding:  2px  10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  border-radius: 50%; 
} 



.buttonStartOkHover {
  display: inline-block;
  padding:  20px 20px;
  font-size: 28px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color:rgb(120,120,120);
  border: none;
  border-radius: 50px;
  box-shadow: 0 9px #999;
}

.buttonStartOkHover:hover {background-color:rgb(180,180,180) }  

.buttonStartOkHover:active {
  background-color: rgb(120,120,120);
  box-shadow: 0 5px #666;
  transform: translateY(4px);  
}



.buttonUPD {
  display: inline-block;
  padding: 2px  2px 2px  2px;
   
  cursor: pointer; 
  outline: none;
  color: #fff;
  background-color: #444;
  border: 0px;
  border-radius: 2px;
  box-shadow: 6px 9px #666;
}

.buttonUPD:hover {background-color: #444}

.buttonUPD:active {
  background-color: #444;
  box-shadow: 4px 4px #222;
  transform: translateY(8px);
}
 

.tooltipUPD {
 position: relative;
 display: inline-block;
}

.tooltipUPD .tooltiptextUPD {
 visibility: hidden;
 width:98px;
 font-size: 20px;
 background-color: #eee;
 color: #333;
 text-align: center;
 padding: 5px 0;
 border-radius: 2px;

 /* Position the tooltip text */
 position: absolute;
 z-index: 1;
}

.tooltipUPD:hover .tooltiptextUPD {
 visibility: visible;
 opacity: 1;
}
.tooltip {
  position: relative; 
  display: inline-block;
  border-bottom: 0px dotted grey;
  color: #505050;
}

.tooltip .tooltiptext {
  visibility: hidden;
  position: absolute;
  width: 180px;
  background-color: #FFF;
  color: #000;
  text-align: center;
  padding: 2px;
  border-radius: 5px;
  z-index: 1;
  opacity: 0;
  transition: opacity .6s;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
 
.tooltip .tooltiptextUpdates {
  visibility: hidden;
  position: absolute;
  width: 200px;
  background-color: #DDD;
  color: #000;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  z-index: 1;
  opacity: 0;
  transition: opacity .6s; 
  top: 130px;
}
 .tooltip:hover .tooltiptextUpdates {
  visibility: visible;
  opacity: 1;
}
 
.tooltip-top {
  bottom: 90%;
  margin-left: -60px;
}
.tooltip-top-details-image {
  top:  0%;
  margin-left: 0%;
  left: -0px;
}

.tooltip-left {
  top: -5px;
  right: 128%;
}

.tooltip-bottom {
  top: 100% margin-left: -60px;
}

.tooltip-right {
  top: -5px;
  left: 125%;
}
.tooltip-rightLiteratur  {
   width: 180px; 
   left:  50px;
    
}
.tooltip-leftPinnwandOpts {
  top: -15px;
  left:  40px;
  right:  28%;
  width:100px;
  margin-left: 0%;
}
.tooltip-rightTopPinnwandOpts {
  bottom: 90%;
  margin-left: -140px;
}
.tooltip-portrait {
  top: -5px;
  left: 0%;
}
.tooltip-referenzBuch2Postit {
  top:  50px;
  left: 0%;
  margin-left: -150px;
}


/* Literatur */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  padding: 0px;
  background: #000000;
  color: #FFFFFF;
}
   
body, html {height: 100%}

/* Create 3 unequal columns that floats next to each other */
/* Left column */
.literaturLeft {   
  float: left;
  width: 5%;
  background-color: #000000;
  padding-left: 0px;
}
/* right column */
.literaturRight {   
  float: left;
  width: 95%; 
  background-color: #000000;
  padding-left: 10px;
}   
/* Add a card effect for articles */
.cardLiteratur {
  background-color: #000000;
  padding: 5px;
  margin-top: 10px;
   
} 
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
 
/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .literaturLeft, .literaturRight     {   
    width: 100%;
    padding: 0;
  }
}
 
 
 
kritik {
  background-color: #e2e2e2;
  color: rgb(0,0, 0);
}
kritik_zeit {
  background-color: #ededed; 
  color: rgb(0,0, 0);
}
kritik_retro {
  background-color: #ddcfdd; 
  color: rgb(0,0, 0);
}

 
fl {
  background-color: #e2e2ff;
  color: rgb(0,0, 0);
}
person { 
} 
zitat1 {
  background-color: rgb(255,255, 200);
   color: rgb(0,0, 0);
} 
yellow {
  background-color: rgb(255,255, 200);
  color: rgb(0,0, 0);
}   

red {
  background-color: rgb(255,255, 255);
  color: rgb(255,0, 0);
}  
white {
  background-color: rgb(255,255, 255);
  color: rgb(0,0, 0);
}

tab_style{
	background-color: #f1f1f1;
  	color: rgb(0,0, 0);		
}


span_zitat_neu {
  color:rgb(0,0, 0);
  background-color:rgb(255,255, 0);
}
 
span_content_neu {
	color:rgb(255,255, 255);
  background-color:rgb(255,0, 0);
}
buchreferenz_postit {
	color:rgb(0,0, 0);
  background-color:rgb(255,255, 0);
} 

.h4ohneAbstand { 
	 padding: 0px  0px 0px  0px;
	  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 10px;
  margin-right: 0px;
}
 
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fading-element {
  animation: fade 1.5s ease-out forwards;
}




span_red {
	color:rgb(255,0, 0);
  background-color:rgb(0,0, 0);
}


span_orange {
	color:rgb(255,128, 39);
  background-color:rgb(0,0, 0);
}

span_yellow {
	color:rgb(255,255, 0);
  background-color:rgb(0,0, 0);
}

span_green {
	color:rgb(0,255, 0);
  background-color:rgb(0,0, 0);
}

span_white {
	color:rgb(255,255, 255);
  background-color:rgb(0,0, 0);
}



/**
.video-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 40px auto;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
} 
*/

.video-thumb {
  position: relative;
  display: block;
  max-width: 400px;
  margin: 40px auto;
}

.video-thumb img {
  width: 100%;
  display: block;
  border-radius: 14px;
  filter: contrast(1.05) brightness(0.92);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
}



 