.eacf7-multistep-step {
    display: table !important;
    width: 100%;
    position: relative;

    &.default {
        .eacf7-multistep-step-row {
            display: flex;
            justify-content: space-around;

            &:before {
                top: 15px;
                bottom: 0;
                position: absolute;
                content: " ";
                width: 100%;
                height: 1px;
                background-color: #ccc;
            }

            .step {
                display: table-cell;
                text-align: center;
                position: relative;

                a {
                    width: 30px;
                    height: 30px;
                    text-align: center;
                    font-size: 12px;
                    line-height: 28px;
                    border-radius: 50%;
                    margin-top: 0;
                    text-decoration: none;
                    outline: 0;
                    display: inline-block;
                    position: relative;
                    background-color: #000;
                    color: #fff;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
            }

            .step-active {
                a {
                    background-color: #dd3333;
                }
            }
        }
    }

    &.style-1 {
        .eacf7-multistep-step-row {
            display: flex;
            justify-content: space-around;

            .step {
                background-color: #000;
                text-align: center;
                width: 100%;

                &:hover {
                    background-color: #dd3333;
                }

                >a {
                    color: #fff;
                    font-size: 12px;
                    width: 100%;
                    height: 100%;
                    display: block;
                    padding: 10px 14px;
                }
            }

            .step-active {
                background-color: #dd3333;
                color: #fff;
            }
        }
    }
}

.eacf7-multistep {
    .iti__country-container {
        height: 40px;
    }

    .eacf7-multistep-control {
        margin-top: 20px;
    }

    &.style-1 {
        .eacf7-multistep-control {
            button {
                background: #000000;
                color: #fff;
                border-radius: 4px;
                line-height: 1;
                font-size: 18px;
                padding: 6px 12px;
            }
        }
    }

    &.style-2 {
        .eacf7-multistep-control {
            button {
                background: #000000;
                color: #fff;
                border-radius: 4px;
                line-height: 1;
                font-size: 18px;
                padding: 6px 12px;
            }
        }
    }

    &.step-start {
        .eacf7-prev {
            display: none;
        }
    }

    &.step-end {
        .eacf7-next {
            display: none;
        }
    }

    &:not(:first-child) {
        display: none;
    }

    &.eacf7-multistep-off {
        display: block;

        .eacf7-multistep-control {
            display: none;
        }
    }
}