.databox {
  max-height: 55vh;
  overflow-y: auto;

}

.seperator {
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 2rem;
}

.bg-eQ-grey {
  background-color: rgb(31, 31, 31);
}

.bg-eQ-light {
  background-color: rgb(209, 209, 209);
}



.clickable:hover {
  /* color: rgb(32, 32, 32); */
  font-weight: bold;
  background-color: rgba(211, 211, 211, 0.137);
}

p {
  margin: 0;
  padding: 0;
}

.fs-7 {
  font-size: 0.8rem;
}

.fs-8 {
  font-size: 0.7rem;
}

.w-fit {
  width: fit-content;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%
}

.w-80 {
  width: 80%
}

.w-90 {
  width: 90%
}

.w-3em {
  width: 3em;
}

.w-3rem {
  width: 3rem;
}

.w-4rem {
  width: 4rem;
}

.w-5rem {
  width: 5rem;
}

.w-6rem {
  width: 6rem;
}

.w-8rem {
  width: 8rem;
}

.w-10em {
  width: 10em;
}

.w-10rem {
  width: 10em;
}

.w-20em {
  width: 20em;
}

.w-30em {
  min-width: 30em;
}

.w-30rem {
  width: 30rem;
}

.h-sm {
  height: 1.5rem;
}

.h-2rem {
  height: 2rem;
}

.pos-relative {
  position: relative;
}

.bg-eQdark {
  background-color: rgb(33, 37, 41);
}

.bg-header {
  background-color: var(--bs-light);
  color: black;
  font-weight: bold;
  /* padding: 0 8px; */
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 0px
}

.bg-asset-present {
  color: var(--bs-light);
  font-weight: normal;
  background-color: rgba(0, 35, 0, 0.2);
  border: 1px solid rgba(0, 128, 0, 0.4);
  padding: 0 0px
}

.bg-asset-missing {
  color: var(--bs-light);
  font-weight: normal;
  background-color: rgba(255, 0, 0, .15);
  border: 1px solid rgba(255, 0, 0, .2);
  padding: 0 0px
}

.bg-asset-all {
  color: var(--bs-light);
  font-weight: normal;
  background-color: rgb(33, 37, 41);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 0px
}

.bg-asset-recent {
  color: var(--bs-light);
  font-weight: normal;
  background-color: rgb(0, 26, 255, 0.01);
  border: 1px solid rgb(0, 26, 255, 0.01);
  padding: 0 0px
}

.flex-row-free {
  display: flex;
  flex-flow: row wrap;
}

.flex-col-free {
  display: flex;
  flex-flow: column wrap;
}

.flex-gap-1 {
  gap: 1em 1em;
}

.text-nowrap {
  white-space: nowrap;
}

.searchbox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  visibility: hidden;
  background-color: white;
  color: black;
  font-size: .9em;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 10px;
  top: 3em;
  left: 2rem;
  width: 100%;
  max-width: 90%;
  min-height: 25vh;
  position: absolute;
  overflow: scroll;
  z-index: 1502;
}

.searchbox .sb-list {
  min-height: 20vh;
  max-height: 45vh;
  overflow-y: visible;
}


.searchbox li {
  padding: 3px;
  border-bottom: 1px solid rgb(190, 190, 190);
}

.searchbox ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

input {
  /* outline: 1px solid #f8f9fa; */
  border-radius: 3px;
  border: none;
}

input:focus {
  outline: 6px solid rgba(126, 182, 255, 0.616);
}

input[type="checkbox"] {
  transform: scale(1.3);
  margin-left: .2em;
}

.cmodal {
  display: none;
  border: none;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1500;
  width: 100vw;
  height: 100vh;
  /* max-width: 500px; */
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0);
}

.cmodel-content {
  display: flex;
  border-radius: 10px;
  width: 100%;
  height: fit-content;
}

#regtagbut {
  z-index: 1501;
}



#datacontainer::-webkit-scrollbar {
  width: 1rem;
  background-color: grey;
}

#datacontainer::-webkit-scrollbar-track {
  background-color: var(--bs-dark);
  box-shadow: inset 0 0 6px #F5F5F5;
  width: 1rem;
}

#datacontainer::-webkit-scrollbar-thumb {
  background-color: lightgrey;
  border-radius: .3rem;
  border: 2px solid black;
}