.compte{
    min-height: 100%;
    display: flex;
}

/******* CONNEXION/INSCRIPTION *******/
.compte form{
    width: 520px;
}
.compte .titre_page,
.compte .form_compte{
    padding: 175px 100px 70px;
}
.compte .form_compte{
    justify-content: center;
}
.compte .btn_content{
    padding-top: 50px;
    justify-content: space-between;
}
.compte .box_newsletter{
    margin-bottom: 20px;
}
.compte .liste_checkbox{
    margin: 0;
}
.compte .type_choice input{
    display: none;
}
.compte .type_choice label{
    width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
    border: 1px solid var(--secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.compte .type_choice label:hover{
    background: var(--grey);
}
.compte .type_choice label span{
    font-size: 2rem;
    margin-bottom: 10px;
}
.compte .type_choice input:checked + label{
    background: var(--tertiary);
    color: #FFF;
}
.compte .form_content{
    padding: 30px 0;
    overflow: hidden;
}

.compte #form_code_forgot_password input.code-input{
    font-size: 3rem;
    font-weight: 700;
    color: var(--tertiary);
    padding: 30px 0;
}

.box_newsletter .form_switch{
    width: auto;
}

/******* COMPTE DETAILS *******/
.compte .titre_page_details{
    position: sticky;
    top: 200px;
}

.sous_menu{
    margin-bottom: 30px;
    font-size: 1.8rem;
}
.sous_menu li{
    padding: 5px 0;
}
.sous_menu li a{
    display: block;
    padding: 5px 0;
}
.sous_menu li.active a{
    color: var(--tertiary);
    font-weight: bold;
}
.liste_commandes .commande{
    padding: 10px;
    margin-bottom: 20px;
}
.liste_commandes .commande > div{
    width: 100%;
}
.liste_commandes .more{
    padding: 10px;
}
.liste_commandes .invoice{
    width: 200px;
}
.liste_commandes .invoice a{
    display: inline-flex;
}
.liste_commandes .commande_details{
    margin-bottom: 30px;
}
.liste_commandes .commande_details_header{
    justify-content: space-between;
}



.liste_adresses .box_adresse{
    padding: 20px;
}
.liste_adresses .box_adresse.inactif p{
    opacity: 0.6;
}
.liste_adresses .box_adresse .update_content{
    justify-content: space-between;
}
#form_clients_adresses h3{
    margin: 0;
}
#form_clients_adresses .btn_content{
    padding-top: 30px;
}


.compte #form_avis{
    width: 100%;
    margin-bottom: 50px;
}
.compte .box_avis{
    margin-bottom: 50px;
}

.commande_details_articles img{
    width: 100px;
}

/***********************************************/
/******************* QUERIES *******************/
/***********************************************/

@media screen and (max-width: 1280px){

}

@media screen and (max-width: 1024px){
    .compte .titre_page,
    .compte .form_compte {
        padding: 175px 50px 70px;
    }
}

@media screen and (max-width: 768px){
    .compte {
        min-height: auto;
        display: block;
    }
    .compte .titre_page{
        padding: 175px 50px 50px;
    }
    .compte .form_compte {
        padding: 20px;
    }
    .compte form{
        width: 100%;
    }
    .compte .btn_content {
        display: flex;
    }
    #form_code_forgot_password .row{
        display: flex;
    }
    .compte #form_code_forgot_password input.code-input {
        padding: 10px 0;
    }
    .liste_commandes .commande > .row {
        margin-bottom: 10px;
        display: flex;
    }
    .box_newsletter{
        display: flex;
    }
    /* .commande_details_articles table th{
        display: none;
    }
    .commande_details_articles table,
    .commande_details_articles table td{
        display: block;
    } */
}