#livraison-section {
    border: 2px solid #ccc; /* Bordure grise */
    border-radius: 8px; /* Bordures arrondies */
    padding: 20px; /* Espacement à l'intérieur de la bordure */
    margin-bottom: 20px; /* Espacement sous les boîtes */
    background-color: #ffecec; /* Couleur de fond légère */
}

/* Pour les titres à l'intérieur des sections */
#livraison-section .checkoutBox-Title {
    background-color: #ffa4a4; /* Couleur de fond pour le titre de la section */
    border-radius: 6px; /* Bordures arrondies pour le titre */
    padding: 10px; /* Espacement à l'intérieur du titre */
    margin: -38px -30px 20px -30px; /* Pour aligner le titre avec la bordure extérieure */
    font-weight: bold;
}

/* Styliser les boutons pour correspondre au design */
#checkout_livraison-container #save-livraison_paiement {
    background-color: #007bff; /* Bleu */
    color: white; /* Texte en blanc */
    border: none; /* Pas de bordure */
    border-radius: 4px; /* Bords arrondis */
    padding: 10px 15px; /* Espacement à l'intérieur du bouton */
    margin-top: 20px; /* Espacement au-dessus du bouton */
}

#checkout_livraison-container #save-livraison_paiement:hover {
    background-color: #0056b3; /* Bleu plus foncé au survol */
}

/* Styliser les boutons pour correspondre au design */
#checkout_livraison-container #modify-livraison_paiement {
    background-color: #007bff; /* Bleu */
    color: white; /* Texte en blanc */
    border: none; /* Pas de bordure */
    border-radius: 4px; /* Bords arrondis */
    padding: 10px 15px; /* Espacement à l'intérieur du bouton */
    margin-top: 20px; /* Espacement au-dessus du bouton */
}


.sticky-summary_livraison {
    position: -webkit-sticky; /* Pour le support Safari */
    position: sticky;
    top: 86px; /* La distance du haut de la fenêtre à laquelle l'élément devient sticky */
    z-index: 100; /* S'assurer qu'il reste au-dessus des autres éléments */
}

#checkout_livraison-container .progress-wrapper {
    padding: 0;
    margin: 0;
}

#checkout_livraison-container .progress-indicator {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

#checkout_livraison-container .progress-indicator li {
    width: 25%;
    text-align: center;
    list-style-type: none;
    font-size: 0.9em;
    position: relative;
    text-transform: uppercase;
    color: #aaa;
}

#checkout_livraison-container .progress-indicator li:before {
    width: 30px;
    height: 30px;
    content: ' ';
    line-height: 30px;
    border: 2px solid #ddd;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
}

#checkout_livraison-container .progress-indicator li:after {
    width: 100%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: #ddd;
    top: 15px;
    left: -50%;
    z-index: -1;
}

#checkout_livraison-container .progress-indicator li:first-child:after {
    content: none;
}

#checkout_livraison-container .progress-indicator li.completed {
    color: #5cb85c;
}

#checkout_livraison-container .progress-indicator li.completed:before {
    border-color: #5cb85c;
}

#checkout_livraison-container .progress-indicator li.completed + li:after {
    background-color: #5cb85c;
}

#checkout_livraison-container .progress-indicator li.active {
    color: #3a3a3a;
}

#checkout_livraison-container .progress-indicator li.active:before {
    border-color: #3a3a3a;
}


#checkout_livraison-container .card-body .price-row,
#checkout_livraison-container .card-body .tva-row,
#checkout_livraison-container .card-body .bon-row,
#checkout_livraison-container .card-body .port-row,
#checkout_livraison-container .card-body .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem; /* Adjust the space between lines */
}

#checkout_livraison-container .card-body hr {
    margin: 1rem 0; /* Space above and below the horizontal rule */
}

#checkout_livraison-container .btn-primary,
#checkout_livraison-container .btn-link {
    text-align: center; /* Center align the return link */
}
