/* =========================================================
   ZENTRALES TOOLTIP-SYSTEM
   ========================================================= */

[data-tip] {
    position: relative;
}

[data-tip]::after {
    content: attr(data-tip);
    position: absolute;
    left: 0;
    top: 120%;
    background: #333;
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    white-space: normal;
    font-size: 16px;
    line-height: 1.4;
    max-width: 620px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, border-color 0.2s;
    border: 2px solid #888;
}

[data-tip]:hover::after {
    opacity: 1;
    border-color: red;
}

/* =========================================================
   HOVER-INFOS (#box, #box2, #box22)
   ========================================================= */

#box, #box2, #box22 {
    position: relative;
    font: 18px Verdana, sans-serif;
    display: inline-block;
}

#box div,
#box2 div,
#box22 div {
    display: none;
    position: absolute;
    background-color: #eeffff;
    width: 500px;
    border: 2px solid rgb(255, 240, 255);
    padding: 12px;
    font: normal 12px Arial, Verdana, sans-serif;
    z-index: 1000;
}

#box:hover div {
    top: 20px;
    left: 10px;
}

#box2:hover div {
    top: 60px;
    left: 10px;
}

#box22:hover div {
    top: -40px;
    right: 100%;
}

#box:hover div,
#box2:hover div,
#box22:hover div {
    display: block;
}
