table.table_mat th .th{
	width: max-content;
	margin: auto;
}

.table-1 thead th div
{
	width: max-content;
	text-align: center;
	margin: auto;
  min-width: 50px;
}



.table-1{overflow:hidden;}
.header-fixed { 
    position: absolute; 
    top: 0px; 
    display:none;
    background-color:#fff;
    z-index: 99;
    display: block;
    overflow: hidden;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}

.header-fixed div{
	display: inline-block;
	color: rgba(0, 0, 0, 0.8);
	/*background-color:#212529;
	border-color:#32383e;*/
	padding: 4px 0px;
	font-weight: 700;
	text-align: center;
}
.FixedHeightContainer{
	overflow: hidden; 
	position: relative;
	border-radius: 4px;
	box-shadow: 0px 0px 5px -3px rgba(0,0,0,0.3);
}
.content-table-mat{
  height: 100%;
  overflow:auto;
  background-color: #fff;
}

table.table_mat tr.selected{
	border-bottom: 3px solid #1C6EA4;
	background: #D0E4F5 !important;
}


.table-preloader table{
	visibility: hidden !important;
	display: none;
}

.table-preloader ~ .header-fixed{
	display: none !important;
}

.table-preloader{
  display: block;
  position: relative;
  height: 800px;
  background: #f6f7f8;
  background-image: -webkit-gradient(
    linear,
    left center,
    right center,
    from(#f6f7f8),
    color-stop(0.9, #edeef1),
    color-stop(0.4, #f6f7f8),
    to(#f6f7f8)
  );
  
  background-repeat: no-repeat;
  background-size: 800px 100%;
  animation: placeHolderShimmer 1s linear infinite forwards;
  > * {
    background: transparent;
    position: relative;
    margin: 0 auto;
    width: 100%;
    overflow: hidden !important;
    &:after {
      content: "";
      position: absolute;
      border: 500px solid #fff;
      width: 100%;
    }
  }
}

@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}