@font-face {
    font-display: swap;
    font-family: open-sans-calc;
    font-style: normal;
    font-weight: 400;
    src: url(./fonts/OpenSans-Regular.eot);
    src: url(./fonts/OpenSans-Regular.eot?#iefix) format("embedded-opentype"), url(./fonts/OpenSans-Regular.woff2) format("woff2"), url(./fonts/OpenSans-Regular.woff) format("woff"), url(./fonts/OpenSans-Regular.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: open-sans-calc;
    font-style: normal;
    font-weight: 600;
    src: url(./fonts/OpenSans-SemiBold.eot);
    src: url(./fonts/OpenSans-SemiBold.eot?#iefix) format("embedded-opentype"), url(./fonts/OpenSans-SemiBold.woff2) format("woff2"), url(./fonts/OpenSans-SemiBold.woff) format("woff"), url(./fonts/OpenSans-SemiBold.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: open-sans-calc;
    font-style: normal;
    font-weight: 700;
    src: url(./fonts/OpenSans-Bold.eot);
    src: url(./fonts/OpenSans-Bold.eot?#iefix) format("embedded-opentype"), url(./fonts/OpenSans-Bold.woff2) format("woff2"), url(./fonts/OpenSans-Bold.woff) format("woff"), url(./fonts/OpenSans-Bold.ttf) format("truetype");
}

input,
textarea {
    outline: none;
}

:root {
    --primary: #599b9e;
    --primary-hover: #559396;
    --gray: #646464;
    --dark: #414949;
    --danger: #d0011b;

    --motion: 0.2s;
    --motion-faster: 0.1s;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.hidden {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.text-center {
    text-align: center;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: "open-sans-calc", sans-serif;
    color: var(--dark);
    line-height: 1.35;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.container {
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 991.98px) {
    .wrapper {
        padding-left: 32px;
        padding-right: 32px;
    }
}

.header {
    padding: 28px 0;
}
.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}
.header__logo {
    flex-shrink: 0;
}
.header__logo img {
    width: 250px;
}

@media (max-width: 575.98px) {
    .header {
        padding: 20px 0;
    }
    .header__logo img {
        width: 150px;
    }
    .header__menu {
        font-size: 14px;
    }
}

.header__menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    text-align: right;
}

.header__menu a {
    color: var(--primary);
}

.btn {
    border: none;
    padding: 0;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: top;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transition: background var(--motion), outline var(--motion-faster), padding var(--motion-faster), opacity var(--motion-faster);
    -o-transition: background var(--motion), outline var(--motion-faster), padding var(--motion-faster), opacity var(--motion-faster);
    transition: background var(--motion), outline var(--motion-faster), padding var(--motion-faster), opacity var(--motion-faster);
    position: relative;
}

.btn__icon {
    width: 18px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.btn:focus {
    outline: 3px solid #005fcc;
}

.btn--primary {
    background: var(--primary);
    color: #fff;
}

.btn--primary:hover {
    background: var(--primary-hover);
}

.btn__status {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 12px;
    width: 24px;
    height: 24px;
}

@-webkit-keyframes indicatorSlideOut {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes indicatorSlideOut {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@-webkit-keyframes indicatorSlideIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes indicatorSlideIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.btn__icon-x,
.btn__icon-checkmark,
.btn__icon-spinner {
    display: block;
    width: 24px;
    height: 24px;
    -webkit-animation: indicatorSlideOut 0.1s;
    animation: indicatorSlideOut 0.1s;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.btn[data-status] {
    padding-left: 45px;
    pointer-events: none;
}

.btn[data-status="error"] {
    -webkit-animation: shake 0.5s linear both;
    animation: shake 0.5s linear both;
}

.btn[data-status="loading"] {
    pointer-events: none;
    opacity: 0.8;
}

.btn[data-status="loading"] .btn__status .btn__icon-spinner {
    -webkit-animation: indicatorSlideIn 0.1s;
    animation: indicatorSlideIn 0.1s;
    opacity: 1;
}

.btn[data-status="success"] .btn__status .btn__icon-checkmark {
    -webkit-animation: indicatorSlideIn 0.1s;
    animation: indicatorSlideIn 0.1s;
    opacity: 1;
}

.btn[data-status="error"] .btn__status .btn__icon-x {
    -webkit-animation: indicatorSlideIn 0.1s;
    animation: indicatorSlideIn 0.1s;
    opacity: 1;
}

.calc-wrapper {
    padding: 35px 15px 80px;
}

.calc {
    color: var(--gray);
}

@-webkit-keyframes slideOutToLeft {
    0% {
        opacity: 1;
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-100px);
        transform: translate(-100px);
    }
}

@keyframes slideOutToLeft {
    0% {
        opacity: 1;
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-100px);
        transform: translate(-100px);
    }
}

@-webkit-keyframes slideInFromRight {
    0% {
        opacity: 0;
        -webkit-transform: translate(100px);
        transform: translate(100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        -webkit-transform: translate(100px);
        transform: translate(100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

.calc__step {
    max-width: 420px;
    margin: 0 auto;
    display: none;
}

.calc__step.is-narrow .calc__body {
    max-width: 380px;
}

.calc__step.is-narrow .calc__body,
.calc__step.is-final .calc__body {
    padding: 24px;
}

.calc__step.is-final {
    max-width: 780px;
}

.calc__step.is-visible {
    display: block;
    -webkit-animation: slideInFromRight 0.2s ease-in forwards;
    animation: slideInFromRight 0.2s ease-in forwards;
}

.calc__step.is-hidden {
    display: block;
    -webkit-animation: slideOutToLeft 0.2s ease-in forwards;
    animation: slideOutToLeft 0.2s ease-in forwards;
    pointer-events: none;
}

.calc__header {
    margin-bottom: 20px;
}

.header-calc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.header-calc__avatar {
    width: 80px;
}

.header-calc__title,
.header-calc__alt-title {
    font-weight: normal;
    margin-bottom: 0;
}

.header-calc__title,
.calc__jobseeker-text {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.4;
    color: var(--primary);
}

.header-calc__alt-title {
    font-size: 24px;
    line-height: 1.35;
    color: #505051;
    margin-top: 32px;
    margin-bottom: 32px;
}

.header-calc__text {
    margin-bottom: 50px;
}

.calc__logo {
    margin-bottom: 20px;
}

.calc__jobseeker-text {
    margin-bottom: 0;
}

.calc__jobseeker-link {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 0;
}

.calc__jobseeker-link a {
    color: var(--gray);
}

.calc__body {
    padding: 24px 10px;
    border: 3px solid #599b9e33;
    background-color: #fbfdfd;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}

.calc__body:not(:last-of-type) {
    margin-bottom: 30px;
}

.calc__title {
    margin-top: 16px;
    margin-bottom: 46px;
}

.calc__title-secondary {
    font-size: 15px;
    margin-bottom: 10px;
}

.calc__options {
    margin-bottom: 40px;
}
.calc__option:not(:only-child):first-child .option__inner {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.calc__option:not(:only-child):last-child .option__inner {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.calc__option:not(:first-child):not(:last-child) .option__inner {
    border-radius: 0;
}
.calc__option:not(:last-child) .option__inner {
    border-bottom: none;
}

.option {
    display: block;
    margin-bottom: 0;
}
.option__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 8px;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 4px;
    padding: 14px;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: background var(--motion-faster), border-color var(--motion-faster);
    -o-transition: background var(--motion-faster), border-color var(--motion-faster);
    transition: background var(--motion-faster), border-color var(--motion-faster);
}
.option.is-invalid {
    -webkit-animation: shake 0.5s linear both;
    animation: shake 0.5s linear both;
}
.option.is-invalid .option__checkbox {
    border-color: var(--danger);
}
.option__inner:hover {
    background: #599b9e05;
    border-color: #89b8bab3;
}
.option:not(.option--circle) .option__inner:hover .option__checkbox {
    color: #89b8bab3;
}

.option__inner:hover .option__checkbox {
    border-color: #89b8bab3;
}
.option__input:checked ~ .option__inner,
.option__input:focus-visible ~ .option__inner {
    background: #599b9e0d;
    border-color: #89b8ba;
}
.option__input:checked ~ .option__inner .option__checkbox,
.option__input:focus-visible ~ .option__inner .option__checkbox {
    background: #89b8ba;
    border-color: #89b8ba;
    color: #fff !important;
}
.option__input:focus-visible ~ .option__inner .option__checkbox {
    outline: 2px solid #005fcc;
    outline-offset: 1px;
}
.option__checkbox {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary);
    border-radius: 3px;
    -webkit-transition: border-color var(--motion-faster), color var(--motion-faster), background var(--motion-faster);
    -o-transition: border-color var(--motion-faster), color var(--motion-faster), background var(--motion-faster);
    transition: border-color var(--motion-faster), color var(--motion-faster), background var(--motion-faster);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: transparent;
}
.option__check {
    display: block;
    width: 18px;
    height: 18px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.option--circle .option__checkbox {
    border-radius: 50%;
}

.calc__option-boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-bottom: 36px;
}

@media (max-width: 380px) {
    .calc__option-boxes {
        flex-wrap: wrap;
    }

    .calc__step.is-narrow .calc__body,
    .calc__step.is-final .calc__body {
        padding: 15px;
    }
}

.calc__option-box-wrap {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.option-box {
    display: block;
    height: 100%;
    cursor: pointer;
    margin: 0;
}

.option-box.is-invalid .option-box__box {
    border-color: var(--danger);
    -webkit-animation: shake 0.5s linear both;
    animation: shake 0.5s linear both;
}

.option-box__input:focus-visible ~ .option-box__box,
.option-box__input:checked ~ .option-box__box {
    background: var(--primary);
}

.option-box__input:focus-visible ~ .option-box__box .option-box__icon,
.option-box__input:focus-visible ~ .option-box__box .option-box__text,
.option-box__input:checked ~ .option-box__box .option-box__icon,
.option-box__input:checked ~ .option-box__box .option-box__text {
    color: #fff;
}

.option-box__input:checked ~ .option-box__box {
    -webkit-animation: selectPulse 0.2s ease-out;
    animation: selectPulse 0.2s ease-out;
}

@-webkit-keyframes selectPulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.97);
        transform: scale(0.97);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes selectPulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.97);
        transform: scale(0.97);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.option-box__box {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding-top: 25px;
    -webkit-transition: background var(--motion), border var(--motion);
    -o-transition: background var(--motion), border var(--motion);
    transition: background var(--motion), border var(--motion);
}

.option-box__box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.option-box__box:hover .option-box__icon,
.option-box__box:hover .option-box__text {
    color: #fff;
}

.option-box__icon {
    display: block;
    color: var(--primary);
    width: 64px;
    -webkit-transition: color var(--motion);
    -o-transition: color var(--motion);
    transition: color var(--motion);
    margin-bottom: 5px;
}

.option-box__text {
    padding: 15px;
    font-size: 11.52px;
    font-weight: 600;
    line-height: 1.2;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: color var(--motion);
    -o-transition: color var(--motion);
    transition: color var(--motion);
}

.calc__hint {
    font-size: 13px;
    line-height: 1;
    color: #bababb;
    margin-bottom: 53px;
}

.calc__btn {
    gap: 10px;
    padding: 0.875em 1em;
    border-radius: 7.5px;
    font-weight: 600;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-bottom: 20px;
}

.calc__btn--submit {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: left;
    margin-bottom: 0;
}

.calc__btn .btn__icon {
    width: 20px;
    height: 20px;
}

.calc__kanton-select {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.calc__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.calc__form .checkbox {
    margin-bottom: 20px;
}

.calc__input-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.calc__input-row .input-wrap {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.calc__gender-wrap .select,
.calc__source-wrap .select {
    width: 100%;
}

.calc__phone-input {
    margin-top: 18px;
}

.calc__source-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Select */
@-webkit-keyframes shake {
    8%,
    41% {
        -webkit-transform: translateX(-10px);
    }
    25%,
    58% {
        -webkit-transform: translateX(10px);
    }
    75% {
        -webkit-transform: translateX(-5px);
    }
    92% {
        -webkit-transform: translateX(5px);
    }
    0%,
    100% {
        -webkit-transform: translateX(0);
    }
}
@keyframes shake {
    8%,
    41% {
        -webkit-transform: translateX(-10px);
    }
    25%,
    58% {
        -webkit-transform: translateX(10px);
    }
    75% {
        -webkit-transform: translateX(-5px);
    }
    92% {
        -webkit-transform: translateX(5px);
    }
    0%,
    100% {
        -webkit-transform: translateX(0);
    }
}

.select {
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.select-label {
    display: block;
    font-size: 0.9em;
    line-height: 1.3;
    margin-bottom: 0;
}

.select-mobile {
    display: block;
    position: relative;
}

.select-mobile select,
.select-input {
    width: 100%;
    padding: 0.6em 0.8em;
    padding-right: 40px;
    border: 1px solid #599b9e;
    border-radius: 4px;
    background: #fafafb;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: var(--gray);
    line-height: 1.5;
}

.select.is-invalid .select-mobile select,
.select.is-invalid .select-input {
    border-color: var(--danger);
    -webkit-animation: shake 0.5s linear both;
    animation: shake 0.5s linear both;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
    color: #505051;
}

.select-arrow svg {
    display: block;
    width: 16px;
    height: 16px;
}

.select-desktop {
    display: none;
}

.select-input {
    position: relative;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: background 0.1s, border-color 0.1s;
    -o-transition: background 0.1s, border-color 0.1s;
    transition: background 0.1s, border-color 0.1s;
}

.select-input:focus {
    outline: 1px solid #599b9e;
    outline-offset: 1px;
}

.select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #eaeaea;
    -webkit-box-shadow: 0 2px 10px #0000000d;
    box-shadow: 0 2px 10px #0000000d;
    border-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 1000;
    padding: 12px;
    min-width: 200px;
    display: none;
}

.select-dropdown.is-open {
    display: block;
}

.select-option {
    padding: 12px 14px;
    cursor: pointer;
    -webkit-transition: background 0.1s;
    -o-transition: background 0.1s;
    transition: background 0.1s;
}

.select-option:not(:last-child) {
    margin-bottom: 8px;
}

.select-option:hover,
.select-option.is-focused {
    background: #f9f9fa;
}

.select-option[aria-selected="true"] {
    background: #f9f9fa;
}

/* Desktop breakpoint */
@media (min-width: 768px) {
    .select-mobile {
        display: none;
    }
    .select-desktop {
        display: block;
    }
}

/* Checkbox */
.checkbox {
    cursor: pointer;
    margin-bottom: 0;
}
.checkbox.is-invalid .checkbox__inner {
    border-color: var(--danger);
}
.checkbox.is-invalid .checkbox__box {
    border-color: var(--danger);
}
.checkbox.is-invalid {
    -webkit-animation: shake 0.5s linear both;
    animation: shake 0.5s linear both;
}
.checkbox:hover .checkbox__inner {
    border-color: var(--primary);
    background: #f5f7f7;
}
.checkbox:hover .checkbox__box {
    border-color: var(--primary);
    background: #fff;
}
.checkbox__input:checked ~ .checkbox__inner {
    background: #f5f7f7;
}
.checkbox__input:checked ~ .checkbox__inner .checkbox__box {
    background: var(--primary);
    color: #fff;
}
.checkbox__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--primary);
    border-radius: 4px;
    -webkit-transition: all var(--motion-faster);
    -o-transition: all var(--motion-faster);
    transition: all var(--motion-faster);
}
.checkbox__inner:hover {
    background: #f5f7f7;
}
.checkbox__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20px;
    height: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px solid var(--primary);
    background: #fff;
    color: transparent;
    -webkit-transition: all var(--motion-faster);
    -o-transition: all var(--motion-faster);
    transition: all var(--motion-faster);
}
.checkbox__check {
    display: block;
    width: 18px;
    height: 18px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.checkbox__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-size: 13px;
}

/* Input */
.input-wrap__inner {
    position: relative;
}
.input-wrap__icon {
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.input-wrap__input {
    font-size: 14.4px;
}
.input {
    display: block;
    width: 100%;
    border: none;
    background: none;
    border-bottom: 2px solid var(--primary);
    padding-top: 26px;
    padding-bottom: 10px;
    padding-left: 59px;
    -webkit-transition: border-color var(--motion);
    -o-transition: border-color var(--motion);
    transition: border-color var(--motion);
}
.input::-webkit-input-placeholder {
    color: #bababb;
}
.input::-moz-placeholder {
    color: #bababb;
}
.input:-ms-input-placeholder {
    color: #bababb;
}
.input::-ms-input-placeholder {
    color: #bababb;
}
.input::placeholder {
    color: #bababb;
}
.input-wrap__label {
    color: #bababb;
    -webkit-transition: color var(--motion);
    -o-transition: color var(--motion);
    transition: color var(--motion);
    font-size: 14.4px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 59px;
    -webkit-transition: color var(--motion), -webkit-transform var(--motion);
    transition: color var(--motion), -webkit-transform var(--motion);
    -o-transition: transform var(--motion), color var(--motion);
    transition: transform var(--motion), color var(--motion);
    transition: transform var(--motion), color var(--motion), -webkit-transform var(--motion);
    pointer-events: none;
    margin-bottom: 0;
}
.input-wrap.is-active .input-wrap__label {
    -webkit-transform: translateY(calc(-50% - 12px));
    -ms-transform: translateY(calc(-50% - 12px));
    transform: translateY(calc(-50% - 12px));
    color: #505051;
}
.input-wrap.is-invalid .input {
    border-color: var(--danger);
}
.input-wrap.is-invalid {
    -webkit-animation: shake 0.5s linear both;
    animation: shake 0.5s linear both;
}
.input-wrap__flag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 59px;
    font-size: 18px;
    color: #505051;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
}
.input-wrap--phone .input {
    font-size: 18px;
    padding-top: 4px;
    padding-bottom: 8px;
}

@media (max-width: 360px) {
    .input-wrap__icon {
        width: 20px;
        height: 20px;
        left: 10px;
    }

    .input {
        padding-left: 53px;
    }

    .input-wrap__label {
        left: 43px;
    }
}

.error-box {
    padding: 10px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    color: var(--danger);
    line-height: 1.5;
    display: none;
}
.error-box__icon {
    display: block;
    width: 14px;
    height: 14px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.error-box__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-size: 14px;
}
.input-wrap.is-invalid .error-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* Final step */
.final-calc__inner {
    max-width: 400px;
    margin: 0 auto;
}
.final-calc__check {
    display: block;
    width: 38px;
    margin: 0 auto 36px;
}
.final-calc__content-section:not(:last-child) {
    margin-bottom: 53px;
}
.final-calc__content a {
    color: #505051;
}
.final-calc__result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    width: 280px;
    min-height: 114px;
    padding: 10px;
    margin: 36px auto 20px;
}
.final-calc__hours-icon {
    display: block;
    width: 64px;
    margin: 0 auto 16px;
}
.final-calc__footer-text {
    font-size: 11px;
    color: #bababb;
    line-height: 1;
    margin-bottom: 0;
    margin-top: 53px;
}

/* Footer */
.footer__top {
    background: #f6f4f0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 48px 0;
}
.footer__logo img {
    width: 200px;
}
.footer__bottom {
    background: var(--primary);
    padding: 27px 0;
}
.footer__menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 24px;
    line-height: 24px;
}

.footer__menu a {
    color: #fff;
}
