/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 03 Oct 2017, 4:09:40 PM
    Author     : hoffmam
*/

.cloneSection {
  display: inline;
  text-align: right;
  float: right;
}

.divCenter {
  display: inline;
  float: none;
}

.divTable {
  /*margin-top: .2vh;*/
  /*margin-left: 4%;*/
  /*float: left;*/
  display: block;
  /*max-height: 70vh;*/
  /*max-width: 90vw;*/
  overflow: auto;
  /*width:100%;*/
  transition: width 0.6s;

  background-color: #eee;
  border: 1px solid #bebebe;
  /*border-spacing:5px;cellspacing:poor IE support for  this*/
  /* border-collapse:separate;*/
  overflow-y: scroll;
  /*padding-bottom: 1vh;*/
}

.divRow {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1%;
  padding-right: 1%;
  /*display:table;*/
  width: 100%;
  /*border-radius: 1.5vh;*/
}

.divRow > .divCell1 {
  /*padding-top: .5em;*/
}

.divCell1 {
  float: left; /*fix for  buggy browsers*/
  display: inline;
  width: 5em;
}
.divCell2 {
  float: left; /*fix for  buggy browsers*/
  display: table-column;
  width: 70%;
}
.divCell3 {
  float: right; /*fix for  buggy browsers*/
  display: table-column;
  width: 20%;
  text-align: left;
}

.divRow:nth-of-type(even) {
  /*background-color:#e5e5e5;*/
  background-color: #e8e8e8;
}
.divRow:nth-of-type(odd) {
  /*background-color:#f0f0f0;*/
  background-color: #f5f5f5;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
  /* width: 10px;*/
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
