body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    /* background-image: radial-gradient( circle farthest-corner at 22.4% 21.7%,  rgba(4,189,228,1) 0%, rgba(2,83,185,1) 100.2% ); */
    background-image: radial-gradient( circle 827px at 47.3% 48%,  rgba(255,255,255,1) 0%, rgba(180,192,216,1) 90% );
    
}
.main-area{
    position: absolute;
    top: 91px;
    bottom:0px;
    width: 100%;
    overflow-y: scroll;
    padding: 0;
}

.panel{
    margin: 10px;
    background: #f1f1f1;
    /* position: relative;
    display: flex;
    justify-content: center; */
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;
}

#menu{
    align-items: center;
}

#cargando{
    text-align: center;
    align-items: center;
    font-size: 38px;
    color: rgb(102, 102, 102);
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    text-align: center;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #45ADE9;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #45ADE9 transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
/* LABELS */
.lbl {
  padding: .5rem 1rem;
  border-radius: .2rem;
  cursor: pointer;
  transition: all .3s;
  transition-timing-function: ease-in-out;
  font-size: x-small;
}

.lbl-default {
  background-color: rgb(116,120,141,0.7);
  color: #fff;
}

.lbl-default:hover {
  background-color: #74788d;
  color: #fff;
}

.lbl-success {
  background-color: rgba(10,187,135,0.7);
  color: #fff;
}

.lbl-success:hover {
  background-color: #0abb87;
  color: #fff;
}

.lbl-danger {
  background-color: rgba(253,57,122,0.7);
  color: #fff;
}

.lbl-danger:hover {
  background-color: #fd397a;
  color: #fff;
}

.lbl-primary {
  background-color: rgba(93,120,255,0.7);
  color: #fff;
}

.lbl-primary:hover {
  background-color: #5d78ff;
  color: #fff;
}

.lbl-warning {
  background-color: rgba(255,184,34,0.7);
  color: #fff;
}

.lbl-warning:hover {
  background-color: #ffb822;
  color: #fff;
}

.lbl-block {
  display: block;
}

/* TABULATOR */
#tableNode{
  background-color:#ccc;
  border: 1px solid #444;
  border-radius: 10px;
}

/*Theme the header*/
#tableNode .tabulator-header, #tableNode .tabulator-headers {
  background-color:#444;
  color:#fff;
}

#tableNode .tabulator-col{
  background-color:#444;
  color:#fff;
}