body{
    margin: 0px;
    padding: 0px;
    background-color: #FDF0E7;
    font-family: "Rajdhani", sans-serif;
    font-weight: 400;
    font-style: normal;
    height: 85vh;
    overflow-x: hidden;
}
body p{
    font-family: "Rajdhani", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.contener{
    max-width: 1200px;
    margin: auto;
    padding: 15px;
    margin-top: 100px;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    min-height: 100%;
    margin-bottom: -0px;
}
a{
    text-decoration: none;
    color: black;
}
/*MESSAGE D'ERREUR */
#msg_error_login{
    background-color: rgba(220, 53, 70, 0.65);
    border-radius: 5px;
    padding: 0 20px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    margin-bottom: 35px;
}
#msg_error_login ul{
    padding: 0;
    padding-top: 10px;
    list-style: none;
}
#msg_error_login .fa-xmark{
    position: absolute;
    top: 5px;
    right: 10px;
}
#msg_error_login i{
    cursor: pointer;
}

#msg_error{
    background-color: rgba(220, 53, 70, 0.65);
    border-radius: 5px;
    padding: 0 20px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
#msg_error ul{
    padding: 0;
    padding-top: 10px;
    list-style: none;
}
#msg_error .fa-xmark{
    position: absolute;
    top: 5px;
    right: 10px;
}
#msg_error i{
    cursor: pointer;
}
/*MENU DE NAVIGATION*/
header{
    background-color: rgba(255,192,203, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
}
#contener-nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: sticky;
}
#contener-nav #colum-nav-1 i{
    cursor: pointer;
}
.active #contener-nav #colum-nav-1 i::before{
    content: "\2715";
}
#contener-nav #colum-nav-1 ul{
    position: fixed;
    left: -100%;
    top: 54px;
    flex-direction: column;
    background-color: rgba(255,192,203, 0.7);
    width: 15%;
    height: 100%;
    text-align: center;
    transition: 0.3s;
}
#nav.active #colum-nav-1 ul{
    left: 0;
}
#contener-nav #colum-nav-1 ul li{
    list-style: none;
    text-transform: capitalize;
    padding: 0 10px;
    margin-top: 15px;
    position: relative;
}
#contener-nav #colum-nav-1 ul li:hover{
    background-color: rgba(252, 202, 210, 0.7);
}
#contener-nav #colum-nav-1 ul li::before{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 40%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background-color: rgb(250, 180, 192);
    transition: all 0.5s;
}
#contener-nav #colum-nav-1 ul li:hover::before{
    width: 20%;
}
#contener-nav #colum-nav-3 ul{
    display: flex;
    align-items: center;
}
#contener-nav #colum-nav-3 ul li{
    list-style: none;
    margin-right: 15px;
}
.fa-bag-shopping{
    font-size: 40px;
    color: #601A35;
}
.contener_i li{
    position: relative;
}
.contener_i p{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}
.btn_login{
    outline: none;
    border: none;
    border-radius: 5px;
    background-color: #601A35;
    padding: 5px 10px;
    color: white;
    cursor: pointer;

}

/*SECTION VETEMENT ENFANT INDEX*/
.section-enfant{
    display: flex;
    justify-content: space-evenly;
}
#produit_enfant_case{
    display: flex;
    flex-wrap: wrap;
    width: 515px;
    justify-content: space-between;
}
.images_products img{
    border-radius: 8px;
    height: 250px;
    width: 250px;
}
.images_products_one img{
    border-radius: 8px;
    height: 700px;
    width: 500px;
}
/*SECTION ACCESSOIRES INDEX*/
.section-accessoires{
    display: flex;
    justify-content: space-evenly;
}
#accessoires_case{
    display: flex;
    flex-wrap: wrap;
    width: 515px;
    justify-content: space-between;
}
.img_one_accessoire{
    height: 700px;
    width: 500px;
}

/*Contener Phrase D'accroche*/
.contener-phrase-acroche{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contener-phrase-acroche p{
    font-family: "Rajdhani", sans-serif;
    font-weight: 500;
    font-style: normal;
}
.contener-phrase-acroche .phrase-acroche-paragraphe{
    text-align: center;
}
/*FOOTER*/
#contener-footer{
    display: flex;
    justify-content: space-around;
    background-color: rgba(255,192,203, 0.7);
}
#contener-footer ul{
    padding: 0px;
}
#contener-footer li{
    list-style: none;
}
.colum-footer-3 ul{
    display: flex;
    margin-right: 15px;
}
.colum-footer-3 li{
    margin-right: 15px;
}
.colum-footer-3 li i{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #ffc0cb;
    box-shadow:  4px 4px 2px #edb3bd, -4px -4px 2px #ffcdd9;
    cursor: pointer;
}
.colum-footer-3 li i:hover{
    border-radius: 50px;
    background: #ffc0cb;
    box-shadow: inset 4px 4px 2px #edb3bd, inset -4px -4px 2px #ffcdd9;
}
/*PAGES DE CONNEXION*/
.contener-global-connexion{
    max-width: 1200px;
    margin: auto;
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
    min-height: 100%;
    margin-bottom: -0px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrer horizontalement */
    align-items: center; /* Centrer verticalement */
    height: 82vh;
}
.contener-connexion{
    border-radius: 25px;
    background-color: white;
    width: 500px;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 0;
}
#contener-logo-connexion{
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}
/*FORMULAIRE DE CONNEXION*/
#contener-form-connexion{
    display: flex;
    flex-direction: column;
}
#contener-form-connexion input{
    margin-left: 0px;
    height: 25px;
}
#form-connexion-email{
    display: flex;
    position: relative;
}
#form-connexion-email i{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
#form-connexion-email input{
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 250px;
    margin-right: 15px;
}
#form-connexion-password{
    display: flex;
    margin-top: 10px;
    position: relative;
}
#form-connexion-password i{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
#form-connexion-password input{
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 250px;
    margin-right: 15px;
}
#form-submit-connexion input{
    margin-top: 25px;
    margin-left: 50%;
    transform: translateX(-50%);
    outline: none;
    border: none;
    background-color: transparent;
    border-radius: 5px;
    background: #ffc0cb;
    height: 30px;
    cursor: pointer;
}
#form-submit-connexion input:hover{
    border-radius: 5px;
    background: #ffc0cb;
    box-shadow: inset 5px 5px 4px #f0b4bf, inset -5px -5px 4px #ffccd7;
}

.btn-inscription{
    outline: none;
    border: none;
    background-color: transparent;
    border-radius: 5px;
    background: #ffc0cb;
    height: 30px;
    cursor: pointer;
    margin-left: 50%;
    transform: translateX(-50%);
}
.btn-inscription:hover{
    border-radius: 5px;
    background: #ffc0cb;
    box-shadow: inset 5px 5px 4px #f0b4bf, inset -5px -5px 4px #ffccd7;
}


/*PAGES D'INSCRIPTION*/
/*FORMULAIRE D'INSCRIPTION*/
#form-inscription{
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#contener-input-form-inscription{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 25px;
    height: 500px;
    width: 700px;
}
#contener-info-perso-form-inscription{
    display: flex;
}
#contener-input-form-inscription input{
    margin-top: 15px;
}
#nom{
    position: relative;
}
#nom input{
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 250px;
    margin-right: 15px;
}
#nom i{
    position: absolute;
    top: 70%;
    right: 20px;
    transform: translateY(-50%);
    color: rgba(71, 71, 71, 0.8);
}
#prenom{
    position: relative;
}
#prenom input{
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 250px;
}
#prenom i{
    position: absolute;
    top: 70%;
    right: 13px;
    transform: translateY(-50%);
    color: rgba(71, 71, 71, 0.8);
}
#email{
    position: relative;
}
#email input{
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 520px;
}
#email i{
    position: absolute;
    top: 70%;
    right: 13px;
    transform: translateY(-50%);
    color: rgba(71, 71, 71, 0.8);
}
#contener-password-form-inscription{
    display: flex;
}
#contener-password-form-inscription input{
    margin-right: 15px;
}
#password{
    position: relative;
}
#password input{
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 250px;
}
#password i{
    position: absolute;
    top: 70%;
    right: 20px;
    transform: translateY(-50%);
    color: rgba(71, 71, 71, 0.8);
}
#password-confirm{
    position: relative;
}
#password-confirm input{
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 250px;
}
#password-confirm i{
    position: absolute;
    top: 70%;
    right: 20px;
    transform: translateY(-50%);
    color: rgba(71, 71, 71, 0.8);
}
.btn_inscription{
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: rgba(255,192,203, 0.7);
    box-shadow: -1px 2px 5px 1px rgba(0, 0, 0, 0.7);
    padding: 5px;
    cursor: pointer;
}
.btn_inscription:hover{
    box-shadow: -1px 2px 10px 3px rgba(0, 0, 0, 0.3) inset;
}

/*PAGES MON COMPTE*/
/*Menu de naviation utilisateur*/
.nav_compte{
    position: fixed;
    top: 70px;
    left: 0px;
    width: 15%;
    height: 100%;
    background-color: rgba(255,192,203, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav_compte ul li{
    list-style: none;
}

/*PAGE PRODUITS*/
/*Section produit*/
.section-products{
    display: flex;
}
.section-products p{
    font-size: 20px;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
}
.img_section_image{
    margin-right: 100px;
}
.img_section_image img{
    border-radius: 5px;
}
.detail_section_products{
    position: relative;
    width: 100%;
}
#titre_section_products{
    position: absolute;
    top: 0px;
    left: 0px;
}
#description_section_products{
    position: absolute;
    top: 40px;
    left: 20px;
}
#livraison_section_products{
    position: absolute;
    top: 320px;
    right: 0px;
}
#stock_section_products{
    position: absolute;
    top: 350px;
    right: 0px;
}
#prix_section_products{
    position: absolute;
    top: 380px;
    right: 0px;
}
#btn_section_products{
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}
#btn_section_products .btn-buy{
    background: transparent;
    outline: none;
    border: none;
    background-color: #edb3bd;
    border-radius: 5px;
    height: 40px;
    width: 300px;
    font-size: 18px;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    cursor: pointer;
}

/*PAGES PANIER*/
.content_table_panier{
    border-collapse: collapse;
    width: 100%;
    min-width: 400px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
}
.content_table_panier th, td{
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
}
.content_table_panier th{
    background-color: #ffcdd9;
}
.content_table_panier tbody tr{
    border-bottom: 1px solid #dddddd;
}
.content_table_panier tbody tr:nth-of-type(even){
    background-color: #f3f3f3;
}
.content_table_panier tbody tr:last-of-type{
    border-bottom: 2px solid #ffcdd9;
}
.content_table_panier tr td lord-icon{
    border: 1px solid red;
    background-color: red;
    border-radius: 2px;
}
.text-pink{
    color: #ffcdd9;
    font-weight: bold;
}
#contener_table_panier .btn-paiement{
    outline: none;
    border: none;
    background-color: #ffcdd9;
    cursor: pointer;
    padding: 5px 30px 5px 15px;
    border-radius: 5px;
    font-size: 15px;
    position: relative;
    width: 200px;
}
#contener_table_panier button:hover{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#contener_table_panier button lord-icon{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
#other_payment{
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: end;
}
#other_payment p{
    font-size: 20px;
}

/*Pages SUCCESS PAIEMENT*/
#flex_contener_success{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70vh;
}
#contener_success_pay{
    background-color: white;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

/*PAGES ALL COMMANDES*/
#contener_all_commandes{
    display: flex;
    justify-content: space-between;
    background-color: white;
    margin-bottom: 20px;
    padding: 0px 20px;
}
.colum_all_commandes_2 .etat_commandes_payer{
    color: green;
}
.colum_all_commandes_2 .etat_commandes_annuler{
    color: red;
}
.colum_all_commandes_2{
    display: flex;
    flex-direction: column;
    align-items: end;
}

/*PAGES ENFANT.PHP*/
#contener_enfant{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.case_enfant img{
    transition: 0.5s ease-in-out;
}
.case_enfant img:hover{
    transform: scale(1.1);
}

/* PAGES LIVRAISON.PHP */
#contener_livraison{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70vh;
}
#border_contener_livraison{
    background-color: white;
    padding: 5px 20px;
    border-radius: 5px;
}
#livraison_pays_region{
    display: flex;
    flex-direction: column;
}
#livraison_pays_region #pays_region{
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 250px;
    margin-right: 15px;
}
#livraison_nom{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
#livraison_nom #complete_name{
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 250px;
    margin-right: 15px;
}
#livraison_phone{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
#livraison_phone #num_phone{
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 250px;
    margin-right: 15px;
}
#livraison_adresse{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
#livraison_adresse #adresse{
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 350px;
    margin-right: 15px;
}
#livraison_adresse #adresse_facultatif{
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 350px;
    margin-right: 15px;
    margin-top: 10px;
}
#livraison_ville_codePostal{
    margin-top: 20px;
    display: flex;
}
#livraison_ville_codePostal #code_postal{
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 250px;
    margin-right: 15px;
}
#livraison_ville_codePostal #ville{
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 250px;
    margin-right: 15px;
}
#livraison_ville_codePostal .elmt_ville_codePostal{
    display: flex;
    flex-direction: column;
}
#contener_livraison .btn-paiement{
    outline: none;
    border: none;
    background-color: #ffcdd9;
    cursor: pointer;
    padding: 5px 30px 5px 15px;
    border-radius: 5px;
    font-size: 15px;
    position: relative;
    width: 200px;
    margin-top: 20px;
}
#contener_livraison button:hover{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#contener_livraison button lord-icon{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

/*PAGES COMMANDES.PHP*/
#contener_detail_livraison{
    display: flex;
    flex-direction: column;
    align-items: end;
}

/*PAGES ENFANT.PHP*/
#contener_enfant img{
    border-radius: 5px;
}

/*PAGES CONTACTE.PHP*/
.container_contacte_form{
    background-color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}
.container_contacte_form .nom_prenom_contacte_form{
    display: flex;
}
.container_contacte_form .nom_prenom_form_colum_1{
    display: flex;
    flex-direction: column;
}
.container_contacte_form .nom_prenom_form_colum_1 #nom_contacte{
    margin-top: 5px;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 250px;
}
.container_contacte_form .nom_prenom_form_colum_2{
    display: flex;
    flex-direction: column;
    margin-left: 50px;
}
.container_contacte_form .nom_prenom_form_colum_2 #prenom_contacte{
    margin-top: 5px;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 250px;
}
.container_contacte_form .email_num_contacte_form{
    display: flex;
    flex-direction: column;
}
.container_contacte_form .email_num_form_colum{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
.container_contacte_form .email_num_form_colum #email_contacte{
    width: 300px;
    margin-top: 5px;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 250px;
    margin-right: 15px;
}
.container_contacte_form .email_num_form_colum #num_contacte{
    width: 170px;
    margin-top: 5px;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 250px;
}
.container_contacte_form .object_contacte_form{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
.container_contacte_form .object_contacte_form #object{
    margin-top: 5px;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid rgba(255,192,203, 0.7);
    height: 35px;
    width: 250px;
}
.container_contacte_form .textarea_contacte_form{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
.container_contacte_form .textarea_contacte_form #textarea_contacte{
    resize: none;
    width: 100%;
    height: 300px;
    margin-top: 5px;
    outline: none;
    border: 2px solid rgba(255,192,203, 0.7);
    border-radius: 5px;
}
.container_contacte_form .submit_contacte_form #submit_contacte{
    margin-top: 10px;
    margin-top: 25px;
    outline: none;
    border: none;
    background-color: transparent;
    border-radius: 5px;
    background: #ffc0cb;
    height: 30px;
    cursor: pointer;
}
.container_contacte_form .submit_contacte_form #submit_contacte:hover{
    box-shadow: inset 5px 5px 4px #f0b4bf, inset -5px -5px 4px #ffccd7;
}
.paragraphe_contacte ul li{
    font-family: "Rajdhani", sans-serif;
}
.paragraphe_contacte div{
    line-height: 0px;
}

/*TEXT PERSONALISER*/

.text-bold{
    font-weight: bold;
}

/*--------- FORMAT MOBILE ---------*/
@media all and (min-width: 375px) and (max-width: 480px){

    /*PAGES INDEX*/
    /*images*/
    .images_products img{
        height: 80px;
        width: 80px;
    }
    .images_products_one img{
        border-radius: 8px;
        height: 260px;
        width: 130px;
    }
    .section-enfant{
        display: flex;
        justify-content: space-evenly;
    }
    #produit_enfant_case{
        display: flex;
        flex-wrap: wrap;
        width: auto;
        justify-content: space-between;
        margin-left: 15px;
    }
    .section-accessoires{
        display: flex;
        justify-content: space-evenly;
    }
    #accessoires_case{
        display: flex;
        flex-wrap: wrap;
        width: auto;
        justify-content: space-between;
        margin-right: 15px;
    }
    /*Contener Phrase D'accroche*/
    .contener-phrase-acroche, .section, .contener_case_one, .contener_case {
        max-width: 100%;
        overflow-x: hidden;
        padding: 0 5px; /* Ajoutez du padding pour éviter le dépassement*/
    }

    /*PAGES PRODUCT*/
    .img_section_image img{
        height: 180px;
        width: 180px;
        border-radius: 5px;
    }
    .section-products{
        display: flex;
        overflow: visible;
        height: 230px;
    }
    .section-products p{
        font-size: 10px;
        font-family: "Libre Baskerville", serif;
        font-weight: 400;
        font-style: normal;
    }
    .img_section_image{
        margin-right: 20px;
    }
    .detail_section_products{
        position: relative;
        width: 100%;
    }
    #titre_section_products{
        position: absolute;
        top: 0px;
        left: 0px;
    }
    #description_section_products{
        position: absolute;
        top: 40px;
        left: 20px;
    }
    #livraison_section_products{
        position: absolute;
        top: 120px;
        right: 0px;
    }
    #stock_section_products{
        position: absolute;
        top: 150px;
        right: 0px;
    }
    #prix_section_products{
        position: absolute;
        top: 180px;
        right: 0px;
    }
    #btn_section_products{
        position: absolute;
        top: 210px;
        left: 50%;
        transform: translateX(-50%);
    }
    #btn_section_products .btn-buy{
        background: transparent;
        outline: none;
        border: none;
        background-color: #edb3bd;
        border-radius: 5px;
        height: 20px;
        width: 150px;
        font-size: 10px;
        font-family: "Libre Baskerville", serif;
        font-weight: 400;
        font-style: normal;
        text-transform: uppercase;
        cursor: pointer;
    }

    /*PAGES COMMANDES.PHP*/
    .contener{
        max-width: 360px;
        margin: auto;
        padding: 15px;
        margin-top: 100px;
        margin-bottom: 15px;
        font-family: 'Open Sans', sans-serif;
        min-height: 100%;
        margin-bottom: -0px;
    }
    .content_table_panier{
        border-collapse: collapse;
        width: 100%;
        min-width: 200px;
        border-radius: 5px 5px 0 0;
        overflow: hidden;
        box-shadow: 0 0 20px rgba(0,0,0,0.15);
    }

    /*MENU DE NAVIGATION*/
    header{
        background-color: rgba(255,192,203, 0.7);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    #contener-nav{
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: sticky;
    }
    #contener-nav #colum-nav-1 i{
        cursor: pointer;
    }
    .active #contener-nav #colum-nav-1 i::before{
        content: "\2715";
    }
    #contener-nav #colum-nav-1 ul{
        position: fixed;
        left: -100%;
        top: 54px;
        flex-direction: column;
        background-color: rgba(255,192,203, 0.7);
        width: 100%;
        height: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 0px;
    }
    #nav.active #colum-nav-1 ul{
        left: 0;
    }
    #contener-nav #colum-nav-1 ul li{
        list-style: none;
        text-transform: capitalize;
        padding: 0 10px;
        margin-top: 15px;
        position: relative;
    }
    #contener-nav #colum-nav-1 ul li:hover{
        background-color: rgba(252, 202, 210, 0.7);
    }
    #contener-nav #colum-nav-1 ul li::before{
        content: '';
        position: absolute;
        bottom: -10px;
        left: 40%;
        transform: translateY(-50%);
        width: 0;
        height: 3px;
        background-color: rgb(250, 180, 192);
        transition: all 0.5s;
    }
    #contener-nav #colum-nav-1 ul li:hover::before{
        width: 20%;
    }
    #contener-nav #colum-nav-3 ul{
        display: flex;
        align-items: center;
    }
    #contener-nav #colum-nav-3 ul li{
        list-style: none;
        margin-right: 15px;
    }
    .fa-bag-shopping{
        font-size: 40px;
        color: #601A35;
    }
    .contener_i li{
        position: relative;
    }
    .contener_i p{
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
    }
    .btn_login{
        outline: none;
        border: none;
        border-radius: 5px;
        background-color: #601A35;
        padding: 5px 10px;
        color: white;
        cursor: pointer;

    }

    /*PAGES MON COMPTE MOBILE*/
    /*Menu de naviation utilisateur*/
    .nav_compte{
        position: fixed;
        top: 70px;
        left: 0px;
        background-color: rgba(255,192,203, 0.7);
        display: flex;
        align-items: center;
        width: 100%;
        height: auto;
        display: none;
    }
    .nav_compte ul li{
        list-style: none;
    }
    .nav_compte ul{
        display: flex;
    }

    /*PAGES CONTACTE*/
    .nom_prenom_contacte_form{
        flex-direction: column;
    }
    .container_contacte_form .nom_prenom_form_colum_2 {
        margin-left: 0px;
        margin-top: 5px;
    }
}

/*--------- FORMAT TABLETTE ---------*/
@media all and (min-width: 768px) and (max-width: 1024px){

}