﻿
#modale-delete-confirm {
    display: none;
    width: 550px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 20px;
    background: var(--color-white);
}

#modale-delete-confirm.active {
    display: flex;
    z-index: 300;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wrap-delete-confirm-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.modale-delete-confirm-title {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.modale-delete-confirm-title span {
    display: flex;
}

.modale-delete-confirm-title h3 {
    color: var(--Colors-BE-NOIR, #000);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.modale-delete-confirm-content {
    display: flex;
    flex-direction: column;
    gap: 20px;  
    text-align: center;
}

.modale-delete-confirm-content p {
    color: var(--Colors-BE-NOIR, #000);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.modale-delete-confirm-boutons {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.modale-delete-confirm-boutons button {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    outline: none;
    border: none;
}

.modale-delete-confirm-boutons button.btn-primary {
    border-radius: 5px;
    background: #3951AC;
}

.modale-delete-confirm-boutons button.btn-secondary {
    border-radius: 5px;
    background: #CC1541;
}

.modale-delete-confirm-boutons button span {
    color: var(--Colors-BE-BLANC, #FFF);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
}