.upload-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: var(--bs-gray-800);
  border: 1px dashed;
  font-family: 'Lato', sans-serif;
  height: 100px;
}

.upload-h2 {
  margin: 50px 0;
}

.file-drop-area {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 3px;
  transition: 0.2s;
}

.choose-file-button {
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bs-gray);
  border-radius: 3px;
  margin-right: 10px;
  font-size: 12px;
  text-transform: uppercase;
}

.file-message {
  font-size: small;
}

.file-input {
  position: absolute;
  height: 100px;
  width: 45%;
  cursor: pointer;
  opacity: 0;
}

.mt-100 {
  margin-top: 100px;
}

#loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.75) url(../img/loading.gif) no-repeat center center;
  z-index: 10000;
}

