#loading-bg{
  width: 100%;
  height: 100%;
  background: #FFF;
  display: block;
  position: absolute;
}
.loading-logo{
  position: absolute;
  left: calc(50% - 75px);
  top: 35%;
}
.loading-logo img {
    width: 150px;
}
.loading {
  position: absolute;
  left: calc(50% - 35px);
  top: 50%;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid transparent;
}
.loading .effect-1,  .loading .effect-2{
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-left: 3px solid rgba(121, 97, 249,1);
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.loading .effect-1{
  animation: rotate 1s ease infinite;
}
.loading .effect-2{
  animation: rotateOpacity 1s ease infinite .1s;
}
.loading .effect-3{
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-left: 3px solid rgba(121, 97, 249,1);
  -webkit-animation: rotateOpacity 1s ease infinite .2s;
  animation: rotateOpacity 1s ease infinite .2s;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.loading .effects{
  transition: all .3s ease;
}
.required label span {
    font-weight: 600 !important;
    color: #2c2c2c;
}
@keyframes rotate{
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes rotateOpacity{
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: .1;
  }
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    opacity: 1;
  }
}
.content-area-lg .sticky-table-header {
    left: 110px;
}
.sticky-table-header {
    position: fixed;
    z-index: 40001;
    top: 80px;
    padding-top: 20px;
    background-color: #f8f8f8;
    right: 30px;
    left: 290px;
}
.mt-sticky {
    margin-top: 170px!important;
}
.sticky-table-content {
    margin-top: 25px; //170px;
}
.sticky-header table thead {
    position: fixed;
    top: 182px;
    background-color: #ffffff;
    width: calc(100% - 367px);
}
.sticky-header table th {
    background-color: #ffffff;
}
.sticky-header table thead tr {
    width: 100%!important;
    display: flex;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    background-color: #ffffff;
}
@media only screen and (max-width: 1201px) {
    .sticky-table-header {
        left: 17px;
        right: 17px;
    }
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .mt-sticky {
        margin-top: 190px!important;
    }
    .search-bar {
        margin-bottom: 10px;
    }
}
