/* 
    Created on : May 28, 2019, 8:15:49 AM
    Author     : timothyheider
*/

.datatable {
}

.datatable table {

}

.datatable tr {
    height: 50px;    
}

.datatable-data-row {
    cursor: pointer;
}

.datatable thead th {
    font-size: 1.0em;
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-weight: bold;
    text-align: left;    
    border-top: 1px dotted lightgray;
    border-bottom: 1px dotted lightgray;
}

.datatable tfoot {
    border-bottom: none;
}

.datatable tbody {
    display: block;
    overflow-x: hidden;
    overflow-y: auto;    
}

.datatable tbody td {
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-size: 1.0em;    
    font-weight: normal;
    border-bottom: 1px dotted lightgray;
}

.datatable-showmorelabel {
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-size: 16px;    
    border: solid;
    font-weight: normal;
    border-width: 1px; 
    border-radius: 4px;
    padding: 6px;   
    margin: 8px;
    width: 360px;
    text-align: center;
    cursor: default;
}

/* table scrolling */
.fixed_headers {
    table-layout: fixed;
    border-collapse: collapse;
}

.fixed_headers th {
    text-decoration: none;    
}

.fixed_headers thead tr {
    position: relative;
}

/*.fixed_headers tbody tr:nth-child(even) {
    background-color: #f8f8f8;
}*/

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.centered {
    position: relative;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -100px;
}
.centered-relative {
    position: relative;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -100px;
}

.datatable-sort-grabcursor {
    cursor: grab;
}

.datatable-sort-clickable {
    float: right;
    margin-right: 12px;    
}

.pagination-center {
  text-align: center;
}

.pagination {
    display: inline-block;
    padding: 12px;
}

.paging i {
    position: relative;
    top: 4px;
}

.pagination a {
    color: gray;
    float: left;
    font-family: Arial Unicode MS, Arial, sans-serif;
    padding: 8px 16px;
    text-decoration: none;
    height: 24px;
    transition: background-color .3s;
    border: 1px solid lightgray;        
    
}

.pagination-normal {
    background-color: #fdfeff;
}

.pagination-selected {
    background-color: #eee;
}

.pagination a span {
    height: 22px;
}

.pagination a i {
    height: 22px;
}

.pagination a.active {
    background-color: lightgray;
    color: white;
    border: 1px solid gray;
}

.pagination a:visited {    
    color: black;
    border: 1px solid lightgray;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}
