[x-cloak] {
    display: none !important;
}

.wizard-progress-step {
    text-align: center;
    min-width: 110px;
}

.wizard-progress-number {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bs-gray-200);
    color: var(--bs-gray-700);
    font-weight: 600;
    transition: all 0.3s ease;
}

.wizard-progress-step.active .wizard-progress-number {
    background-color: var(--bs-primary);
    color: #fff;
}

.wizard-progress-step.completed .wizard-progress-number {
    background-color: var(--bs-success);
    color: #fff;
}

.wizard-progress-label {
    font-size: 0.85rem;
    color: var(--bs-gray-600);
}

.wizard-progress-step.active .wizard-progress-label {
    color: var(--bs-primary);
    font-weight: 600;
}

.wizard-progress-step.completed .wizard-progress-label {
    color: var(--bs-success);
}

.quick-engagement-btn .icon-wrapper {
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
}

/* ------ checkbox card ------ */
.quick-engagement-btn {
    cursor: pointer;
    display: inline-block;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    width: 100%;
    min-height: 68px;
    padding: 15px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.quick-engagement-btn .check_icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    border: solid 2px #e3e3e3;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: 0.2s;
    background: transparent;
}

.quick-engagement-btn.active {
    border: 2px solid slategray;
}

.quick-engagement-btn.active .check_icon {
    background: #db3037;
    border-color: #db3037;
}

.quick-engagement-btn .icon-wrapper {
    margin-bottom: 10px;
}
.quick-engagement-btn .check_icon:before {
    content: "\f00c";
    font-family: "FontAwesome";
    font-weight: 900;
    position: absolute;
    color: #fff;
    font-size: 0.8em;
    top: -2px;
    left: 3px;
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s ease;
}

.quick-engagement-btn.active .check_icon:before {
    transform: scale(1);
    opacity: 1;
}
