﻿.chart-container {
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(3rem);
    position:relative;
}
.chart-container svg{
    height:100%!important;
    width:100%!important;
}
g.node-button-g{/* display: none!important; *//* pointer-events: none; */cursor: pointer;}
.node-member {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(128, 128, 128, 0.501);
    border-radius: .8rem;
}
.image-container {
    position: relative;
    border-radius: .8rem;
    text-align: center;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: rgb(245 246 248);
}
.image-container .member-pic {
    width: 100%;
    height: auto;
    border-radius: 2.5rem 2.5rem 0 0;
    object-fit: cover;
}
.image-container .label{
    position: absolute;
    bottom: 0rem;
    left: 0;
    width: 100%;
    height: 8rem;
}
.member-name {
   font-size: 0.9rem;
   color: rgb(255, 255, 255);
   text-align: start;
   padding-bottom:0.2rem;
}
.member-position {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.578);
    text-align: start;
    margin-bottom: unset;
    margin-top: 0rem;
}
.info{position: absolute;left: 0.5rem;bottom: 1rem;right:0.5rem;}
.node-button-g.collapsed .node-button-foreign-object {
    height: 3rem !important;
    width: 3rem !important;
    background-color: white;
    border-radius: 50%;
    x: -25 !important;
    y: -28 !important;
    border: 1px solid lightgray;
    position: relative;
    background-repeat: no-repeat;
    background-position: 1rem;
    background-size: 1rem;
    background-image: url(/_catalogs/masterpage/NDS/media/svg/collapsed.svg) !important;
    background-image: url(/_catalogs/masterpage/NDS/media/svg/expand.svg) !important;
}
.node-button-g .node-button-foreign-object, .node-button-g.expanded .node-button-foreign-object {
    height: 3rem !important;
    width: 3rem !important;
    background-color: white;
    border-radius: 50%;
    x: -25 !important;
    y: -28 !important;
    border: 1px solid lightgray;
    position: relative;
    background-repeat: no-repeat;
    background-position: 1rem;
    background-size: 1rem;
    background-image: url(/_catalogs/masterpage/NDS/media/svg/collapsed.svg) !important;
}
.node-button-foreign-object .node-button-div>div {
    display: none;
}
.chart-container::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5rem;
    background:linear-gradient(to bottom, white , transparent);
}
.chart-container::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:5rem;
    background:linear-gradient(to top, white , transparent);
}

@media(min-width:992px){
    .chart-container {
    /* min-height: 155vh; */
    height: 121vh;
}
}