@charset "utf-8";
/* CSS Document */

.container {
  margin: 5px;
}

table,
th,
td {
  margin: auto auto auto auto;
  border: 1px solid #c12217;
}

.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%;
}

.row-name {
  width: 50%;
}

.users td {
  /*white-space: nowrap;*/
  overflow: hidden;
  text-overflow: ellipsis;
}

.penwrite {
  height: 100px;
}

.users th {
  background: #c12217;
  color: white;
}

.users td,
.users th {
  text-align: left;
  padding: 5px 10px;
}

.eyeback{
  /*background: #ccc;*/
  vertical-align: top;
}

.wrapper {
  overflow: hidden;
}

.glyphicon {
  font-size: 1.4em;
  color: #c12217;
}

.eye:before {
  content: "";
  display: inline-block;
  position: relative;
  /*left: 3px;
  border: 6px solid transparent;
  border-left-color: #000;*/
}

.eye.active:before {
  left: 0;
  top: 0px;
  border-color: #c12217 transparent transparent;
}

.eye:hover {
  cursor: pointer;
}

.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;
}


/* enable absolute positioning */

.inner-addon {
  position: relative;
}


/* style glyph */

.inner-addon .glyphicon {
  position: absolute;
  padding: 10px;
  pointer-events: none;
}


/* align glyph */

.left-addon .glyphicon {
  left: 0px;
}

.right-addon .glyphicon {
  right: 0px;
}


/* add padding  */

.left-addon textarea {
  padding-left: 40px;
}

.right-addon textarea {
  padding-right: 30px;
}

.form-control{  resize: vertical; height: 300px; }


