/* TableScroll Styles */
.table-scroll {
  position: relative;
  background-color: #fff;
  border: 1px solid #d4d4d4;
  width: 100%;
  overflow: hidden;
}

.table-scroll .table-scroll-content {
  overflow: auto;
  background-color: #fff;
}


.table-scroll > .checkboxAll, .table-scroll .table-scroll-header{
  color:#484848;
  background-color: #d6d6d6;
}

.table-scroll .table-scroll-header {
  
  position: absolute;
  top: 0;
  left:0;
  box-sizing: content-box;
}

.table-scroll .table-scroll-body > .display-table {
  display:table;
  width: 100%
}

.table-scroll .table-scroll-body .row {
  display:table-row;
}

.table-scroll .table-scroll-body .row >* {
  display:table-cell;
  vertical-align:middle;
}

.table-scroll .table-scroll-content .table-scroll-header>*,
.table-scroll .table-scroll-content .table-scroll-body .row >* {
  padding: 10px;
  box-sizing: border-box;
}

/* align-checkbox-label */
.table-scroll .table-scroll-content .table-scroll-body .row > .align-checkbox-label{
    padding: 22px;
}

/* Borders */
.table-scroll .table-scroll-header >* {
  border-right: 1px solid #bebebe;
  display: table-cell;
  word-break: break-word;
}

.table-scroll .table-scroll-content .table-scroll-body .row >*:last-child,
.table-scroll .table-scroll-header >*:last-child {
  border-right-width: 0;
}

.table-scroll .table-scroll-body .row >* {
  border-bottom: 1px solid #d4d4d4;
}

.table-scroll .table-scroll-body .row:last-child >*,
.table-scroll .checkboxs > .checkbox:last-child {
  border-bottom-width: 0;
}

.table-scroll .table-scroll-body .row.error >*,
.table-scroll .table-scroll-body .row.warning >* {
  border-bottom-color: #fff;
}

/* TableScroll with Checkboxs */
.table-scroll > .checkboxAll {
  width: 45px;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  border-right: 1px solid #bebebe;
}
.table-scroll .checkboxAll input,.table-scroll .checkboxs input{
  margin-right:0px !important;
}

.table-scroll > .checkboxAll {
  /*background-color: #565A5C;*/
  z-index: 1;
  text-align: center;
}

.table-scroll .checkboxs + .table-scroll-content .table-scroll-header{
  padding-left: 45px;
}

.table-scroll .checkboxs + .table-scroll-content{
  margin-left: 45px;
}

.table-scroll .checkboxs {
  width: 45px;
  margin-top:40px;
  position: absolute;
  background: white;
  border-right: 1px solid #d4d4d4;
}

.table-scroll .checkboxs > .checkbox{
  height: 40px;
  border-bottom: 1px solid #d4d4d4;
  position: relative;
  box-sizing: border-box;
}

.table-scroll input[type="checkbox"]{
  margin-top: 0;
}


/* COLORS */
.table-scroll .table-scroll-body .row.new>*{
  background-color: #fcf8e3;
}

.table-scroll .table-scroll-body .row.error>*{
  background-color: #f7c8c8;
}

.table-scroll .checkboxs.label.chkSelected,
.table-scroll .table-scroll-body .row.chkSelected>*,
.table-scroll.selectable .table-scroll-body .row.rowselected>*,
.table-scroll.selectable .table-scroll-body .row:hover>*{
  background-color: #D2FAFF;
}

.table-scroll.selectable .table-scroll-body .row:hover>*{
  cursor:pointer;
}
