@import url(fonts.css);

.formsteps {
    align-self: center;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    max-width: 807px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "Open Sans", sans-serif;
    position: relative;
}

.formsteps__required {
    position: relative;
}

.formsteps__required:before {
    content: '*';
    top: 22px;
    right: 15px;
    position: absolute;
    font-size: 15px;
    line-height: 15px;
    transform: translateY(-50%);
    color: #d0021b;
}

.formsteps__progress {
    flex: 0 0 126px;
    background-color: #63b435;
    min-height: 347px;
}

.formsteps__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 100%;
}

.formsteps__controls {
    text-align: right;
    padding: 10px 68px 36px 0;
    position: relative;
    z-index: 5;
}

.formsteps__btn {
    text-decoration: none;
    height: 42px;
    background-color: #63b435;
    border-radius: 4px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
    padding: 0 42px 0 26px;
    position: relative;
    border: none;
    -webkit-tap-highlight-color: transparent;
    color: white;
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
    cursor: pointer;
    transition: background .3s ease-out;
}

.formsteps__btn:hover {
    background-color: #82c35d;
}

.formsteps__btn:active {
    background-color: #4f902a;
}

.formsteps__btn--submit {
    display: none;
    padding: 0 26px;
    -webkit-appearance: none;
    -webkit-border-radius: 4px;
}

.formsteps__btn:before {
    content: '';
    background: url(../img/btn-arrow.svg) 0 0 no-repeat;
    background-size: contain;
    width: 38px;
    height: 36px;
    position: absolute;
    top: 50%;
    right: -35px;
    transform-origin: 0;
    transform: rotate(180deg) translateY(50%);
}

.formsteps__btn--whole {
    padding: 0 26px 0 42px;
    background-color: #fff;
    color: #212121;
    margin-right: 10px;
}

.formsteps__btn--whole:before {
    transform: translateY(-50%);
    left: 0px;
    right: auto;
    background: url(../img/btn-arrow--dark.svg) 0 0 no-repeat;
    background-size: contain;
}

.formsteps__btn--whole:hover {
    background-color: #e8e8e8;
}

.formsteps__btn--whole:hover:before {
    background: url(../img/btn-arrow--dark.svg) 0 0 no-repeat;
    background-size: contain;
}

.formsteps__btn--whole:active {
    background-color: #d4d4d4;
}

.formsteps__btn--whole:active:before {
    background: url(../img/btn-arrow--dark.svg) 0 0 no-repeat;
    background-size: contain;
}

.formsteps__btn--disabled {
    background-color: #e8e8e8;
    color: #d4d4d4;
    cursor: default;
    opacity: 0;
}

.formsteps__btn--disabled:before {
    background: url(../img/btn-arrow--grey.svg) 0 0 no-repeat;
    background-size: contain;
}

.formsteps__btn--disabled:hover {
    background-color: #e8e8e8;
    color: #d4d4d4;
}

.formsteps__btn--disabled:hover:before {
    background: url(../img/btn-arrow--grey.svg) 0 0 no-repeat;
}

.formsteps__btn--disabled:active {
    background-color: #e8e8e8;
    color: #d4d4d4;
}

.formsteps__btn--disabled:active:before {
    background: url(../img/btn-arrow--grey.svg) 0 0 no-repeat;
    background-size: contain;
}

.formsteps__steps {
    position: relative;
    height: auto;
    max-height: 100%;
    margin: 0;
}

.formsteps__inputs {
    padding-right: 68px;
}

.formsteps__step {
    padding: 37px 0 0 68px;
    flex-direction: column;
    position: relative;
    display: none;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
}

.formsteps__step--current {
    display: block;
    position: relative;
    box-sizing: border-box;
    z-index: 2;
    background-color: #fff;
}

.formsteps__head {
    color: #212121;
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
    max-width: 80%;
    min-height: 46px;
    margin: 0 0 24px 0;
}

.formsteps__text {
    width: 100%;
    height: 38px;
    background-color: #fff;
    border-radius: 4px;
    border: 2px solid #9b9b9b;
    outline: none;
    transition: 0.3s ease-out;
    box-sizing: border-box;
    padding-left: 15px;
    display: inline-block;
    font-size: 16px;
    box-shadow: none;
    -webkit-appearance: none;
}

.formsteps__text::-webkit-input-placeholder {
    color: #9b9b9b;
}

.formsteps__text::-moz-placeholder {
    color: #9b9b9b;
}

.formsteps__text:-ms-input-placeholder {
    color: #9b9b9b;
}

.formsteps__text:hover {
    border: 2px solid #63b435;
}

.formsteps__text:focus {
    border: 2px solid #63b435;
}

.formsteps__text:focus::-webkit-input-placeholder {
    color: transparent;
}

.formsteps__text:focus::-moz-placeholder {
    color: transparent;
}

.formsteps__text:focus:-ms-input-placeholder {
    color: transparent;
}

.formsteps__text[disabled] {
    background-color: #e8e8e8;
    border: 2px solid #d7d7d7;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.formsteps__text[disabled]::-webkit-input-placeholder {
    color: #d4d4d4;
}

.formsteps__text[disabled]::-moz-placeholder {
    color: #d4d4d4;
}

.formsteps__text[disabled]:-ms-input-placeholder {
    color: #d4d4d4;
}

.formsteps__text--error {
    border: 2px solid #d0021b;
    color: #d0021b;
}

.formsteps__text--error::-webkit-input-placeholder {
    color: #d0021b;
}

.formsteps__text--error::-moz-placeholder {
    color: #d0021b;
}

.formsteps__text--error:-ms-input-placeholder {
    color: #d0021b;
}

.formsteps__radio-title {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    color: #212121;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    transition: .3s ease-out;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.formsteps__hint {
    color: #6e6e6e;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    padding-top: 5px;
    margin: 0;
}

.formsteps label {
    vertical-align: top;
    margin-bottom: 10px;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.formsteps label input[type="radio"] {
    display: none;
}

.formsteps label input[type="radio"]:checked + .formsteps__radio {
    border: 2px solid #63b435;
}

.formsteps label input[type="radio"]:checked + .formsteps__radio:before {
    width: 10px;
    height: 10px;
}

.formsteps label input[type="radio"]:checked ~ .formsteps__radio-title {
    color: #49a50f;
}

.formsteps label input[type="radio"]:disabled + .formsteps__radio {
    border: 2px solid #e8e8e8;
    box-shadow: inset 0 0 0 15px #e8e8e8;
}

.formsteps label input[type="radio"]:disabled + .formsteps__radio:before {
    background: #e8e8e8;
}

.formsteps label:hover .formsteps__radio {
    border: 2px solid #63b435;
}

.formsteps label:hover .formsteps__radio-title {
    color: #49a50f;
}

.formsteps label:hover input:disabled ~ .formsteps__radio-title {
    color: #212121;
}

.formsteps__radio {
    display: inline-block;
    vertical-align: middle;
    background: #63b435;
    width: 20px;
    height: 20px;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    border-radius: 50%;
    border: 2px solid #9b9b9b;
    transition: .3s ease-out;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    box-sizing: content-box;
    -webkit-tap-highlight-color: transparent;
}

.formsteps__radio:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease-out;
}

.formsteps__progress {
    padding: 35px 0;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
}

.formsteps__progress-line {
    min-height: 230px;
    width: 2px;
    padding: 0;
    flex: 1 1 auto;
    background: #5a8e39;
    background-position: 0 0;
    background: linear-gradient(to bottom, #5a8e39 0%, #5a8e39 50%, #fff 50%, #fff 100%);
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    transition: .3s ease-in-out;
    margin: 0;
    list-style: none;
}

.formsteps__progress-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
    background-color: #fff;
}

.formsteps__progress-item:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    box-sizing: border-box;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease-out;
    background: #fff;
    opacity: 1;
    z-index: 1;
}

.formsteps__progress-item:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    box-sizing: border-box;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease-out;
    background: transparent;
    z-index: 2;
}

.formsteps__progress-item--current {
    background-color: transparent;
}

.formsteps__progress-item--current:before {
    width: 16px;
    height: 16px;
    opacity: 1;
    transition: .3s ease-out .2s;
}

.formsteps__progress-item--current:after {
    background: #63b435;
    width: 8px;
    height: 8px;
    transition: .3s ease-out .2s;
}

.formsteps__progress-item--current ~ li {
    background-color: #5a8e39;
}

.formsteps__progress-item--current ~ li:before {
    width: 0;
    height: 0;
    opacity: 0;
}

.formsteps__progress-item--current ~ li:after {
    background: #5a8e39;
}

.formsteps__number {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin: 0 0 22px 0;
}

.formsteps__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #63b435;
    z-index: 3;
    padding: 35px 25px;
    display: none;
    min-width: 126px;
    box-sizing: border-box;
    transition: .5s ease-in-out;
}

.formsteps__overlay svg circle {
    stroke-dasharray: 170;
    stroke-dashoffset: 170;
}

.formsteps__overlay svg circle.top {
    stroke: #fff;
    stroke-dashoffset: 0;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 3s ease-out .5s, opacity .3s ease-out .5s;
}

.formsteps__overlay svg circle.bottom {
    stroke-dashoffset: 0;
    stroke: #9dd17c;
}

.formsteps__overlay svg path {
    stroke-dasharray: 77;
    stroke-dashoffset: 77;
    stroke: #fff;
    transition: .4s ease-out 1s;
}

.formsteps__overlay--rotate svg circle.bottom {
    transform-origin: 50% 50%;
    transition: stroke-dashoffset .4s ease-out 1s;
    transform: rotate(-25deg);
    stroke-dashoffset: 10;
}

.formsteps__overlay--rotate svg circle.top {
    opacity: 0;
}

.formsteps__overlay--rotate svg path {
    stroke-dashoffset: 0;
}

.formsteps__overlay--aside {
    right: 100%;
    justify-content: center;
}

.formsteps__overlay--aside .formsteps__number {
    margin-bottom: 80px;
}

.formsteps__overlay--aside .formsteps__overlay-title {
    display: none;
}

.formsteps__overlay--hidden svg circle.top {
    stroke-dashoffset: 170;
}

.formsteps__overlay--hidden svg path {
    stroke-dashoffset: 77;
}

.formsteps__overlay-title {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin-bottom: 54px;
}

.formsteps__overlay-progress {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.formsteps__overlay-percent {
    color: #fff;
    font-size: 48px;
    font-weight: 300;
    line-height: 65px;
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.formsteps__overlay-percent span {
    position: relative;
}

.formsteps__overlay-percent span:after {
    content: '%';
    opacity: 0.5;
    font-size: 36px;
    font-weight: 300;
    line-height: 57px;
    position: absolute;
    bottom: 0;
    right: -32px;
}

.formsteps__overlay-percent--ready {
    font-size: 18px;
    line-height: 24px;
    bottom: -20px;
}

.formsteps__overlay-percent--ready span:after {
    display: none;
}

.formsteps .label-wrap {
    flex: 1 1 0;
    max-width: 100%;
    margin-bottom: 10px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.formsteps .label-wrap--big {
    display: block;
    width: 100%;
    max-width: 100%;
}

.formsteps .label-wrap--medium {
    display: block;
    width: 100%;
    max-width: 75%;
}

.formsteps__final {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 35px 70px;
}

.formsteps__final--hidden {
    display: none;
}

.formsteps__final .formsteps__head {
    font-size: 24px;
}

.formsteps__thanks {
    color: #212121;
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
    margin: 0;
}

.formsteps__title {
    margin: 0;
    padding: 35px 0 0 68px;
    font-size: 16px;
    font-weight: bold;
}

.formsteps__popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: url(../img/ic-cross.svg) center no-repeat;
    cursor: pointer;
    z-index: 5;
}

.formsteps-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    z-index: 200;
    display: -ms-flexbox;
    display: flex;
    vertical-align: middle;
    background-color: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.formsteps__error {
    color: #d0021b;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    padding-top: 5px;
    margin: 0;
    min-width: 100%;
}

.site-wrapper {
    position: relative;
    z-index: 1
}

.formsteps-popup--hidden {
    display: none;
}

.formsteps {
    margin: 0 auto;
}

.code-input {
    display: none;
}

input[type="radio"],
input[type="checkbox"] {
    display: none;
}

.formsteps-popup input[type="checkbox"] {
    display: none
}

.formsteps__checkbox {
    display: inline-block;
    vertical-align: middle;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid #9b9b9b;
    transition: .3s ease-out;
    position: relative;
}

label:hover .formsteps__checkbox {
    display: inline-block;
    vertical-align: middle;
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid #63b435;
    transition: .3s ease-out;
    position: relative;
}

input:checked + .formsteps__checkbox {
    display: inline-block;
    vertical-align: middle;
    background: #63b435 url('../img/check.svg') center no-repeat;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid #63b435;
    transition: .3s ease-out;
    position: relative;
}

@media screen and (max-width: 960px) {
    .formsteps__title {
        padding: 0;
        margin-bottom: 20px;
    }
    .formsteps {
        flex-direction: column;
        min-height: 425px;
        max-width: 580px;
    }

    .formsteps__head {
        max-width: 100%;
        min-height: 66px;
    }

    .formsteps__radio-title {
        margin-left: 10px;
        font-size: 17px;
    }

    .formsteps__radio {
        width: 26px;
        height: 26px;
        -ms-flex: 0 0 26px;
        flex: 0 0 26px;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        -o-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .formsteps__radio:before {
        width: 26px;
        height: 26px;
    }

    .formsteps .label-wrap {
        max-width: 100%;
    }

    .formsteps__progress {
        display: block;
        min-height: 0;
        height: 84px;
        padding: 34px 50px 24px;
        box-sizing: border-box;
        background-color: transparent;
        flex: 0 0 auto;
    }

    .formsteps__number {
        color: #49a50f;
    }

    .formsteps__progress-line {
        display: none;
    }

    .formsteps__content {
        padding: 0 88px 46px;
        flex: 1 0 100%;
    }

    .formsteps__step {
        padding-left: 0;
    }

    .formsteps__step--current {
        padding-top: 0;
    }

    .formsteps__inputs {
        flex-direction: column;
        padding-right: 0;
    }

    .formsteps__text {
        max-width: 100%;
        width: 100%;
        margin-bottom: 0;
        height: 44px;
        line-height: 42px;
        font-size: 17px;
    }

    .formsteps label {
        margin-bottom: 0;
        width: auto;
    }

    .formsteps label.formsteps__text-container {
        width: 100%;
        display: block;
    }

    .formsteps label input[type="radio"]:checked + .formsteps__radio:before {
        width: 10px;
        height: 10px;
    }

    .formsteps label input[type="radio"]:disabled ~ .formsteps__radio-title {
        color: #d4d4d4;
    }

    .formsteps .label-wrap {
        margin-bottom: 26px;
    }

    .formsteps__controls {
        padding: 0;
        display: flex;
        justify-content: space-between;
    }

    .formsteps__btn {
        height: 50px;
        line-height: 50px;
        font-size: 16px;
        outline: none;
    }

    .formsteps__btn:hover {
        background: #63b435;
    }

    .formsteps__btn:active {
        background: #4f902a;
    }

    .formsteps__btn--whole:hover {
        background: #fff;
    }

    .formsteps__btn--whole:active {
        background: #d4d4d4;
    }

    .formsteps__overlay {
        padding: 34px 24px;
    }

    .formsteps__overlay .formsteps__number {
        margin-bottom: 36px;
        color: #fff;
    }

    .formsteps__overlay--aside {
        min-width: 152px;
        text-align: center;
        display: flex !important;
        flex-wrap: wrap;
    }

    .formsteps__overlay--aside .formsteps__number {
        margin-bottom: 0;
        display: block;
        text-align: center;
        width: 100%;
    }

    .formsteps__overlay--aside ~ * {
        padding-left: 240px;
        box-sizing: border-box;
    }

    .formsteps__overlay--aside + .formsteps__progress {
        opacity: 0;
        cursor: default;
    }
}

@media screen and (max-width: 600px) {
    .formsteps {
        max-width: 100%;
    }

    .formsteps__progress {
        padding: 34px 34px 46px;
    }

    .formsteps__content {
        padding: 0 34px 48px;
    }

    .formsteps__btn--submit {
        width: 100%;
    }

    .formsteps__hint {
        padding-left: 10px;
    }

    .formsteps__overlay--aside {
        right: 0;
        bottom: 100%;
        min-height: 169px;
    }

    .formsteps__overlay--aside .formsteps__number {
        text-align: left;
        color: #fff;
    }

    .formsteps__overlay--aside + .formsteps__progress {
        min-height: 193px;
    }
}

@media screen and (max-width: 400px) {
    .formsteps__overlay {
        padding: 24px;
    }

    .formsteps__progress {
        padding: 24px 24px 36px;
    }

    .formsteps__content {
        padding: 0 24px 38px;
    }

    .formsteps__btn {
        margin: 0;
    }
}

/*# sourceMappingURL=index.css.map */