* {
    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%;
}

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

/*.selected_node {*/
/*    position: relative;*/
/*    top: 8px;*/
/*}*/

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

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


.stats_table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}

.stats_table {
    width: 90%;
    margin: auto;
}
.st_tr {
    height: 50px;
}

.st_th {
    text-align: center;
    height: 50px;
}

.st_td {
    text-align: center;
    height: 50px;
    padding-left:10px;
}

.toolTip {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: absolute;
    display: none;
    width: auto;
    height: auto;
    background: none repeat scroll 0 0 white;
    border: 0 none;
    border-radius: 8px 8px 8px 8px;
    box-shadow: -3px 3px 15px #888888;
    color: black;
    font: 12px sans-serif;
    padding: 5px;
    text-align: center;
}

.kg_legend {
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    margin-left: 15px;
    margin-top: 25px;
}

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

.node_describe{
    height: 55px;
    padding: 5px 10px 5px 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.path_describe{
    height: 55px;
    padding: 5px 0px 5px 5px;
    margin-left: 10px;
    margin-right: 10px;
}

/* set limit */
.set-limit {
    width: 30%;
    margin-left: 10px;
    /*padding-left: 16px;*/
    /*padding-right: 20px;*/
    /*margin-left: -50px;*/
}

.set-limit p {
    float: left;
    padding: 6px;
    margin: 0 0 -10px 0;
    font-size: 14px;
}

.set-limit input[type=text] {
    float: left;
    padding: 6px;
    margin: 0 0 -10px 0;
    font-size: 14px;
    border: none;
    background: #f1f1f1;
    width: 80%;
}

.op-disp {
    width: 86%;
    margin-left: 30px;
    /*height: 40px;*/
    /*padding: 15px 10px 45px 10px;*/
    padding: 10px 5px 25px 5px;
    background-color: #DEEBF7;
}

.op_instruction {
    margin-left: 10px;
    margin-top: 5px;
    word-wrap: break-word;
    white-space: pre-wrap;
    width: 95%;
    height: 55px;
    padding: 5px;
    background-color: #d8f3dc;
    display: inline-block;
    font-size: 14px;
}

.operation_parent {
    margin-left: 10px;
    margin-top: 10px;
    white-space: nowrap;
}

.operation_child{
    display: inline-block;
    /*display: inline;*/
}

.graph_container{
    /*text-align: center;*/
    background: whitesmoke;
    /*width: 1350px;*/
    width: 100%;
    height: 616px;
}

/*#viz {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    font: 18pt arial;*/
/*}*/

.help-tip{
    position: absolute;
    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;
}

.add_path {
  position: relative;
  display: inline-block;
}

.add_path .add_path_tooltip {
  visibility: hidden;
  width: 300px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.add_path .add_path_tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 20%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.add_path:hover .add_path_tooltip {
  visibility: visible;
  opacity: 1;
}