.step-wizard {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    border-bottom: none;
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 20px;
}
.step-wizard > li {
    flex-grow: 1;
    text-align: center;
    position: relative;
}
.step-wizard > li:not(:last-child)::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #eee;
    left: 50%;
    top: calc(50% - 2px);
}

.step-wizard > li > a {
    padding: 5px 10px;
    font-weight: bold;
    background-color: white;
    display: inline-block;
    z-index: 1;
    font-size: 14px;
    transition-duration: 500ms;
    border-radius: 20px;
    border: 2px solid white;
    position: relative;
}
.step-wizard > li > a:focus {
    background-color: white;
}
.step-wizard > li > a:hover {
    border-color: #6285ae;
    background-color: white;
}

.step-wizard > li.disabled-step > a {
    color: #eee;
    cursor: not-allowed;
}
.step-wizard > li.disabled-step > a:hover {
    border-color: silver;
    color: #ddd;
}
.step-wizard > li.disabled-step.complite > a {
    border-color: #bed4ec;
    background-color: #bed4ec;
    color: white;
}
.step-wizard > li.disabled-step.complite > a:hover {
    border-color: #bed4ec;
    background-color: #bed4ec;
    color: white;
}

.step-wizard > li.active > a {
    border-width: 2px;
    color: #4d627b;
    background-color: white;
    border-color: #6285ae;
}
.step-wizard > li.active > a:hover,
.step-wizard > li.active > a:focus {
    border-width: 2px;
    color: #4d627b;
    background-color: white;
    border-color: #6285ae;
}

.step-wizard > li.complite::after {
    background-color: #bed4ec;
}
.step-wizard > li.complite > a {
    border-color: #6285ae;
    background-color: #6285ae;
    color: white;
}
.step-wizard > li.complite > a:hover,
.step-wizard > li.complite > a:hover {
    border-color: #4b6c92;
    background-color: #4b6c92;
    color: white;
}

#buy-plan-2, #buy-plan-3 {
    height: 350px;
}
