/* Tooltip container */
.tooltip {
    position: relative;
}

/* Tooltip text */
.tooltip .tooltiptext {
visibility: hidden;
  max-width: 200px;
background: linear-gradient(90deg,var(--forenfarbe2) 0%, var(--forenfarbe3) 50%);
  font-size: 10px;
  text-transform: uppercase;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  transition: opacity 1s;
  padding: 8px;
  border-radius: 3px;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.15),-1px -1px 0 rgba(255,255,255,0.3);
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Tooltip container */
.atooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.atooltip .atooltiptext {
    visibility: hidden;
    max-width: 200px;
    background-color: rgba(201, 208, 211, 1);
    color: #000000;
    text-align: justify;
font-family: 'Open Sans', sans-serif;
font-size: 9px;
font-weight: lighter;
    padding: 5px 5px 5px 5px;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: -125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 1s;
}

.atooltip .atooltiptext b {
  background-color: var(--textbold);
    color: #000000;
font-family: var(--schriftklein);
font-size:12px;
}

/* Tooltip arrow */
.atooltip .atooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #83818a transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.atooltip:hover .atooltiptext {
    visibility: visible;
    opacity: 1;
}
		
		