html,
body {
  margin: 0;
}

.navbar {
  background-color: lightslategray;
}

.fixed-top-2 {
  margin-top: 54px;
  width: 95vw;
  margin-left: auto;
  margin-right: auto;
}

.fixed-top-3 {
  display: none;
  width: 91vw;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  top: 100px;
  right: 0;
  left: 0;
  z-index: 1030;
}

.tableFixHead {
  overflow: auto;
  width: 95vw;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  top: 100px;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1030;
}

.tableFixHeadLoc {
  overflow: auto;
  width: 95vw;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  top: 100px;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1030;
}

#myTabContent {
  height: 100vh;
}

.tableFixHead thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: white;
}

.label {
  min-width: 25% !important;
  display: inline-block !important
}

.short-modal-body {
  min-height: 100px;
  overflow: hidden;
}

.tableRowPer,
.tableRowDep,
.tableRowLoc {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .colToHide {
    display: none;
  }

  .textEnd {
    text-align: right !important;
  }

  .btnSm {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.875rem !important;
    border-radius: 0.2rem !important;
  }

  .fixed-top-3 {
    display: block;
  }

  .tableFixHead {
    top: 132px;
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #faf6f6;
}



#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #56829e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


.fadeOut {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 1s, opacity 1s linear;
}

.myBtn {
  width: 84px;
}