.authentication-wall {
  background-color: var(--color-secondary--1);
  padding: 5rem 1rem 2rem 1rem;
  position: relative;
  box-shadow: 0px 6px 32px 0px rgba(0, 0, 0, 0.08);
}
.document__main .authentication-wall {
  margin: -2.5rem;
}

.authentication-wall__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.authentication-wall p {
  margin: 0;
  font-family: 'Work Sans';
}

.authentication-wall__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--color-primary--7);
  flex-shrink: 0;
  max-width: 610px;
}
.authentication-wall__info-text {
  display: flex;
  align-items: center;
  line-height: 150%;
  gap: 9px;
}
.authentication-wall__info-text::before {
  content: '';
  display: block;
  background-image: url("../../images/authentication-wall/check.svg");
  background-size: 27px 27px;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 27px;
  height: 27px;
}
.authentication-wall__form {
  display: none;
  flex-direction: column;
  position: relative;
  padding-bottom: 2rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.authentication-wall__form.js-active {
  display: flex;
}
.authentication-wall__form .webform-submission-form strong.error.form-item--error-message {
  text-align: left;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  grid-area: error;
  font-weight: 700;
  color: #C01717;
}
.authentication-wall__form .text-count-wrapper.webform-counter-warning {
  color: var(--color-primary--7);
}
.authentication-wall__form form {
  width: 100%;
  display: grid;
  gap: 0.75rem;
}
.authentication-wall__form .form-item:not(.authentication__title):not(.form-type-checkbox) {
  display: flex;
  justify-content: left;
  flex-direction: column;
  position: relative;
}
.authentication-wall__form .form-item.js-form-item-slug {
  display: none;
}
.authentication-wall__form .form-item,
.authentication-wall__form .form-actions {
  margin: 0;
}
.form-item.authentication__title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  gap: .5rem;
  font-size: 16px;
  line-height: 150%;
}
.authentication__title::before {
  content: '';
  background-image: url('../../images/authentication-wall/locked-new.svg');
  width: 14px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.authentication-wall__form .form-layout--content {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.authentication-wall__form .form-layout[style="display: block;"] {
  display: flex !important;
  flex-direction: column;
  gap: 1rem;
}
.authentication-wall__form .form-item label:not(.option) {
  text-align: left;
  margin-bottom: .5rem;
  font-family: 'Work Sans';
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}
.authentication-wall .js-form-item.js-form-type-checkbox {
  display: flex;
  justify-content: center;
}
.authentication-wall__form select,
.authentication-wall__form input:not(.form-submit):not(.form-checkbox) {
  all: unset;
  background-color: var(--brand-white);
  border-radius: 2px;
  border-bottom: 1.50px solid var(--color-neutral--4);
  display: inline-flex;
  text-align: left;
  padding: 0.5rem 2.5rem 0.5rem 0.5rem;
  font-weight: 400;
  width: 100%;
  max-width: -webkit-fill-available;
  max-width: -moz-available;
  font-size: 14px;
}
.authentication-wall__form input.form-checkbox {
  width: 1rem;
  height: 1rem;
  border-radius: 2px;
  border: 1px solid #79D0F2;
}
.form-type-checkbox {
  display: grid;
  grid-template-areas: "error error"
                       "box label";
  grid-template-columns: min-content auto;
}
.form-type-checkbox input {
  grid-area: box;
}
.form-type-checkbox .form-item--error-message {
}
.form-type-checkbox label {
  width: fit-content;
  grid-area: label;
}
.authentication-wall__form select {
  background-image: url('../../images/authentication-wall/arrow-white-bottom-bg-blue.svg');
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: center;
  background-size: 40px;
}
.authentication-wall__form .text-count-wrapper,
.authentication-wall__form #edit-markup,
.authentication-wall__form #edit-markup--2 {
  text-align: left;
  font-weight: 400;
  font-size: smaller;
  padding-top: 5px;
}
.authentication-wall__form input.form-submit {
  all: unset;
  cursor: pointer;
  width: fit-content;
  max-width: 180px;
  line-height: 120%;
  font-weight: 700;
}
.authentication-wall__form .webform-actions {
  transition: ease all 150ms;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: white;
  font-size: 1.125rem;
  border-radius: 16px;
  flex-direction: row;
  position: relative;
  max-width: 370px;
  justify-self: center;
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.12);
  margin-top: 1rem;
  overflow: hidden;
}
.authentication-wall__form .webform-actions::before {
  content: '';
  position: absolute;
  display: block;
  width: 409px;
  height: 375px;
  bottom: 2rem;
  left: 10rem;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../../images/authentication-wall/forme-pilule.svg');
  border-top-right-radius: 16px;
  transition: all ease 150ms;
}
.authentication-wall__form .webform-actions:hover::before {
  bottom: 0;
  left: 7rem;
}
.authentication-wall__form .webform-actions input {
  position: relative;
  padding: 1.25rem 1rem;
  padding-right: 5rem;
  z-index: 1;
}
.authentication-wall__form .webform-actions::after {
  content: '';
  display: block;
  width: 39px;
  height: 39px;
  background-image: url('../../images/authentication-wall/CTA\ Icon.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 37px 37px;
  transition: all ease 150ms;
  position: absolute;
  right: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
}
.authentication-wall__form .form-wrapper:not(.webform-actions) {
  display: grid;
  gap: 0.75rem;
  text-align: left;
}
.authentication-wall__form select#edit-job * {
  font-family: 'Arial', sans-serif;
}
.authentication-wall__form .text-count-message {
  display: none !important;
}
.authentication-wall__form input.form-submit--l {
  font-size: 14px;
  max-width: unset;
}
.authentication-wall__form .webform-pfm-auth__inputs {
  border: 1px solid var(--color-neutral--4, #C7CCD1);
  padding: 1.25rem;
}
.authentication-wall__form .legal-text {
  font-size: 0.75rem;
  text-align: left;
  font-weight: 400;
}
.authentication-wall__form .legal-text a {
  text-decoration: underline;
}
.authentication-wall__contact {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.authentication-wall__contact-title {
  font-weight: 700;
}
.authentication-wall__contact-btn{
  border-bottom: 2px solid var(--color-primary--6);
  transition: ease all 150ms;
  display: inline-block;
  position: relative;
  width: fit-content;
}
.authentication-wall__contact-btn::before {
  content: '';
  background-image: url(../../images/arrow-primary-light.svg);
  width: 20px;
  height: 21px;
  position: absolute;
  left: -37px;
  top: 50%;
  transform: translateY(-50%);
  transition: ease all 150ms;
  background-color: var(--brand-white);
  padding: 0.3rem;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.authentication-wall__contact-btn:hover {
  border-bottom: 2px solid var(--color-secondary--4);
}
.authentication-wall__contact-btn:hover::before {
  background-color: var(--color-primary--7);
  background-image: url(../../images/arrow-primary-light-white.svg);
}
.authentication-wall__form .form-item-secur input {
  -webkit-text-security: disc !important;
  text-security: disc !important;
}
.authentication-wall__form .webform-pfm-auth__switch {
  text-decoration: underline;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-primary--7);
  line-height: 150%;
  justify-self: center;
  margin-top: 0.5rem;
}
.authentication-wall__form .webform-pfm-auth__switch:hover {
  text-decoration: none;
}
.form-item-reveal::after {
  content: '';
  background-image: url('../../images/authentication-wall/eye-visible.svg');
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 35.5px;
  right: 5px;
  z-index: 1;
  cursor: pointer;
}
.form-item-reveal--no::after {
  background-image: url('../../images/authentication-wall/eye-hidden.svg');
}
@media all and (min-width: 500px) {
  .authentication-wall__form input.form-submit,
  .authentication-wall__form input.form-submit--l {
    max-width: unset;
  }
  .authentication-wall__form .webform-actions input {
    padding: 1.25rem 1.75rem;
    padding-right: 4.438rem;
  }
  .authentication-wall__form .webform-actions::before {
    bottom: 2rem;
    left: 16rem;
  }
  .authentication-wall__form .webform-actions:hover::before {
    bottom: -5px;
    left: 14rem;
  }
}
@media all and (min-width: 768px) {
  .authentication-wall {
    padding: 40px;
  }
  .authentication-wall__form {
    flex: 1 1 50%;
    max-width: 370px;
  }
  .authentication-wall__form input.form-submit {
    max-width: 370px;
  }
  .authentication-wall__form input.form-submit--l {
    max-width: unset;
  }
  .authentication-wall__info {
    display: grid;
    grid-template-columns: repeat(3, 1fr );
    gap: 20px;
  }
  .authentication-wall__info-text {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
