.main-stepform {
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    bottom: 30px;
    margin: 0 auto;
}
input:-webkit-autofill {
    background-color: white !important;
}
#multistep_form {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    height: 100%;
    z-index: 999;
    opacity: 1;
    visibility: visible;
    overflow-y: scroll;
}
/*progress header*/
#progress_header {
    overflow: hidden;
    margin: 0 auto 30px;
    padding: 0;
}
#progress_header li {
    list-style-type: none;
    width: 33.33%;
    float: left;
    position: relative;
    font-size: 14px;
    font-weight: bold;
    font-family: monospace;
    color: #fff;
    text-transform: uppercase;
    color: black;
}
#progress_header li:after {
    width: 30px;
    line-height: 30px;
    display: block;
    font-size: 15px;
    color: #888;
    font-family: monospace;
    background-color: #fff;
    border-radius: 100px;
    margin: 0 auto;
    background-repeat: no-repeat;
    font-family: 'Roboto', sans-serif;
}
#progress_header li:nth-child(1):after {
    content: "1";
}
#progress_header li:nth-child(2):after {
    content: "2";
}
#progress_header li:nth-child(3):after {
    content: "3";
}
#progress_header li:before {
    content: '';
    width: 100%;
    height: 5px;
    background: #fff;
    position: absolute;
    left: -50%;
    top: 60%;
    z-index: -1;
}
#progress_header li:first-child:before {
    content: none;
}
#progress_header li.active:before,
#progress_header li.active:after {
    /* background-image: linear-gradient(to right top, #35e8c3, #36edbb, #3df2b2, #4af7a7, #59fb9b) !important; */
    background-color: #cddc39;
    color: black !important;
    transition: all 0.5s;
}
/*title*/
.title-box {
    width: 100%;
    margin: 0 0 30px 0;
}
.title-box h2 {
    font-size: 22px;
    text-transform: uppercase;
    color: #2C3E50;
    margin: 0;
    font-family: cursive;
    display: inline-block;
    position: relative;
    padding: 0 0 10px 0;
    font-family: 'Roboto', sans-serif;
}
.title-box h2:before {
    content: "";
    background: #cddc39;
    width: 70px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
}
.title-box h2:after {
    content: "";
    background: #cddc39;
    width: 50px;
    height: 2px;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
}
/*Input and Button*/
.multistep-box {
    background: white;
    border: 0 none;
    border-radius: 3px;
    /* box-shadow: 1px 1px 55px 3px rgba(255, 255, 255, 0.4); */
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 30px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;
    position: absolute;
}
.multistep-box:not(:first-of-type) {
    display: none;
}
.multistep-box p {
    margin: 0 0 12px 0;
    text-align: left;
}
.multistep-box span {
    font-size: 12px;
    color: #FF0000;
}
.multistep-box input,
.multistep-box textarea {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    color: #2C3E50;
    font-size: 13px;
    transition: all 0.5s;
    outline: none;
}
.multistep-box input:focus,
.multistep-box textarea:focus {
    box-shadow: inset 0px 0px 50px 2px rgb(0, 0, 0, 0.1);
}
input.box_error,
textarea.box_error {
    border-color: #FF0000;
    box-shadow: inset 0px 0px 50px 2px rgb(255, 0, 0, 0.1);
}
input.box_error:focus,
textarea.box_error:focus {
    box-shadow: inset 0px 0px 50px 2px rgb(255, 0, 0, 0.1);
}
p.nxt-prev-button {
    margin: 25px 0 0 0;
    text-align: center;
}
.nxt-prev-button .action-button {
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100px;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 0 5px;
    background-color: #cddc39;
    transition: all 0.5s;
}
.action-button:hover,
.action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #6ce199;
}
.form_submited #multistep_form {
    opacity: 0;
    visibility: hidden;
}
.form_submited h1 {
    -webkit-background-clip: text;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
}
#multistep_form label {
    color: #777;
    display: block;
    font-size: 13px;
    text-align: left;
    margin-top: 10px;
}
#blah{
    max-width: 100%;
    max-height: 300px;
}
