.card-modal {
    overflow: hidden;
    text-align: left;
    border-radius: 0.5rem;
    max-width: 350px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    min-width: 290px;
    position: fixed;
    display: flex;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.header-modal {
    padding: 1.25rem 1rem 1rem 1rem;
    background-color: var(--bs-body-bg) !important;
}

.image-modal {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    background-color: #024F9C;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;

    & i {
        size: 22px;
        color: #ffffff;
    }
}

.content-modal {
    margin-top: 0.75rem;
    text-align: center;
}

.title-modal {
    color: var(--bs-head-p);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5rem;
}

.message-modal {
    text-align: start;
    margin-top: 0.5rem;
    margin-left: 1rem;
    color: var(--bs-head-p);
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.actions-modal {
    margin: 0.75rem 1rem;
    background-color: var(--bs-body-bg);
}

.desactivate-modal {
    display: inline-flex;
    padding: 0.5rem 1rem;

    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    justify-content: center;
    width: 100%;
    border-radius: 0.375rem;
    border-width: 1px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.activate-modal {
    display: inline-flex;
    padding: 0.5rem 1rem;

    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    justify-content: center;
    width: 100%;
    border-radius: 0.375rem;
    border-width: 1px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.cancel-modal {
    display: inline-flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    justify-content: center;
    width: 100%;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}