body {
  background-color: #f5f3eb;
  margin: 0;
  font-family: sans-serif;
}

.side-rail {
  width: 400px;
  height: auto;
  margin: auto;
  position: relative;
  top: 20px;
}

#document-upload-component {
  width: 400px;
  margin: auto;
  position: relative;
  top: 20px;
}

#document-upload-component-error {
  color: #cc0a0a;
  width: 400px;
  margin: auto;
  font-size: small;
  position: relative;
  top: 20px;
}

.center {
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  display: flex;
}

label {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  display: block;
}

input {
  background-color: #f5f3eb;
  border: 1px solid #e2e0d6;
  border-radius: 4px;
  width: 100%;
  margin-top: 15px;
  padding-top: .3rem;
  padding-bottom: .3rem;
  font-size: 11px;
  line-height: 14px;
  display: block;
}

input[type="file"] {
  background-color: #f5f3eb;
  border: 1px solid #e2e0d6;
  border-radius: 4px;
  width: 100%;
  padding-top: .3rem;
  padding-bottom: .3rem;
  font-size: 11px;
  line-height: 14px;
  display: block;
}

input:focus {
  border: 1px solid #000;
}

.button-row {
  margin-top: 12px;
  display: flex;
}

button {
  text-align: left;
  color: #fff;
  background-color: #000;
  border: 1px solid #e2e0d6;
  border-radius: 9999px;
  align-items: center;
  margin-top: 15px;
  margin-right: 5px;
  padding: .5rem 1rem;
  font-size: 14px;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(.4, 0, 1, 1);
}

button:hover {
  background-color: #58ae74;
  border-color: #000;
}

button[type="submit"] {
  display: inline-flex;
}

button[type="submit"]:hover {
  cursor: pointer;
  color: #fff;
}

.button-arrow-small {
  margin-left: 15px;
}

.margin-top {
  margin-top: 15px;
}

select {
  font: inherit;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f5f3eb;
  border: 1px solid #e2e0d6;
  border-radius: 4px;
  width: 100%;
  margin: 0;
  padding: .5em 3.5em .5em 1em;
  line-height: 1.5em;
  display: inline-block;
}

select.round {
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, gray 50%), linear-gradient(135deg, gray 50%, rgba(0, 0, 0, 0) 50%), radial-gradient(#ddd 70%, rgba(0, 0, 0, 0) 72%);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - .5em) .5em;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px, 1.5em 1.5em;
}

select.round:focus {
  background-image: linear-gradient(45deg, #fff 50%, rgba(0, 0, 0, 0) 50%), linear-gradient(135deg, rgba(0, 0, 0, 0) 50%, #fff 50%), radial-gradient(gray 70%, rgba(0, 0, 0, 0) 72%);
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - .5em) .5em;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px, 1.5em 1.5em;
  border-color: green;
  outline: 0;
}

.bi-check-circle-fill {
  color: #58ae74;
  margin-left: 10px !important;
}

p {
  text-transform: capitalize;
  letter-spacing: .1em;
  margin-right: 20px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  display: block;
}

body {
  margin: 0;
  font-family: Arial, Sans;
}

.document-onUpload-spanner {
  text-align: center;
  color: #fff;
  z-index: 1000;
  visibility: hidden;
  background: #2a2a2a;
  width: 100%;
  height: 300px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.document-onUpload-overlay {
  visibility: hidden;
  background: rgba(0, 0, 0, .5);
  width: 100%;
  height: 100%;
  position: fixed;
}

.document-onUpload-loader, .document-onUpload-loader:before, .document-onUpload-loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation: 1.8s ease-in-out infinite load7;
}

.document-onUpload-loader {
  color: #fff;
  text-indent: -9999em;
  margin: 80px auto;
  font-size: 10px;
  animation-delay: -.16s;
  position: relative;
  transform: translateZ(0);
}

.document-onUpload-loader:before, .document-onUpload-loader:after {
  content: "";
  position: absolute;
  top: 0;
}

.document-onUpload-loader:before {
  animation-delay: -.32s;
  left: -3.5em;
}

.document-onUpload-loader:after {
  left: 3.5em;
}

@keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }

  40% {
    box-shadow: 0 2.5em;
  }
}

.show {
  visibility: visible;
}

.document-onUpload-spanner, .document-onUpload-overlay {
  opacity: 0;
  transition: all .3s;
}

.document-onUpload-spanner.show, .document-onUpload-overlay.show {
  opacity: 1;
}

