.job-offer-detail__container {
  margin: var(--layout-margin-brick);
  margin-left: 0;
  margin-right: 0;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  color: var(--color-black);
}

@media (width >= 1500px) {
  .job-offer-detail__container {
    flex-wrap: nowrap;
  }

  .job-offer-detail__main {
    width: 70%;
  }

  .job-offer-detail__side {
    width: 30%;
  }
}

.job-offer-detail__title {
  font-size: 33px;
  font-weight: 700;
}

.job-offer-detail__details {
  margin-bottom: 2rem;
  row-gap: 30px;
  column-gap: 20px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (width >= 600px) {
  .job-offer-detail__details {
    margin-bottom: 3rem;
    flex-direction: row;
  }
}

.job-offer-detail__detail__label {
  font-size: 11px;
}

.job-offer-detail__detail__value {
  font-size: 22px;
  display: block;
}

.job-offer-detail__description h2 {
  font-size: 29px;
  padding: 30px 0;
}

.job-offer-detail__description h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background-color: red;
  margin-top: 25px;
}

.job-offer-detail__description ul {
  padding-top: 5px;
  margin-bottom: 20px;
  padding-left: 40px;
  font-size: 1.3rem;
  list-style-type: disc !important;
}

.job-offer__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (width >= 600px) {
  .job-offer__form {
    grid-template-columns: repeat(12, 1fr);
  }

  .job-offer__form-span-2 {
    grid-column: span 2;
  }

  .job-offer__form-span-3 {
    grid-column: span 3;
  }

  .job-offer__form-span-4 {
    grid-column: span 4;
  }

  .job-offer__form-span-5 {
    grid-column: span 5;
  }

  .job-offer__form-span-6 {
    grid-column: span 6;
  }

  .job-offer__form-span-7 {
    grid-column: span 7;
  }

  .job-offer__form-span-8 {
    grid-column: span 8;
  }

  .job-offer__form-span-9 {
    grid-column: span 9;
  }

  .job-offer__form-span-10 {
    grid-column: span 10;
  }

  .job-offer__form-span-11 {
    grid-column: span 11;
  }

  .job-offer__form-span-12 {
    grid-column: span 12;
  }
}


.job-offer__form input,
.job-offer__form select,
.job-offer__form textarea {
  margin: 0 !important;
  border: 1px solid #707070;
  background: white;
  color: black;
}

.job-offer__form textarea {
  padding: 20px;
}

.job-offer__form input,
.job-offer__form select {
  padding: 0 20px;
  height: 47px;
}

.job-offer__form label {
  color: black;
}

.job-offer__form input[type="checkbox"] {
  display: inline-block;
  transform: translateY(1px);
  height: auto;
}

.job-offer__form input[type="checkbox"] + span {
  display: inline-block;
  padding-left: 5px;
}

.job-offer__form .button {
  color: white;
  margin-bottom: 30px;
}

.job-offer__form h3 {
  color: black;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
}

.job-offer__form-attachments {
  background-color: #002550;
  color: white !important;
  height: 90px;
  text-align: center;
  font-size: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}

.job-offer__form-attachments.highlight {
  background-color: #0149a3;
}

.previews {
  margin-top: 20px;
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.previews li {
  display: flex;
  gap: 6px;
  align-items: center;
}

.previews li svg {
  width: 20px;
  height: 20px;
  color: var(--color-brand-red);
}

.job-offer__form-attachments svg {
  margin-right: 20px;
  width: 25px;
  height: 25px;
  transform: translateY(-1px);
}

.job-offer-detail__benefits {
  margin-bottom: 30px;
  padding: 12px 30px 10px;
  display: flex;
  gap: 3px;
  font-size: 24px;
  text-transform: uppercase;
  border: 2px solid var(--color-brand-red)
}

.job-offer-detail__benefits span {
  margin-right: 20px;
}

.hidden {
  display: none;
}

select.job-offer__form__input {
  display: block;
  width: 100%;
}

.job-offer__message {
  text-align: center;
  display: none;
}

.job-offer__message.is-active {
  display: block;
}

.job-offer__message > div {
  margin: 0 auto 40px;
  padding: 28px 30px;
  display: inline-block;
  text-align: center;
  color: var(--color-white);
  font-size: 20px;
  background: #0b376b;
}

.job-offer__error--captcha {
  text-align: center;
  display: none;
}

.job-offer__error--captcha.is-active {
  display: block;
}

.job-offer__error--captcha > div {
  width: 100%;
  margin: 0 auto 40px;
  padding: 28px 30px;
  display: inline-block;
  text-align: center;
  color: var(--color-white);
  font-size: 20px;
  background: #db3633;
}

.job-offer__form__select {
  width: 100%;
}

.job-offer__error {
  width: 100%;
  margin: 0 auto 40px;
  padding: 28px 30px;
  text-align: center;
  color: var(--color-white);
  font-size: 20px;
  background: #db3633;
  display: none;
}

.job-offer__error--visible {
  display: inline-block;
}

.job-offer__notice {
  margin-top: 15px;
  font-size: 14px;
  color: #717171;
}

.job-offer__delete-file {
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.job-offer-terms-and-conditions {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.job-offer-terms-and-conditions label {
  transform: translateY(-7px);
}
