#log-body {
    margin: 0 auto;
    background-image: url("../img/login_bg.png");
    background-size: 100% 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
.center-div {
    text-align: center;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    display: display;
}
.box-shadows {
    /* box-shadow: 10px 10px 10px #aaaaaa; */
    box-shadow: 10px 10px 10px red;
}
#time-data-table thead tr th {
    position: sticky; 
    top: 0;
}


#time-data-table tr:nth-child(odd) td{background-color:#ffffff; color:#414142;}
#time-data-table tr:nth-child(even) td{background-color:#f2f2f2; color:#414142;}
#time-data-table tbody tr:hover td{background-color:gray; color: #ffffff;}

#daily-attendance-table tr:nth-child(odd) td{background-color:#ffffff; color:#414142;}
#daily-attendance-table tr:nth-child(even) td{background-color:#f2f2f2; color:#414142;}
#daily-attendance-table tbody tr:hover td{background-color:gray; color: #ffffff;}


.hidden {
    display: none;
}

.bg-custom {
    background-color: #3490dc;
}

/* loader */
#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -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); }
  }
  
  /* Add animation to "page content" */
  .animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
  }
  
  @-webkit-keyframes animatebottom {
    from { bottom:-100px; opacity:0 } 
    to { bottom:0px; opacity:1 }
  }
  
  @keyframes animatebottom { 
    from{ bottom:-100px; opacity:0 } 
    to{ bottom:0; opacity:1 }
  }
  
  #myDiv {
    display: none;
    text-align: center;
  }

.main_body::-webkit-scrollbar-track
{
    border-radius: 5px;
    background-color: #d1d2d3f3;
}

.main_body::-webkit-scrollbar
{
    width: 5px;
    background-color: #d1d2d3f3 ;
    /* background-color: #343a40; */
}

.main_body::-webkit-scrollbar-thumb
{
    border-radius: 5px;
    background-color: #3490dc;
}

img {
  text-indent: -10000px
}

.inventoryVarianceReportTable th{
  border: 1px solid black;
  padding: 0 5px 0 5px;
}

.inventoryVarianceReportTable td{
  border: 1px solid black;
  padding: 0 5px 0 5px;
}

/* Button Up Page */
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  /* background-color: red; */
  /* color: white; */
  cursor: pointer;
  /* padding: 15px; */
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}