/* Général */

#page h2 {
    position: relative;
    top: 0;
    left: 0;
    font-size: 25px;
    padding-bottom: 15px;
    font-family: "Barlow";
    text-align: center;
    margin: 0;
    margin-top: 45px;
}

#page h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #E95D0F;
}

.fond {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 45px;
}

#page .form-control {
    margin-bottom: 0;
}

#page .form-control:focus {
    box-shadow: 2px 2px 6px 0px rgba(86, 86, 86, 0.35);
}

.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.navigation .bouton {
    min-width: 250px;
    margin: 0 10px;
}

/* Panier */

#page #panier {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 45px;
    padding: 25px 10px;
    font-size: 16px;
}

.tableau_panier {
    position: relative;
    top: 0;
    left: 0;
}

.tableau_panier .entete_panier, .tableau_panier .bon_reduction {
    position: relative;
    top: 0;
    left: 0;
    font-weight: bold;
    border-bottom: 2px solid #dee2e6;
    padding: 10px;
}

.tableau_panier .ligne_produit {
    position: relative;
    top: 0;
    left: 0;
    padding: 10px;
}

.tableau_panier .ligne_produit:nth-child(even) {
    background-color: #FFF;
}

.tableau_panier .ligne_produit:last-child {
    border-bottom: 2px solid #dee2e6;
}

.tableau_panier a {
    color: #E95D0F;
}

.total_panier {
    margin-top: 10px;
    font-weight: bold;
}


/* Choix adresses */

#adresses h2 {
    margin-top: 0;
}

.adresse {
    margin-top: 25px;
    padding-left: 25px;
    padding-right: 25px;
}

.adresse > div {
    margin-top: 15px;
}

.adresse_livraison, .adresse_facturation {
    text-align: center;
}

#adresses .fond {
    margin-top: 0;
}


/* Livraison et mode paiement */

#widget-container {
    min-height: 533px;
}

#choix_livraison .livraison {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px 0;
}

.livraison .form-check-input:checked {
    background-color: #E95D0F;
    border-color: #E95D0F;
}


.livraison, .mode_paiement {
    margin-left: 25px;
    margin-bottom: 25px;
}

.icone svg {
    font-size: 32px;
    color: #E95D0F;
}

.titre_commande {
    font-weight: bold;
    font-size: 16px !important;
}

.livraison .titre_commande {
    margin-bottom: 5px;
}

.livraison .titre_commande span {
    border-bottom: 1px solid #CCC;
}

.livraison .details span, .livraison .retrait_magasin span {
    font-weight: bold;
}

.livraison .retrait_magasin label {
    margin-bottom: 5px !important;
}

#choix_paiement .mode_paiement {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px 0;
}


/* recapitulatif */

#recap #adresses {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 45px;
    padding-bottom: 1px;
}

#recap h2 {
    margin-bottom: 25px;
}


/* --------------------------------------------------------------- */
/*
/* Responsive
/*
/* --------------------------------------------------------------- */


@media screen and (max-width: 1199px) {

    .navigation .bouton {
        min-width: 0;
    }
}

@media screen and (max-width: 991px) {
    .navigation {
        flex-direction: column-reverse;
        align-items: stretch;
        justify-content: flex-start;
        max-width: 250px;
        margin: 25px auto 0;
    }

    .navigation .bouton {
        display: block;
        margin: 10px auto;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {

}

@media screen and (max-width: 575px) {
    .tableau_panier {
        font-size: 14px;
        text-align: left;
    }

    .form-control {
        padding: 0;
        font-size: 11px;
    }
}

@media screen and (max-width: 400px) {
    .tableau_panier {
        font-size: 12px;
    }
}
