﻿@import url("https://fonts.googleapis.com/css?family=Roboto:300i,400,400i,500,700,900");

.multi_step_form {
    min-height: auto !important;
}

    .multi_step_form #msform {
        text-align: center;
        position: relative;
        min-height: 300px;
        max-width: 810px;
        margin: 0 auto;
        background: #ffffff;
        z-index: 1;
    }

        .multi_step_form #msform fieldset {
            border: 0;
            padding: 20px 9% 0;
            position: relative;
            width: 100%;
            left: 0;
            right: 0;
        }

            .multi_step_form #msform fieldset:not(:first-of-type) {
                display: none;
            }

            .multi_step_form #msform fieldset h3 {
                text-align: left;
                font: 500 18px/35px "Roboto", sans-serif;
                color: #3f4553;
                padding-bottom: 10px;
            }

            .multi_step_form #msform fieldset h6 {
                text-align: center;
                font: 400 15px/28px "Roboto", sans-serif;
                color: #5f6771;
            }

            .multi_step_form #msform fieldset label.error {
                color: red;
                text-align: left;
                width: 100%;
            }

#progressbar {
    margin-bottom: 0;
    overflow: hidden;
}

    #progressbar li {
        list-style-type: none;
        color: #99a2a8;
        font-size: 9px;
        width: calc(100%/6);
        float: left;
        position: relative;
        font: 500 13px/1 "Roboto", sans-serif;
    }

        #progressbar li:before {
            content: "";
            font: normal normal normal 30px/50px Ionicons;
            width: 0;
            height: 50px;
            line-height: 50px;
            display: block;
            background: #eaf0f4;
            border-radius: 50%;
            margin: 0 auto 10px auto;
        }

        #progressbar li:after {
            content: "";
            width: 100%;
            height: 10px;
            background: #eaf0f4;
            position: absolute;
            left: -50%;
            top: 21px;
            z-index: -1;
        }

        #progressbar li:last-child:after {
            width: 150%;
        }

        #progressbar li.active {
            color: #0082ca ;
        }

            #progressbar li.active:before, #progressbar li.active:after {
                background: #0082ca ;
                color: white;
            }

.multi_step_form #msform .action-button {
    background: #0082ca ;
    color: white;
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    min-width: 130px;
    font: 700 14px/40px "Roboto", sans-serif;
    border: 1px solid #0082ca ;
    margin: 0 5px;
    text-transform: uppercase;
    display: inline-block;
}

    .multi_step_form #msform .action-button:hover, .multi_step_form #msform .action-button:focus {
        background: #405867;
        border-color: #405867;
    }

.multi_step_form #msform .previous_button {
    background: transparent;
    color: #99a2a8;
    border-color: #99a2a8;
}

    .multi_step_form #msform .previous_button:hover, .multi_step_form #msform .previous_button:focus {
        background: #405867;
        border-color: #405867;
        color: #fff;
    }
