#applicant-form {
  font-family: Karla;
  background-color: white;
  padding: 20px;
  position: relative;
  color: #000000;
}
#applicant-form label {
  display: block;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 20px;
}
#applicant-form label span.field-required {
  color: #FA4B00;
}
#applicant-form select {
  display: block;
  width: 100%;
  padding: 5px;
}
#applicant-form input {
  width: 100%;
  background: #fff;
  padding: 0.75em;
  font-size: 1rem;
  height: 50px;
  color: #000000;
  border-style: solid;
  border-color: #999999;
}
#applicant-form input[name=job_title_disabled] {
  pointer-events: none;
}
#applicant-form input[type=text],
#applicant-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border-style: solid;
  border-color: #999999;
  border-width: 0.1rem;
  box-shadow: none;
  display: block;
  letter-spacing: -0.015em;
  margin: 0;
  color: #000000;
  font-size: 1rem;
}
#applicant-form input[type=file] {
  display: block;
  margin-bottom: 10px;
  padding: 5px;
}
#applicant-form input[type=file]::-webkit-file-upload-button {
  border: none;
  background-color: #EFEFEF;
  padding: 10px;
}
#applicant-form .upload-progressbar {
  position: relative;
  width: 100%;
  height: 10px;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  display: none;
}
#applicant-form .upload-progressbar span.progress {
  display: block;
  position: absolute;
  border-radius: 1px;
  height: 100%;
  background: #FA4B00;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  border-radius: 3px;
}
#applicant-form .btns {
  display: flex;
  justify-content: center;
}
#applicant-form .btns input[type=submit] {
  padding: 10px 30px;
  background-color: #FA4B00;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
#applicant-form p.file-message {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  color: #FA4B00;
}
#applicant-form .loader-container {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
#applicant-form .loader-container.show {
  display: flex;
}
#applicant-form .loader-container p {
  border: 2px solid #036fc1;
  padding: 5px 20px;
  color: #036fc1;
}
#applicant-form .btns input.disabled {
    opacity: 0.5;
}

.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);
  }
}
