.sk-wizard::after {
    content: "";
    clear: both;
    display: table;
}

.sk-wizard-step {
    display: none;
}

.sk-wizard-progress-bar {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    padding: 5px 0;
    overflow: hidden;
}

.sk-wizard-progress-step {
    position: relative;
    display: flex;
    height: 3.6rem;
    padding: 0;
    justify-content: center;
    align-items: end;
    border: none;
    background-color: transparent;
    color: #00000040;
    --sk-wizard-gray: #b5b7b4;
}

.sk-wizard-progress-step::before {
    height: 2px;
    width: 50vw;
    top: .5rem;
    transform: translate(-50%, -50%);
}

.sk-wizard-progress-step::after {
    border-radius: 50%;
    height: 1rem;
    width: 1rem;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.sk-wizard-progress-step,
.sk-wizard-progress-step::before,
.sk-wizard-progress-step::after {
    transition-duration: .2s;
    transition-property: color, background-color;
}

.sk-wizard-progress-step::before,
.sk-wizard-progress-step::after {
    content: "";
    display: block;
    position: absolute;
    background-color: var(--sk-wizard-gray);
}

.sk-wizard-progress-step:last-child::before {
    background-color: var(--sk-gray) !important;
}

.sk-wizard-progress-step:is(.sk-wizard-step-active, .sk-wizard-step-done)::before,
.sk-wizard-progress-step:is(.sk-wizard-step-active, .sk-wizard-step-done)::after {
    background-color: var(--sk-green);
}

.sk-wizard-progress-step.sk-wizard-step-active {
    color: black;
}

.sk-wizard-progress-step.sk-wizard-step-done {
    color: #00000093;
}

.sk-wizard-progress-step,
.sk-wizard-step-buttons button {
    font-size: max(1rem, 14px);
}

.sk-wizard-step.sk-wizard-step-active {
    display: block;
}

.sk-wizard-step:first-child .sk-wizard-step-buttons button:first-child {
    display: none;
}

.sk-wizard-step-buttons button {
    margin: 1rem 0;
    text-transform: uppercase;
}

.sk-wizard-step-buttons button:first-child {
    float: left;
}

.sk-wizard-step-buttons button:last-child {
    float: right;
    background-color: var(--sk-green-2);
    border: none;
}

.sk-wizard-step-buttons button:last-child:hover {
    background-color: var(--sk-green);
}

@media (max-width: 700px) {
    .sk-wizard-progress-bar {
        max-width: unset;
    }
}