/**
 * CSS pour la page de la facturation electronique
 * @file facturation.css
 * @author GN
 * @date 11/08/2026
 */
.fact-arrow-circle {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #e7edf5;
    border-radius: 50%;

    box-shadow: 0 4px 12px rgba(15, 45, 90, 0.08);
    
    margin-left: -16px; 
}
.fact-arrow-circle svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: #123b82;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}



.fe-process {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* ÉTAPE */

.fe-step {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
}

.fe-step-card {
    min-height: 200px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #e4ebf5;
    border-radius: 14px;

    padding: 40px 20px 22px;

    text-align: center;
}

/* NUMÉRO */

.fe-step-number {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;
    font-size: 14px;
    font-weight: 700;

    z-index: 2;
}

.fe-step-blue {
    background: #1268ed;
}

.fe-step-green {
    background: #0aa35a;
}

.fe-step-purple {
    background: #6526c7;
}

.fe-step-orange {
    background: #ff7900;
}

.fe-step-red {
    background: #f31818;
}

/* ICÔNE */

.fe-step-icon {
    width: 100px;
    height: 100px;

    object-fit: contain;

    margin-bottom: 20px;
}

/* TEXTE */

.fe-step-title {
    color: #123b82;

    font-size: 16px;
    line-height: 1.45;

    font-weight: 700;
}

/* LIAISON ENTRE LES CARTES */

.fe-process-link {
    width: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    flex-shrink: 0;
}

.fe-process-link span {
    width: 6px;
    height: 6px;

    background: #2484e8;
    border-radius: 50%;
}

/* MOBILE */

@media (max-width: 980px) {

    .fe-process {
        flex-direction: column;
        gap: 32px;
    }

    .fe-step {
        width: 100%;
        max-width: 420px;
        flex: none;
    }

    .fe-process-link {
        width: auto;
        height: 34px;

        flex-direction: column;
        gap: 4px;
    }

    .fe-process-link span {
        width: 5px;
        height: 5px;
    }
}



.facturation-list li {
    margin-bottom:20px !important;
}


/* =========================
   FACTURATION ÉLECTRONIQUE
   Numéro + ligne
   ========================= */

.factelec-now {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Rond numéroté */

.factelec-now-number {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;
    font-size: 18px;
    font-weight: 700;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Ligne */

.factelec-now-line {
    height: 2px;
    flex: 1;

    background: rgba(255, 255, 255, 0.75);
}

/* Petit point blanc */

.factelec-now-dot {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;

    background: #ffffff;
    border-radius: 50%;
} 

/* =========================
   COULEURS
   ========================= */

.factelec-now-blue .factelec-now-number {
    background: #1268ED;
}

.factelec-now-green .factelec-now-number {
    background: #0AA35A;
}

.factelec-now-purple .factelec-now-number {
    background: #7A3AF2;
}

.facturation-point {
    margin-bottom:0px !important;
}
.facturation-point li {
    color:rgb(21, 148, 91) !important;
    font-size:18px;
    font-weight: 700;
}
.facturation-point li:before {
    width: 26px !important;
    height: 25px !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    line-height: 22px !important;
}


.factelec-accordion .et_pb_accordion_item:first-child {
    border-top-left-radius: 18px !important;
    border-top-right-radius: 18px !important;
}
.factelec-accordion .et_pb_accordion_item:last-child {
    border-bottom-left-radius: 18px !important;
    border-bottom-right-radius: 18px !important;
}