/*Tosumart Custom CSS*/
.btn-dashboard-margin {
	margin-right: 8px;
}

.login-page {
  background-color: #ffffff;
}

/*DATATABLE SEARCH DEFAULT DISABLE*/
#inventoryList .dataTables_filter {
  display: none;
}

.pull-left{
float: left !important;
padding-bottom: 20px;
}

p.inline {
	display: inline;
}

html *
{
   font-family: Arial;
}

.table-fixed{
    width: 100%
}

.table-fixed tbody {
display:block;
max-height:200px;
overflow-y:scroll; }
.table-fixed thead {
display:table;
width: calc( 100% - 1em );
table-layout:fixed;
}
.table-fixed tr {
display:table;
width:100%;
table-layout:fixed;
}

.loading-bubble {
    width: 40px;
  height: 40px;
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
}

#loader-4 span{
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #3498db;
  margin: auto;
  opacity: 0;
}

#loader-4 span:nth-child(1){
    background-color: rgb(41, 173, 20);
  animation: opacitychange 1s ease-in-out infinite;
}

#loader-4 span:nth-child(2){
    background-color: rgb(41, 173, 20);
  animation: opacitychange 1s ease-in-out 0.25s infinite;
}

#loader-4 span:nth-child(3){
    background-color: rgb(41, 173, 20);
  animation: opacitychange 1s ease-in-out 0.50s infinite;
}

#loader-4 span:nth-child(4){
    background-color: rgb(41, 173, 20);
  animation: opacitychange 1s ease-in-out 0.75s infinite;
}

@keyframes opacitychange{
  0%, 100%{
    opacity: 0;
  }

  60%{
    opacity: 1;
  }
}

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

#loadingSave {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 ) 
                url('http://i.stack.imgur.com/FhHRx.gif') 
                50% 50% 
                no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading #loadingSave {
    overflow: hidden;   
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading #loadingSave {
    display: block;
}

#invoiceList {
  overflow-x: scroll;
}
/*modal overflow scroll*/
.modal { overflow: auto !important; }