/**********SCROLLING TABLE*/

.cust-table-cont {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  height: 100%;
}
.cust-table-cont .table-responsive {
  width: 1317px;
}
.cust-table {
  table-layout: fixed;
  margin-bottom: 20px;
  border: 1px solid #dddddd;
  height: 100%;
}
.cust-table thead {
  display: block;
  color: black;
  background-color: #fdfdfd;
}
.cust-table thead tr th {
  min-width: 120px;
  max-width: 120px;
  width: 120px;
  height: 40px;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
.cust-table thead tr th:first-child {
  width: 30px;
  min-width: 30px;
  text-align: center;
}
.cust-table thead tr:last-child th {
  background-color: #fdfdfd;
  font-weight: normal;
  text-align: center;
}
.cust-table thead tr:last-child th .select-button {
  background-color: #fdfdfd !important;
}
.cust-table tbody {
  display: block;
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100% - 80px);
}
.cust-table tbody tr td {
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  overflow-x: hidden;
  height: 40px;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
.cust-table tbody tr td:first-child {
  width: 30px;
  min-width: 30px;
  text-align: center;
}
.cust-table .row-odd {
  background-color: #f9f9f8;
}
.cust-table .row-even {
  background-color: white;
}
/**********SCROLLING TABLE*/
.import-table-cont {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding-top: 80px;
  overflow-y: hidden;
  overflow-x: auto;
}
.import-table-cont .table-responsive {
  width: 1317px;
}
.import-table-cont .import-table {
  table-layout: fixed;
  display: inline-block;
  min-width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  border: 1px solid #dddddd;
  /*border-top: 1px solid #DDD;
        border-bottom: 1px solid #DDD;
        border-left: 1px solid #DDD;
        border-collapse: collapse;*/

}
.import-table-cont .import-table thead {
  position: absolute;
  min-width: 100%;
  top: 0;
  left: 0;
  color: black;
  background-color: #fdfdfd;
  table-layout: fixed;
  border-top: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}
.import-table-cont .import-table thead tr {
  display: table;
  max-height: 40px;
  min-width: calc(100% - 17px);
  border-left: 1px solid #dddddd;
}
.import-table-cont .import-table thead tr th {
  display: table-cell;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  height: 40px;
  padding: 0 3px;
  /*border-right: 1px solid #DDD;*/
  border-bottom: 1px solid #dddddd;
}
.import-table-cont .import-table thead tr th:first-child {
  width: 30px;
  min-width: 30px;
  text-align: center;
}
.import-table-cont .import-table thead tr th .dropdown {
  display: inline-block;
  width: 100%;
}
.import-table-cont .import-table thead tr th .dropdown .select-button {
  background-color: #fdfdfd;
  padding: 6px 0;
  width: 99%;
}
.import-table-cont .import-table thead tr th .dropdown .caret {
  margin-top: 8px;
}
.import-table-cont .import-table thead tr th .dropdown .dropdown-menu {
  min-width: 99%;
}
.import-table-cont .import-table thead tr th .dropdown .dropdown-menu li {
  padding: 5px;
  text-align: center;
  min-height: 0px;
}
.import-table-cont .import-table thead tr th .dropdown .dropdown-menu li:hover {
  background-color: #f91000;
  color: white;
}
.import-table-cont .import-table thead tr th .dropdown i {
  float: right;
  margin-right: 10px;
  color: #f85550;
}
.import-table-cont .import-table thead tr:first-child {
  border-top: 1px solid #dddddd;
}
.import-table-cont .import-table thead tr:first-child th {
  font-weight: bold !important;
}
.import-table-cont .import-table thead tr:last-child th {
  font-weight: normal;
}
.import-table-cont .import-table thead tr:last-child th .select-button {
  background-color: #fdfdfd !important;
}
.import-table-cont .import-table tbody {
  display: inline-block;
  min-width: 100%;
  table-layout: fixed;
}
.import-table-cont .import-table tbody tr {
  display: table;
  max-height: 40px;
  min-width: 100%;
}
.import-table-cont .import-table tbody tr td {
  display: table-cell;
  min-width: 120px;
  max-width: 120px;
  width: 120px;
  height: 40px;
  padding: 0 3px;
  /*border-right: 1px solid #DDD;*/
  border-bottom: 1px solid #dddddd;
  word-break: break-all;
}
.import-table-cont .import-table tbody tr td:first-child {
  width: 30px;
  min-width: 30px;
  text-align: center;
}
.import-table-cont .import-table .row-odd {
  background-color: #f9f9f8;
}
.import-table-cont .import-table .row-even {
  background-color: white;
}
