html,
body {
  box-sizing: border-box;
  background-color: #fff;
  font-size: 16px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  padding: 1rem;
  /* position: relative; */
  /* min-height: 100vh; */
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.bg-gray {
  background-color: lightgray;
}

.hide {
  background-color: red;
}

.btn-flat {
  border-radius: 0;
}

.table thead th {
  vertical-align: middle !important;
  text-align: center !important;
}

table.table-fit {
  width: auto !important;
  table-layout: auto !important;
}
table.table-fit thead th,
table.table-fit tfoot th {
  width: auto !important;
}
table.table-fit tbody td,
table.table-fit tfoot td {
  width: auto !important;
}

.printed-date {
  font-size: 0.8em;
}

.report-header h2 {
  text-transform: uppercase;
}

.report-detail {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.report-detail-table > div {
  display: flex;
  width: 50vw;
  background-color: yellow;
}

.report-detail-table > div > h4 {
  flex-basis: 150px;
}

.loader-wrapper {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: block;
  z-index:999999999999999;
}

.loader-wrapper.hide {
  display: none !important;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ui-autocomplete {
  position: absolute;
  z-index: 1000000000;
  cursor: default;
  padding: 0;
  margin-top: 2px;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.ui-autocomplete > li {
  padding: 3px 20px;
}
.ui-autocomplete > li.ui-state-focus {
  background-color: #ddd;
}
.ui-helper-hidden-accessible {
  display: none;
}
