@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

* {
    box-sizing: border-box;
    /* outline: 1px dashed #f00; */
}
html {
    top: 0;
    position: fixed;
}

html, body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: 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: #eeeeee;
}

@media print {
    html, body {
        height: unset;
        background-color: transparent;
    }

    canvas {
        height: unset;
    }
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 10px;
}

.div_report_page::-webkit-scrollbar-track {
    border-radius: 1px;
    background-color: #F3F4F9;
}

::-webkit-scrollbar {
    height: 0;
    /*width: 25px;*/
    width: 12px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #C7C7C7;
    border-radius: 10px;
    /*border: 8px #2A2B2F solid;*/
}
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #B2B2B2;
    }

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: inline-block;
    padding: 0px 6px;
    border-radius: 3px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.progressRing_div {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.welcome {
    position: absolute;
    width: 100%;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.div_login {
    display: flex;
    justify-content: space-around;
}

#divMainForm {
    width: 100%;
}

#div_divMainForm {
    max-width: 300px;
}

.login_title {
    margin: 0 0 1rem 0;
    font-size: 4rem;
    line-height: 3rem;
    color: #5B5FC7;
    text-align: left;
}

.login_subtitle {
    text-align: left;
    font-size: 20px;
}

@media screen and (max-width: 900px) {
    .div_login {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        width: 90%;
        margin: auto;
    }

    .div_title {
        font-size: 15px;
        padding-right: 0;
        text-align: center;
        margin-bottom: 1rem;
    }

    .login_title {
        margin: 0;
        font-size: 2rem;
        line-height: 2rem;
        color: #5B5FC7;
        text-align: center;
    }

    .login_subtitle {
        text-align: center;
        font-size: 15px;
    }
}

.login_youraccount {
    font-weight: 500;
    margin-bottom: 2rem;
    cursor: pointer;
    width: fit-content;
    margin: 1rem auto;
}

.login_inputs {
    width: 100%;
    max-width: 300px;
}

.login_inputs_marginR {
    margin-bottom: 1rem;
}

.login_btn {
    width: 100%;
    max-width: 300px;
    margin-top: 2rem;
}

.login_error {
    color: #ec0000;
    font-weight: 500;
    margin-bottom: 2rem
}


@media screen and (max-width: 900px) {
    .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;
    }
}

/* GENERIC STYLES */

.width_100 {
    width: 100%;
}

.width_100_imp {
    width: 100% !important;
}

.minheight_100 {
    min-height: 100% !important;
}

.height_100 {
    height: 100%;
}

.margin_auto {
    margin: auto;
}

.flex_column {
    display: flex;
    flex-direction: column;
}

.flex_column_reverse {
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
}

@media print {
    .flex_column {
        float: left;
        clear: both;
        width: 100% !important;
    }
}


.display_flex {
    display: flex;
}

.display_none {
    display: none;
}

.force_display_none {
    display: none !important;
}

.flex_align_center {
    display: flex;
    align-items: center;
}

.just_center {
    justify-content: center;
}

.just_end {
    justify-content: end;
}

.just_space_between {
    justify-content: space-between;
}

.just_flex_end {
    display: flex;
    justify-content: flex-end;
}

.just_space-around {
    justify-content: space-around !important;
}

.height_100vh {
    height: 100vh;
}

.cursor_pointer {
    cursor: pointer;
}

.cursor_pointer_highlight:hover {
    color: #5b5fc7;
}

.cursor_default {
    cursor: default !important;
}

.cursor_not-allowed {
    cursor: not-allowed !important;
}

.visibility_hidden {
    visibility: hidden;
}

.noUnderline:hover {
    text-decoration: none !important;
}

.text_alert {
    color: #C4314B;
}

.show_flex {
    display: flex !important;
}

.show {
    display: block !important;
}

.overflow_x_hidden {
    overflow-x: hidden;
}

.OnHoverFillPrimary:hover path {
    fill: #7A7FFF;
}

.button_disabled_bkg {
    filter: saturate(0) !important;
}

.background_C7C7C7 {
    background-color: #C7C7C7 !important;
}

.background_7A7FFF {
    background-color: #7A7FFF !important;
}

.background_danger {
    background-color: #C4314B !important;
}

.background_EEEEFF {
    background-color: #EEEEFF !important;
}

.filter_FFFFFF {
    filter: invert(100%) sepia(4%) saturate(739%) hue-rotate(318deg) brightness(118%) contrast(100%);
}

.filter_7A7FFF {
    filter: invert(50%) sepia(86%) saturate(2943%) hue-rotate(217deg) brightness(105%) contrast(107%);
}

.filter_5B5FC7 {
    filter: invert(33%) sepia(87%) saturate(733%) hue-rotate(207deg) brightness(93%) contrast(84%);
}

.filter_AEB0E7 {
    filter: invert(75%) sepia(11%) saturate(962%) hue-rotate(200deg) brightness(94%) contrast(92%);
}

.filter_A8ABFF {
    filter: invert(81%) sepia(41%) saturate(4436%) hue-rotate(197deg) brightness(102%) contrast(103%);
}

.filter_969aff {
    filter: invert(58%) sepia(15%) saturate(1412%) hue-rotate(200deg) brightness(104%) contrast(105%);
}

.filter_C7C7C7 {
    filter: invert(95%) sepia(0%) saturate(29%) hue-rotate(156deg) brightness(93%) contrast(72%);
}

.filter_2A2B2F {
    filter: invert(10%) sepia(3%) saturate(2531%) hue-rotate(191deg) brightness(94%) contrast(81%);
}

.filter_DBDBDB {
    filter: invert(100%) sepia(0%) saturate(1139%) hue-rotate(202deg) brightness(114%) contrast(72%);
}

.filter_FBFBFB {
    filter: invert(100%) sepia(0%) saturate(17%) hue-rotate(16deg) brightness(260%) contrast(97%) !important;
}

.filter_D9DAFF {
    filter: invert(82%) sepia(38%) saturate(451%) hue-rotate(194deg) brightness(100%) contrast(102%);
}

.filter_5B60D2 {
    filter: invert(33%) sepia(66%) saturate(816%) hue-rotate(205deg) brightness(101%) contrast(91%);
}

.filter_727272 {
    filter: invert(46%) sepia(0%) saturate(1118%) hue-rotate(137deg) brightness(98%) contrast(111%);
}

.filter_8E8E8E {
    filter: invert(66%) sepia(0%) saturate(550%) hue-rotate(221deg) brightness(86%) contrast(82%);
}

.filter_888888 {
    filter: invert(54%) sepia(87%) saturate(0%) hue-rotate(158deg) brightness(84%) contrast(86%);
}

.filter_C4314B {
    filter: invert(27%) sepia(31%) saturate(4051%) hue-rotate(325deg) brightness(90%) contrast(92%);
}

.filter_212121 {
    filter: invert(12%) sepia(97%) saturate(0%) hue-rotate(200deg) brightness(104%) contrast(106%) !important;
}

.filter_1E1E1E {
    filter: invert(0%) sepia(12%) saturate(6145%) hue-rotate(11deg) brightness(100%) contrast(76%) !important;
}

.filter_727272_hover {
    filter: invert(46%) sepia(0%) saturate(1118%) hue-rotate(137deg) brightness(98%) contrast(111%) !important;
}

.filter_5B60D2_hover:hover {
    filter: invert(33%) sepia(66%) saturate(816%) hue-rotate(205deg) brightness(101%) contrast(91%);
}

.filter_FBFBFB_hover:hover {
    filter: invert(100%) sepia(0%) saturate(17%) hue-rotate(16deg) brightness(105%) contrast(97%) !important;
}

.filter_7A7FFF_hover:hover {
    filter: invert(50%) sepia(86%) saturate(2943%) hue-rotate(217deg) brightness(105%) contrast(107%) !important;
}

.desktop_display {
    display: block;
}

.desktop_display_flex {
    display: flex;
}

.mobile_display, mobile_display_flex {
    display: none;
}

@media screen and (max-width: 900px) {
    .mobile_display {
        display: block;
    }

    .mobile_display_flex {
        display: flex;
    }

    .desktop_display, desktop_display_flex {
        display: none;
    }
}

.unselectable {
    user-select: none; /* Standard syntax */
    -webkit-user-select: none; /* Chrome, Safari, newer Edge */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Older IE/Edge */
}

#fullpage {
    display: none;
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: 90vmin;
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-color: #0000005e;
}

.grow {
    transition: all 0.2s ease-in-out;
}

    .grow:hover {
        transform: scale(1.01);
    }

.btn_toggleTabAppearanceBtns {
    display: none;
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------- Editor Styles - START ------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
.workarea_progressRing {
    width: 20px;
    height: 100px;
}

.div_editingNode_tab {
    padding: 120px 0;
    margin: auto auto 30px;
    width: calc(100% - 80px);
}

@media screen and (max-width: 900px) {
    .div_editingNode_tab {
        width: calc(100% - 30px) !important;
        padding: 0 0 20vh !important;
    }
}

.div_editingNode_properties {
    display: flex;
    padding: 0 !important;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: #F5F5F5;
    min-height: 360px;
}


.div_visibility_radio {
    display: flex;
    align-items: center;
    padding: 5px;
    margin: 3px 8px;
    border-radius: 6px;
    box-shadow: 0 3px 3px rgb(0 0 0 / 5%);
}

.visibility_radio_label {
    margin: 0;
    padding: 7px 10px 10px;
    font-size: 14px;
}

.div_visibility {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

slot[name="checked-indicator"] {
    width: 13px !important;
    height: 13px;
}

.visibility_radio .control {
    width: 13px !important;
    height: 13px;
}

.div_

_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 10px 10px;
}

.visibilityUsers_title {
    font-size: 14px;
    margin: 0;
}

.visibilityUsers {
    display: flex;
    padding: 5px 2px;
}

.visibility_user {
    display: flex;
    margin: 5px;
    padding: 6px 20px;
    border-radius: 22px;
    align-items: center;
    background-color: #EEEEFF;
    box-shadow: rgb(0 0 0 / 10%) 0px 3px 6px 0px;
}

.visibility_nousers {
    color: #1E1E1E;
    font-size: 12px;
    font-style: italic;
    margin: 0 0 0 10px;
}

.visibility_user_name, .new_visibility_user_name {
    color: #1E1E1E;
    font-size: 14px;
    margin: 0 6px 0 0px;
}

.visibility_user_x_icon {
    width: 12px;
    height: fit-content;
}

.subtitle_add_icon {
    width: 13px;
    height: 13px;
}

.tap_node_actions_p {
    font-size: 13px;
    margin: 0 0 0 5px;
}

.p_visibility_adduser {
    margin: 0 0 0 5px;
    font-size: 12px;
}

.visibility_radio_icon {
    width: 15px;
}

/* --- START Open Node Editor --- */

.openNode_type {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: #727272;
    display: flex;
    align-items: center;
}

.openNode_title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.openNode_actions_icon {
    width: 100%;
}

.openNode_actions_expanded_icon_chat {
    width: 21px;
    height: 19px;
    filter: invert(92%) sepia(0%) saturate(0%) hue-rotate(178deg) brightness(91%) contrast(83%);
}

.openNode_actions_icon_chat {
    width: 15px;
    height: 24px;
    filter: invert(92%) sepia(0%) saturate(0%) hue-rotate(178deg) brightness(91%) contrast(83%);
}

.openNode_actions_expanded_icon_ai {
    width: 19px;
    height: 20px;
}

.openNode_actions_icon_ai {
    width: 13px;
    height: 17px;
}

.openNode_actions_icon_dis {
    filter: invert(95%) sepia(0%) saturate(29%) hue-rotate(156deg) brightness(93%) contrast(135%) !important;
}

.div_openNode_actions_icon_chat:hover .openNode_actions_icon_chat {
    filter: invert(51%) sepia(74%) saturate(2816%) hue-rotate(214deg) brightness(101%) contrast(101%) !important;
}

.div_openNode_actions_icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.actions_icon_favorite {
    width: 17px !important;
}

.openNode_subtitle_div {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 0 15px 0;
}

.large-screen {
    display: contents;
}

.small-screen {
    display: none;
}


@media (max-width: 900px) {
    .width_100 {
        width: 100%;
    }

    .div_concept_cloud {
        width: 100%;
    }
}
/* --- END Open Node Editor --- */

/* --- Menu Burger --- */
label .menu {
    position: absolute;
    right: 50px;
    top: -110px;
    z-index: 85;
    width: 100px;
    height: 100px;
    background: #FFF;
    border-radius: 50% 50% 50% 50%;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    box-shadow: 0 0 0 0 #FFF, 0 0 0 0 #FFF;
    cursor: pointer;
}

label .hamburger {
    position: absolute;
    top: 137px;
    left: 50px;
    width: 20px;
    height: 2px;
    background: #000;
    display: block;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

    label .hamburger:after, label .hamburger:before {
        -webkit-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        background: #000;
    }

    label .hamburger:before {
        top: -6px;
    }

    label .hamburger:after {
        bottom: -6px;
    }

label input {
    display: none;
}

    label input:checked + .menu {
        box-shadow: 0 0 0 100vw #FFF, 0 0 0 100vh #FFF;
        border-radius: 0;
    }

        label input:checked + .menu .hamburger {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }

            label input:checked + .menu .hamburger:after {
                -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
                bottom: 0;
            }

            label input:checked + .menu .hamburger:before {
                -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
                top: 0;
            }

        label input:checked + .menu + ul {
            opacity: 1;
            z-index: 98;
        }

label ul {
    padding: 0;
    z-index: -1;
    position: absolute;
    top: 125px;
    left: 50%;
    -webkit-transform: translate(-50%, -20%);
    transform: translate(-50%, -20%);
    opacity: 0;
    -webkit-transition: .25s 0s ease-in-out;
    transition: .25s 0s ease-in-out;
    list-style-type: none;
}

label div_tab_button {
    margin-bottom: 1em;
    display: block;
    color: #f38630;
    text-decoration: none;
}

/* --- End Menu Burger --- */


.favorite_tab_subtitle_icon {
    width: 18px;
    min-width: 18px;
    margin-right: 8px;
    height: fit-content;
    margin: auto 8px auto 0;
}


#toolbar {
    border-radius: 5px 5px 0 0;
}

.openNode_description {
    width: 100%;
    font-size: 14px;
    white-space: pre-wrap;
    max-height: 400px;
    min-height: 160px;
    padding: 10px;
    border-radius: 0 0 5px 5px;
    border-width: 1px;
    border-color: #F5F5F5;
    background-color: #FFFFFF;
    box-shadow: 0 3px 3px rgb(0 0 0 / 5%);
    resize: vertical;
    overflow: auto;
}

    .openNode_description:focus-visible {
        outline: none !important;
    }

.ql-editor {
    position: absolute;
    width: calc(100% - 17px) !important;
    height: calc(100% - 12px) !important;
}

.htmlIcon {
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
}

.description_htmlIcon {
    width: 23px;
    height: fit-content !important;
}

.div_PropertyWithLabel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
    transition: .2s;
    min-height: 40px;
}

.div_openNode_visibility {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}

.openNode_property_label {
    margin: 0;
    font-size: 14px;
}

.openNode_property_input {
    width: calc(100% - 120px) !important;
    min-width: 220px !important;
}

    .openNode_property_input .listbox {
        max-height: 140px !important;
    }

@media screen and (max-width: 900px) {
    .openNode_property_input {
        width: 100% !important;
    }
}

.context_location_span {
    color: #7A7FFF;
}

.div_editingNode_OtherContexts {
    display: flex;
    flex-direction: column;
}

.div_other_contexts {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.acc_other_contexts {
    width: 50%;
    padding: 10px;
}

.accItem_other_contexts {
    margin: 5px 0;
}


@media screen and (max-width: 900px) {
    .acc_other_contexts {
        width: 100%;
    }
}

.p_noDescription {
    margin: 0;
    font-size: 13px;
    font-style: italic;
    padding: 10px 0 10px;
}

.p_contextDescription {
    margin: 0;
    font-size: 14px;
    padding: 10px 0 10px;
}

.other_contexts_title {
    font-weight: 600;
    margin: 0;
}

.newContext_description {
    width: 90%;
    font-size: 14px;
    white-space: pre-wrap;
    max-height: 400px;
    min-height: 160px;
    padding: 10px;
    border-radius: 0 0 5px 5px;
    border-width: 1px;
    border-color: #F5F5F5;
    background-color: #FFFFFF;
    box-shadow: 0 3px 3px rgb(0 0 0 / 5%);
    resize: vertical;
    overflow: auto;
    margin: 2rem 0 0 0;
}

    .newContext_description:focus-visible {
        outline: none !important;
    }

.modalSubmitBtn {
    margin: 2rem 0 0 0;
    position: absolute;
    right: 20px;
}

.sideBar_div {
    top: 0;
    position: fixed;
    display: flex;
    z-index: 99;
    height: 100vh;
    background-color: #2A2B2F;
}

.sideBar_div_open {
    padding: 0 .6rem 0 0;
}

.sideBar {
    width: 27px;
    min-width: 27px;
    height: 100vh;
    background-color: #2A2B2F;
    transition: .1s;
}

.sideBar_nav {
    display: flex;
    flex-direction: column;
}

.sideBar_navOpt {
    display: flex;
    margin: 0 0 5px 0;
    cursor: pointer;
    border-radius: 5px;
    padding: 4px 7px;
    transition: .1s;
    align-items: center;
    position: relative;
}

    .sideBar_navOpt:hover {
        background: #7A7FFF;
    }

        .sideBar_navOpt:hover .navBar_node_more path {
            fill: #2A2B2F;
        }

.sideBar_navOpt_active {
    display: flex;
    margin: 0 0 5px 0;
    cursor: pointer;
    border-radius: 5px;
    padding: 4px 7px;
    transition: .1s;
    align-items: center;
    background: #7A7FFF !important;
}

.sideBar_navOpt_text {
    color: #F1F1F1;
    margin: 0 0 0 7px;
    font-size: 14px;
    cursor: pointer;
}

    .sideBar_navOpt_text:hover {
        text-decoration: underline;
    }

#sideBar_manager_drawer {
    position: relative;
    margin-left: 5px;
}

.p_sideBar_manager_empty {
    color: #f1f1f152;
    font-size: 12px;
    font-style: italic;
    padding: 6px 1rem;
}

.sideBar_navOpt_WorkArea_m-30 {
    right: 30px !important;
}

.sideBar_navOpt_WorkArea_m-60 {
    right: 60px !important;
}

#sideBar_navOpt_WorkArea_clean, #sideBar_navOpt_WorkArea_update {
    position: absolute;
    display: flex;
    right: 5px;
    cursor: pointer;
}

.sideBar_openNode {
    background: #7A7FFF !important;
}

    .sideBar_openNode .navBar_node_icon, .sideBar_openNode .navBar_node_iconWColor {
        filter: grayscale(100%) brightness(100);
    }

    .sideBar_openNode .navBar_node {
        color: white !important;
    }

.sideBar_openNode_parent {
    background: #545454 !important;
}

.btn-toggle-nav button {
    width: 100%;
    padding: .1875rem .5rem;
    transition: .1s;
}


.btn-toggle::before {
    width: 1em;
    line-height: 0;
    transition: transform .35s ease;
    transform-origin: .5em 50%;
}

.btn-toggle_expanded {
    background-color: #545454 !important;
}

.btn-toggle:focus {
    background-color: #545454 !important;
}

.btn-toggle:hover {
    background-color: #545454 !important;
}

.navBar_rootnode_div {
    display: flex;
    align-items: center;
    transition: .1s;
    position: relative;
}

.navBar_node_div {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

    .navBar_node_div:hover .navBar_node:after {
        width: calc(100% - 20%) !important;
        color: #FBFBFB !important;
        text-decoration: underline !important;
    }

    .navBar_node_div:hover .navBar_node_actions_div {
        display: inline-flex !important;
        align-items: center;
    }

.navBar_rootnode_div:hover .navBar_node_actions_div {
    display: inline-flex !important;
    align-items: center;
}

.navBar_rootnode_div:hover .navBar_node_actions_div {
    display: inline-flex !important;
    align-items: center;
}

.navBar_node_actions_div {
    display: none;
    position: absolute;
    right: 3px;
}

.navBar_node_btn {
    position: relative;
    width: 100%;
    justify-content: space-between;
}

.navBar_node_fav_icon {
    width: 14px;
    cursor: pointer;
}

    .navBar_node_fav_icon:hover path {
        fill: #FBFBFB;
    }

.navBar_move_icon_div {
    display: none;
    width: 20px;
    cursor: pointer;
    text-align: center;
    position: absolute;
}

.navBar_node_ul {
    margin: 0 0 0 auto;
    width: calc(100% - 12px);
}

.li_node_parcel_noChildren {
    width: calc(100% - 23px);
    margin-left: 20px;
}

.chevron_expand_div {
    min-width: 20px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}

.navBar_expandnode {
    width: 100%;
    margin-top: .125rem;
    justify-content: space-between;
}

    .navBar_expandnode:hover {
        background-color: #545454;
    }

.navBar_node {
    display: block;
    text-overflow: ellipsis;
    white-space: pre;
    overflow: hidden;
    width: fit-content;
    max-width: 77%;
    color: #C7C7C7;
    text-align: initial;
    transition: .1s;
    pointer-events: none;
    position: relative;
    box-sizing: border-box;
}

    .navBar_node:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 20px;
        pointer-events: initial;
    }

    .navBar_node:hover .navBar_node_icon {
        filter: invert(94%) sepia(99%) saturate(5%) hue-rotate(115deg) brightness(105%) contrast(97%) !important;
    }

    .navBar_node:hover {
        color: #FBFBFB !important;
        text-decoration: underline !important;
    }


.navBar_node_expanded {
    color: #FBFBFB !important;
}

.navBar_node_arrowNref {
    display: flex;
    align-items: center;
    width: calc(100% - 25px);
}

.navBar_node_header {
    width: 80%;
    display: flex;
    align-items: center;
}

.navBar_node_icon {
    width: 14px;
    min-width: 14px;
    max-width: 14px;
    height: fit-content;
    max-height: 14px;
    margin: 0 8px 0 0;
    transition: .1s;
    filter: invert(61%) sepia(0%) saturate(0%) hue-rotate(318deg) brightness(92%) contrast(99%);
}

.navBar_node_icon-mr_0 {
    margin: 0 8px 0 0 !important;
}


.navBar_node_root {
    margin: 0 !important;
    background-color: transparent !important;
}

.navBar_node_expandable {
    padding: 0 !important;
    background-color: transparent !important;
}

.sideBar_navActions {
    bottom: 0;
    position: absolute;
    padding-bottom: 5px;
    background-color: #2A2B2F;
    width: calc(100% - 1.6rem);
    height: 30px;
}

.navAction_newNode {
    color: #8E8E8E;
}

    .navAction_newNode:hover .p_navAction_newNode {
        color: #F1F1F1;
    }

    .navAction_newNode:hover .navAction_newNode_icon path {
        fill: #FBFBFB;
    }

.p_navAction_newNode {
    font-size: 14px;
    margin: 0 0 0 5px;
}

.navAction_newNode_icon {
    width: 18px;
    height: 18px;
}

.navBar_WA_actions {
    width: 14px;
    height: 16px;
}

    .navBar_WA_actions:hover path {
        fill: #FBFBFB !important;
    }

    .navBar_WA_actions path {
        transition: .1s;
    }

.navBar_node_more {
    width: 11px;
    height: 16px;
    display: flex;
}

.navBar_node_add {
    width: 12px;
    height: 16px;
    display: flex;
    transition: .1s;
}



#hierarchySummary_update:hover path {
    fill: #7A7FFF !important;
}

.more_menu_anchorRegion {
    display: none;
}

.wa_node_reference {
    pointer-events: none;
    cursor: pointer;
}

.node_actions_menu {
    z-index: 100;
    display: block;
    max-height: calc(100vh - 16px); /* 2× the 8px PADDING from the JS */
    width: fit-content;
    min-width: 180px;
    height: fit-content;
    border-radius: 10px;
    position: relative;
    right: -5px;
    top: 0;
    overflow-y: auto;
    overscroll-behavior: contain; /* prevents scroll from bubbling to the page */
}
    /*.node_actions_menu {
    max-height: calc(100vh - 16px);*/ /* 2× the 8px PADDING from the JS */
    /*overflow-y: auto;
    overscroll-behavior: contain;*/ /* prevents scroll from bubbling to the page */
    /*}*/
    /* Thin, unobtrusive scrollbar so users notice it's scrollable */
    .node_actions_menu::-webkit-scrollbar {
        width: 4px;
    }

    .node_actions_menu::-webkit-scrollbar-track {
        background: transparent;
    }

    .node_actions_menu::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.18);
        border-radius: 4px;
    }

        .node_actions_menu::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 0, 0, 0.32);
        }


.node_more_menu {
    z-index: 100;
    position: fixed;
    width: max-content;
    padding: 10px 5px;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 0.6px 1.8px rgba(0, 0, 0, 0.11), 0px 3.2px 7.2px rgba(0, 0, 0, 0.13);
}

.node_more_menu_open {
    display: block !important;
}

.node_morePopup_div {
    display: none;
    position: absolute;
    z-index: 100;
    top: 24px;
    right: -150px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgb(0 0 0 / 15%);
}

.node_morePopup {
    width: 200px;
    padding: 11px 0;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    background-color: #FFFFFF;
}

#paste_menu {
    display: none;
    position: absolute;
    left: 276px;
    top: 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 12px 10px 13px 4px rgb(0 0 0 / 6%);
}

.div_node_more_opt, .div_node_more_opt_save {
    align-items: center;
    display: flex !important;
    cursor: default !important;
    padding: 5px 10px !important;
    border-radius: 10px;
    font-size: 14px;
}

    .div_node_more_opt:hover, .div_node_more_opt_save:hover {
        background-color: #F8F8FF;
    }

    .div_node_more_opt::after, .div_node_more_opt_save::after {
        right: 0px !important;
    }

.div_node_more_subopt {
    border-radius: 10px;
    padding: 5px 0px !important;
}

.node_more_opt_disable {
    color: #B8B8B8 !important;
}

.div_node_more_opt {
    margin-bottom: 7px;
    font-size: 14px;
    color: #242424;
}

.node_more_actions_menu, .userKB_opt {
    width: 135px !important;
    margin: 0;
    color: #242424;
    font-size: 14px;
    text-align: initial;
    /*overflow: hidden;*/
}

.node_more_opt_icon {
    width: 15px;
    height: 15px;
}

.div_node_more_opt_icon {
    display: flex;
    height: fit-content;
    margin-right: 10px;
}

.text_danger {
    color: #C4314B !important;
}

.p_node_action_high {
    color: #7A7FFF !important;
}

@media screen and (max-width: 900px) {
    .sideBar {
        width: 0;
        min-width: 0;
        height: 100%;
    }

    .sideBar_div {
        height: 100vh;
    }

    .sideBar_navActions {
        /*position: relative;*/
        display: none;
    }
}

fluent-dialog::part(control):focus-visible {
    outline: none !important;
}

.div_modal_submitButton, .div_modal_cancelButton {
    margin: 0;
    bottom: 0;
    display: flex;
    transition: .4s;
    width: fit-content;
    position: absolute;
    border-radius: 5px;
    align-items: center;
    padding: 10px 20px;
    justify-content: center;
    background-color: #EEEEFF;
}

.div_modal_submitButton {
    right: 20px;
}

.div_modal_cancelButton {
    right: 110px;
}

.div_modal_foot {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media screen and (max-width: 900px) {
    fluent-dialog::part(control) {
        margin-bottom: 6rem !important;
    }

    .div_thought_modal {
        padding: 20px 20px 5rem;
    }
    /*.div_modal_foot {
        bottom: 5rem;
    }*/
}

.modal_header_left {
    display: flex;
    align-items: center;
}

.modal_header_icon {
    width: 22px;
    height: 22px;
}

.modal_header_x_icon {
    width: 25px;
}

.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_search {
    margin: auto;
    display: flex;
    width: 100%;
    height: calc(100% - 50px);
    flex-direction: column;
    align-items: center;
}

.newRel_selectedNode {
    border: 1px solid #DADBFD;
    background-color: #f5f5fb;
    border-radius: 8px;
}

.div_rel_modal_search {
    margin: auto;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
}

.div_rel_searchbar {
    width: 90%;
    margin: auto;
    display: flex;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #F1F1F1;
}

.modal_inputLabels {
    font-size: 9px !important;
    font-weight: 700;
    margin: 20px 0 5px 5%;
    color: #727272;
}

.modal_inputLabels_disabled {
    color: #C7C7C7;
}

.archtype_input {
    color: #1E1E1E;
    font-size: 14px;
}

.div_newRel_nodeCloud {
    display: flex;
    width: 90%;
    height: fit-content;
    max-height: 250px;
    flex-wrap: nowrap;
    overflow-y: scroll;
    overflow-x: hidden;
    margin: 1rem auto 2rem;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

#editRel_modal {
    --dialog-width: 70%;
    --dialog-height: 70%;
    z-index: 200 !important;
}

#tutorial_modal {
    --dialog-width: 700px !important;
    --dialog-height: unset !important;
}

#newcontext_modal, #genAI_modal, #genAITranslate_modal, #search_modal {
    --dialog-width: 700px !important;
    --dialog-height: unset !important;
}

#newcontext_modal, #genAI_modal, #genAITranslate_modal, #media_modal, #search_modal, #tutorial_modal,
#reports_modal, #editRel_modal, #genAITree_modal {
    z-index: 2000 !important;
}

#reports_modal {
    --dialog-width: 70% !important;
    --dialog-height: 85% !important;
}

#media_modal {
    --dialog-width: 600px !important;
    --dialog-height: unset !important;
}

#templateConst_modal {
    --dialog-width: 900px !important;
    --dialog-height: unset !important;
}

@media (max-width: 920px) {
    #templateConst_modal {
        --dialog-width: 90% !important;
        --dialog-height: unset !important;
    }
}

.div_modal_main {
    height: 100%;
    padding: 5px 0;
    display: flex;
    outline: none;
    position: relative;
    overflow-y: scroll;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.KBAIEditorModal {
    --dialog-width: 900px !important;
    --dialog-height: unset !important;
    z-index: 2000 !important;
}

    .KBAIEditorModal::part(control):focus-visible {
        outline: none !important;
    }

@media (max-width: 920px) {
    .KBAIEditorModal {
        --dialog-width: 90% !important;
        --dialog-height: unset !important;
    }
}

@media (max-width: 580px) {
    #delete_modal, #delete_node_modal {
        --dialog-width: 90% !important;
        --dialog-height: 160px !important;
    }
}

#delete_modal, #delete_node_modal {
    --dialog-height: 160px;
    --dialog-width: 560px;
    z-index: 2000 !important;
}

@media screen and (max-width: 500px) {
    #newcontext_modal, #genAI_modal, #media_modal, #search_modal, #tutorial_modal {
        --dialog-width: 95% !important;
        --dialog-height: unset;
    }
}

@media screen and (max-width: 900px) {
    .newRel_relButton {
        width: 100%;
    }

    .div_newRel_relType {
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        display: flex;
    }
}

@media screen and (max-width: 1000px) {
    #reports_modal {
        --dialog-width: 95% !important;
        --dialog-height: calc(95% - 100px) !important;
    }

    #media_modal {
        --dialog-width: 95%;
        --dialog-height: 300px;
        z-index: 2000 !important;
    }
}

.div_modal_header {
    display: flex;
    margin: auto;
    width: 100% !important;
    justify-content: space-between;
}

.div_newRel_bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 0 0 5%;
    width: 90%;
}

.newRel_relButton {
    height: 40px;
}

.relButton_icon {
    height: 15px;
    width: 15px;
}

@media screen and (max-width: 900px) {
    .div_newRel_bottom {
        display: block;
    }
}


.div_relations_actions {
    display: flex;
    justify-content: flex-end;
}

.div_relations_table {
}

.div_relations_table_header {
    display: flex;
    margin: 15px 0 10px 7px;
}

.p_relations_table_header {
    font-size: 12px;
    color: #727272;
    font-weight: 500;
    margin: 0;
    padding: 0 0 0 .5rem;
}

.relations_table_header_type, .td_type {
    width: 20%;
}

.relations_table_header_dest, .td_reference {
    width: 40%;
}

.relations_table_header_prop, .td_property {
    width: 40%;
}

.relations_table_header_actions {
    width: 60px;
}

.td_actions {
    width: 60px;
}

.relations_actions_icon {
    transition: .1s;
    width: 14px;
    opacity: 0;
}

.relations_del_icon:hover path {
    fill: #C4314B;
}

.relations_edit_icon {
    margin-right: 5px;
}

    .relations_edit_icon:hover path {
        fill: #242424;
    }

.relationship_table td {
    font-size: 13px;
    color: #242424;
}

.relationship_table {
    border-collapse: collapse;
    border-collapse: separate;
    border-spacing: 1px;
    border-radius: 5px;
}

#dependencies_table {
    border-left: 6px solid #50A1BCbd;
}

#influences_table {
    border-left: 6px solid #E38539bd;
}

.relations_table_tr:hover .relations_actions_icon {
    opacity: 1;
}


#multiple_nodes_modal {
    --dialog-height: unset !important;
    --dialog-width: 700px !important;
    z-index: 100 !important;
}

#thought_modal {
    --dialog-height: unset !important;
    --dialog-width: 700px !important;
    z-index: 100 !important;
}

@media screen and (max-height: 1020px) {
    #thought_modal {
        --dialog-height: unset !important;
        --dialog-width: 80% !important;
    }
}

@media screen and (max-width: 800px) {
    #thought_modal {
        --dialog-height: unset !important;
        --dialog-width: 80% !important;
    }
}

@media screen and (min-width: 1250px) {
    #thought_modal {
        --dialog-height: unset !important;
        --dialog-width: 60% !important;
    }
}


#introduction_modal {
    --dialog-height: unset !important;
    --dialog-width: 700px !important;
    z-index: 100 !important;
}

#mailto_modal {
    --dialog-height: unset !important;
    --dialog-width: 700px !important;
    z-index: 100 !important;
}

@media screen and (max-width: 720px) {
    #multiple_nodes_modal {
        --dialog-height: unset !important;
        --dialog-width: 90% !important;
    }

    #introduction_modal {
        --dialog-height: unset !important;
        --dialog-width: 95% !important;
    }

    #mailto_modal {
        --dialog-height: unset !important;
        --dialog-width: 95% !important;
    }
}

@media screen and (max-height: 900px) {
    .div_thought_modal {
        margin-bottom: 0 !important;
    }
}

.div_delete_modal {
    width: fit-content;
    margin: 30px auto 0;
}

#linkShare_modal {
    --dialog-height: 120px !important;
    --dialog-width: 400px !important;
    z-index: 100 !important;
}

.p_delete_modal {
    margin-bottom: 25px;
}

.div_delete_modal_actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.delete_modal_action {
    margin-right: 10px;
}

.cancel_modal_action {
    width: 80px;
}

.div_menu_accordion {
    display: flex;
    justify-content: space-between;
    margin-top: 33px;
    width: 95%;
    padding-left: 29px;
}

.infoTooltip_title {
    color: #DADBFD;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 12px;
}

.infoTooltip_p {
    color: #FFFFFF;
    font-size: 12px;
    margin: 0;
}

.infoTooltip_p_noDesc {
    color: #9E9D9D;
    font-size: 12px;
    font-style: italic;
    margin: 0;
}


.editor_save_icon {
    width: 25px !important;
    height: 25px !important;
    transition: .4s;
}

.favorite_tab_subtitle {
    margin: 0;
    font-size: 18px;
}

.favorite_tab_icon {
    width: 20px;
    margin-right: 10px;
}

.editor_tab_icon {
    width: 25px;
    min-width: 25px;
}

.div_editor_tab_header {
    width: calc(100vw - 70px);
    top: 4rem;
    right: auto;
    left: 50px;
    height: 60px;
    display: flex;
    align-items: center;
    box-shadow: rgb(0 0 0 / 10%) 0 0 6px 3px;
    justify-content: space-between;
    position: fixed;
    transition: .2s;
    border-radius: 100px;
    background-color: #FFFFFF;
    z-index: 95;
}

.div_editor_tab_header_shrink {
    width: calc(100vw - 400px) !important;
    left: 377px !important;
}

@media screen and (max-width: 900px) {
    .dashboard_header {
        display: none !important;
    }

    .div_editor_tab_header {
        width: calc(100vw - 40px) !important;
        right: unset !important;
        left: 20px !important;
    }
}

.ContextMenuTrigger-icon {
    min-width: 25px;
}

.editReferenceAndTypeModal {
    border-radius: 10px;
    padding: 20px 15px !important;
    left: 0 !important;
    left: 2rem !important;
    top: 65px !important;
}

.editor_tab_header {
    margin-left: 2rem;
    display: flex;
    width: 100%;
    align-items: center;
}

.node_editor_tab_header {
    margin-left: 2rem;
    display: flex;
    width: calc(100% - 2rem);
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 900px) {
    .node_editor_tab_header {
        margin-left: 1.5rem;
    }
}

.editor_tab_header_right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tab_button_txt_active {
    color: #5B60D2 !important;
}

.tab_button_2 {
    margin-right: 4rem;
}

.div_editor_tab_title {
    /*height: 60px;*/
    display: flex;
    width: calc(100% - 400px);
    overflow-x: clip;
    align-items: center;
    min-width: 210px;
    z-index: 80;
}

/* â”€â”€ Inline reference editing: title fills the whole header row â”€â”€ *
   :has() targets the flex row when its child carries the editing
   modifier, removing space-between so the input can grow freely.  */
.editor_tab_header_right:has(.div_editor_tab_title--editing) {
    justify-content: flex-start;
}

    .editor_tab_header_right:has(.div_editor_tab_title--editing) .div_editor_tab_title {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: visible;
        flex: 1;
    }

    .editor_tab_header_right:has(.div_editor_tab_title--editing) .ConceptTopActions {
        width: 0 !important;
        min-width: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
        flex: 0 0 0 !important;
    }

.div_tab_button {
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 10px;
    margin: 10px 5px;
    transition: .2s;
}

    .div_tab_button:hover {
        background-color: #eeeeee;
    }


.tab_buttons {
    margin: 0;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #727272;
}

.tab_mid_divider {
    height: 100%;
    border-color: #C7C7C7 !important;
    border-left: solid;
    border-width: 1px;
}



/* -------------------------- DRAG & DROP System Styles ------------------------------- */
/*
plk-dd-dragged-over (class added to the item that is currently dragged over)
plk-dd-in-transit (class added to the item that is currently dragged around)
plk-dd-spacing (class added to the div that sits between two items)
plk-dd-spacing-dragged-over (class added to div that is currently the drop target)
plk-dd-inprogess (class added to a dropzone when a drag operation is in progress)
*/
.plk-dd-inprogess > * {
    /*pointer-events: none;*/
}

.plk-dd-dragged-over {
    transition: .2s;
    background-color: #7a7a7a3b;
    border-radius: var(--bs-border-radius) !important;
}

.plk-dd-spacing {
    width: 95%;
    height: 1px;
    margin: auto;
    border-radius: 1px;
    transition: .2s;
}
/*.plk-dd-spacing.plk-dd-spacing-dragged-over {
    background-color: #7a7a7a3b;*/
/*height: 5px;*/
/*margin: 2.5px auto;
}*/


.actionIcon_disabled {
    filter: invert(72%) sepia(40%) saturate(0%) hue-rotate(166deg) brightness(96%) contrast(89%);
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* -------------------------------------------------------------- Editor Styles - END ------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */









/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------- SearchTab Styles - START ----------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */


.body {
    overflow-y: overlay;
}

.nodes_loading_ring {
    width: 100%;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center !important;
}

.searchCloud_divider {
    width: 100%;
    border-color: #DADBFD;
}

.filteredNode_divider {
    width: 100%;
    border-color: #E8E8E8;
    margin: 10px;
}

.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: 90;
    width: 35%;
    max-width: 500px;
    min-width: 250px;
    margin: auto;
    display: flex;
    padding: 6px 12px;
    border-radius: 10px;
    background-color: #F1F1F1;
}

.txt_searchbar {
    width: 22rem;
    margin: auto;
    font-size: 14px;
    font-family: Segoe UI;
    width: 100%;
    border: 0;
    outline: none;
    background: none;
}

.div_txt_searchbar_icon {
    display: flex;
    align-items: center;
    margin-right: 5px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    justify-content: center;
}

.txt_searchbar_icon {
    width: 16px;
    height: 16px;
}

.div_searchcloud_nav {
    display: flex;
    justify-content: center;
    margin-top: 5vh;
}

.div_searchcloud_navopt {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 90;
}

.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;
}

.active_search_type_icon {
    width: 15px;
    height: 15px;
    margin-right: 6px;
    z-index: 999;
}

.querySearch_icon {
    width: 17px;
    height: 17px;
    margin-right: 6px;
}

.querySearch_but_txt {
    margin: 0;
    padding: 6px 10px 6px 2px;
}

.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;
    }

.div_filter {
    display: flex;
    align-items: center;
    margin: 0 5px 0 0;
    padding: 8px;
    background-color: #7A7FFF !important;
    border-radius: 15px;
}

.div_filter_box {
    display: flex;
    align-items: flex-end;
    cursor: pointer;
}

.div_filter_icon {
    margin: 0 5px 0 0;
}

#filter_arrow {
    width: 12px;
    margin: 0 0 0 5px;
}

.filter_icon {
    width: 14px;
    height: 14px;
}

.filter_txt {
    margin: 0;
    font-size: 13px;
}

.filter_txt_opts {
    margin: 5px 0 !important;
}

.filter_txt_active {
    margin: 0 0 0 5px !important;
    color: #5B60D2;
}

.filter_txt_opts_active {
    color: #5B60D2;
}

#filter_arrow {
    transition: .2s;
}

.navBar_arrow_expand {
    transition: .2s;
    min-width: 12px;
    rotate: -90deg;
}

.arrow_expand {
    min-width: 12px;
}

@media screen and (max-width: 900px) {
    .arrow_expand {
        min-width: 20px;
        max-width: 20px;
        margin-left: -3px;
    }
}

.arrow_rotate {
    rotate: -0deg !important;
}

.filter_arrow_expanded {
    transform: rotate(180deg);
}

.filter_arrow_collapsed {
    transform: rotate(0deg) !important;
}

#filters {
    display: none;
    flex-direction: column;
    background-color: white;
    border-radius: 10px;
    width: 130px;
    padding: 10px;
    position: absolute;
    margin: 0 0 -80px -5px;
    box-shadow: 0 6px 20px rgb(0 0 0 / 15%);
}

.div_filter_txt {
    width: 100%;
    padding: 0 5px;
    border-radius: 5px;
}

    .div_filter_txt:hover {
        background-color: #eeeeee;
    }

.filteredNodes_div {
    display: flex;
    justify-content: center;
    height: fit-content;
    flex-wrap: wrap;
}

.div_tips {
    display: none;
}

.div_tips_inner {
    display: flex;
    flex-direction: column;
}

.tip_text_icon {
    width: 13px;
    height: 13px;
}

#div_simplesearch_tip {
    display: none;
    z-index: 90;
    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%;
}

.tip_title {
    margin: 0 0 0 4px !important;
    font-size: 8px !important;
    font-weight: 700;
}

.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_tip_title {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.tip_text {
    margin: 10px 0;
    font-size: 12px;
    color: #727272;
}

#div_querytextfield_predicate {
    min-width: 160px;
}

.query_label {
    width: 190px;
    display: flex;
    justify-content: flex-start;
    margin: 0 13px 0 13px;
    padding-left: 5px;
}

.query_label_spacing {
    width: 33px;
}

.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: 95;
}

.p_querytextlabel {
    color: #727272;
    margin-bottom: 0;
    font-size: 8px;
    font-weight: 700;
}

.txt_subjectQuery {
    font-family: Segoe UI;
    padding: 12px 10px;
    z-index: 95;
    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;
}

.div_queryfield_del_icon {
    width: 34px;
    display: flex;
    justify-content: center;
}

.queryfield_del_icon {
    width: 18px;
    margin-top: 13px;
    cursor: pointer;
}

#div_queryfields {
    flex-wrap: wrap;
    margin: auto;
    flex-direction: row;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#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_predicateQuery_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: 190px;
}

#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_addStatement {
    display: flex;
    justify-content: flex-end;
    max-width: 30rem;
}

.div_addStatement_icon {
    display: flex;
    align-items: center;
}

.addStatement_icon {
    width: 15px;
    height: 15px;
}

.querySearch_but {
    height: fit-content;
    margin-top: 20px;
    border-radius: 7px;
}

.querySearch_but_div {
    display: flex;
    align-items: center;
}

.div_concept_cloud_query {
    display: flex;
    width: 100%;
    height: fit-content;
    flex-wrap: wrap;
    overflow-y: scroll;
    overflow-x: hidden;
    margin: 4rem auto 5rem;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    align-items: center;
}

.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;
}

    .btn_concept:hover {
        color: white;
        background-color: #7A7FFF;
    }

.p_no_results {
    font-size: 15px;
}


@media screen and (max-width: 900px) {
    .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: 97;
    }
}

.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;
}

.rootNfavorites_card {
    display: flex;
    flex-direction: column;
    width: 98%;
    height: 100%;
    margin: auto;
    border-radius: 5px;
    padding: 0 0 20px 0;
    border-radius: 5px;
}

.favorites_title_div {
    display: flex;
    align-items: center;
    margin-left: 2.5%;
    margin-bottom: 10px;
}

.favorites_title {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    margin-left: 10px;
}

.favorites_list_div {
    display: flex;
    flex-wrap: wrap;
    max-height: 100%;
    min-height: 450px;
    overflow-y: overlay;
    align-content: flex-start;
}

.favoride_node_card, .dashboardCard {
    display: flex;
    flex-direction: column;
    width: 30%;
    min-height: 110px;
    padding: 10px 10px 15px;
    height: fit-content;
    background-color: #FFFFFF;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 6px 0px;
    margin: 15px 15px;
    border-radius: 12px;
    transition: .3s;
    min-height: 115px;
}

    .favoride_node_card:hover, .dashboardCard:hover {
        background-color: #F8F8FF;
    }

.div_node_card_header {
    width: 100%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1200px) {
    .rootNfavorites_card, .favorites_list_div {
        margin: auto;
        width: 100%;
    }

    .favoride_node_card {
        margin: 15px 2.5%;
        width: 45%;
    }
}

.p_cloud_contextDesc {
    margin: 0;
    font-size: 13px;
}

.show_contextDesc_but {
    margin: 0;
    color: #7A7FFF;
    font-size: 12px;
}

    .show_contextDesc_but:hover {
        text-decoration: underline;
    }

.div_favorite_info {
    width: calc(100% - 50px);
    display: flex;
    justify-content: flex-start;
}

.div_favorite_icon {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite_node_icon {
    width: 25px;
}

.favorite_icon, .protected_favorite_icon {
    width: 14px;
}

@media screen and (max-width: 800px) {
    .favoride_node_card {
        display: flex;
        width: 95%;
    }
}

.NewDashboardCard {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
}

    .NewDashboardCard p {
        margin: 0;
        color: #7a7fff;
        font-size: 18px;
        font-weight: 600;
    }

    .NewDashboardCard img {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }

.div_concept_cloud {
    display: flex;
    width: 100%;
    max-width: 33rem;
    height: fit-content;
    flex-wrap: wrap;
    margin: 4rem auto 5rem;
    justify-content: center;
    align-content: flex-start;
    flex-direction: column;
    align-items: center;
    /*max-height: 400px;
    overflow-y: scroll;
    overflow-x: hidden;*/
}

.div_cloud_node_result {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 10px;
    background-color: #FBFBFB;
    justify-content: space-between;
    padding: 5px;
    border-radius: 5px;
}

    .div_cloud_node_result:hover {
        background-color: #f5f5fb;
    }

.div_cloud_node {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 5px 8px 5px 2px;
}

.cloud_node {
    width: calc(100% - 90px);
    display: flex;
    align-items: center;
}

.div_cloud_node_ref {
    width: 100%;
    display: flex;
    align-items: center;
}

.div_cloud_node_header {
}

.div_cloud_node_icon {
    min-width: 50px;
}

.div_cloud_node_details {
    width: calc(100% - 50px);
}

.cloud_node_reference {
    font-size: 15px;
    margin: 0;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: fit-content;
    cursor: pointer;
}

.div_cloud_node_favicon {
    display: flex;
    align-items: center;
    width: 35px;
    justify-content: center;
    cursor: pointer;
    height: fit-content;
    margin: 0;
}

.div_cloud_node_favicon_protected {
    cursor: not-allowed !important;
}

.p_cloud_node_type {
    margin: 0;
    font-size: 12px;
}

.p_cloud_node_ctxDesc {
    margin: 0;
    font-size: 12px;
}

.cloud_node_anchor {
    cursor: pointer;
    color: #7A7FFF;
}

    .cloud_node_anchor:hover {
        text-decoration: underline;
    }

.cloud_node_info_icon {
    width: 20px;
}

    .cloud_node_info_icon:hover path {
        fill: #7A7FFF;
    }


.div_set_favorite {
    display: flex;
    align-items: center;
    width: 35px;
    justify-content: center;
    cursor: pointer;
    height: fit-content;
    margin: 0;
}

.div_set_favorite_protected {
    cursor: not-allowed;
    height: fit-content;
    margin: 0;
}

.favorite_info_div {
    display: flex;
    flex-direction: column;
    width: 60%;
    align-items: flex-start;
    margin: 10px 0;
}

.favorite_reference_div {
    width: 100%;
    display: flex;
    align-items: center;
}

.favorite_reference {
    font-size: 15px;
    margin: 0;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: fit-content;
    cursor: pointer;
}

.favorite_type {
    color: #727272;
    font-size: 12px;
    margin: 0;
}

.favorite_open_div {
    display: flex;
    width: 35px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.favorite_open_icon {
    width: 23px;
    height: 23px;
}

.favorite_info_icon {
    width: 19px;
    height: 19px;
}

.set_favorite_icon {
    width: 14px;
}

.div_root_actions {
    width: 75px;
    margin-right: 10px;
    float: right;
}

.previous_hierarchy_icon {
    width: 21px;
    height: 21px;
}

.fluent-toast-container {
    z-index: 100000 !important;
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ SearchTab Styles - END ------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* -------------------------- Comment Section Styles ------------------------------- */
.div_comment_toppanel {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.div_comments_section {
    margin-top: 62px;
    height: calc(100% - 62px);
}

.div_comments_sidebar {
    display: grid;
    z-index: 85;
    height: 100%;
    width: 25px;
    right: 12px;
    top: 0;
    position: fixed;
    background-color: #F3F4F9;
    transition: .5s;
}

.comments_notch {
    z-index: 300;
}

@media print {
    .div_comments_sidebar {
        display: none;
    }

    .comments_notch {
        display: none;
    }
}

.comments_side_icon {
    cursor: pointer;
    width: 18px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.comments_notch {
    border-radius: 0 20px 0 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 15px;
    top: 90px;
    width: 36px;
    height: 36px;
    position: fixed;
    z-index: 90;
    background-color: #F3F4F9;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    box-shadow: rgb(0 0 0 / 5%) 4px -5px 5px inset;
    transition: .5s;
    cursor: pointer;
}

.div_comments_header_title {
    display: flex;
    cursor: pointer;
    align-items: center;
}

.comments_header_title {
    color: #242424;
    font-weight: 700;
    font-size: 16px;
}

.overlay {
    width: calc(100% - 7px);
    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;
}

.comments_textinput {
    width: 100%;
    border: 0;
    outline: none;
    background: none;
    font-family: Segoe UI;
}

.comments_textarea {
    max-width: 100%;
    width: 100%;
    border: 0;
    outline: none;
    background: none;
    font-family: Segoe UI;
}

.div_comment_header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.div_comment_user {
    display: flex;
}

.div_comment_img {
    margin-right: 15px;
}

.comments_header {
    color: #727272;
    font-size: 13px;
}

.comments_user {
    font-size: 12px !important;
    margin: 0 6px 0 0 !important;
}

.comments_title {
    font-weight: 700;
    font-size: 15px;
}

.comments_text {
    margin: 0;
    font-size: 13px;
}

.btn_addcomment {
    width: 28px;
    height: 28px;
}

.comment_card {
    margin-top: 20px;
    box-shadow: none;
    padding: 15px 20px;
    border: none;
    background-color: #ffffff00;
    transition: .4s;
    min-height: 7rem;
    max-height: 15rem;
    height: fit-content;
}

    .comment_card:hover {
        border-radius: 0;
        background-color: #FBFBFB;
    }


.comments_divider {
    border-color: #F3F4F9;
    margin-top: 10px;
    margin-bottom: 10px;
}

.div_commentButLoading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.commentButLoading {
    width: 20px
}

.div_comments_more {
    display: none;
    position: absolute;
    right: 20px;
    top: 30px;
    flex-direction: column;
    background-color: white;
    border-radius: 10px;
    box-shadow: 2px 2px 3px rgb(0 0 0 / 10%);
}

.div_comments_more_icon {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
}

.div_comments_more_txt {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 5px;
    padding: 5px 30px 5px 10px;
    cursor: pointer;
}

    .div_comments_more_txt:hover {
        background-color: #eeeeee;
    }

.comments_more_txt {
    margin: 0;
    font-size: 13px;
}

.comments_more_but {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.div_comment_actions {
    display: flex;
}

.div_comment_action {
    cursor: pointer;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.comment_action {
    width: 14px;
}

.div_comment_toPost {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    padding: 0 10px 10px;
}

.comment_post_but_txt {
    margin: 0;
    padding: 6px 10px;
}

.comment_post_but {
    height: 30px;
    border-radius: 7px;
}


#comments_drawer {
    padding: 0;
    display: flex;
    overflow: scroll;
    position: relative;
    align-items: center;
    flex-direction: column;
    height: fit-content;
    flex-direction: column-reverse;
    /*max-height: calc(100vh - 152px);*/
}

.input_comment_title {
    width: 100%;
    border: 0;
    outline: none;
    background: none;
    font-family: Segoe UI;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 10px 0 10px;
}

.input_comment_text {
    font-size: 14px;
    max-width: 100%;
    width: 100%;
    border: 0;
    outline: none;
    background: none;
    font-family: Segoe UI;
    padding: 0 10px 0;
    max-height: 12rem;
    min-height: 60px;
}

.div_add_comment_icon {
    width: 45px;
    display: flex;
    justify-content: center;
}
