*{
    font-family: "Roboto", sans-serif;
    font-style: normal;  
}
#leftResult table td, #leftResult table th{
    border: 1px solid #33333340;
}
#leftResult table th{
    background: #3333331a !important;
}
.td_no_data{
    border: 0 !important;
    text-align: center;
}
.loader {
    display: none;
}
.loader, .spinner {
    margin: 0 auto;
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #0d6efd;
    border-bottom: 6px solid #0d6efd;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
.error{
    color: red;
}
 
/* Fullscreen loader overlay */
#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}