﻿.mytable-border-right {
    border-right: solid;
    border-width: 0.5px;
}
.loader {
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
    border: 0px solid #e3e3e3;
    border-radius: 50%;
    border-top: dotted blue 10px;
    border-bottom: dotted blue 5px;
    height: 75px;
    width: 75px;
    animation: spin 1.5s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
         
    }
}


.tableDIV {
    display:block;
    white-space:nowrap;
    height: 75vh;
    width: 100%;
    overflow: auto;
     border: 1px solid black;    
    padding: 0px;
    margin-bottom:50px;  
}

.absoluteLayoutDIV {
  position: absolute;
  z-index:1;
  height:50vh;
  width:100%;
   
   
   
}

.tableDIV table {
        border:  0px solid grey;
       
    }

.tableDIV .freezeRow {
        position: sticky;
        top: -1px;
        /*font-size: 1.5vw;*/
        border-bottom: 1px solid black;
        box-shadow: 0px 0px 35px ;
    }

input[type=checkbox] {
    box-shadow: 3px 3px 5px grey;
}