.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;
}
/*
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
} */