/*
Theme Name: divi child
Version: 1.0
Description: A child theme of Divi
Template: Divi
Author: Administrator
Text Domain:  divi-child
*//* Scrollanker sichtbar anzeigen*/
/* bei h4 ist der scrollanker nicht sichtbar weil ich global fŸr h4-h6 ein padding top eingegeben habe - h4 wird im Moment nur 1x im Datenschutzinhaltsverzeichnis genutzt, in den
Blogartikeln wird kein h4 genutzt - leider ist eine Anzeige bei h4 NICHT mšglich, deshalb so wenig wie mšglich h4 †berschiften verwenden wo
Inhaltsverzeichnisse angezeigt werden sollen*/

h2[id], h3[id], h4[id] {
  position: relative;
}
h2[id]::before,
h3[id]::before,
h4[id]::before {
  content: "";
  display: block;
  height: 27px;
  margin-top: -27px;
  visibility: hidden;
  pointer-events: none;
}

/* Styling Inhaltsverzeichnis */
#my-custom-toc {
    margin-bottom: 15px;
}
.my-custom-toc-list-wrapper {
    margin-top: 10px;
}
#my-custom-toc .my-custom-toc-summary {
    cursor: pointer;
}
#my-custom-toc ul li {
    list-style: none;
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 10px;
}
#my-custom-toc ul li:last-child {
    margin-bottom: 0 !important;
}
#my-custom-toc ul li ul {
    padding-bottom: 0 !important;
    margin-bottom: 10px;
    margin-top: 5px;
}
#my-custom-toc ul li:has(ul) {
    margin-bottom: 0 !important;
}
