table { /* reset width */
    width: auto;
}

/* Draw the lines */
.jOrgChart .line {
    height: 20px !important;
    width: 1px !important;
}

.jOrgChart .down {
    background-color: black !important;
    margin: 0px auto !important;
}

.jOrgChart .right {
    border-left: 1px solid black !important;
}

/* node cell */
.jOrgChart td {
    text-align: center;
    vertical-align: top;
    padding: 0px;
}

/* The node */
.jOrgChart .node.selected {
    transition: 0.8s 0.2s;
    -webkit-box-shadow: 0px -8px 21px -6px rgba(3,3,36,1);
    -moz-box-shadow: 0px -8px 21px -6px rgba(3,3,36,1);
    box-shadow: 0px -8px 21px -6px rgba(3,3,36,1);
}


/* tener en cuenta */
.jOrgChart .node {
    border: 0;
    border-radius: 12px;
    background-color: white;
    display: inline-block;
    width: 200px; /* vertical type node width */
    height:auto !important;
    z-index: 10;
    margin: 0 2px;
    cursor: pointer;
}



    /* support vertical draw child nodes */
    .jOrgChart .node.vertical {
        float: left;
    }

.jOrgChart .cover {
    cursor: pointer;
}

/* Vertical drawing styles */
.jOrgChart .multi-tree {
    margin: 0;
    float: left;
}

    /*tener en cuenta*/
    .jOrgChart .multi-tree .content {
        background-color: white;
        text-decoration: none;
        border: 0;
        border-radius: 5px;
        width: 200px; /* vertical type node width */
        min-height: 100px; /* vertical type node min-height */
        height: 100px !important;
        cursor: pointer;
    }

    .jOrgChart .multi-tree .selected {
        background-color: #3399FF !important;
        border: 1px dotted black;
    }

    .jOrgChart .multi-tree span {
        width: 210px;
        text-decoration: none;
        display: block;
        margin: 0 0 0 1.2em;
        padding-top: 10px;
        background-color: transparent;
        border: solid black;
        border-width: 0 0 1px 1px;
    }

        .jOrgChart .multi-tree span .content {
            display: block;
            position: relative;
            top: .95em;
            background-color: #fff;
            margin: 0 0 .2em .7em;
            padding: 0;
        }

    .jOrgChart .multi-tree ul, .multi-tree li {
        list-style-image: none;
        list-style-position: outside;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .jOrgChart .multi-tree ul li {
            line-height: 1.2em;
        }

            .jOrgChart .multi-tree ul li ul li {
                margin: 0 0 0 1.2em;
                border-left: 1px solid black; /* vertical node connector line */
            }

    /* if node is last then need to remove left connector */
    .jOrgChart .multi-tree li.last ul li {
        border: none;
    }
