/* Guide style */

.tagnamecolor {
    color: #2196f3;
}

.tagcolor {
    color: #26bc6a;
}

.attributecolor {
    color: tomato;
}

.attributeinfocolor {
    color: blueviolet;
}

.attributevaluecolor {
    color: #3f51b5;
}

.tagtext {
    color: #26404e;
}

.rightpannelstyle {
    margin-left: 240px;
}

.leftpannelstyle {
    height: 100%;
    overflow: auto;
}


.leftpannelstyle a div {
    color: #26404e;
}

.menuLink .hq-title {
    padding: 12px 16px !important;
}

body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    min-width: 320px;
    background: #FFFFFF;
    font-size: 14px;
    font-family: Montserrat, sans-serif !important;
    line-height: 1.4285em;
    color: rgba(0, 0, 0, 0.87);
    font-smoothing: antialiased;
}

.nocode input[type="search"].form-control::-webkit-search-cancel-button {
    background: url(assets/icons/close.svg) no-repeat 50% 50% !important;
}

::-webkit-scrollbar {
    width: 10px;
}

 ::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px grey; */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #c9cfd3;
    border-radius: 10px;
    border: 2px solid #ffffff;
}

 ::-webkit-scrollbar-thumb:hover {
    background: #26bc6a;
}

.menuLink.active div {
    background: #F0F4F9;
    color: #26404e !important;
    font-weight: 600;
    position: relative;
}

.menuLink.active div:hover {
    background: #F0F4F9;
    color: #26404e !important;
}
.menuLink div:hover {
    background: #F0F4F966;
}
.menuLink.active {
    pointer-events: unset;
    cursor: default;
}

[data-customTooltipB] {
    cursor: pointer;
    position: relative;
}

[data-customTooltipB]::after {
    background-color: #fff;
    font-family: Montserrat, sans-serif !important;
    font-weight: normal;
    color: #222;
    font-size: 14px;
    padding: 8px 12px;
    height: fit-content;
    width: fit-content;
    border-radius: 6px;
    position: absolute;
    text-align: center;
    bottom: 0px;
    left: 50%;
    content: attr(data-customTooltipB);
    transform: translate(-50%, 110%) scale(0);
    transform-origin: top;
    transition: 0.14s;
    transition-delay: .2s;
    box-shadow: 0 4px 14px 0 rgb(46 126 156 / 30%), 0 0 0 1px rgb(26 62 117 / 5%);
    z-index: 9999;
}

[data-customTooltipB]:hover:after {
    display: block;
    transform: translate(-50%, 110%) scale(1);
}