:root {
    --password-btn-width: 3.5em;
    --password-icon-size: 1.5em
}

.password {
    position: relative
}

.password__input {
    height: 100%
}

.password__btn {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    height: 100%;
    width: var(--password-btn-width);
    background-color: transparent;
    justify-content: center;
    align-items: center;
    display: none
}

.password__btn:focus {
    color: var(--color-primary)
}

.password__btn-label:last-child {
    display: none
}

.password__btn-label .icon {
    width: var(--password-icon-size);
    height: var(--password-icon-size)
}

.password--text-is-visible .password__btn-label:first-child {
    display: none
}

.password--text-is-visible .password__btn-label:last-child {
    display: inline-block
}

.password__input {
    padding-right: calc(var(--space-sm) + var(--password-btn-width))
}

.password__input::-ms-reveal {
    display: none
}

.password__btn {
    display: flex
}

:root {
    --password-strength-meter-height: 8px;
    --password-strength-meter-radius: 50em;
    --password-strength-icon-size: 16px;
    --password-strength-icon-margin-right: 4px;
    --password-strength-icon-stroke-width: 2px
}

.password-strength__req {
    line-height: 1.2;
    margin-bottom: var(--space-4xs);
    display: flex;
    align-items: center
}

.password-strength__req .icon {
    font-size: var(--password-strength-icon-size);
    margin-right: var(--password-strength-icon-margin-right)
}

.password-strength__icon-group {
    stroke-width: var(--password-strength-icon-stroke-width)
}

.password-strength__icon-group * {
    transition: transform .3s var(--ease-out-back), stroke-dashoffset .3s var(--ease-out-back);
    transform-origin: 8px 8px;
    stroke-dasharray: 16
}

.password-strength__icon-group *:first-child {
    stroke-dashoffset: 24
}

.password-strength__icon-group *:last-child {
    stroke-dashoffset: 10
}

.password-strength__req--met {
    color: var(--color-success-darker);
    transition: color .3s
}

.password-strength__req--met .password-strength__icon-group *:first-child {
    stroke-dashoffset: 23;
    transform: translateX(-2px) translateY(4px) rotate(45deg)
}

.password-strength__req--met .password-strength__icon-group *:last-child {
    stroke-dashoffset: 5;
    transform: translateX(-2px) translateY(4px) rotate(-45deg)
}

.password-strength__req--no-met {
    color: var(--color-error)
}

.password-strength__req--no-met .password-strength__icon-group *:first-child {
    stroke-dashoffset: 32;
    transform: translateX(5px) translateY(5px) rotate(45deg)
}

.password-strength__req--no-met .password-strength__icon-group *:last-child {
    stroke-dashoffset: 2;
    transform: translateX(-5px) translateY(5px) rotate(-45deg)
}

.password-strength__meter {
    height: var(--password-strength-meter-height);
    border-radius: var(--password-strength-meter-radius);
    overflow: hidden
}

.password-strength__meter * {
    will-change: width;
    transition: width .3s var(--ease-in-out), background-color .3s
}

.password-strength__meter--fill-1 * {
    background-color: var(--color-error)
}

.password-strength__meter--fill-2 * {
    background-color: var(--color-warning)
}

.password-strength__meter--fill-3 * {
    background-color: var(--color-success)
}

.password-strength__meter--fill-4 * {
    background-color: var(--color-success)
}

.file-upload__input {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    width: 1px;
    height: 1px
}

.file-upload__text--has-max-width {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

:root {
    --choice-img-input-size: 100px;
    --choice-img-input-icon-size: 26px
}

.choice-img {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    -webkit-user-select: none;
    user-select: none;
    transition: .3s
}

.choice-img:hover {
    cursor: pointer;
    box-shadow: var(--shadow-md)
}

.choice-img:active {
    transform: translateY(2px)
}

.choice-img[aria-checked=true] {
    transition: transform .3s;
    box-shadow: var(--shadow-sm), 0 0 0 2px var(--color-primary)
}

.choice-img__input {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(1px, -1px);
    background-color: var(--color-primary);
    width: var(--choice-img-input-size);
    height: var(--choice-img-input-size);
    -webkit-clip-path: polygon(15% 0%, 100% 0%, 100% 85%);
    clip-path: polygon(15% 0%, 100% 0%, 100% 85%);
    pointer-events: none;
    opacity: 0
}

.choice-img__input .icon {
    position: absolute;
    top: calc(var(--choice-img-input-size)/4 - var(--choice-img-input-icon-size)/2);
    right: calc(var(--choice-img-input-size)/4 - var(--choice-img-input-icon-size)/2);
    font-size: var(--choice-img-input-icon-size);
    color: var(--color-white)
}

.choice-img__input .icon>* {
    transition: stroke-dashoffset .3s;
    stroke-dasharray: 18;
    stroke-dashoffset: 18
}

.choice-img[aria-checked=true] .choice-img__input {
    opacity: 1
}

.choice-img[aria-checked=true] .choice-img__input .icon>* {
    stroke-dashoffset: 0
}

:root {
    --choice-btn-border-width: 1px;
    --choice-btn-border-radius: var(--radius-md);
    --choice-btn-align-items: center;
    --choice-btn-input-size: 20px;
    --choice-btn-input-icon-size: 16px;
    --choice-btn-input-border-width: 1px;
    --choice-btn-input-margin-right: var(--space-sm);
    --choice-btn-input-translate-y: 0em
}

.choice-btn__grid {
    display: none
}

.choice-btn__fallback {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%)
}

.choice-btn {
    position: relative;
    background-color: var(--color-bg-light);
    border-radius: var(--choice-btn-border-radius);
    box-shadow: 0 0 0 var(--choice-btn-border-width) var(--color-contrast-lower);
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    transition: .2s
}

.choice-btn.choice-btn--focus,
.choice-btn.choice-btn--checked,
.choice-btn:active {
    box-shadow: 0 0 0 2px var(--color-primary)
}

.choice-btn.choice-btn--focus,
.choice-btn:active {
    box-shadow: 0 0 0 2px var(--color-primary), 0 0 0 4px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2)
}

.choice-btn__grid {
    display: block;
    display: grid;
    grid-template-columns: var(--choice-btn-input-size) 1fr;
    grid-gap: var(--choice-btn-input-margin-right);
    align-items: var(--choice-btn-align-items)
}

.choice-btn__input {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-bg-light);
    width: var(--choice-btn-input-size);
    height: var(--choice-btn-input-size);
    border-width: var(--choice-btn-input-border-width);
    border-style: solid;
    border-color: hsla(var(--color-contrast-low-h), var(--color-contrast-low-s), var(--color-contrast-low-l), 0.65);
    box-shadow: var(--shadow-xs);
    position: relative;
    top: var(--choice-btn-input-translate-y);
    transition: .2s
}

.choice-btn__input .icon {
    color: var(--color-white);
    font-size: var(--choice-btn-input-icon-size)
}

.choice-btn:hover:not(.choice-btn--checked) .choice-btn__input {
    border-color: hsla(var(--color-contrast-low-h), var(--color-contrast-low-s), var(--color-contrast-low-l), 1)
}

.choice-btn--checked .choice-btn__input {
    border-color: var(--color-primary);
    background-color: var(--color-primary)
}

.choice-btn__input--checkbox {
    border-radius: 4px
}

.choice-btn__input--checkbox .icon>* {
    transition: stroke-dashoffset .3s;
    stroke-dasharray: 18;
    stroke-dashoffset: 18
}

.choice-btn--checked .choice-btn__input--checkbox .icon>* {
    stroke-dasharray: 18;
    stroke-dashoffset: 0
}

.choice-btn__input--radio {
    border-radius: 50%
}

.choice-btn__input--radio .icon {
    transition: transform .3s var(--ease-out-back);
    transform: scale(0)
}

.choice-btn--checked .choice-btn__input--radio .icon {
    transform: scale(1)
}

:root {
    --steps-v2-steps-nr: 10
        /* number of steps */
}

@supports(--css:variables) {
    .steps-v2__indicator {
        position: relative;
        height: 8px;
        border-radius: 50em;
        background-color: var(--color-contrast-lower)
    }

    .steps-v2__indicator::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: calc(100%/var(--steps-v2-steps-nr) * var(--step-v2-current-step, 1));
        background-color: var(--color-primary);
        border-radius: inherit;
        transition: width .2s
    }
}

.form-validate__error-msg {
    display: none
}

.form-validate__input-wrapper--error .form-validate__error-msg {
    display: block
}

.wiz-form {
    display: flex;
    flex-direction: column;
    /*height: 100vh;*/
    /*height: 100dvh*/
}

.wiz-form,
.wiz-form__body {
    /*height: 82vh;*/
    position: relative;
    z-index: 1;
    overflow: hidden
}

.wiz-form__body {
    flex-grow: 1
}

.wiz-form__footer {
    flex-shrink: 0
}

.wiz-form__step {
    display: none;
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*overflow: auto;*/
    -webkit-overflow-scrolling: touch;
    transition: transform .3s var(--ease-out), opacity .3s
}
.js-wiz-form__step--current {
    display: block;
}
.wiz-form__step--prev,
.wiz-form__step--next {
    opacity: 0;
    visibility: hidden;
    transition: transform .3s var(--ease-out), opacity .3s, visibility 0s .3s
}

.wiz-form__step--prev {
    transform: translateX(-40px)
}

.wiz-form__step--next {
    transform: translateX(40px)
}

.wiz-form--fixed-height {
    height: 480px
}

@media(min-width:64rem) {
    .wiz-form--fixed-height {
        height: 620px
    }
}