


.loader {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 1;
    background-image:url('loading.gif');  
    background-size:120px;
    width: 120px;
    height: 120px;
    z-index: 100000000000; /* Sit on top */
    /*
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    */
    
}

.loader-text{    
    color:white;    
    margin-top:23%;     
    text-align:center;
    margin-left:80px;
}

.mymodal{
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000000000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */    
}



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

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

.btn-xs, .btn-group-xs > .btn {
    padding: 0.125rem 0.25rem;
    font-size: 0.65rem;
    line-height: 1.0;
    border-radius: 0.15rem;
}

.btn-xs + .dropdown-toggle-split, .btn-group-xs > .btn + .dropdown-toggle-split {
    padding-right: 0.275rem;
    padding-left: 0.275rem;
  }