* {
    box-sizing: border-box;
}
html {
    height: 100%;
}
body {
    font-family:"Open Sans",sans-serif;
    /*background-image: url("../image/bg.png");*/
    /*background-color: rgba(255,255,255,0.3);*/
    background-color: rgba(214,226,233,0.3);
    background-blend-mode: lighten;
}

.title_icon {
    width: 25%;
    height: 25%;
}

.layui-nav .layui-nav-more{
    border-top-color:#535353;
    height: 70%;
}

.layui-nav {
    height: 30px;
    background-color: rgba(152, 193, 217, .5);
    margin: 10px 40px 0px 40px;
}

.layui-nav .layui-nav-item{
    height: 35px;
}

.layui-table th{
    font-size: 12px;
}

.hints_block fieldset {
    border: 1px solid #4a4e69;
    margin-top: 20px;
    margin-left: 40px;
    margin-right: 40px;
}

.mySpinner {
    position:relative !important;
}

.help-tip{
    position: absolute;
    margin-left: 10px;
    text-align: center;
    background-color: #BCDBEA;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    line-height: 18px;
    cursor: default;
}

.help-tip:before{
    content:'?';
    font-weight: bold;
    color:#fff;
}

.help-tip:hover a{
    visibility: visible;
    display: block;
    opacity: 1;
    transform-origin: 100% 0%;

    /*-webkit-animation: fadeIn 0.3s ease-in-out;*/
    /*animation: fadeIn 0.3s ease-in-out;*/

}

.help-tip a{    /* The tooltip */
    visibility: hidden;
    text-align: left;
    background-color: #1E2021;
    padding: 20px;
    width: 300px;
    position: absolute;
    border-radius: 3px;
    right: -275px;
    color: #FFF;
    font-size: 13px;
    line-height: 1.4;
    z-index: 101;
    opacity: 0;
    /*transition: opacity 1s;*/
}

.help-tip a:before{ /* The pointer of the tooltip */
    position: absolute;
    content: '';
    width:0;
    height: 0;
    border:6px solid transparent;
    border-bottom-color:#1E2021;
    left:10px;
    top:-12px;
}

.help-tip a:after{ /* Prevents the tooltip from being hidden */
    width:100%;
    height:40px;
    content:'';
    position: absolute;
    top:-40px;
    left:0;
}

.hints_block li{
    margin-left: 15px;
    list-style-type: square;
}

ol {
    counter-reset: list;
}
ol > li {
    list-style: none;
}
ol > li:before {
    content: "["counter(list)"]" ;
    counter-increment: list;
}

.autocomplete-result {
    position: relative;
  /*display: inline-block;*/
  /*border-bottom: 1px dotted black;*/
}

.autocomplete-result .entity_description {
    visibility: hidden;
    width: 240px;
    background-color: black;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 5px 0 5px 5px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 30%;
}

.autocomplete-result:hover .entity_description {
    visibility: visible;
}

.selected_node_list {
    margin-left: 30px;
    margin-top: 20px;
    background-color: #BCDBEA;
    width: 80%;
    padding: 10px 5px 25px 5px;
}

.selected_node_list .selected_node{
    display:inline-block;
    border: 1px solid #ddd;
    background-color: #f6f6f6;
    margin-left: 3px;
    margin-top: 3px;
    padding: 8px;
    font-size: 14px;
    color: black;
}

.node_close {
    margin-left: 5px;
    cursor: pointer;
    padding: 6px;
    transform: translate(30%, -50%);
}

.node_close:hover {background: #bbb;}