@charset "ISO-8859-1";
.iframe-container {
  overflow: hidden;
  // Calculated from the aspect ration of the content (in case of 16:9 it is 9/16= 0.5625)
  //padding-top: 56.25%;
  padding-top: 50%;
  position: relative;
}
 
.iframe-container iframe {
   border: 0;
   height: 100%;
   //height:800px;
   overflow-y:scroll !important;
   overflow-x:hidden !important;
   
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

table.scroll {
     width: 100%;
    /* border-collapse: collapse; */
    //border-spacing: 0;
    //border: 2px solid black;
}

table.scroll tbody,
table.scroll thead { display: block; }

table.scroll thead tr th { 
    height: 30px;
    line-height: 30px;   
}

table.scroll tbody {
    height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

table.scroll tbody { border-top: 2px solid black; }

table.scroll tbody td,table.scroll thead th {
    /* width: 20%; */ /* Optional */
    //border-right: 1px solid black;
    /* white-space: nowrap; */
}

table.scroll tbody td:last-child,table.scroll thead th:last-child {
    border-right: none;
}


    
.modal-dialog.modal-900 {
    width: 1000px;
    height:900px !important;
    margin: 30px auto;
}    

.highlight {
   background-color: #a8cb17;
}

a.disabled {
   pointer-events: none;
   cursor: default;
}

.isDisabledLink {
  color: currentColor;
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: none;
}


/*
.table-header-rotated td.id {
  font-weight: bold;
}
*/

.table-header-rotated th {
  height: 120px;
  white-space: nowrap;
}
.table-header-rotated th:not(.id) > div {
  transform: translate(-9px, 0px) rotate(-45deg);
  width: 30px;
}
.table-header-rotated th > div > span {
  padding: 5px 10px;
}

.rotate-45 {
  height: 120px;
  white-space: nowrap;
}
.rotate-45:not(.id) > div {
  transform: translate(-9px, 0px) rotate(-45deg);
  width: 30px;
}
.rotate-45 > div > span {
  padding: 5px 10px;
}

.top-buffer { margin-top:20px; }


.dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.dot-present {
  height: 10px;
  width: 10px;
  background-color: green;
  border-radius: 50%;
  display: inline-block;
}


.headcol {
  position: absolute;
  width: 20em;
  left: 0;
  top: auto;
  border-top-width: 1px;
  /*only relevant for first row*/
  margin-top: -1px;
  /*compensate for top border*/
}

.edit-table tbody .tools{
	display:none;
}
.edit-table tbody tr:hover .tools{
	display:inline-block;
}
.edit-table tbody .tools > .fa,
.edit-table tbody .tools > .glyphicon,
.edit-table tbody .tools > .ion {
  margin-right: 20px;
  cursor: pointer;
}


.error-red{
	color:red
}