﻿/*#container {
  position: relative;
  width: 100%;
  text-align: center;
}*/
.buttons {
    text-align: center;
    width: 100%;
}

    .buttons input:disabled {
        opacity: 0.2;
        cursor: not-allowed;
    }

.step-wizard {
    display: inline-block;
    position: relative;
    width: 100%;
}

    .step-wizard .progress {
        background-color: transparent;
        position: absolute;
        top: 30px;
        left: 11%;
        width: 75%;
    }

    .step-wizard .progressbar {
        position: absolute;
        background-color: #E17E25;
        opacity: 0.7;
        height: 4px;
        /*border: 1px solid #0AA89E;*/
        width: 0%;
        -webkit-transition: width 1s ease;
        -o-transition: width 1s ease;
        transition: width 1s ease;
    }

        .step-wizard .progressbar.empty {
            opacity: 1;
            width: 100%;
            background-color: #cacaca;
        }

    .step-wizard ul {
        position: absolute;
        width: 100%;
        list-style-type: none;
        padding: 0;
        left: -2%;
    }

    .step-wizard li {
        display: inline-block;
        text-align: center;
        width: 24.7%;
    }

        .step-wizard li .step {
            position: absolute;
            display: inline-block;
            line-height: 45px;
            top: -10px;
            width: 50px;
            height: 50px;
            font-size: 20px;
            border-radius: 50%;
            border: 2px solid;
            border-color: #909090;
            background: #ffffff;
            -webkit-transition: background-color 0.6s ease, border-color 0.6s ease;
            -o-transition: background-color 0.6s ease, border-color 0.6s ease;
            transition: background-color 0.6s ease, border-color 0.6s ease;
        }

        .step-wizard li .title {
            position: absolute;
            width: 100%;
            left: 20px;
            padding-top: 42px;
            color: #969c9c;
            -webkit-transition: color 0.6s ease;
            -o-transition: color 0.6s ease;
            transition: color 0.6s ease;
        }

        .step-wizard li.active .step {
            border-color: #E17E25;
        }

        .step-wizard li.active .title {
            color: black;
        }

        .step-wizard li.done .step {
            color: white;
            background-color: #E17E25;
            border-color: #E17E25;
            box-shadow: 0px 0px 7px 2px rgba(225, 126, 37, 0.45);
            -moz-box-shadow: 0px 0px 7px 2px rgba(225, 126, 37, 0.45);
            -webkit-box-shadow: 0px 0px 7px 2px rgba(225, 126, 37, 0.45);
        }

        .step-wizard li > a {
            display: block;
            width: 100%;
            color: black;
            position: relative;
            text-align: center;
        }

            .step-wizard li > a:hover .step {
                border-color: #E17E25;
            }

            .step-wizard li > a:hover .title {
                color: black;
            }

@media only screen and (max-width: 1200px) {
    .step-wizard li {
        width: 24%;
    }
}

@media only screen and (max-width: 375px) {
    .step-wizard li {
        width: 22%;
    }
}
