.spacer-20 {
  display: block;
  height: 20px;
}

#add_job {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#add_job .back_btn {
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 21px;
  font-size: 18px;
  line-height: 148%;
  font-weight: 500;
  color: #ff8200;
  margin-bottom: 16px;
}

#add_job h1 {
  font-size: 32px;
  line-height: 132%;
  color: #101010;
  margin-bottom: 40px;
}

#add_job .add_job-form {
  width: 100%;
  max-width: calc(100% - 408px - 20px);
}

#add_job .add_job-form .ae_form_card {
  padding: 24px 28px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 24px;
}

#add_job .add_job-form .ae_form_card .ae_form_card-title {
  font-size: 24px;
  color: #101010;
  line-height: 148%;
  font-weight: 600;
}

#add_job .add_job-form fieldset {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

#add_job .add_job-form .half_field {
  max-width: calc(50% - 8px);
}

#add_job .add_job-form fieldset .ae_label {
  font-size: 18px;
  font-weight: 600;
  color: #101010;
  line-height: 148%;
  width: 100%;
}

#add_job .add_job-form fieldset .ae_input {
  font-size: 18px;
  font-weight: 400;
  color: #636363;
  line-height: 148%;
  background-color: #eeeeee;
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
}

#add_job .add_job-form .add_job-form-btns {
  margin-top: 20px;
}

#add_job .add_job-form .add_job-form-btns input[type="submit"] {
  font-size: 18px;
  font-weight: 400;
  line-height: 148%;
  color: #fff;
  background-color: #ff8200;
  border: 1px solid #ff8200;
  border-radius: 10px;
  padding: 10px 24px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}

#add_job .add_job-form .add_job-form-btns input[type="submit"]:hover {
  color: #ff8200;
  background-color: #fff;
  border: 1px solid #ff8200;
}

#add_job .add_job-form .add_job-form-btns .cancel-btn {
  font-size: 18px;
  font-weight: 400;
  line-height: 148%;
  color: #ff8200;
  background-color: #fff;
  border: 1px solid #ff8200;
  border-radius: 10px;
  padding: 10px 24px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}

#add_job .add_job-form .add_job-form-btns .cancel-btn:hover {
  color: #fff;
  background-color: #ff8200;
  border: 1px solid #ff8200;
}

#add_job .add_job-form fieldset .ae_input:focus-visible {
  outline: 1px solid #ff8200;
}

#add_job
  .select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: solid #ff8200 1px;
  outline: 0;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: #ff8200;
  color: white;
}

.select2-dropdown {
  border: 1px solid #ff8200;
}

#add_job .add_job-nav {
  width: 100%;
  max-width: 408px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#add_job .add_job-nav-link {
  width: 100%;
  padding: 18px 0 18px 28px;
  position: relative;
  border-bottom: 1px solid #e4e4e4;

  font-size: 16px;
  font-weight: 600;
  color: #101010;
}

#add_job .add_job-nav-link:hover {
  color: #ff8200;
}

#add_job .add_job-nav-link:last-child {
  border-bottom: 0px;
}

#add_job .add_job-nav-link.active::before,
#add_job .add_job-nav-link:hover::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ff8200;
}

#add_job .fieldset-type-radio input[type="radio"] {
  width: fit-content;
}

#add_job .fieldset-type-url input[type="url"] {
  width: 100%;
}

#add_job #company_logo_preview {
  width: 100%;
  max-width: 100px;
  height: 100%;
}
#add_job #company_logo_preview img {
  width: 100%;
  height: 100%;
}
