@charset "utf-8";
/* CSS Document */
table, th, td { margin: auto auto auto auto;border: 1px solid rgba(0, 73, 126, 0.8);}


.users {
  table-layout: fixed;
  table-height: auto;
  height: auto;
  width: 100%;
  /*white-space: nowrap;*/

}
/* Column widths are based on these cells */
.row-ID {
  width: 50%;

}

.cell.rowspanned {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
}

.row-name {
  width: 50%;
  
}

.users td {
 /*white-space: nowrap;*/
  overflow: hidden;
  text-overflow: ellipsis;
}
.users th {
  background: rgba(0, 73, 126, 0.8);
  color: white;
  
}
.users td,
.users th {
  text-align: left;
  padding: 5px 10px;
    top: 0px;  
  vertical-align: text-top;


}
.users tr:nth-child(even) {
  background: #757575;
  color:white;
}

.wrapper {
  overflow: hidden;
}



.eye {color: rgba(0, 73, 126, 0.8); font-size: x-large;}
.eye:before {
  content:"";
  display: inline-block;
  position: relative;
  color: rgba(0, 73, 126, 0.8);
  left: 3px;

  /*border: 6px solid transparent;
  border-left-color: #000;*/
}

.eye.active:before {
    color: rgba(0, 73, 126, 0.8) ;
  left: 0;
  top: 0px;
  border-color: rgba(0, 73, 126, 0.8) transparent transparent;
}

.eye:hover {
  cursor: pointer;  color: #000;
  
}

.content {

  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.content.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.overview{

  padding: 5px;
}
