.step-app>.step-steps {
    margin: 0;
    padding: 0;
    display: flex;
    border-radius: 3px 3px 0 0;
    overflow: auto;
    justify-content: center;
}

.step-app>.step-steps>li {
    list-style: none;
    cursor: pointer;
    padding: 10px 10px 10px 0px;
    color: var(--dark);
    text-decoration: none;
    border-right: 1px solid #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    font-weight: 500;
}

.step-app>.step-steps>li:last-child a {
    border: none;
}

.step-app>.step-steps>li span {
    min-width: 30px;
    min-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #B3B3B3;
}

.step-app>.step-steps>li.active span {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.step-app>.step-steps>li.done span {
    background-color: var(--primary);
    color: var(--primary);
    border-color: var(--primary);
}

.step-app>.step-steps>li>.number {
    background: #fff;
    padding: 0 8px;
    display: inline-block;
    text-align: center;
    margin-right: 15px;
    border-radius: 3px;
    color: #333;
}

.step-app>.step-content {
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: var(--input-border-radius);
    margin-top: 20px;
}

.step-app>.step-content>.step-tab-panel {
    display: none;
}

.step-app>.step-content>.step-tab-panel.active {
    display: block;
}

.step-app>.step-footer {
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    gap: 20px;
}

.step-app>.step-steps>li.done span::before {
    font-family: "Material Icons";
    content: "check";
    font-weight: 900;
    font-size: 14px;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

.step-app>.step-steps>li:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    right: 0;
    background-color: #B3B3B3;
    transform: translateX(100%);
}

.step-app>.step-steps>li:not(:last-child) {
    margin-right: 45px;
}

@media(width <=768px) {
    .step-app>.step-steps>li:not(:last-child)::after {
        display: none;
    }

    .step-app>.step-steps>li {
        font-size: 12px !important;
    }

    .step-app>.step-steps>li:not(:last-child) {
        margin-right: 20px !important;
    }

    .step-app>.step-steps>li span {
        min-width: 20px !important;
        min-height: 20px !important;
        font-size: 10px !important;
    }

    .step-app>.step-steps>li.done span::before {
        font-size: 10px !important;
    }

    .step-app>.step-steps {
        flex-wrap: wrap;
    }
}

#steps-container {
    min-height: 515px;
    position: relative;
    padding-bottom: 90px;
}

.step-footer button {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-footer button .material-icons {
    font-size: 15px;
}

.step1-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    column-gap: 50px;
    padding: 65px 0;
}

.step1-buttons button {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.step1-buttons button .material-icons {
    font-size: 17px;
}
