@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
* {
    box-sizing: border-box;
    /* outline: 1px dashed #f00; */
}

html, body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    /*overflow: hidden;*/
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*background-color: #f5f5f5;*/
    background-color: #FFFFFF;
}
    body > fluent-design-system-provider {
        /*height: 100%!important;*/
    }

.prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

canvas {
    width: 100%;
    height: 100%;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

pre,
div.error {
    background-color: #e5e5e5;
    padding: 1rem;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    margin: 1rem 0;
    max-height: 250px;
}

    pre.fixed,
    div.error.fixed {
        height: 200px;
    }

code {
    background-color: #e5e5e5;
    display: block;
    padding: 0px 0px;
    border-radius: 3px;
    max-height: inherit;
    overflow: scroll;
    margin: -15px;
}

.width_100 {
    width: 100%;
}
.height_100 {
    height: fit-content;
}

.cursor_pointer {
    cursor: pointer;
}
.cursor_notAllowed {
    cursor: not-allowed;
}
.txt_alert {
    color: #ec0000;
    font-weight: 500;
}
.display_flex {
    display:flex;
}
.display_none {
    display: none!important;
}
.alignitems_center {
    align-items:center;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #5B5FC7;
    border-radius: 10px;
}
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #4A4FBA;
    }

::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.flex_column {
    display: flex;
    flex-direction: column;
}
.flex_align_center {
    display: flex;
    align-items: center;
}
.just_center {
    justify-content: center;
}

.unselectable_text {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s !important;
}

button:focus-visible {
    outline: none !important;
}

.filter_000000 {
    filter: invert(0%) sepia(95%) saturate(21%) hue-rotate(22deg) brightness(97%) contrast(106%);
}
.filter_FFFFFF {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(136deg) brightness(108%) contrast(101%);
}
.filter_EEEEEF {
    filter: invert(87%) sepia(3%) saturate(1309%) hue-rotate(202deg) brightness(106%) contrast(103%);
}
.filter_7A7FFF {
    filter: invert(50%) sepia(86%) saturate(2943%) hue-rotate(217deg) brightness(105%) contrast(107%);
}
.filter_CCCCCC {
    filter: invert(95%) sepia(0%) saturate(0%) hue-rotate(156deg) brightness(89%) contrast(87%);
}
.filter_727272 {
    filter: invert(49%) sepia(0%) saturate(109%) hue-rotate(147deg) brightness(91%) contrast(91%);
}
.filter_242424 {
    filter: invert(5%) sepia(0%) saturate(0%) hue-rotate(164deg) brightness(99%) contrast(79%);
}
.filter_disabled {
    filter: invert(82%) sepia(8%) saturate(644%) hue-rotate(200deg) brightness(84%) contrast(81%) !important;
}
.filter_5B5FC7 {
    filter: invert(33%) sepia(87%) saturate(733%) hue-rotate(207deg) brightness(93%) contrast(84%);
}
.filter_FBFBFB {
    filter: invert(100%) sepia(0%) saturate(17%) hue-rotate(16deg) brightness(260%) contrast(97%) !important;
}
.filter_F1F1F1 {
    filter: invert(100%) sepia(0%) saturate(73%) hue-rotate(246deg) brightness(115%) contrast(89%);
}

.overflow_scroll {
    overflow-y: scroll!important;
}

#fullpage {
    display: none;
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: 80%;
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-color: #0000005e;
}

.no_text {
    color: #b3b3b3 !important;
}

/* ------------------------------------------------------------------------------- */
/* -------------------------------- PAGE SPECIFIC -------------------------------- */
/* ------------------------------------------------------------------------------- */
#loading_data {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 48px);
    width: 100vw;
    bottom: 0;
    position: absolute;
    z-index: 10000;
    background-color: #dcdcdc87;
}

.login_txt_info {
    font-weight: 500;
    margin-bottom: 2rem;
    cursor: pointer;
    width: fit-content;
    margin: 1rem auto;
}

.nodes_loading_ring {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
}

#focus_curtain, #focus_curtain2 {
    width: 100vw;
    height: 100vh;
    position: absolute;
    background-color: #ffffff00;
    z-index: -1;
    transition: .5s;
    top: 0;
}
.focus_curtain_closed {
    z-index: 100 !important;
    background-color: #ffffffa6 !important;
}


#div_queryfields_tips {
    flex-wrap: wrap;
    margin: auto;
    flex-direction: row;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.div_subjectQuery_tips {
    display: none;
}
#div_subjectQuery_tip, #div_subject2Query_tip {
    display: none;
    /*z-index: -1;*/
    border-radius: 10px;
    background-color: #F8F8FF;
    border: 0.08em solid #DADBFD;
    padding: 15px 10px 15px 10px;
    box-shadow: 0 6px 20px rgb(0 0 0 / 15%);
    position: absolute;
    margin-top: 55px;
    max-width: 90%;
    width: 280px;
}
#div_simplesearch_tip {
    display: none;
    z-index: 100;
    border-radius: 10px;
    background-color: #F8F8FF;
    border: 0.08em solid #DADBFD;
    padding: 15px 30px 15px 15px;
    box-shadow: 0 6px 20px rgb(0 0 0 / 15%);
    position: absolute;
    margin-top: 55px;
    max-width: 90%;
}
.div_tips {
    display:none;
}
.tip_suggested_title {
    font-size: 9px !important;
    color: #727272;
    font-weight: 700;
    margin: 0 0 0 4px !important;
}
.div_tip_examples {
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.div_tip_example {
    margin-left: 5px;
    border-radius: 7px;
    background-color: #DADBFD;
}
.tip_example_text {
    margin: 4px 4px;
    font-weight: 600;
    font-size: 11px;
    color: #242424;
}
.div_predicate_suggestions {
    display: flex;
    flex-direction: column;
    max-height: 180px;
    overflow-y: scroll;
}
.div_predicate_suggestion {
    transition: .3s;
    border-radius: 4px;
    cursor: pointer;
}
    .div_predicate_suggestion:hover {
        background-color: #eeeeee;
    }
.p_predicate_suggestion {
    margin: 7px;
    font-size: 13px;
}

.rootNfavorites_card {
    display: flex;
    flex-direction: column;
    /*width: 90%;*/
    width: 48%;
    /*margin: auto;*/
    box-shadow: 0px 0px 5px 2px rgb(0 0 0 / 5%);
    border-radius: 5px;
    padding: 30px 0;
    border-radius: 5px;
    /*margin-bottom: 7rem;*/
    background-color: #FBFBFB
}
.favorites_title_div {
    display: flex;
    align-items: center;
    margin-left: 2.5%;
    margin-bottom: 2.5rem;
}
.favorites_title {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    margin-left: 10px;
}
.favorites_list_div {
    display: flex;
    flex-wrap: wrap;
    max-height: 250px;
    overflow-y: overlay;
}
.favoride_node_card {
    display: flex;
    width: 45%;
    height: 70px;
    background-color: #FFFFFF;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 6px 0px;
    margin: 0 2.5% 30px 2.5%;
    border-radius: 12px;
    transition: .3s;
}
    .favoride_node_card:hover {
        background-color: #F8F8FF;
    }

@media screen and (max-width: 720px) {
    .favoride_node_card {
        display: flex;
        width: 95%;
    }
}
.favorite_info_div {
    display: flex;
    flex-direction: column;
    width: calc(100% - 50px);
    align-items: flex-start;
}
.favorite_reference {
    font-size: 15px;
    margin: 0;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    width: fit-content;
    max-width: calc(100% - 25px);
}
.favorite_type {
    color: #727272;
    font-size: 12px;
    margin: 0;
}
.favorite_open_div {
    display: flex;
    width: 50px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.no_favorites {
    font-style: italic;
    margin: 0 2rem;
    font-size: 14px;
    color: #727272;
}

.div_breadcrumb_arrows {
    display: flex;
    margin: 0 0 0 20px;
    align-items: center;
    min-width: fit-content;
}
.div_breadcrumb_arrow {
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.div_breadcrumb_arrow_active {
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 100%;
    transition: .3s;
}
    .div_breadcrumb_arrow_active:hover {
        background-color: #EEEEFF;
    }
.breadcrumb_arrow_right {
    width: 13px;
}
.breadcrumb_arrow_left {
    width: 13px;
    transform: rotate(180deg);
}
.breadcrumb_p {
    color: white;
    font-size: 13px;
    margin: 0 3px;
}

.bottom_tabbar {
    position: fixed;
    bottom: 0;
    border-radius: 35px 25px 0 0;
    width: 100%;
    display: flex;
    justify-content: center;
    height: 70px;
    z-index: 9000;
    background-color: white;
    box-shadow: 0 -2px 15px 7px rgb(0 0 0 / 8%);
    padding: 5px 0 0 0;
}
.bottom_tabbar_div {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 400px;
}
.bottom_tabbar_tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    text-align: center;
}

.div_node_title {
    display: flex;
    flex-direction: column;
}
.node_title {
    font-size: 20px;
    margin: 0;
    max-width: 30vw;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: fit-content;
}
.node_type {
    font-size: 12px;
    color: #727272;
    margin: 0;
}
.node_favorite_img {
    width: 14px;
    height: 24px;
}
.node_title_mobile {
    margin: 0;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: fit-content;
    max-width: calc(100vw - 290px);
}

.div_nav_icon {
    margin-right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    border-radius: 100%;
    transition: .2s;
}
.nav_icon {
    width: 16px;
    fill: #EEEEFF;
}
.nav_icon_active {
    filter: brightness(255%);
}
.div_nav_icon_active {
    background-color: #7A7FFF !important;
}
.div_nav_icon_inactive {
    background-color: transparent !important;
}
    .div_nav_icon_inactive:hover {
        background-color: #484848 !important;
    }

@media screen and (max-width: 720px) {
    .div_nav_left {
        margin: auto 0 auto 10px;
    }
}
.div_nav_left {
    display: flex;
    align-items: center;
    margin: auto 0 auto 20px;
    position: relative;
}
.div_nav_right {
    display: flex;
    align-items: center;
    margin: auto 10px auto auto;
    position: relative;
}

.div_topMenu_option {
    display: flex;
    cursor: pointer;
    align-items: center;
    margin: 5px 0 5px;
    padding: 5px;
    border-radius: 5px;
    text-decoration: none;
    color: currentcolor;
}
    .div_topMenu_option:hover {
        background-color: #f2f2f2;
    }

.topMenu_option_icon {
    width: 13px;
    height: 13px;
    margin-right: 10px;
}

.topMenu_option_text {
    margin: 0;
    font-size: 14px;
}

.topMenu_Menu {
    z-index: 10;
    flex-direction: column;
    background-color: white;
    border-radius: 0px 0px 0px 10px;
    min-width: 160px;
    padding: 5px 0 5px;
    position: absolute !important;
    box-shadow: 0 6px 20px rgb(0 0 0 / 15%);
    top: 40px !important;
    left: -110px !important;
}

.welcome {
    /*position: absolute;*/
    display: flex;
    width: 100%;
    top: 0 !important;
    bottom: 0 !important;
    height: 100vh !important;
    align-items: center;
}
#div_queryfields {
    flex-wrap: wrap;
    margin: auto;
    flex-direction: row;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
#div_querytextfield_predicate {
    min-width: 160px;
}
.query_label {
    width: 190px;
    display: flex;
    justify-content: flex-start;
    margin: 0 13px 0 13px;
    padding-left: 5px;
}
.div_querytextfield {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #F1F1F1;
    border-radius: 10px;
    margin: 13px 13px 0 13px;
}
#div_querysection {
    margin: auto;
    width: 80%;
    display: none;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 101;
}
.p_querytextlabel {
    color: #727272;
    margin-bottom: 0;
    font-size: 8px;
    font-weight: 700;
}
.txt_subjectQuery {
    font-family: Segoe UI;
    padding: 15px 10px;
    z-index: 101;
    width: 190px;
    border: 0;
    outline: none;
    background: none;
}

.div_statements {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    width: 75%;
    max-width: 30rem;
}
.div_queriedstatements {
    display: flex;
    flex-direction: column;
}
.div_querysearch_button {
    width: 589px;
    display: flex;
    justify-content: flex-end;
}
@media screen and (max-width: 720px) {
    .div_querytextfield {
        margin: 13px 0 0 0;
    }
    .div_queryfield {
        width: 85%;
    }
    #div_querysection {
        width: 100%;
    }
    #div_queryfields {
        width: 95%;
        flex-direction: column;
    }
    .div_statements {
        width: 100%;
    }
    .div_querysearch_button {
        width: 100%;
        justify-content: center;
    }
    .txt_subjectQuery {
        width: 100%;
    }
    #div_predicateQuery_tip {
        right: 9%;
        z-index: 102;
    }
}

.p_statement {
    font-size: 13px;
    margin: 3px 5px;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 90px;
    word-break: break-all;
}

.div_title {
    padding-right: 3rem;
}
.div_login {
    display: flex;
    justify-content: space-between;
}

.fluent_dialog {
    z-index: 11;
}
.filter_check {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    margin: 18px 0;
    padding-inline-end: calc(var(--design-unit) * 2px + 2px);
}

.FormLogin {
    width: 300px;
    margin: 1rem auto 0 auto;
}

.div_set_favorite, .report_action {
    display: flex;
    align-items: flex-start;
    width: 25px;
    justify-content: center;
    height: 35px;
    margin: auto 2px;
}

.div_side_arrows {
    left: 9px;
    position: absolute;
    height: 100vh;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 720px) {
    .div_set_favorite, .report_action {
        align-items: center;
    }
    .div_label_info {
        margin-right: 42px !important;
    }
}
.div_side_arrows_but {
    height: 80px;
}
.side_arrows {
    width: 10px;
    cursor: pointer;
}

.arrow_expanded {
    transform: rotate(90deg);
    transition: .2s;
}
.arrow_collapsed {
    transform: rotate(-90deg)!important;
    transition: .2s;
}

.nav_items_over {
    z-index: 1112!important;
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: rgb(0 0 0 / 6%) 4px 0px 6px inset;
    grid-area: 1 / 1 / 2 / 2;
}

.a_tab {
    overflow-y: overlay;
    background-color: #ffffff;
}
.tab_button_active {
    background-color: #EEEEFF !important;
}
.tab_button_txt_active {
    color: #5B60D2 !important;
}

.div_tab_button {
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 10px;
    margin: 10px 5px;
}
    .div_tab_button:hover {
        background-color: #eeeeee;
    }
.tab_buttons {
    margin: 0;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #727272;
}

#rightmenu {
    overflow-y: scroll;
    background-color: #ffffff;
    -moz-box-shadow: 0 0 30px 5px #e6e6e6;
    -webkit-box-shadow: 0 0 30px 5px #e6e6e6;
}
.sidebar, .sidebar1, .sidebar2 {
    height: -webkit-fill-available;
    /*display: flex;
    flex-direction: column;*/
    width: 32px;
    position: absolute;
    z-index: 5111;
    top: 109px;
    background-color: white;
    overflow-x: hidden;
    /*transition: .3s;*/
}
    .sidebar a, .sidebar1 a, .sidebar2 a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: black;
        display: block;
        transition: .3s;
    }
        .sidebar_right a:hover {
            color: #f1f1f1;
        }


.top_navbar {
    height: 48px;
    width: 100%;
    /*position: relative;*/
    z-index: 6001;
    background-color: #242424;
    top: 0 !important;
    position: absolute !important;
}
@media screen and (max-width: 720px) {
    .top_navbar {
        position: absolute;
        height: 70px !important;
        display: flex;
        align-items: center;
        background-color: #f7f7f7;
    }
    .topMenu_Menu {
        top: 38px !important;
    }
    .sidebar, .sidebar1, .sidebar2 {
        top: 90px;
    }
    #tab_1, #tab_2 {
        bottom: 142px;
    }
    #tab_3 {
        bottom: 70px;
    }
}
@media screen and (max-width: 450px) {
    .sidebar_left {
        padding-top: 15px;
    }
        .sidebar_left a {
            font-size: 18px;
        }
}
.div_optionsbar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    bottom: 10px;
    justify-content: space-between;
}
@media screen and (max-width: 720px) {
    .div_optionsbar {
        flex-direction: column;
        align-items: flex-start;
    }
}
.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
}
    .openbtn:hover {
        background-color: #444;
    }

.list_drawer {
    transition: .5s;
    opacity: 1;
}
.hide_drawer {
    opacity: 0!important;
}
#main, .div_graph {
    transition: margin-left .5s;
    padding: 20px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
#main_right {
    text-align: end;
    transition: margin-right .5s;
    padding: 20px;
}

.links line {
    stroke: #5B5FC7;
    stroke-opacity: 0.7;
}

.nodes circle {
    stroke: #fff;
    stroke-width: 1.5px;
}
#nodes_svg, #main_hierarchy {
    transition: .5s;
    height: 100%;
    width: 100%;
}

.div_graph_switch {
    display: flex;
    background: #F1F1F1;
    border-radius: 5px;
    position: relative;
    z-index: 5000;
    width: fit-content;
    height: min-content;
}
.div_graph_switch_opt {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 100;
}
.p_graph_switch {
    margin: 0;
    font-size: 12px;
}
.btn_graph_switch {
    position: relative;
    z-index: 5000;
    width: fit-content;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 5px;
    transition: .2s;
    padding: 10px;
    border-radius: 5px;
    font-size: 13px;
    border: none;
}

    .btn_graph_switch:hover {
        background: #eeeeee;
    }

.div_node_props_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.node_props_title_left {
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
}
#description_drawer {
    margin-top: 35px;
}
.div_node_properties {
    margin-bottom: 3rem;
}

.div_tab_close_img {
    width: 30px;
    height: 30px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 4000;
}
.tab_close_img {
    width: 12px;
    margin-bottom: 3px;
}

circle {
    stroke-width: 1.5px;
}

line {
    stroke: #5B5FC7;
    stroke-width: 1.5px;
}

.tab_title {
    font-weight: 500;
}

.node_name {
    margin: 0;
    /*max-width: 99%;*/
    max-width: 100%;
    font-size: 18px;
    z-index: 4000;
}
.node_subtitle {
    font-size: 16px;
    margin: 3rem 0 2rem;
}


.div_node_property {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 100%;
}
.node_property {
    width: calc(100% - 18px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.node_property_label {
    margin: 0;
    width: 45%;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
}
.node_property_value {
    margin: 0;
    width: 50%;
    font-size: 14px;
    max-width: 250px !important;
    overflow: hidden;
    text-overflow: ellipsis;
}



input[type=range] {
    -webkit-appearance: none;
}
    input[type=range]::-webkit-slider-runnable-track {
        width: 300px;
        height: 5px;
        background: #ddd;
        border: none;
        border-radius: 3px;
    }
    input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        border: none;
        height: 13px;
        width: 13px;
        border-radius: 50%;
        background: #5B5FC7;
        margin-top: -4px;
    }
    input[type=range]:focus {
        outline: none;
    }

.div_topbar {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    top: 0;
    z-index: 6001;
    position: absolute;
    width: 100%;
}
.search_topbar {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    top: 0;
    z-index: 6001;
    position: absolute;
    width: 100%;
}
.p_actual_breadcrumb {
    margin: 0 3px;
    font-weight: 700;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}
.hoverable_breadcrumb {
    margin: 0 3px;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    max-width: 200px;
}

.node_labels {
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}

.div_searchbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.div_search {
    display: flex;
    margin: 2rem auto 0;
    padding: 0 !important;
    flex-direction: column;
    align-content: center;
}
.div_txt_searchbar {
    z-index: 101;
    width: 35%;
    max-width: 500px;
    min-width: 250px;
    margin: auto;
    display: flex;
    padding: 13px 15px;
    border-radius: 10px;
    background-color: #F1F1F1;
}
.txt_searchbar {
    width: 22rem;
    margin: auto;
    font-family: Segoe UI;
    width: 100%;
    border: 0;
    outline: none;
    background: none !important;
    appearance: none !important;
    background-color: transparent !important;
}

.div_searchcloud_navopt {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 100;
}
.searchcloud_navopt {
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
}
.searchcloud_navopt_activeopt {
    width: 90%;
    margin: auto;
    border-color: #5B5FC7;
    border-block-width: 2px;
    border-radius: 2px;
    transition: .2s;
}

.active_search_type {
    color: white !important;
    background: #7A7FFF !important;
}
.btn_search_type {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 5px;
    color: #5B5FC7;
    transition: .2s;
    padding: 11px 25px 11px 15px;
    border-radius: 11px;
    font-size: 13px;
    border: none;
    background: white;
    color: #727272;
}
    .btn_search_type:hover {
        background: #eeeeee;
    }

#filter_arrow {
    transition: .2s;
}
.filter_arrow_expanded {
    transform: rotate(180deg);
}
.filter_arrow_collapsed {
    transform: rotate(0deg) !important;
}
.div_filter_txt {
    width: 100%;
    padding: 0 5px;
    border-radius: 5px;
}
    .div_filter_txt:hover {
        background-color: #eeeeee;
    }

@media screen and (max-width: 720px) {
    #tooltip {
        width: 90% !important;
        bottom: 80px !important;
        left: 5% !important;
    }
    #tooltip_ctx {
        width: 90% !important;
        bottom: 0 !important;
        left: 5% !important;
    }
}
@media screen and (min-width: 720px) and (max-width: 950px) {
    #tooltip {
        width: 98% !important;
        left: 0 !important;
        bottom: 10px !important;
    }
    #tooltip_ctx {
        width: 98% !important;
        bottom: 150px !important;
        bottom: 10px !important;
    }
}
#tooltip, #tooltip_ctx {
    display: none;
    bottom: 0;
    left: auto;
    right: auto;
    flex-direction: column;
    position: relative;
    background-color: #FFFFFF !important;
    box-shadow: 0 0px 15px 0 #22222238;
    border-radius: 10px 10px 0 0;
    max-width: 800px;
    width: 100%;
    padding: 25px 25px 90px;
    opacity: 0;
}
    #tooltip::after, #tooltip_ctx::after {
        display: none
    }

#div_tooltip_node_top, #div_tooltip_ctx_top {
    display: flex;
    margin: 0 0 15px;
    justify-content: space-between;
}
#tooltip_node_top, #tooltip_ctx_top {
    display: flex;
    flex-direction: column;
}
#tooltip_node_ref, #tooltip_ctx_ref {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    max-width: 240px;
}
#tooltip_node_type, #tooltip_ctx_type {
    margin: 0;
    font-size: 12px;
}
.tooltip_desc_divider, .tooltip_ctx_divider {
    color: #DADBFD;
    font-size: 11px;
    font-weight: 700;
    margin: 0;
}
#tooltip_node_desc, #tooltip_ctx_desc {
    margin: 5px 0 10px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 18px;
    max-height: 54px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.node_summary_text {
    color: #242424;
}
.btn_gotonode {
    display: none;
}
.btn_concept {
    height: fit-content;
    margin: 10px;
    color: #7A7FFF;
    transition: .2s;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 13px;
    border: 0.01em solid #7A7FFF;
    background: #F8F8FF;
    display: flex;
    align-items: center;
}
    .btn_concept:hover {
        color: white;
        background-color: #7A7FFF;
    }

@media screen and (max-width: 720px) {
    .btn_concept {
        margin: 5px;
        padding: 8px 10px;
        border-radius: 15px;
    }
}


.div_refresh {
    height: 20px;
    width: 20px;
    z-index: 10;
    cursor: pointer;
    margin-right: 10px;
    transition: .5s;
}
@media screen and (max-width: 720px) {
    .div_refresh {
        margin-left: auto;
    }
}

#delete_modal {
    --dialog-height: 160px;
    --dialog-width: 460px;
    z-index: 10000 !important;
    outline: none !important;
}

.btn_gotocontext {
    margin-bottom: 15px;
    margin-top: 5px;
    margin-left: 15px;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
    font-weight: 600;
    width: fit-content;
}

.div_homeicon {
    z-index: 1000;
    margin: 10px 10px 7px 20px;
}
.homeicon {
    width: 18px;
    cursor: pointer;
}


.div_typelabels {
    width: fit-content;
    display: grid;
    height: fit-content;
}
.typelabels {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 7px 0;
    cursor: pointer;
    z-index: 1111;
    transition: color .4s;
}
.typelabels_spans {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: inline-block;
}
.typelabels_text {
    margin: auto 8px;
    font-size: 12px;
    transition: color .4s;
}
#tutorial_label {
    opacity: 0;
}
.tutorial_tooltips {
    transition: opacity .4s;
}

.accordion_contextFilter {
    z-index: 1110;
    background-color: #ffffff;
    margin: 0;
    border: 0;
}

.accordion_contextFilter_heading .icon {
    background-color: #ffffff;
    margin: 0;
}
.accordion_contextFilter_heading {
    font-size: 13px;
    font-weight: 700;
    display: flex;
}

.div_visualizar_contextos {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    align-items: center;
    width: fit-content;
    bottom: 0;
    margin-right: 45px;
    border-radius: calc(var(--layer-corner-radius) * 1px);
    transition: .5s;
}


.div_label_info {
    display: flex;
    justify-content: flex-end;
    margin-right: 32px;
    transition: .5s;
    margin-left: auto;
}
.div_label_info_img {
    display: flex;
    width: 18px;
    height: 18px;
    justify-content: center;
    z-index: 1110;
    margin-right: 30px;
}

.link {
    fill: none;
    stroke: #ccc;
    stroke-width: 2px;
}

#p_concept_relations {
    font-size: 14px;
    margin: auto 25px auto 0;
}

.hierarchy_node_refs {
    cursor: pointer;
}
    .hierarchy_node_refs:hover {
        fill: #7A7FFF;
    }

.div_divider {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.divider {
    border-style: solid;
    border-color: white;
    border-width: 22px 0 0 0;
    width: 1px;
    margin-left: 6px;
    margin-right: 5px;
}

@media screen and (max-width: 720px) {
    .div_homeicon {
        margin: 10px 10px 7px 15px;
    }
    .div_searchbar {
        display: flex;
        margin: auto;
        width: 95%;
    }
    .div_txt_searchbar {
        width: 85%;
        margin: 13px auto 0 auto;
    }
    .div_link_dist {
        display: flex;
        align-items: center;
        bottom: 0;
        margin-left: 0;
    }
    .div_refresh {
        height: 17px;
        width: 17px;
        z-index: 10;
        cursor: pointer;
        margin-left: auto;
        transition: .5s;
    }
    .div_typelabels {
        margin-left: 15px;
        padding-left: 40px
    }
    .div_label_info_img {
        display: flex;
        width: 18px;
        height: 18px;
        justify-content: center;
        z-index: 1110;
        margin-right: 25px;
    }
    .div_topbar {
        background-color: #ffffff;
        display: flex;
        align-items: center;
        top: 0;
        z-index: 22;
        position: absolute;
        width: 100%;
        flex-wrap: wrap;
    }
    .div_visualizar_contextos {
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        align-items: center;
        width: fit-content;
        bottom: 0;
        right: 32px;
        margin-left: 0;
        border-radius: calc(var(--layer-corner-radius) * 1px);
        transition: .5s;
    }
    .div_graphtype_title {
        display: none;
    }

    .p_breadcrumb_overflow {
        max-width: 40px;
        display: -webkit-box !important;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-all;
    }
}

@media screen and (max-width: 550px) {
    .div_login {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        width: 90%;
        margin: auto;
    }
    .login_title {
        font-size: 27px;
    }
    .login_subtitle {
        text-align: center;
        font-size: 13px;
    }
}

.hierarchy_graph, .concepts_graph {
    transition: .4s;
}

.graph {
    position: absolute;
    opacity: 0;
    z-index: -10;
    top: 0;
    left: 0;
}
.show_graph {
    opacity: 1 !important;
    z-index: 1 !important;
}

#reports_modal {
    z-index: 10000 !important;
    --dialog-width: 70% !important;
    --dialog-height: 85% !important;
    outline: none !important;
}
.div_report_page::-webkit-scrollbar-track {
    border-radius: 1px;
    background-color: #F3F4F9;
}
.modal_header_left {
    display: flex;
    align-items: center;
}

.modal_header_icon {
    width: 15px;
}


.modal_title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

#conceptintroduction_modal, #browserintroduction_modal {
    --dialog-height: unset !important;
    --dialog-width: 700px !important;
    z-index: 10000 !important;
    outline: none !important;
}
@media screen and (max-width: 720px) {
    #conceptintroduction_modal, #browserintroduction_modal {
        --dialog-height: unset !important;
        --dialog-width: 95% !important;
        outline: none !important;
    }
}
#introductionModal_body {
    display: flex;
    align-items: center;
    width: 100%;
    height: calc(100% - 100px);
    padding: 15px;
}
#introductionModal_header {
    height: 65px;
    display: flex;
    align-items: flex-start;
    padding: 15px 15px 0 0;
}
.modal_header_left {
    display: flex;
    align-items: center;
}

.modal_header_icon {
    width: 22px;
    height: 22px;
}
.modal_title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.videowin {
    width: 100%;
    border-radius: 10px;
    max-height: 100%;
}
.div_modal_title {
    width: 80%;
}

#url_iframe {
    border: none;
    height: 100% !important;
    padding: 10px;
    border-radius: 20px;
}

#info_modal {
    --dialog-width: 800px;
    --dialog-height: 600px;
    z-index: 10000 !important;
    outline: none !important;
}
@media screen and (max-width: 550px) {
    #info_modal {
        --dialog-width: 80%;
        --dialog-height: 38rem;
        z-index: 10000 !important;
    }
}

#url_modal {
    --dialog-width: 75%;
    --dialog-height: 38rem;
    z-index: 10000 !important;
    outline: none !important;
}

.div_modal_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 2rem 0;
}

.modal_node_title {
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
}

.div_nodeinfo_modal {
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    outline: none;
    justify-content: flex-start;
}
.div_url_modal {
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    outline: none;
    justify-content: space-between;
}
.modal_header_x_icon {
    width: 20px;
    height: 20px;
}
.modal_open_icon {
    margin-left: 10px;
    width: 16px;
    height: 16px;
}
.topMenu_Menu {
    z-index: 10000;
    left: -114px !important;
    width: 190px;
}


@media screen and (max-width: 1000px) {
    #reports_modal {
        --dialog-width: 95% !important;
        --dialog-height: calc(95% - 100px) !important;
        outline: none !important;
    }
}

.m-0 {
    margin: 0!important;
}


.userKB_opt {
    width: auto !important;
    margin: 0;
    color: #242424;
    font-size: 14px;
    text-align: initial;
    overflow: hidden;
    text-overflow: ellipsis;
}

.div_node_more_opt {
    align-items: center;
    display: flex !important;
    cursor: default !important;
    padding: 5px 10px !important;
    border-radius: 10px;
}
    .div_node_more_opt:hover {
        background-color: #F8F8FF;
    }
    .div_node_more_opt::after {
        right: 0px !important;
    }

#userKB_KBList {
    width: 100%;
    max-height: calc(100vh - 150px);
    overflow: scroll;
}
    #userKB_KBList::-webkit-scrollbar-thumb {
        background: #C7C7C7;
        border-radius: 10px;
        border: white;
    }
    #userKB_KBList::-webkit-scrollbar {
        height: 0;
        width: 8px;
    }
    #userKB_KBList::-webkit-scrollbar-thumb:hover {
        background: #B2B2B2;
    }

.userKB_menu {
    left: 80px !important;
    top: 40px !important;
    padding: 8px 0;
    z-index: 100;
    display: block;
    width: fit-content;
    height: fit-content;
    border-radius: 10px;
    position: relative;
}
.userKB_menuHeader {
    display: flex;
    align-items: center;
    padding: 10px 40px 0 10px;
}
    .userKB_menuHeader .userKB_opt {
        font-weight: 500;
    }

.userKB_menu_divider {
    width: 95%;
    border: solid;
    border-width: 0.01em;
    border-color: #e9e9e9;
    margin: 8px 0 8px 4px;
}

#div_TopUserPanel {
    display: flex;
    align-items: flex-start;
    margin: 5px 0 5px;
    padding: 5px;
    border-radius: 5px;
    text-decoration: none;
    color: currentcolor;
}

#div_TopUserPanel_icon {
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#topUserPanel_icon {
    width: 20px;
    height: 20px;
}

.topUserPanel_text {
    font-size: 14px;
}

.topUserPanel_subtext {
    font-size: 10px !important;
}

#userKB_region {
    border-radius: 10px !important;
    position: absolute !important;
    left: 165px !important;
    top: 30px !important;
    width: 250px !important;
}
#userKB_region2 {
    border-radius: 10px !important;
    position: absolute !important;
    left: 165px !important;
    top: 40px !important;
    width: 250px !important;
}
    #userKB_region .blazor-context-menu__item, #userKB_region2 .blazor-context-menu__item {
        align-items: center;
        display: flex !important;
        cursor: default !important;
        padding: 5px 10px !important;
        border-radius: 10px;
        font-size: 14px;
    }


.div_KBMenu_KBIcon {
    display: flex;
    height: fit-content;
    margin-right: 10px;
}
.KBMenu_KBIcon {
    width: 15px;
    height: 15px;
}
.div_userKB_opt:hover {
    background-color: #F8F8FF;
}