.multistep-no-img .msf-input-box.radio-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.multistep-no-img .msf-input-box.radio-choices .msf-input-box {
    display: grid;
    place-items: center;
    margin: 0;
}

.multistep-no-img .msf-input-box.radio-choices .msf-input-box label {
    word-break: break-word;
    padding: 8px;
    width: 100%;
    height: 100%;
    display: grid
;
    place-items: center;
}

#multistep:has(.multistep-no-img) {
    height: auto;
}

#progress:before,
#progressnew:before {
    content: "";
    display: block;
    width: 20%;
    background: #79c400;
    border-radius: 3px 0 0 3px;
    height: 18px;
    transition: all 0.5s ease;
}

/* TODO: fix */
#progress.step2:before,
#progressnew.step2:before {
    width: 40%;
}
#progress.step3:before,
#progressnew.step3:before {
    width: 60%;
}

#progress.step5:before,
#progressnew.step5:before {
    width: 70%;
}

#progress.step6:before,
#progressnew.step6:before {
    width: 80%;
}

#progress.step7:before,
#progressnew.step7:before {
    width: 90%;
}

#progress.step4:before,
#progressnew.step4:before {
    width: 95%;
}
#progress.done:before,
#progressnew.done:before {
    width: 100%;
}

#box {
    display: none;
    position: fixed;
    top: 20%;
    left: 0;
    right: 0;
    width: 60%;
    height: 60%;
    max-width: 600px;
    max-height: 400px;
    padding: 0;
    margin: 0 auto;
    z-index: 10;
}

#showstopper-dialog {
    position: fixed;
    height: min-content;
    left: 50%;
    top: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
    z-index: 9999;
    border: none;
}
#showstopper-dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

#showstopper-dialog button {
    background-color: #79c400;
    color: #fff;
    padding: 8px 20px;
    outline-color: #79c400;
}

#showstopper-dialog button:hover {
    outline-color: #19293f;
    color: #19293f;
    background: #fff;
    cursor: pointer;
}