.eg-steps {
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
}

.eg-steps .step {
    display: none;
}

.eg-steps .step.current {
    display: block;
}

.eg-steps .step .title,
.eg-steps .step h2 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 5px;
}

.eg-steps .step .buttons {
    display: table;
    width: 100%;
    box-sizing: border-box;
}

.eg-steps .step .buttons .buttons-left,
.eg-steps .step .buttons .buttons-right {
    display: table-cell;
    vertical-align: middle;
}

.eg-steps .step .buttons .buttons-right {
    text-align: right;
}

.eg-steps .step .buttons .buttons-center {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.eg-steps .step[auto_submit] {
    text-align: center;
    padding: 10px;
}