body,
html {
    padding: 0;
    margin: 0;
    background: #F7F8FA;
    font-family: "Lato", sans-serif;
    color: #676767;
}
label {
    font-size: 0.7em;
    font-weight: bold;
}
.wrapper {
    position: relative;
    max-width: 1080px;
    margin: 50px auto;
    overflow: hidden;
}
.wizard {
    max-width: 70rem;
    margin: 0 auto;
}
.wizard__header {
    position: relative;
    color: #FFF;
    padding: 50px;
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    text-align: center;
    height: 100px;
    background-color: #98867F;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.wizard__header-content {
    position: absolute;
    width: 100%;
    padding: 0 50px;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
}
.wizard__header-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #98867F;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.wizard__title {
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 0;
}
.wizard__subheading {
    text-transform: uppercase;
    margin: 0;
    font-size: 0.8rem;
    font-weight: 100;
    letter-spacing: 2px;
}
.wizard__subheading span {
    font-weight: 600;
}
.wizard__steps {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(50%);
    z-index: 10;
}
.wizard__footer {
    padding: 0 50px 50px;
    border-radius: 5px;
}
.wizard__content {
    background: #FFF;
    box-shadow: 0px 0px 10px #c5c5c5;
    border-radius: 5px;
}
.wizard.completed .wizard__content {
    animation: gettingOut 2s cubic-bezier(1, -0.71, 1, 1.16) forwards;
}
.line {
    position: absolute;
    top: 20px;
    left: 50%;
    z-index: -1;
    height: 6px;
    transition: all 0.5s ease;
}
.line.-start {
    left: 0%;
    background: #AC6B39;
    width: 50%;
}
.line.-end {
    left: 50%;
    background: #AC6B39;
    width: 50%;
}
.line.-background {
    background: #c3c3c3;
    width: 100%;
}
.line.-progress {
    background: #AC6B39;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left center;
}
.line.-in-progress {
    transform: scaleX(1);
}
.panels {
    position: relative;
    overflow: hidden;
    display: flex;
    transition: transform 0.3s ease;
}
.panel {
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s all;
    padding: 50px;
    min-width: 100%;
    box-sizing: border-box;
    display: none; 
}
.panel.active {
    display: block;
}
.panel__header {
    margin-bottom: 30px;
}
.panel__title {
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 0;
}
.panel__subheading {
    font-size: 0.9rem;
    line-height: 1.2rem;
    margin: 0;
}
.panel.movingOutBackward {
    transform: translateX(-70rem);
}
.panel.movingOutFoward {
    transform: translateX(70rem);
}
.panel.movingIn {
    transform: translateX(0);
}
.steps {
    position: relative;
    display: flex;
    flex: 0 1 auto;
    color: #fff;
}
.step {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    border-radius: 5px;
}
.step__content {
    position: relative;
    z-index: 2;
}
.step__number {
    font-size: 1.3rem;
    color: #676767;
    background: #FFF;
    font-weight: 800;
    width: 50px;
    height: 50px;
    line-height: 40px;
    margin: 0 auto;
    border-radius: 50%;
    border: 5px solid #c3c3c3;
    transition: opacity 0.5s;
    opacity: 1;
    z-index: 5;
}
.step.-completed .step__number {
    opacity: 0;
}
.step.-completed .checkmark {
    z-index: 0;
    animation: fill 0.4s ease-in-out forwards, scale 0.3s ease-in-out 0.6s both;
}
.step.-completed .checkmark__check {
    animation: stroke 0.5s linear 0.4s forwards;
}
.step.-completed .line {
    transform: scaleX(1);
}
.step:last-child .line {
    width: 50%;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px green;
    z-index: -1;
}
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 8;
    stroke-miterlimit: 10;
    stroke: green;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    stroke: #FFF;
    stroke-width: 5;
}
.button {
    cursor: pointer;
    font-size: 1rem;
    line-height: 1rem;
    background: #AC6B39;
    color: #FFF;
    padding: 10px 15px;
    border: none;
    outline: none;
    display: inline-block;
    transition: all 0.3s;
}
.button:hover {
    background: #AC6B39;
}
.button.previous {
    margin-right: 5px;
}
.button.disabled {
    background: #c3c3c3;
    cursor: default;
}
@keyframes stroke {
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes scale {
    50% {
        transform: translateX(-50%) scale3d(1.5, 1.5, 1.5);
    }

    100% {
        transform: scale3d(0);
    }
}
@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px green;
    }
}
@keyframes gettingOut {
    0% {
        transform: translateY(0%);
    }

    30% {
        transform: translateY(100px);
    }

    100% {
        transform: translateY(-200%);
    }
}
@keyframes fadeIn {
    100% {
        opacity: 1;
    }
}
.input-label {
    display: flex;
    align-items: center;
}
.number-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.726);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    margin-right: 10px;
}
.form-control {
    margin-top: 5px;
}