html, body {
    font-family: 'Poppins', sans-serif;
    padding:0px;
    margin:0px;
}


.header_logo {
    background-color:#000;
    height:70px;
    width:100%;
    padding-top:20px;
    text-align:center;
}

.header_logo small {
    color:lightgrey;
    font-size:0.5rem;
}

#chart-container {
  position: relative;
  height: 420px;
  margin: 0.5rem;
  overflow: auto;
  text-align: center;
}

.orgchart > .spinner::before,
.orgchart ~ .mask .spinner::before {
  width: 100px;
  height: 100px;
  border-width: 10px;
  border-radius: 50px;
  border-top-color: #2c3f51;
  border-bottom-color: #2c3f51;
  border-left-color: #2c3f51;
}

.orgchart {
    background-image: none;
    border: 0px;
    padding: 0px;
}

.orgchart .node:not(:only-child)::after {
    background-color: #31b3a3;
}

.orgchart .hierarchy::before {
    border-top: 2px solid #31b3a3;
}

.orgchart > ul > li > ul li > .node::before {
    background-color: #31b3a3;
}

.orgchart .node .title {
    background-color: #31b3a3;
}

.orgchart .nodes.vertical::before {
    background-color: #31b3a3;
}

.orgchart ul li .node.selected {
    background-color: #2c3f51;
}
.orgchart ul li .node:hover {
    background-color: #2c3f51;
}

.orgchart .node.focused {
    background-color: #2c3f51;
}

.orgchart .nodes.vertical .hierarchy::before, .orgchart .nodes.vertical .hierarchy::after {
    box-sizing: border-box;
    content: '';
    position: absolute;
    left: -6px;
    border-color: #31b3a3;
    border-style: solid;
    border-width: 0 0 2px 2px;
}

.orgchart .node .title {
    width: 250px;
    font-size: 1.1rem;
    height: auto;
}

.orgchart .node .content {
    border: 1px solid #31b3a3;
    font-size: 1rem;
    height: auto
}

