* {
    margin: 0;
    padding: 0;
}

html,
body,
#organogram {
    height: 100%;
}

.orgchart {
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    background: #F9FAFC;
}

.orgchart .lines .rightLine,
.orgchart .lines .leftLine,
.orgchart .lines .topLine {
    border-color: #CFCFCF;
}

.orgchart .lines .downLine {
    background-color: #CFCFCF;
}

.orgchart td {
    padding: 0 2px;
}

.orgchart .node {
    padding: 7px;
    border-radius: 3px;
    min-width: 240px;
    text-align: left;
    display: flex;
    margin: 0 auto;
    border: none;
}

.orgchart .node .node-menu {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 18px;
    line-height: 11px;
    width: 24px;
    text-align: center;
    transition: all .2s;
    cursor: pointer;
}

.orgchart .node:hover .node-menu {
    opacity: 1;
}

.orgchart .node .node-menu em {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: white;
    margin: 0 1px;
    display: inline-block;
}

.orgchart .node .node-menu ul {
    background: white;
    position: absolute;
    top: 22px;
    right: 16px;
    list-style: none;
    font-size: 11px;
    z-index: 10;
    border-radius: 3px;
    padding: 5px 0;
    box-shadow: 0 1px 1px 0 rgba(10, 16, 34, .2);
    transform: translateX(100%);
    display: none;
}

.orgchart .node .node-menu ul:before {
    content: "";
    display: block;
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid white;
    position: absolute;
    box-shadow: 0 0 1px 0 rgba(10, 16, 34, .2);
    top: -5px;
    left: 5px;
    z-index: 9;
}

.orgchart .node .node-menu.active ul {
    display: block;
    opacity: 1!important;
}

.orgchart .node .node-menu ul li.divider {
    height: 1px;
    margin: 5px 0;
    background: rgba(0,0,0,0.08);
}

.orgchart .node .node-menu ul a {
    white-space: nowrap;
    text-decoration: none;
    display: block;
    padding: 5px 12px;
    color: #322C4F;
}

.orgchart .node .node-menu ul a:hover {
    background: rgba(0,0,0,0.04)
}

.orgchart > table > tr:first-child > td .node .node-menu ul li.add-sibling {
    display: none;
}

.orgchart .node .node-picture {
    margin-right: 10px;
}

.orgchart .node .node-picture img {
    border-radius: 3px;
}

.orgchart .node .node-content {
    color: white;
}

.orgchart .node .node-title {
    font-weight: bold;
}

.orgchart .node i {
    display: none;
}

.orgchart .node.level-1 { background: #322C4F;}
.orgchart .node.level-2 { background: #4B3F80;}
.orgchart .node.level-3 { background: #5C15AB;}
.orgchart .node.level-4 { background: #5C15AB;}

.orgchart{

    background-image:none !important;
}