/* SITEMAP */

@import url('variables.css');

.sitemap, .sitemap ul, .sitemap li {
    position: relative;
}

.sitemap ul {
    list-style: none;
    padding-left: 32px;
}

.sitemap li::before, .sitemap li::after {
    content: "";
    position: absolute;
    left: -12px;
}

.sitemap li::before {
    border-top: 1px solid var(--text);
    top: 9px;
    width: 8px;
    height: 0;
}

.sitemap li::after {
    border-left: 1px solid var(--text);
    height: 100%;
    width: 0px;
    top: 2px;
}

.sitemap ul > li:last-child::after {
    height: 8px;
}