/** sitemap */
.frame-type-menu_sitemap_pages {
}

.frame-type-menu_sitemap_pages ul {
    border-left: 1px dotted var(--sitemap-border-color);
    list-style: none;
    padding: 0;
}

.frame-type-menu_sitemap_pages li {
    margin: 10px 0 0 20px;
    position: relative;
}

.frame-type-menu_sitemap_pages > ul > li:first-child {
    margin-top: 0;
}

.frame-type-menu_sitemap_pages li::before,
.frame-type-menu_sitemap_pages li:last-child::after {
    content: "";
    display: inline-block;
    position: absolute;
    left: -21px;
}

.frame-type-menu_sitemap_pages li::before {
    border: dotted var(--sitemap-border-color);
    border-width: 0 0 1px 0;
    height: 10px;
    width: 10px;
    top: 0;
}

/*
    this white border color is not in variables because it just hides the borders which are not needed.
    if the backgorund-color is different than white, this border-color needs to be the same color.
*/
.frame-type-menu_sitemap_pages > ul > li:first-child::before {
    border-left: 1px solid var(--sitemap-overflow-border-color);
}

.frame-type-menu_sitemap_pages li:last-child::after {
    border-left: 1px solid var(--sitemap-overflow-border-color);
    height: calc(100% - 10px);
    bottom: 0;
}