div.sitemap {
    list-style: none;
    margin: 0;
    padding: 20px;
}

.sitemap a {
    display: block;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    box-shadow: 0px 0px 2px 2px #e8e8e845;
    margin-bottom: 10px;
    border-radius: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

.sitemap a i {
    transition: 0.3s
}

.sitemap a:hover i {
    margin-left: 10px;
}