.page-step {
    background: #F3F4FF;
    min-height: 100vh;
}

.page-step .ajax-progress {
    display: none;
}

.step-form {
    position: relative;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 50px;
}

.step-form .wrapper {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    color: #1A3461;
}

.step-form .top-form {
    margin-bottom: 80px;
}

.step-form .top-form .number {
    font-family: vinyl, sans-serif;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 15px;
}

.step-form .list-dots {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin-bottom: 25px;
}

.step-form .list-dots li {
    width: 4px;
    height: 4px;
    background: #FFD439;
    border-radius: 20px;
    margin: 0 5px;
}

.step-form .list-dots li.is-active {
    width: 30px;
    background: #1A3461;
}

.step-form .radio-filed {
    margin-bottom: 15px;
    /* Remove the blank space created by invisible input */
    display: flex;
    justify-content: center;
}

.step-form .radio-filed input {
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
    color: #1A3461;
}

.step-form .radio-filed label,
.step-form .radio-filed input:not(:checked) ~ label:hover,
.step-form .radio-filed input.disabled:not(:checked) ~ label:hover,
.step-form .radio-filed input.checked:not(:checked) ~ label:hover {
    font-size: 26px;
    line-height: 40px;
    padding: 7px 30px;
    border-radius: 120px;
    cursor: pointer;
    display: inline-block;
    color: #1A3461;
}

.step-form .radio-filed input:not(:checked) ~ label,
.step-form .radio-filed input.disabled:not(:checked) ~ label,
.step-form .radio-filed input.checked:not(:checked) ~ label  {
    opacity: 0.4;
}

.step-form .radio-filed input:checked ~ label,
.step-form .radio-filed input.disabled:checked ~ label,
.step-form .radio-filed input:not(:checked) ~ label:hover,
.step-form .radio-filed input.disabled:not(:checked) ~ label:hover,
.step-form .radio-filed input.checked:not(:checked) ~ label:hover {
    background: #FFFFFF;
    opacity: 1;
}

.step-form .wrap-btn {
    display: grid;
    grid-template: auto/auto auto;
    justify-content: center;
    gap: 12px;
    /* Relative to put loader in absolute pos */
    position: relative;
}

.step-form .wrap-btn .ajax-progress {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
}

.step-form .btn-yellow {
    text-decoration: none;
}

.step-form .btn-yellow.prev:hover::before {
  background-image: url(../../../air_liquide_mde/img/icons/arrow-left.svg);
}

.step-form .btn-yellow.next:hover::after {
  background-image: url(../../../air_liquide_mde/img/icons/arrow-right.svg);
}
.step-form .btn-yellow.next[disabled="disabled"]:hover::after {
  background-image: url(../../../air_liquide_mde/img/icons/arrow-right.svg);
}

.step-form .btn-yellow[disabled="disabled"] {
    background: #D7DEDE;
    border-color: #D7DEDE;
    color: #757983;
    cursor: not-allowed;
}

.step-form .btn-yellow[disabled="disabled"]::before,
.step-form .btn-yellow[disabled="disabled"]::after {
    opacity: 0.4;
}

.step-form .btn-yellow.prev::before,
.step-form .btn-yellow.next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 13px;
    position: absolute;
    top: 13px;
    width: 13px;
    transition: all .3s ease-in-out;
}

.step-form .btn-yellow.prev{
    padding: 10px 20px 10px 40px !important;
}

.step-form .btn-yellow.prev::before {
    background-image: url(../../../air_liquide_mde/img/icons/arrow-left.svg);
    left: 15px;
}

.step-form .btn-yellow.next{
    padding: 10px 40px 10px 20px !important;
}
.step-form .btn-yellow.next::after {
    right: 15px;
    background-image: url(../../../air_liquide_mde/img/icons/arrow-right.svg);
}

.step-form .show-article {
    margin-top: 20px;
    display: none;
}

.step-form .show-article.show {
    display: block;
    width: 100%;
}

.step-form .link-article {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #8062D4;
}

.step-form .warning-text {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    padding: 20px 35px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #8062D5;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transform: translateY(100%);
    transition: all .3s ease-out;
}

.step-form .warning-text.show {
    transform: translateY(0);
}

.step-form .warning-text .image {
    margin-right: 20px;
    flex-shrink: 0;
}

.step-form .warning-text .text {
    text-align: left;
}

.step-form .checkbox-field input {
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.step-form .checkbox-field label {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #1A3461;
    background: #FFFFFF;
    border: 1px solid #D7DEDE;
    border-radius: 60px;
    padding: 15px 25px;
    cursor: pointer;
}

.step-form .checkbox-field label:hover {
  background: #EAF1FF;
  border: 0;
}

.step-form .checkbox-field input:checked ~ label,
.step-form .checkbox-field input.disabled:checked ~ label {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #1A3461;
    border-color: #1A3461;
    color: #fff;
}

.step-form .option-form.form-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 850px;
    margin: 0 auto;
}

.step-form .option-form.form-icons .wrap-btn {
    margin-top: 80px;
}

.step-form .checkbox-field {
    margin: 5px;
}

.step-form .step-form-3 .checkbox-field.js-form-type-checkbox {
    padding-left: 0;
}

.step-form .checkbox-field label::before {
    content: '';
    width: 30px;
    height: 30px;
    display: block;
    margin-right: 7px;
    background-size: contain;
    background-position: center;
}

.step-form .checkbox-field .symptoms ~ label::before {
    background-image: url('../../../air_liquide_mde/img/icons/i1.svg');
}

.step-form .checkbox-field .diagnosis ~ label::before {
    background-image: url('../../../air_liquide_mde/img/icons/i2.svg');
}

.step-form .checkbox-field .sports ~ label::before {
    background-image: url('../../../air_liquide_mde/img/icons/i3.svg');
}

.step-form .checkbox-field .hormones ~ label::before {
    background-image: url('../../../air_liquide_mde/img/icons/i4.svg');
}

.step-form .checkbox-field .working ~ label::before {
    background-image: url('../../../air_liquide_mde/img/icons/i5.svg');
}

.step-form .checkbox-field .meals ~ label::before {
    background-image: url('../../../air_liquide_mde/img/icons/i6.svg');
}

.step-form .checkbox-field .illnesses ~ label::before {
    background-image: url('../../../air_liquide_mde/img/icons/i7.svg');
}

.step-form .checkbox-field .holiday ~ label::before {
    background-image: url('../../../air_liquide_mde/img/icons/i9.svg');
}

.step-form .checkbox-field .treatment ~ label::before {
  background-image: url("../../img/icons/seringue.svg");
}

.step-form .checkbox-field .parenting ~ label::before {
  background-image: url("../../img/icons/parent.svg");
}

.step-form .checkbox-field .research ~ label::before {
  background-image: url("../../img/icons/microscope.svg");
}
.step-form .form-actions.form-wrapper label, .step-form .btn-yellow.prev {
  font-size: 0.9rem;
  font-weight: 400;
  color: #1a3461;
  margin-bottom: 5px;
  cursor: pointer;
}

.step-form .form-actions.form-wrapper label[disabled] {
  cursor: not-allowed;
  color: #757983;
}

.header-discovering-content {
  padding: 20px 0;
  margin: 0 auto;
  height: unset;
  width: 85%;
  display: flex;
  justify-content: center;
}

.header-discovering-content img {
  max-width: 320px;
  max-height: 74px;
  object-fit: contain;
  width: 100%;
}

.step-form .btn-yellow:hover, .step-form .form-actions.form-wrapper label:hover {
  color:#1A3461;
  background: #FFBB00;
}

.step-form .btn-yellow[disabled="disabled"]:hover, .step-form .form-actions.form-wrapper label[disabled="disabled"]:hover {
  background: #D7DEDE;
  border-color: #D7DEDE;
  color: #757983;
}

@media screen and (min-width: 768px) {
  .header-discovering-content {
    justify-content: flex-start;
  }
}
