
html, body, .container, main {
    height: 100%;
    overflow-x: hidden;
}

.card-header-step {
    background-color: rgb(241, 241, 241);
    border-radius: 0.375rem;
}

.step-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px
}

.step-card{
    margin:10px;
}

@media screen and (max-width: 537px) {
    .step-content {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 20px
    }
}

.current-step .step-indicators {
    display: flex;
    width: fit-content;
    flex-direction: row;
}

.current-step .default-node {
    cursor: pointer;
    width: 45px;
    height: 45px;
    color: rgb(0, 0, 0);
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 18px;
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(17, 24, 39);
    position: relative;
}

    .current-step .default-node * {
        position: relative;
    }

.concluded-step .step-indicators {
    display: flex;
    width: fit-content;
    flex-direction: row;
}

.concluded-step .default-node {
    cursor: pointer;
    width: 45px;
    height: 45px;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    background-color: rgb(17, 24, 39);
    font-size: 18px;
    color: rgb(255, 255, 255);
    border: 2px solid rgb(204, 204, 204);
}

    .concluded-step .default-node * {
        position: relative;
    }

.step .step-indicators {
    display: flex;
    width: fit-content;
    flex-direction: row;
}

.step .default-node {
    cursor: pointer;
    width: 45px;
    height: 45px;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 18px;
    color: rgb(255, 255, 255);
    background-color: rgb(159, 157, 157);
}

    .step .default-node * {
        position: relative;
    }


.step-line {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin-left: 10px;
}

    .step-line span:nth-child(1) {
        background-color: rgb(102, 102, 102);
    }

    .step-line span:nth-child(1) {
        width: 6px;
        height: 6px;
    }

    .step-line span {
        margin: 0px 2px;
        border-radius: 6px;
    }

        .step-line span:nth-child(2) {
            background-color: rgb(204, 204, 204);
        }

        .step-line span:nth-child(2) {
            width: 50px;
            height: 6px;
        }
