#uploaddxfform {
  max-width: 800px;
  width: 800px;
  align-content: center;
  margin: auto;
  padding: 20px;
}

#checkscaleform {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

#drop_file_zone {
  background-color: white;
  border: #999 5px dashed;
  padding: 20px;
}
#drag_upload_file {
  margin: 0 auto;
}
#drag_upload_file p {
  text-align: center;
}
#drag_upload_file #selectfile {
  display: none;
}
h4 {
  text-align: center;
  padding: 20px;
  display: inline-block;
}
.superbold {
  font-weight: 700;
  font-size: xx-large;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#dxfunits {
  display: block;
  margin: auto;
  text-align: center;
}
.irctip {
  height: 15px;
  display: inline;
}

.jobspecs {
  cursor: pointer;
  display: inline-block;
  color: #007bff;
}

.tooltip {
  height: 18px;
  opacity: 1;
  position: static;
  transform: translate(0%, 50%);
}
.tooltip:hover {
  -webkit-filter: drop-shadow(0px 0px 5px #4346f5);
  filter: drop-shadow(0px 0px 5px #4346f5);
  cursor: pointer;
}

#createjobform .input-group label {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 10px;
}

.createjob_selector {
  height: 30px;
  width: 100%;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid gray;
  background-color: white;
}

.jobspecscell {
  align-content: center;
}
.jobspecs:hover {
  text-decoration: underline;
  color: #0057b3 !important;
}
.specscontainer,
.updateTOScontainer {
  flex-direction: row nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: white;
}
.displayed_flex {
  display: flex;
}
.displayed_no {
  display: none;
}
.specsdiv,
.updateTOSdiv {
  position: fixed;
  border: 1px solid black;
  padding: 20px;
  background-color: white;
  z-index: 99;
  text-align: center;
  white-space: nowrap;
}
#tipsdiv {
  position: fixed;
  border: 1px solid black;
  padding: 20px;
  background-color: white;
  z-index: 99;
  text-align: center;
  max-width: 80%;
}
#tipsdiv img {
  max-width: 80%;
}

.copyright {
  position: fixed;
  bottom: 0px;
  padding: 10px;
  background: #f8f8ff;
  width: 100%;
  text-align: center;
}

#hometable {
  margin: auto;
  table-layout: fixed;
  /* min-width: 800px; */
  max-width: 1200px;
  border-collapse: collapse;
  text-align: center;
}

#hometable tr:nth-child(even) td {
  background-color: lightgrey;
}

#hometable th,
#hometable td {
  padding: 20px;
}

@media (max-width: 800px) {
  #hometable th,
  #hometable td {
    padding: 5px;
  }
  #hometable {
    max-width: 100%;
  }
}

.acceptbtn {
  padding: 10px;
  font-size: 15px;
  color: white;
  background: linear-gradient(0deg, #2a8b53 0%, #58b467 100%);
  border: none;
  border-radius: 5px;
}

.rejectbtn {
  padding: 10px;
  font-size: 15px;
  color: white;
  background: linear-gradient(0deg, #7c0303 0%, #f54343 100%);
  border: none;
  border-radius: 5px;
}

.spinner_container {
  position: relative;
  height: 60px;
  width: 100%;
  align-content: center;
}

@keyframes spinner {
  0% {
    transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(-50%, -50%, 0) rotate(360deg);
  }
}
.spin::before {
  animation: 1.2s linear infinite spinner;
  animation-play-state: inherit;
  border: solid 5px #cfd0d1;
  border-bottom-color: #4346f5;
  border-radius: 50%;
  content: "";
  height: 50px;
  width: 50px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}
