  #modalWebData{
    overflow: hidden;
  }

  #modalWebData .modalHeader{
    background-color: #32689C;
    height: 40px;
  }
  
  
  #containerJsTree .modalHeaderJsTree{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    background-color: #32689C;
    height: 40px;
  }
  
  #containerJsTree #arrowBack{
    cursor: pointer;
  }
  
  #containerJsTree #arrowBack:hover{
    background-color: grey;
    border-radius: 5px;
  }
  #containerJsTree .arrowBack{
    color:white;
    margin-right: 10px;
  }
  
  #modalWebData .headerTitle{
    font-size: 14px;
    color:white;
    padding: 10px;
  }

  #containerJsTree .headerTitle{
    font-size: 14px;
    color:white;
    padding: 10px;
  }
  
  #modalWebData .modalWebDataContainer{
    display:flex;
    justify-content: center;
    flex-direction: column;
    margin: 15px;
  }
  
  #modalWebData .mainTitle{
    margin-bottom: 30px;
    border-bottom-style: solid;
    border-bottom-width: thin;
    padding-bottom: 5px;
  }
  
  #modalWebData .browser-default{
    margin-top: 15px;
    margin-bottom: 15px;
  }
  
  #modalWebData .input-groupWebData{
    display: flex;
    flex-direction: row-reverse;
  
  }
  
  #modalWebData .inputContainer {
      border-radius: 4px;
      width: 100%;
  }
  
  #modalWebData #inputWeb {
      padding-left: 20px;
      width: 95%;
      height: 20px;
      padding: 10px 5px;
  }
  
  
  #modalWebData .addDataWebBTN {
      border: 0;
      padding: 0;
      cursor: pointer;
      height: 40px;
      color: #fff;
      background: #32689C;
  
  }  
  #modalWebData .addDataWebBTN[disabled]{
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
  }
  
  #modalWebData .hidden{
    display: none;
  }
  
  #modalWebData #urlError {
    display: none;
    font-size: 0.8em;
  }
  
  #modalWebData #urlError.visible {
    display: block;
  }
  
  #modalWebData input.invalid {
    border-color: red;
  }
  
  #containerJsTree .input-group{
    margin: 0px 15px 0px 15px;
  }
  
  #modalWebData #searchWD{
    font-size: 12px;
  }
  
  #modalWebData .errorMessage{
    display: flex;
    justify-content:center;
    font-size: 14px;
  }
  
  #modalWebData .progress{
    margin-top:20px
  }
  
  
  #modalWebData #v{
    cursor: pointer;
    margin-right: 8px;
  }
  
  #modalWebData .containerWDElement{
    display: inline-flex;
    font-size:12px;
    cursor:pointer;
    width: 80%;
    margin-bottom: 5px;
    word-break: break-word;
  }
  
  #modalWebData .crossBtnWDClose{
    color:  #408080;
    font-size: 20px;
    vertical-align: middle;
    cursor: pointer;
    position: absolute;
    right: 0px;
    margin-right: 10px;
    margin-top: 1px;
    
  }
  
  #modalWebData .disabled{
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
  }
  
  #containerJsTree #jstreeWD{
    width: 500px;
    margin: 15px;
    text-overflow: ellipsis;
  }
  
  
  #containerJsTree .hide-scrollbar
  {
      overflow: auto;
      -ms-overflow-style: none; /* IE 11 */
      scrollbar-width: none; /* Firefox 64 */
      height: 500px;
  }
  
  #containerJsTree .infoContainer{
    width: 40%;
    position: fixed;
    right: 15px;
    top:100px;
    height: 80%;
    overflow-y: scroll;
  }
  
  #containerJsTree .infoContainer::-webkit-scrollbar {
    overflow: visible;
    height: 2px;
  }
  
  #containerJsTree .infoContainer::-webkit-scrollbar-track
  {
      border-radius: 10px;
      background-color: #d9d2d1;
  }
  
  #containerJsTree .infoContainer::-webkit-scrollbar
  {
      width: 5px;
      background-color: #d9d2d1;
    display:none
  }
  
  #containerJsTree .infoContainer::-webkit-scrollbar-thumb
  {
    border-radius: 10px;
      background-color: #5a5858;
  }
  
  
  #containerJsTree .tableStyle{
    font-size: 12px;
  }
  
  #containerJsTree .rowTextStyle {
    word-break: break-word
  }
  
  /*Configuración interfaz jsTree*/
  
  /*a#j2_1_anchor.jstree-anchor{display:none} HECHO EN JS*/
  
  #containerJsTree .jstree {  
    overflow-y:auto;
    height: 80%;
  }
  
  #containerJsTree .jstree-node >a {
      /* 100% - (the width of the presentation node : the line - the left padding of the <a> node - the right padding of the <a> node)*/
      text-overflow: ellipsis;
      overflow: hidden;
  }
  
  /*reduce lef margin childs*/
  #containerJsTree .jstree-node.jstree-leaf > .jstree-icon.jstree-ocl {
      display: none;
  }
  
  #containerJsTree #jstreeWD > .jstree-container-ul > .jstree-node > .jstree-ocl { display:none }
  
  #containerJsTree .jstree li.jstree-open > a.jstree-anchor > i.jstree-checkbox, 
  #containerJsTree .jstree li.jstree-closed > a.jstree-anchor > i.jstree-checkbox { 
      display:none; 
  }
  
  #containerJsTree .jstree-container-ul li{
    font-size: 12px;
  }
  
  #containerJsTree .jstree::-webkit-scrollbar-track
  {
      border-radius: 10px;
      background-color: #d9d2d1;
  }
  
  #containerJsTree .jstree::-webkit-scrollbar
  {
      width: 5px;
      background-color: #d9d2d1;
  }
  
  #containerJsTree .jstree::-webkit-scrollbar-thumb
  {
    border-radius: 10px;
      background-color: #5a5858;
  }
  
  
  
  #containerJsTree .jstree-default a.jstree-search { color:#408080; }
  
  #containerJsTree a.jstree-anchor {
    width:90%
  }
   /*
  .jstree-default .jstree-node {
   /* margin-left: 0px; 
  }*/
  
  #containerJsTree .fa-external-link{
      padding-right: 10px;
  }
