app-documentation {
    width: 100%;

    .main-content {
        width: 100%;
        display: flex;
        .main-list {
            width: 15%;
            border-right: 1px solid #ccc;
            padding: 20px 40px 20px 40px;
            overflow: auto;
            .list-head {
                margin-bottom: 5px;
            }
            >li {
                margin-bottom: 10px;
                font-size: 16px;
                font-weight: 600;
            }
            ol {
                //display: none;
                .active {
                    color: #17b6ed;
                }
                li {
                    padding-left: 20px;
                    cursor: pointer;
                    font-size: 14px;
                    font-weight: 400;
                    a {
                        color: #000;
                        display: block;
                        padding: 5px;
                        &:hover {
                            background: #f5f5f5;
                        }
                    }
                    &:hover {
                        text-decoration: underline;
                    }
                }
            }
        }
        .documentation-section {
            width: 85%;
            padding-left: 20px;
            overflow: auto;
            padding: 20px 40px 20px 40px;
        }
    }

    main {
        height: 100%; //calc(100% - 110px);
        display: flex;
        flex: 1;

        user-select: none;
        position: relative;
        border-bottom: 1px solid #ccc;
    }
    .code-block {

        display: block; //padding: 9.5px;
        margin: 10px 0 10px;
        font-size: 14px;
        word-break: break-all;
        word-wrap: break-word;
        background-color: rgba(247, 247, 247, 0.85);
        border: 1px solid #f3eeee;
        border-radius: 4px;
        .code-header {
            background: #ccc;
            padding: 10px;
        }
        .attr {
            color: #17b6ed;
        }
        .text {
            // color: #333;
            font-weight: bold;
        }
    }
    .folder-structure {
        padding: 20px;
        width: 50%;
        .children {
            position: relative;
            overflow: hidden;
            padding-left: 24px;
            &:first-child {
                padding: 0;
            }
        }
        &--item {
            padding: 5px 0px;
            position: relative;
            .folder-structure--item {
                padding-left: 30px;
                &:before {
                    content: "";
                    left: 10px;
                    bottom: 15px;
                    width: 16px;
                    height: 9999px;
                    position: absolute;
                    border-width: 0 0 1px 1px;
                    border-style: solid;
                    border-color: #ccc;
                    border-radius: 0 0 0 3px;
                }
            }
        }
    }
    .comment {
        display: inline-block;
        color: #aaa;
    }
    pre {
        padding: 10px;
    }

    .kwd {
        color: #17b6ed;
    }
    .str {
        color: #d4ce10;
    }
    .typ {
        color: red;
    }
    .met {
        color: #00d400;
    }
    .white {
        color: #fff;
    } //app-documentation-lifecycle, app-documentation-component, app-documentation-lifecycle {
    //  width: 100%;
    //}
    .title {
        font-family: 'Roboto', sans-serif; //width: 150px;
        margin-right: 20px;
    }
    .section-title {
        font-size: 16px;
        margin-top: 20px;
        border-bottom: 1px solid #ccc;
        padding: 6px;
    }
    .in-development{
        color:red;
    }
    .text {
        width: 500px;
        font-weight: 300;
        margin: 10px 0;
    }
    .block {
        border-bottom: 1px solid #ccc;
        display: flex;
        align-items: center;
        // padding: 20px;
        justify-content: space-between;
    }
    .label {
        padding: 3px 5px; // background: #ccc;
        display: inline-block;
        color: #17b6ed;
        font-weight: bold;
        font-size: 16px;
        border-radius: 3px;
        border: 1px solid;
    }
}

child-route-switcher{
    display: block;
    // margin: auto;
    width: 60%;
}
app-documentation-directives {
    .clicked {
        color: green;
    }
    .unclicked {
        color: red;
    }
}

app-documentation-architecture {
    width: 100%;
}

app-documentation-forms{
    .ac-error[type]{
        border: 1px solid rgba(255, 0, 0, 0.47)
    }
    .input{
        margin: 10px 0px;
        input{
            border: 1px solid #ccc;
            padding: 4px;
        }
    }
    button{
        cursor: pointer;
        padding: 4px;
        border: none;
        background: #17b6ed;
        color: #fff;
        border-radius: 4px;
    }
}