html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}
body.show-spinner > main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner > *{
  opacity: 0;
}
/* .form-group .select2-container {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
  display: table;
  table-layout: fixed;
} */
.select2-container {
  width:100% !important;
}
.w-p-40{width: 40%;}
.login-left{padding: 80px 40px; width: 40%;}

table.sticky-head thead tr{
  display:block;
}

table.sticky-head th,table.sticky-head td{
  min-width:150px;
}
table.sticky-head th:first-child,table.sticky-head td:first-child{
  min-width:100px;
}
.x-auto{overflow-x: auto;}


table.sticky-head  tbody{
display:block;
height:400px;
overflow:auto;
}


@media screen and (max-width: 991px) {
  .login-left{padding: 20px; width: 100%;}
}

/* Spinner */
body.show-spinner::after{
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

