

.box-doby-overflow {
overflow-y: scroll; 
/*
height: 100%;
*/
height: 73vh;
margin-top: 25px;
}

.clickable-row-elv {
    cursor: pointer;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled
 {
    background-position: left center;
    padding-left: 20px;
}​

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    animation: spin 2s linear infinite;

    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display:    none;
    position:   fixed;
    opacity: 0.7;
    background-color: #fff;
    z-index: 99;
    text-align: center;    
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


.pull-left{
  float: left !important;
  }