.dpnglossary.link:hover:after {
    background: rgba(0, 0, 0, .8);
    border-radius: 5px;
    bottom: 26px;
    color: #fff;
    content: attr(title);
    left: 0%;
    padding: 5px 15px;
    position: absolute;
    width: 250px; 
    z-index: 98;
    font-size: 14px;   
}

/* Darstellung der Glossary Begriffe */
a.dpnglossary.link
{
/*    color: unset; */
    color: darkred;
    text-decoration: underline dotted;
    text-decoration-thickness: 2px;
}

/* ************************************************
Anpassungen, damit das Popup auch außerhalb des DIV's angezeigt wird. */

/* Hinzufügen von "overflow: visible" in Tabellen. In Akkordeons funktioniert es nicht! */
.table-responsive {
    display: block;
    width: 100%;
    overflow: visible; /* Add */
}

/* Anpassung in Akkordeon-Elemente, damit "grauer Hintergrund" dargestellt wird, wenn
eine Bootstrap-Package für space-before oder -after eingestellt wurde */
.acc-section .frame-space-before-extra-small {
    /* margin-top: 1rem; */
    margin-top: 0rem;
    padding-top: 1rem;
}
.acc-section .frame-space-before-small {
    /* margin-top: 1.5rem; */
    margin-top: 0rem;
    padding-top: 1.5rem;
}
.acc-section .frame-space-before-medium {
    /* margin-top: 2rem; */
    margin-top: 0rem;
    padding-top: 2rem;
}
.acc-section .frame-space-before-large {
    /* margin-top: 2.5rem; */
    margin-top: 0rem;
    padding-top: 2.5rem;
}
.acc-section .frame-space-before-extra-large {
    /* margin-top: 3rem; */
    margin-top: 0rem;
    padding-top: 3rem;
}
.acc-section .frame-space-after-extra-small {
    /* margin-bottom: 1rem; */
    margin-bottom: 0rem;
    padding-bottom: 1rem;
}
.acc-section .frame-space-after-small {
    /* margin-bottom: 1.5rem; */
    margin-bottom: 0rem;
    padding-bottom: 1.5rem;
}
.acc-section .frame-space-after-medium {
    /* margin-bottom: 2rem; */
    margin-bottom: 0rem;
    padding-bottom: 2rem;
}
.acc-section .frame-space-after-large {
    /* margin-bottom: 2.5rem; */
    margin-bottom: 0rem;
    padding-bottom: 2.5rem;
}
.acc-section .frame-space-after-extra-large {
    /* margin-bottom: 3rem; */
    margin-bottom: 0rem;
    padding-bottom: 3rem;
}
/* Es gab außerdem den Effekt, dass der Bereich eines Akkordeon-Elements
kleiner wurde bzw. das kleiner werden auch als Effekt sichtbar war.
Umstellung auf padding anstelle margin behob dies: */
div.acc-section p, 
div.acc-section li:last-child 
{
    margin-bottom: 0rem;
    padding-bottom: 0.5rem;
}