
.string { color: green; }
.number { color: darkorange; }
.boolean { color: blue; }
.null { color: magenta; }
.key { color: red; }

.outer{	
  position: relative;	
  width: 50%;	
   margin: 0 auto;
  /* height: 120px;	
      margin: 20px auto;
  border: 2px solid #c00;
  */	
  
}

.inner{	
  position: absolute;	
  width:100%;
  top: 20px;	
/*
    height: 100px;  
  left: 30px;	
  top: 10px;	
  right: 30px;	
  background-color: #00c; */
}

canvas{
  width: 100% !important;
  /* max-width: 1200px; */
  /*height: auto !important;*/
  height: 300px !important;
}


.admin-autocomplete {
   position: absolute; 
  /* top: 100%; */
  left: 0;
  z-index: 1000;
  /* display: none; */
  /* float: left; */
  /*min-width: 160px;*/
  width:100%;
  padding: 5px 0;
  margin: 1px 0 0 0;
  font-size: 13px;
  background-color: #fff;
  text-align: left;
  list-style: none;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}


.admin-autocomplete li {
  cursor:pointer;
  display: block;
  font-size: 13px;
  padding: 5px 15px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.admin-autocomplete li:hover, .admin-autocomplete2 li.focus {
  background-color: rgb(29, 137, 207);
  color: #fff;
}

.uppercase { 
  text-transform: uppercase;
}

body.waiting * {
  cursor: progress;
}

.modal-lg {
  width: 85%;
}

table#uct{
  margin-top: 3.5rem;
}
#uct td > textarea {
  border: none;
  background-color: transparent;
}
#uct td.uct-desc-name {
  max-width: 350px;
  overflow: scroll;
}
#uct td.uct-value {
  position: relative;
  width: 500px;
}
#uct td.uct-value textarea {
  overflow: scroll;
  white-space: pre-wrap;
  display: block;
  width: 100%;
  cursor: pointer;
  pointer-events: none;
}
#uct td.uct-value.edit-mode textarea {
  height: 480px;
  border-left: 5px solid #1d89cf;
  background: #fff;
  box-shadow: 0 0 15px -2px #ddd;
  font-family: monospace;
  cursor: auto;
  pointer-events: auto;
}
#uct td.uct-value .edit-btns {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ddd;
  color: #000;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

#uct td.uct-value .edit-btns span {
  padding: 10px 12px;
  cursor: pointer;
  display: inline-block;
}
#uct td.uct-value span.btn-done-edit {
  display: none;
}
#uct td.uct-value.edit-mode span.btn-edit {
  display: none;
}
#uct td.uct-value.edit-mode span.btn-done-edit {
  display: block;
}
