.item.svelte-3e0qet {
    cursor: default;
    height: var(--height, 42px);
    line-height: var(--height, 42px);
    padding: var(--itemPadding, 0 20px);
    color: var(--itemColor, inherit);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font: normal 12px 'Lato', Sans-serif;
}

.groupHeader.svelte-3e0qet {
    text-transform: var(--groupTitleTextTransform, uppercase)
}

.groupItem.svelte-3e0qet {
    padding-left: var(--groupItemPaddingLeft, 40px)
}

.item.svelte-3e0qet:active {
    background: var(--itemActiveBackground, #b9daff)
}

.item.active.svelte-3e0qet {
    background: var(--ItemIsActiveBG, #007aff);
    color: var(--itemIsActiveColor, #fff)
}

.item.notSelectable.svelte-3e0qet {
    color: var(--itemIsNotSelectableColor, #999)
}

.item.first.svelte-3e0qet {
    border-radius: var(--itemFirstBorderRadius, 4px 4px 0 0)
}

.item.hover.svelte-3e0qet:not(.active) {
    background: var(--itemHoverBG, #e7f2ff);
    color: var(--itemHoverColor, inherit);
    font: normal 12px 'Lato', Sans-serif;
    cursor:pointer;
}

.listContainer.svelte-1uyqfml {
    box-shadow: var(--listShadow, 0 2px 3px 0 rgba(44, 62, 80, .24));
    border-radius: var(--listBorderRadius, 4px);
    max-height: var(--listMaxHeight, 250px);
    overflow-y: auto;
    background: var(--listBackground, #fff);
    border: var(--listBorder, none);
    position: var(--listPosition, absolute);
    z-index: var(--listZIndex, 2);
    width: 100%;
    left: var(--listLeft, 0);
    right: var(--listRight, 0)
}

.virtualList.svelte-1uyqfml {
    height: var(--virtualListHeight, 200px)
}

.listGroupTitle.svelte-1uyqfml {
    color: var(--groupTitleColor, #8f8f8f);
    cursor: default;
    font-size: var(--groupTitleFontSize, 12px);
    font-weight: var(--groupTitleFontWeight, 600);
    height: var(--height, 42px);
    line-height: var(--height, 42px);
    padding: var(--groupTitlePadding, 0 20px);
    text-overflow: ellipsis;
    overflow-x: hidden;
    white-space: nowrap;
    text-transform: var(--groupTitleTextTransform, uppercase)
}

.empty.svelte-1uyqfml {
    text-align: var(--listEmptyTextAlign, center);
    padding: var(--listEmptyPadding, 20px 0);
    color: var(--listEmptyColor, #78848f)
}

.selection.svelte-pu1q1n {
    text-overflow: ellipsis;
    overflow-x: hidden;
    white-space: nowrap
}

.multiSelectItem.svelte-liu9pa.svelte-liu9pa {
    background: var(--multiItemBG, #ebedef);
    margin: var(--multiItemMargin, 5px 5px 0 0);
    border-radius: var(--multiItemBorderRadius, 16px);
    height: var(--multiItemHeight, 32px);
    line-height: var(--multiItemHeight, 32px);
    display: flex;
    cursor: default;
    padding: var(--multiItemPadding, 0 10px 0 15px);
    max-width: 100%
}

.multiSelectItem_label.svelte-liu9pa.svelte-liu9pa {
    margin: var(--multiLabelMargin, 0 5px 0 0);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.multiSelectItem.svelte-liu9pa.svelte-liu9pa:hover, .multiSelectItem.active.svelte-liu9pa.svelte-liu9pa {
    background-color: var(--multiItemActiveBG, #006fff);
    color: var(--multiItemActiveColor, #fff)
}

.multiSelectItem.disabled.svelte-liu9pa.svelte-liu9pa:hover {
    background: var(--multiItemDisabledHoverBg, #ebedef);
    color: var(--multiItemDisabledHoverColor, #c1c6cc)
}

.multiSelectItem_clear.svelte-liu9pa.svelte-liu9pa {
    border-radius: var(--multiClearRadius, 50%);
    background: var(--multiClearBG, #52616f);
    min-width: var(--multiClearWidth, 16px);
    max-width: var(--multiClearWidth, 16px);
    height: var(--multiClearHeight, 16px);
    position: relative;
    top: var(--multiClearTop, 8px);
    text-align: var(--multiClearTextAlign, center);
    padding: var(--multiClearPadding, 1px)
}

    .multiSelectItem_clear.svelte-liu9pa.svelte-liu9pa:hover, .active.svelte-liu9pa .multiSelectItem_clear.svelte-liu9pa {
        background: var(--multiClearHoverBG, #fff)
    }

.multiSelectItem_clear.svelte-liu9pa:hover svg.svelte-liu9pa, .active.svelte-liu9pa .multiSelectItem_clear svg.svelte-liu9pa {
    fill: var(--multiClearHoverFill, #006fff)
}

.multiSelectItem_clear.svelte-liu9pa svg.svelte-liu9pa {
    fill: var(--multiClearFill, #ebedef);
    vertical-align: top
}

svelte-virtual-list-viewport.svelte-g2cagw {
    position: relative;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: block
}

svelte-virtual-list-contents.svelte-g2cagw, svelte-virtual-list-row.svelte-g2cagw {
    display: block;
}

svelte-virtual-list-row.svelte-g2cagw {
    overflow: hidden;
}

.selectContainer.svelte-17l1npl.svelte-17l1npl {
    --internalPadding: 0 16px;
    border: var(--border, 1px solid #d8dbdf);
    border-radius: var(--borderRadius, 3px);
    box-sizing: border-box;
    height: var(--height, 42px);
    position: relative;
    display: flex;
    align-items: center;
    padding: var(--padding, var(--internalPadding));
    background: var(--background, #fff);
    margin: var(--margin, 0)
}

.selectContainer.svelte-17l1npl input.svelte-17l1npl {
    cursor: default;
    border: none;
    color: var(--inputColor, #3f4f5f);
    height: var(--height, 42px);
    line-height: var(--height, 42px);
    padding: var(--inputPadding, var(--padding, var(--internalPadding)));
    width: 100%;
    background: transparent;
    font-size: var(--inputFontSize, 14px);
    letter-spacing: var(--inputLetterSpacing, -.08px);
    position: absolute;
    left: var(--inputLeft, 0);
    margin: var(--inputMargin, 0)
}

    .selectContainer.svelte-17l1npl input.svelte-17l1npl::placeholder {
        color: var(--placeholderColor, #78848f);
        opacity: var(--placeholderOpacity, 1)
    }

    .selectContainer.svelte-17l1npl input.svelte-17l1npl:focus {
        outline: none
    }

.selectContainer.svelte-17l1npl.svelte-17l1npl:hover {
    border-color: var(--borderHoverColor, #b2b8bf)
}

.selectContainer.focused.svelte-17l1npl.svelte-17l1npl {
    border-color: var(--borderFocusColor, #006fe8)
}

.selectContainer.disabled.svelte-17l1npl.svelte-17l1npl {
    background: var(--disabledBackground, #ebedef);
    border-color: var(--disabledBorderColor, #ebedef);
    color: var(--disabledColor, #c1c6cc)
}

.selectContainer.disabled.svelte-17l1npl input.svelte-17l1npl::placeholder {
    color: var(--disabledPlaceholderColor, #c1c6cc);
    opacity: var(--disabledPlaceholderOpacity, 1)
}

.selectedItem.svelte-17l1npl.svelte-17l1npl {
    line-height: var(--height, 42px);
    height: var(--height, 42px);
    overflow-x: hidden;
    padding: var(--selectedItemPadding, 0 20px 0 0)
}

    .selectedItem.svelte-17l1npl.svelte-17l1npl:focus {
        outline: none;
    }

.clearSelect.svelte-17l1npl.svelte-17l1npl {
    position: absolute;
    right: var(--clearSelectRight, 10px);
    top: var(--clearSelectTop, 11px);
    bottom: var(--clearSelectBottom, 11px);
    width: var(--clearSelectWidth, 20px);
    color: var(--clearSelectColor, #c5cacf);
    flex: none !important;
}

    .clearSelect.svelte-17l1npl.svelte-17l1npl:hover {
        color: var(--clearSelectHoverColor, #2c3e50)
    }

.selectContainer.focused.svelte-17l1npl .clearSelect.svelte-17l1npl {
    color: var(--clearSelectFocusColor, #3f4f5f)
}

.indicator.svelte-17l1npl.svelte-17l1npl {
    position: absolute;
    right: var(--indicatorRight, 10px);
    top: var(--indicatorTop, 11px);
    width: var(--indicatorWidth, 20px);
    height: var(--indicatorHeight, 20px);
    color: var(--indicatorColor, #c5cacf)
}

.indicator.svelte-17l1npl svg.svelte-17l1npl {
    display: inline-block;
    fill: var(--indicatorFill, currentcolor);
    line-height: 1;
    stroke: var(--indicatorStroke, currentcolor);
    stroke-width: 0
}

.spinner.svelte-17l1npl.svelte-17l1npl {
    position: absolute;
    right: var(--spinnerRight, 10px);
    top: var(--spinnerLeft, 11px);
    width: var(--spinnerWidth, 20px);
    height: var(--spinnerHeight, 20px);
    color: var(--spinnerColor, #51ce6c);
    animation: svelte-17l1npl-rotate .75s linear infinite
}

.spinner_icon.svelte-17l1npl.svelte-17l1npl {
    display: block;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: none
}

.spinner_path.svelte-17l1npl.svelte-17l1npl {
    stroke-dasharray: 90;
    stroke-linecap: round
}

.multiSelect.svelte-17l1npl.svelte-17l1npl {
    display: flex;
    padding: var(--multiSelectPadding, 0 35px 0 16px);
    height: auto;
    flex-wrap: wrap;
    align-items: stretch
}

.multiSelect.svelte-17l1npl > .svelte-17l1npl {
    flex: 1 1 50px
}

.selectContainer.multiSelect.svelte-17l1npl input.svelte-17l1npl {
    padding: var(--multiSelectInputPadding, 0);
    position: relative;
    margin: var(--multiSelectInputMargin, 0)
}

.hasError.svelte-17l1npl.svelte-17l1npl {
    border: var(--errorBorder, 1px solid #ff2d55);
    background: var(--errorBackground, #fff)
}

.a11yText.svelte-17l1npl.svelte-17l1npl {
    z-index: 9999;
    border: 0px;
    clip: rect(1px,1px,1px,1px);
    height: 1px;
    width: 1px;
    position: absolute;
    overflow: hidden;
    padding: 0;
    white-space: nowrap
}

@keyframes svelte-17l1npl-rotate {
    to {
        transform: rotate(360deg)
    }
}

#stats.svelte-1jm6aqa {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 10px;
    color: #708090;
    z-index: 1;
    background: rgba(255,255,255,.6);
    border-top: 2px solid;
    border-right: 2px solid;
    padding: .2rem;
    border-radius: 0 8px 0 0;
    user-select: none;
    pointer-events: none
}

.legend.svelte-1jm6aqa {
    margin-bottom: .3rem
}

.legend-key.svelte-1jm6aqa {
    font-size: 12px;
    font-weight: 700
}

    .legend-key.svelte-1jm6aqa:first-of-type {
        margin-right: .2rem
    }

    .legend-key.svelte-1jm6aqa:before {
        display: inline-block;
        content: "";
        width: 14px;
        height: 14px;
        margin-right: .2rem;
        margin-bottom: -2px;
        border-radius: 2px
    }

.infobox-nav.svelte-1jm6aqa {
    display: flex;
    gap: .5rem;
    margin: .5rem auto 0
}

@-ms-viewport {
    width: device-width
}

svg:not(:root) {
    overflow: hidden
}

.graph-container {
    font-family: Lato,sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    color: var(--StandardText);
    background-color: var(--Background);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%
}

    .graph-container #canvas {
        outline: none
    }

    .graph-container svg.graph {
        outline: none;
        cursor: all-scroll;
        user-select: none
    }

    .graph-container .ui-toggle-curved {
        position: fixed;
        left: 315px;
        bottom: 25px;
        padding-right: .5rem
    }

        .graph-container .ui-toggle-curved button {
            width: auto;
            border: 2px solid slategray;
            padding: 4px;
            font-weight: 700;
            border-radius: 8px;
            text-transform: uppercase;
            font-size: 12px
        }

            .graph-container .ui-toggle-curved button:hover, .graph-container .ui-toggle-curved button:focus {
                border-color: #111;
                outline-color: #111
            }

            .graph-container .ui-toggle-curved button.on {
                background-color: #111;
                color: var(--HighlightedBackground);
                border-color: #111
            }

    .graphDivNetwork .ui-select-container, .ui-zoom-container {
        position: absolute;
        display: flex;
        z-index: 1;
        display: inline-flex;
        font-size: 14px;
        text-transform: capitalize;
        align-items: center;
        padding: 0
    }

    .graph-container .ui-select-container {
        top: 0;
        left: 10px;
        justify-content: flex-start;
        font-weight: 700;
        --inputFontSize: 12px;
        --inputPadding: 8px;
        --height: 35px;
        --clearSelectTop: 8px;
        --clearSelectBottom: 8px
    }

#graphDivNetwork .ui-zoom-container {
    left: 150px;
    bottom: 25px;
    /* justify-content: flex-end; */
    font-weight: 700;
    position: fixed;
    outline: none;
}

#graphDivNetwork .ui-zoom {
    padding: 0 .2rem;
    display: flex;
    flex-direction: column;
    text-align: center
}

    .graph-container button {
        border: none;
        padding: 0;
        font-size: 1rem;
        font-weight: 500;
        font-family: inherit;
        background-color: #fff;
        cursor: pointer;
        transition: border-color .25s;
        height: 34px;
        width: 34px;
        line-height: 1;
        margin: 1px
    }

        .graph-container button:not(:disabled):hover {
            border-color: #646cff
        }

        .graph-container button:disabled {
            background-color: #d3d3d3;
            cursor: not-allowed
        }

        .graph-container button svg {
            pointer-events: none;
            user-select: none
        }

.legend-key.company {
    color: var(--CompanyColor)
}

    .legend-key.company:before {
        background-color: var(--CompanyColor)
    }

.legend-key.person {
    color: var(--PersonColor)
}

    .legend-key.person:before {
        background-color: var(--PersonColor)
    }

.graph .edge {
    fill: none;
    stroke: var(--AccentedBorder);
    stroke-width: 2px;
    stroke-opacity: .3;
    stroke-dasharray: none;
    stroke-linecap: round;
    cursor: help;
    vector-effect: none;
    transition: stroke-opacity .3s ease-out;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    pointer-events: all;
    outline: none;
}

    .graph .edge.KP.OWN, .graph .edge.KP.BEN\.OWN {
        stroke-width: 4px
    }

    .graph .edge.KP {
        stroke: var(--RoleTypeBoardMember);
    }

    .graph .edge.CS\.OWN {
        stroke: var(--RoleTypeOwner);
    }

    .graph .edge.OWN {
        stroke: var(--RoleTypeOwner);
    }

    .graph .edge.BEN\.OWN {
        stroke: var(--RoleTypeBeneficialOwner);
    }

    .graph .edge.OWN.BEN\.OWN {
        stroke-width: 4px
    }

    .graph .edge.selected {
        stroke-opacity: .8;
        transition: opacity .2s ease-out,fill .2s ease-out,fill-opacity .2s ease-out;
    }

    .graph .edge:hover {
        stroke-opacity: 1;
        transition: opacity .2s ease-out,fill .2s ease-out,fill-opacity .2s ease-out;
    }

.graph .node circle {
    fill: #6a5acd;
    stroke: var(--HighlightedBackground);
    stroke-width: 3px;
    cursor: pointer;
    transition: opacity .3s ease-out,fill .3s ease-out,fill-opacity .3s ease-out;
}

.graph .node.faded text {
    opacity: .2;
}

.graph .node.faded circle {
    fill: #b1b1b1;
}

.graph .node.company circle {
    fill: var(--CompanyColor);
}


.graph .node.person circle {
    fill: var(--PersonColor);
}

.graph .node.company.faded circle {
    fill: var(--LightGrey);
}

.graph .node.person.faded circle {
    fill: var(--LightGrey);
}

.graph .node.company.edgeSelected circle, .graph .node.person.edgeSelected circle {
    stroke: #2D7DD2;
    stroke-width: 4px;
    transition: opacity .2s ease-out,fill .2s ease-out,fill-opacity .2s ease-out;
}

.graph .node.company.marked.edgeSelected circle {
    stroke-width: 6px;
    stroke-dasharray: none;
}

.graph .node.company.edgeSelected text, .graph .node.person.edgeSelected text {
    transition: opacity .2s ease-out,fill .2s ease-out,fill-opacity .2s ease-out;
    opacity: 1;
}

.graph .node.company.selected circle, .graph .node.person.selected circle {
    stroke: #2D7DD2;
    stroke-opacity: 0.6;
    stroke-width: 4px;
    transition: opacity .2s ease-out,fill .2s ease-out,fill-opacity .2s ease-out;
}

.graph .node text, .graph .node tspan {
    font: 600 6px 'Lato', Sans-serif;
    -webkit-font-smoothing: antialiased;
    fill: var(--StandardText);
    user-select: none;
    pointer-events: none;
}

.graph .node.selected text, .graph .node.selected tspan {
    font-size: 8px
}

.graph .node.marked circle, .graph .node.selected.marked circle {
    stroke: var(--AccentedButton);
    stroke-width: 6px;
    stroke-dasharray: 10 2;
/*    transition: 0.2s ease-in;
*/}

.selectContainer {
    --ItemIsActiveBG: var(--TabButtonText);
    --listMaxHeight: 400px;
    --height: 36px
}

    .selectContainer .selectedItem {
        font-size: 12px
    }

.selectContainer {
    width: 220px;
    font-size: 12px;
    line-height: 1.15
}

    .selectContainer .listContainer {
        top: 36px !important
    }

    .selectContainer .listGroupTitle {
        position: sticky;
        top: 0;
        line-height: 1.15 !important;
        padding: 9px;
        height: 32px;
        background-color: var(--PersonColor);
        color: #000;
    }

        .selectContainer .listGroupTitle:first-of-type {
            background-color: var(--CompanyColor);
            color: #fff;
            margin-top: 0;
            cursor: pointer;
            padding: 12px 0 0 10px;
        }

    .selectContainer .item {
        padding: 6px 4px 6px 8px;
        line-height: 1.15 !important;
        height: 24px
    }

main.svelte-pzee8b {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0
}

h2.svelte-pzee8b {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%)
}

.popupOverlayFooterContainer {
    float: left;
    padding: 10px 17px 17px 17px;
    bottom: 0;
}

.popupOverlayFooterButtonContainer.genericButton {
    float: left;
    margin-right: 10px;
    white-space: nowrap;
}

.graph .node.company circle
{
    fill: var(--CompanyColor)
}



.networkLinkList {
    max-height: 400px;
    overflow: hidden;
    overflow-y: scroll;
}

.networkLinkDescription {
    display: inline-block;
    float: left;
    padding: 5px 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 360px;
}

.networkLinkText {
    font-size: 12px;
    font-style: italic;
    margin-right: 5px;
}

.networkNameText {
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    color: var(--LinkBlue);
    width:200px;
    text-overflow: ellipsis;
    display:inline-block;   
}
.ownershipStakeText {
    font-size: 14px;
    font-style:italic;
    float:right;
    text-align:right;
    margin-right:10px;
       
}

    .networkNameText:hover {
        color: var(--HoverText);
        text-decoration:underline;
    }

.roleLine {
    border-bottom: 6px solid #000;
    width: 20px;
    float: left;
    margin-right: 10px;
    margin-top: 5px;
}

.roleLine.ownerRole {
    border-color: var(--RoleTypeOwner);
}

.roleLine.compStructureRole {
    border-color: var(--RoleTypeCompanyStructure);
}

.roleLine.keyPersonRole {
    border-color: var(--RoleTypeBoardMember);
}

.roleLine.benOwnerRole {
    border-color: var(--RoleTypeBeneficialOwner);
}

.networkSelect {
    height: 30px;
    border-radius: 5px;
    padding: 3px;
    float: left;
    margin: 5px 0;
    width: 100%;
}

.networkButtonContainer {
    float: left;
    width: 200px;
    margin-right: 10px;
}

.formButtonContainer {
    float: left;
    width: 100%;
    margin-right: 10px;
    margin-top: 10px;
}

.selectContainer {
    width: 220px;
    font-size: 12px;
    line-height: 1.15
}

.formExpanderContainer {
    padding: 0 20px 20px 20px;
    bottom: 0;
    position: fixed;
    right: 25px;
    width: 280px;
    /*height: 290px;*/
    z-index: 2;
    background: var(--Background);
    border: var(--StandardBorder) solid 1px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0px 4px 16px var(--BoxShadow);
    transition: 0.3s ease-in;
}

.formExpander {
    padding: 0 20px;
    text-align: center;
    height: 28px;
}

    .formExpander
    .material-icons {
        font-size: 22px;
        color: var(--DarkGrey);
        margin: 5px 0;
        cursor: pointer;
    }

.selectContainer .listGroupTitle {
    position: sticky;
    top: 0;
    line-height: 1.15 !important;
    padding: 9px;
    height: 32px;
    background-color: var(--PersonColor);
    color: #000;
}

.formExpander
.material-icons:hover {
    margin: 8px 0 2px 0;
    color: var(--HoverButtonText);
    transition: 0.3s ease-in;
}

.popupOverlayContainer
.CompanyStatusPipe {
    border-left: 1px solid var(--LightGrey);
    float: left;
    margin: 8px 5px 5px 5px;
    height: 13px;
    padding: 3px 0;
}

.popupOverlayContainer
.CompanyStatusItem {
    margin: 6px 5px 5px 5px;
    height: 12px;
}

.companyInfoWebLink
{
    margin-right:3px;
}

.popupOverlayContainer
.CompanyStatusRow {
    height: auto;
    margin: 0 0 12px 0;
    display: inline-block;
}

.popupOverlayContainer
.InformationKeyItem {
    padding: 10px 8px;
    border-radius: 4px;
    background-color: var(--LighterGrey);
    margin-right: 8px;
    filter: drop-shadow(2px 2px 4px rgb(0 0 0 / 0.1));
}

.overlayShortButton {
    border-radius: 30px;
    float: right;
    padding: 4px 0 3px 10px;
}

.selectContainer .item {
    padding: 6px 4px 6px 8px;
    line-height: 1.15 !important;
    height: 24px
}

.graphCompanyNameHeader {
    display: inline-block;
    float: left;
    font-size: 18px;
    max-width: 333px;
    font-weight: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 2px 0 0 0;
    padding: 0;
    height: 33px;
}

.graphCompanyNameHeaderSmall {
    margin: 5px 0;
    display: inline-block;
    float: left;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

.graphHeaderLink {
    cursor:pointer;
    color: var(--LinkBlue);
}

    .graphHeaderLink:hover {
        color: var(--HoverText);
        text-decoration: underline;
    }



.graphEntityNameHeader {
    display: inline-block;
    float: left;
    font-size: 18px;
    max-width: 333px;
    font-weight: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 3px 0 0 0;
    padding: 0;
    height: 33px;
}

.clickableLink {
    cursor: pointer;
}

    .clickableLink:hover {
        color: var(--LinkBlue) 
}

.networkContentWindow {
    padding: 5px 0;
    margin-left: 0;
    margin-top: 10px;
}

.popupOverlayContainer {
    position: absolute;
    top: 60px;
    right: 18px;
    z-index: 2;
    background-color: var(--Background);
    border: 1px solid var(--StandardBorder);
    color: var(--DarkGreen);
    border-radius: 10px;
    width: 400px;
    /*    min-height: 300px;*/
    max-height: 800px;
    box-shadow: 0px 4px 16px var(--BoxShadow);
}

.popupOverlayHeaderContainer {
    border-radius: 10px 10px 0 0;
    float: left;
    width: 100%;
    padding: 10px 19px;
    height: 50px;
    border-bottom: var(--StandardBorder) solid 1px;
}

    .popupOverlayHeaderContainer .material-icons {
        font-size: 28px;
        margin-right: 12px;
        margin-top: -4px;
    }

    .popupOverlayHeaderContainer
    h2 {
        font-size: 18px;
        font-weight: normal;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 6px 0 0 0;
        border: none;
        padding: 0;
    }

.popupOverlayContentContainer {
    float: left;
    width: 100%;
    padding: 10px 20px 0 20px;
    min-height: 100px;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
}

@media only screen and (max-height: 1024px) {
    .popupOverlayContentContainer {
        max-height: 400px;
    }
}

.graphCompany {
    color: var(--StandardText);
}

.formExpander
.material-icons:hover {
    margin: 8px 0 2px 0;
    color: var(--HoverButtonText);
    transition: 0.3s ease-in;
}

.graphCompanyFlag {
    float: left;
}

    .graphCompanyFlag
    img {
        height: 23px;
        margin-right: 18px;
        filter: drop-shadow(2px 2px 4px rgb(0 0 0 / 0.4));
    }
.formExpanderContainer.formExpanderMinimized {
    height: 30px;
}


.listItem {
    cursor:pointer;
}

.popupOverlayHeaderContainer
.companyDetailsHeaderButtonContainer {
    float: right;
    margin-right: 0;
    padding-right: 0;
}

.popupOverlayFooterContainer {
    width:100%;
    float:left;
    display:inline-block;
}
.popupOverlayFooterButtonContainer.genericButton.rightFloat {
    float:right;
    margin-right:0;
    margin-left:10px;
}
.graphEntityIcon {
    width: 40px;
    float: left;
}
    .graphEntityIcon .material-icons {
        margin-left: 0;
    }
.graphCompanyNameHeader .companyNameHeader {
    margin-top: 2px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 273px;
    font-size: 20px;
}

.roleFilterRow {
    float:left;
    width:100%;
}

.RoleLine.KeyPerson {
    border-bottom: 4px solid var(--RoleTypeBoardMember);
    float: right;
    width: 90px;
    padding-top: 5px;
}

.RoleLine.BeneficialOwner {
    border-bottom: 4px solid var(--RoleTypeBeneficialOwner);
    float: right;
    width: 90px;
    padding-top: 5px;
}

.RoleLine.Owner {
    border-bottom: 4px solid var(--RoleTypeOwner);
    float: right;
    width: 90px;
    padding-top: 5px;
}

.expanderFromHeading {
    margin: 4px 0 7px 0;
}
.expanderRow {
    margin-top: 4px;
    float: left;
}

.betaLargeText {
    font-size: 35px;
    font-weight: 700;
    position: absolute;
    color: var(--FilledButtonHover);
    right: 32px;
    top: 65px;
    z-index: 1;
    opacity: .5;
}

.noDataText {
    font-size: 40px;
    font-weight: 700;
    position: absolute;
    color: var(--FilledButtonHover);
    right: 50%;
    top: 50%;
    z-index: 1;
    opacity: .3;
}

.menuBeta {
    font-size: 10px;
    font-weight: 800;
    margin-top: 2px;
    color: var(--ActiveGreen);
}

.popupOverlaySubContentContainer {
    float: left;
    width: 100%;
    padding: 10px 20px 0 20px;
}