.documentation-content {
    min-width: 0;
    width: 100%;
}

.documentation-group-title {
    color: #333;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 20px;
}

.documentation-tree {
    margin-top: 40px;
    position: relative;
}

.documentation-folder {
    position: relative;
}

.documentation-folder-name {
    align-items: center;
    color: #333;
    cursor: pointer;
    display: flex;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    list-style: none;
    min-height: 58px;
    padding: 16px 8px;
    transition: background-color .2s ease-in-out, color .2s ease-in-out;
}

.documentation-folder-name::-webkit-details-marker {
    display: none;
}

.documentation-folder-name:hover {
    background-color: #f1f6f7;
    color: #15577e;
}

.documentation-folder-icon {
    background-color: #15577e;
    border-radius: 2px;
    display: inline-block;
    flex: 0 0 auto;
    height: 18px;
    margin-right: 14px;
    position: relative;
    width: 27px;
}

.documentation-folder-icon::before {
    background-color: #15577e;
    border-radius: 2px 2px 0 0;
    content: '';
    height: 5px;
    left: 2px;
    position: absolute;
    top: -4px;
    width: 11px;
}

.documentation-folder-label {
    min-width: 0;
}

.documentation-folder-arrow {
    border-bottom: 2px solid #15577e;
    border-right: 2px solid #15577e;
    flex: 0 0 auto;
    height: 9px;
    margin: 0 8px 0 auto;
    transform: rotate(-45deg);
    transition: transform .2s ease-in-out;
    width: 9px;
}

.documentation-folder[open] > .documentation-folder-name .documentation-folder-arrow {
    transform: rotate(45deg);
}

.documentation-folder-content {
    margin-left: 21px;
    padding: 0 8px 16px 48px;
    position: relative;
}

.documentation-folder-content::before {
    border-left: 1px dashed #9db3b8;
    bottom: 24px;
    content: '';
    left: 0;
    position: absolute;
    top: 0;
}

.documentation-folder-child {
    position: relative;
}

.documentation-folder-child::before {
    border-top: 1px dashed #9db3b8;
    content: '';
    left: -48px;
    position: absolute;
    top: 29px;
    width: 38px;
}

.documentation-folder-child .documentation-folder-name {
    min-height: 58px;
}

.documentation-folder-content > .list-documentation {
    column-count: 1;
    margin: 6px 0 0;
    width: 100%;
}

.documentation-folder-content > .list-documentation li {
    border-bottom: 1px solid #dce5e7;
    margin-bottom: 0;
    padding: 14px 8px;
}

.documentation-folder-content > .list-documentation li::before {
    border-top: 1px dashed #9db3b8;
    content: '';
    left: -48px;
    position: absolute;
    top: 26px;
    width: 38px;
}

.documentation-folder-content > .list-documentation li a {
    width: 100%;
}

.documentation-folder-content > .list-documentation .icon-download {
    margin-left: auto;
}

@media screen and (max-width: 768px) {
    .documentation-tree {
        margin-top: 32px;
    }

    .documentation-group-title,
    .documentation-folder-name {
        font-size: 18px;
        line-height: 24px;
    }

    .documentation-folder-name {
        padding-left: 4px;
        padding-right: 4px;
    }

    .documentation-folder-content {
        margin-left: 14px;
        padding-left: 28px;
    }

    .documentation-folder-child::before,
    .documentation-folder-content > .list-documentation li::before {
        left: -28px;
        width: 22px;
    }
}
