#f-wizard-form {
    flex: 1;
    padding: 5px;
    min-height: 440px;
    display: flex;
    align-items: center;
}

#f-wizard-form *, #f-wizard-form *::before, #f-wizard-form *::after {
    box-sizing: border-box;
}

.f-wizard-app-container {
    padding: 5px;
    overflow-x: hidden;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, segoe ui, Roboto, helvetica neue, Arial, noto sans, sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol, noto color emoji;
    transition: all 1s;
    max-width: 650px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin: auto;
}

.app-wizard-form-container {
    width: 450px;
    max-width: 100%;
    margin: auto;
    min-height: 300px;
    transition: all 1s;
    position: relative;
}

.f-wizard-progressbar-container {
    display: flex;
    align-items: center;
}

.f-wizard-progressbar {
    position: relative;
    width: 100%;
    height: 12px;
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 4px rgba(111, 111, 113, 0.45);
    margin-right: 10px;
}

.f-wizard-progressbar span {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #22445d, #43aa8c);
    transition: width 0.2s ease-in-out;
}

.f-wizard-progressbar-container .f-wizard-progressbar--value {
    flex: 0;
    font-size: 16px;
    font-weight: 700;
}

.f-wizard-step--title,
.form-bottom-text {
    color: #22445d;
}

.f-wizard-step .f-wizard-step--title {
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 23px;
}

.f-wizard-step .f-wizard-step--form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.f-button {
    line-height: 1.5715;
    position: relative;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    border: 1px solid #d9d9d9;
    box-shadow: 0 2px #00000004;
    cursor: pointer;
    transition: all .3s cubic-bezier(.645, .045, .355, 1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
    height: 50px;
    padding: 4px 15px;
    font-size: 16px;
    border-radius: 15px;
    color: #000000d9;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.f-button.f-button-primary {
    color: #fff;
    background: #43aa8c;
    border-color: #43aa8c;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px rgba(0, 0, 0, 0.04);
}

.f-wizard-step .f-wizard-step--form .f-button {
    margin-bottom: 15px;
    font-weight: bolder;
    font-size: 18px;
}

.f-button.f-button-primary.f-button-outline {
    color: #43aa8c;
    background: #fff;
    border-color: #43aa8c;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px rgba(0, 0, 0, 0.04);
}

.f-button .f-button-content {
    pointer-events: none;
    display: flex;
    align-items: center;
}

.f-button .f-button-right-icon {
    position: absolute;
    right: 4px;
    top: 47%;
    transform: translateY(-53%);
    font-size: 40px;
    pointer-events: none;
    opacity: .9;
}

.f-button.f-button-primary:hover {
    color: #fff;
    background: linear-gradient(270deg, #22445d, #43aa8c);
    border-color: #43aa8c;
    text-decoration: none;
}



@media (max-width: 767px) {
    .app-wizard-form-container {
        width: inherit;
    }
}

@media (max-width: 650px) {
    .f-wizard-app-container {
        padding: 10px;
    }
}
