/*body {*/
/*    background: #0b2a86;*/
/*}*/

body {
    background: linear-gradient(
            rgba(11, 42, 134, 0.85),
            rgba(11, 42, 134, 0.85)
    ),
    url("../images/form-blue-background.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.wizard-shell {
    /*max-width: 980px;*/
    margin: 24px auto;
    /*background: rgba(255, 255, 255, .12);*/
    border-radius: 16px;
    padding: 16px;
}

.wizard-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    overflow: hidden;
}

.stepper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
    background: #fff;
    border-radius: 16px;
}

.stepper .step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.stepper .dot {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: #e9ecef;
    color: #6c757d;
    flex: 0 0 auto;
}

.stepper .label {
    font-size: 14px;
    color: #6c757d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stepper .line {
    height: 2px;
    background: #e9ecef;
    flex: 1;
    border-radius: 999px;
}

.stepper .step.active .dot,
.stepper .step.done .dot {
    background: #f59f00;
    color: #fff;
}

.stepper .step.active .label {
    color: #212529;
    font-weight: 600;
}

.stepper .step.done .label {
    color: #212529;
}

.wizard-body {
    padding: 22px;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    border-top: 1px solid #eef1f4;
    background: #fff;
}

.hint-box {
    background: #e7f1ff;
    border: 1px solid #b6d4fe;
    color: #0b2a86;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
}

.select2-selection{
    border-radius: 999px !important;
}