@charset "UTF-8";
/**
* Style par défaut d'un bouton du site
*/
/** Animations **/
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
/*** On se limite au formulaire du module **/
.path-deposer-une-offre-d-emploi .pills.fieldgroup {
  margin-top: 5px;
  margin-bottom: 5px;
}
.path-deposer-une-offre-d-emploi .pills.fieldgroup legend {
  font-weight: normal;
  margin-bottom: 10px;
}
.path-deposer-une-offre-d-emploi .pills.fieldgroup .form-radios {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.path-deposer-une-offre-d-emploi .pills.fieldgroup .form-type-radio {
  position: relative;
  width: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}
.path-deposer-une-offre-d-emploi .pills.fieldgroup .form-type-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.path-deposer-une-offre-d-emploi .pills.fieldgroup .form-type-radio input[type=radio]:checked + label {
  background-color: #ffffff;
  color: var(--pill-color);
  border-color: var(--pill-color);
}
.path-deposer-une-offre-d-emploi .pills.fieldgroup .form-type-radio input[type=radio]:checked + label::after {
  content: "✓";
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  margin-left: 6px;
}
.path-deposer-une-offre-d-emploi .pills.fieldgroup .form-type-radio label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 50px;
  border: 2px solid var(--pill-color);
  background-color: var(--pill-color);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1;
  margin: 0;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.path-deposer-une-offre-d-emploi .pills.fieldgroup .form-type-radio label:hover {
  background-color: #ffffff;
  color: var(--pill-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.path-deposer-une-offre-d-emploi .header-form-emploi {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-bottom: 30px;
}
.path-deposer-une-offre-d-emploi fieldset:not(.pills) {
  width: 100%;
  margin-top: 15px;
}
.path-deposer-une-offre-d-emploi fieldset:not(.pills) > legend {
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
  background-color: #336fd5;
  padding: 5px 25px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: bold;
}
@media (min-width: 1400px) {
  .path-deposer-une-offre-d-emploi fieldset:not(.pills) {
    width: 49%;
  }
}
.path-deposer-une-offre-d-emploi .form-item label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #444a5d;
}
.path-deposer-une-offre-d-emploi .form-type-textfield,
.path-deposer-une-offre-d-emploi .form-type-email {
  position: relative;
  padding-top: 1.4rem;
}
.path-deposer-une-offre-d-emploi .form-type-textfield input[type=text],
.path-deposer-une-offre-d-emploi .form-type-textfield input[type=email],
.path-deposer-une-offre-d-emploi .form-type-textfield input[type=tel],
.path-deposer-une-offre-d-emploi .form-type-email input[type=text],
.path-deposer-une-offre-d-emploi .form-type-email input[type=email],
.path-deposer-une-offre-d-emploi .form-type-email input[type=tel] {
  padding-top: 10px;
  margin-top: 0.25rem;
}
.path-deposer-une-offre-d-emploi .form-type-textfield input[type=text]::-moz-placeholder, .path-deposer-une-offre-d-emploi .form-type-textfield input[type=email]::-moz-placeholder, .path-deposer-une-offre-d-emploi .form-type-textfield input[type=tel]::-moz-placeholder, .path-deposer-une-offre-d-emploi .form-type-email input[type=text]::-moz-placeholder, .path-deposer-une-offre-d-emploi .form-type-email input[type=email]::-moz-placeholder, .path-deposer-une-offre-d-emploi .form-type-email input[type=tel]::-moz-placeholder {
  opacity: 0;
}
.path-deposer-une-offre-d-emploi .form-type-textfield input[type=text]::placeholder,
.path-deposer-une-offre-d-emploi .form-type-textfield input[type=email]::placeholder,
.path-deposer-une-offre-d-emploi .form-type-textfield input[type=tel]::placeholder,
.path-deposer-une-offre-d-emploi .form-type-email input[type=text]::placeholder,
.path-deposer-une-offre-d-emploi .form-type-email input[type=email]::placeholder,
.path-deposer-une-offre-d-emploi .form-type-email input[type=tel]::placeholder {
  opacity: 0;
}
.path-deposer-une-offre-d-emploi .form-type-textfield input + label,
.path-deposer-une-offre-d-emploi .form-type-email input + label {
  position: absolute;
  top: calc(1.4rem + 15px);
  left: 12px;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  max-width: calc(100% - 24px);
  text-overflow: ellipsis;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}
.path-deposer-une-offre-d-emploi .form-type-textfield input:not(:-moz-placeholder) + label, .path-deposer-une-offre-d-emploi .form-type-email input:not(:-moz-placeholder) + label {
  top: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #336fd5;
}
.path-deposer-une-offre-d-emploi .form-type-textfield input:focus + label,
.path-deposer-une-offre-d-emploi .form-type-textfield input:not(:placeholder-shown) + label,
.path-deposer-une-offre-d-emploi .form-type-email input:focus + label,
.path-deposer-une-offre-d-emploi .form-type-email input:not(:placeholder-shown) + label {
  top: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #336fd5;
}
.path-deposer-une-offre-d-emploi .form-type-textarea {
  margin-top: 15px;
}
.path-deposer-une-offre-d-emploi .form-type-textarea label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #444a5d;
}
.path-deposer-une-offre-d-emploi #edit-contact {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.path-deposer-une-offre-d-emploi #edit-contact .fieldset-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.path-deposer-une-offre-d-emploi #edit-contact .form-item {
  flex: 0 0 49%;
}
@media (max-width: 600px) {
  .path-deposer-une-offre-d-emploi #edit-contact .form-item {
    flex: 0 0 100%;
  }
}/*# sourceMappingURL=emploi.css.map */