#network_maker, #network_maker svg {
    min-height: 80vh !important;
}
.treeData * {
    padding: 0;
}

.treeData {
    display: -ms-flexbox !important;
    display: flex !important;
    justify-content: center;
    color: #000 !important;
    height: 100%;
}

.treeData ul {
    display: -webkit-box;
    padding-top: 30px; position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    width: max-content;
}

.treeData > li {
    overflow: auto;
    min-height: 70vh;
}

.treeData li {
    float: left;
    text-align: center;
    list-style-type: none;
    position: relative;
    padding: 30px 5px 0 5px;

    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.treeData li::before, .treeData li::after{
    content: '';
    position: absolute; top: 0; right: 50%;
    border-top: 1px solid #000;
    width: 50%; height: 30px;
}
.treeData li::after{
    right: auto; left: 50%;
    border-left: 1px solid #000;
}

.treeData li:only-child::after, .treeData li:only-child::before {
    display: none;
}

.treeData li:only-child{ padding-top: 0;}

.treeData li:first-child::before, .treeData li:last-child::after{
    border: 0 none;
}

.treeData li:last-child::before{
    border-right: 1px solid #000;
    border-radius: 0 5px 0 0;
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
}

.treeData li:first-child::after{
    border-radius: 5px 0 0 0;
    -webkit-border-radius: 5px 0 0 0;
    -moz-border-radius: 5px 0 0 0;
}

.treeData ul ul::before{
    content: '';
    position: absolute; top: 0; left: 50%;
    border-left: 1px solid #000;
    width: 0; height: 30px;
}

.treeData li a:not(.btn), .treeDataNode {
    
    display: inline-block;
    
    text-decoration: none;
    color: #666;
    font-family: arial, verdana, tahoma;
    font-size: 14px;
    
    
    border: 1px solid #000;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;

    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    
    text-align: left;
    gap: 10px;
    
    padding: 5px 10px;
    
    -webkit-print-color-adjust: exact;
}

.treeDataNode .profilePhoto {
    width: 40px;
    height: 40px;
    border: 2px solid var(--main-color);
    border-radius: 100px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-right: 8px;
    padding: 0 !important;
    margin: 0 !important;
    transition: transform 0.4s ease-in-out 0.1s;
}

.treeDataNode .profilePhoto:hover {
    transform: scale(2.5) translate(-30%,0%);
}

.treeDataNode .primaryContent {
    display: -ms-flexbox !important;
    display: flex !important;
    text-align: left !important;
    gap: 5px;
}

.treeDataNode .secondaryContent {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    gap: 5px;
}

.treeDataNode .primaryContent .contentText {
    display: -ms-flexbox !important;
    display: flex !important;
    
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    
    text-align: left;
    flex-grow: 1;
}

.treeDataNode .primaryContent .contentText .textMain {
    display: -ms-flexbox !important;
    display: flex !important;
    
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    
    gap: 5px;
}

.treeDataNode .primaryContent .contentText .textMain .actions {
    display: -ms-flexbox !important;
    display: flex !important;
    
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
    
    gap: 5px;
}

.treeData li a:not(.btn):hover, .treeData li a:not(.btn):hover+ul li a,
.treeDataNode:hover  {
    /*background-color: #c8e4f8 !important;*/
    color: #000 !important;
    /*border: 8px solid #94a0b4 !important;*/
    border-width: 5px !important;
}

.treeData li a:not(.btn):hover+ul li::after,
.treeData li a:not(.btn):hover+ul li::before,
.treeData li a:not(.btn):hover+ul::before,
.treeData li a:not(.btn):hover+ul ul::before,
.treeDataNode:hover+ul li::after, .treeDataNode:hover+ul li::before,
.treeDataNode:hover+ul::before, .treeDataNode:hover+ul ul::before {
    border-color:  #000;
}

@media print {
    @page {
        size: landscape;
        margin: 0;
    }
    
    .treeData li:last-child::before {
        border-right: 2px solid black;
    }
    
    .treeData li::before, .treeData li::after {
        border-top: 2px solid black;
    }
    
    .treeData li::after, .treeData ul ul::before {
        border-left: 2px solid black;
    }
    
    .treeDataNode .primaryContent .contentText .textMain .actions {
        display: none;
    }
}