body {
    margin: 0px;
    box-sizing: border-box;
    height: 100vh;

}

body.admin,
body.plate-creer,
body.plate-modifier {
    background-image: url(../images/patrick-tomasso-GXXYkSwndP4-unsplash.jpg);
    background-size: cover;
    background-repeat: no-repeat;


}

body.lien,
body.compte,
body.modifier-employee {
    background-image: url(../images/brooke-lark-08bOYnH_r_E-unsplash-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;


}



body.consulter {
    background-color: antiquewhite;
}

body.employee {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    height: 100vh;
    background-image: url(../images/mona-eendra-vC8wj_Kphak-unsplash.jpg);
    background-size: cover;
}

header {
    background-color: #B3C1AC;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    position: fixed;
    width: 100%;
    z-index: 1;

}

header.menu {
    background-color: #B3C1AC;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    width: 100%;
}

nav.navbar {
    background-color: #B3C1AC !important;
}

.container {
    display: flex;
    justify-content: center;
}



img.logo {
    animation: fadein 2s ease-in;
    width: 135px;
    height: 90px;
    margin-right: 100px;
}



@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

li.nav-item {
    margin-right: 75px;
}

.bannier img {
    width: 100%;
    height: auto;    
}

.bannier {
    position: relative;

}

h1.titre {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3.5em;
    font-family: 'Roboto', sans-serif;
}

h2.sous-titre {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2em;
    font-family: 'Roboto', sans-serif;
}

.btn.menu {
    width: 300px;
    height: 75px;
    background-color: #29451F;
    color: white;
    padding: 17px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.5em;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    text-decoration: none;
    border: 1px solid white;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in;

}

.btn.menu:hover {
    background-color: white;
    color: #29451F;
    border: 1px solid #29451F;
}

.container-categorie {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F6F5ED;
}

#categorie {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 150px;
    padding-left: 10px;
    padding-right: 10px;
}

.entrees,
.repas,
.dessert {
    width: 470px;
    height: 370px;
    position: relative;
}

.entrees {
    overflow: hidden;
    margin-right: 20px;
}

.entrees img {
    transition: transform 0.3s ease-in;
}

.entrees img:hover {
    transform: scale(1.1);
}


.repas {
    overflow: hidden;
    margin-right: 20px;
}

.repas img {
    transition: transform 0.3s ease-in;
}

.repas img:hover {
    transform: scale(1.1);
}


.dessert {
    overflow: hidden;
}

.dessert img {
    transition: transform 0.3s ease-in;
}

.dessert img:hover {
    transform: scale(1.1);
}


#categorie img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.entree {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
}

h2.entree {
    position: absolute;
    top: 40%;
    left: 50%;
    font-size: 2.5em;
    opacity: 0;
    animation: fadeInScale 1s ease-out forwards;


}

h2.plate {
    position: absolute;
    top: 40%;
    left: 50%;
    font-size: 2.5em;
    opacity: 0;
    animation: fadeInScale 1s ease-out forwards;

}

h2.desserte {
    position: absolute;
    top: 40%;
    left: 50%;
    font-size: 2.5em;
    opacity: 0;
    animation: fadeInScale 1s ease-out forwards;

}

@keyframes fadeInScale {
    0% {
        opacity: 0;

    }

    100% {
        opacity: 1;


    }
}

.btn.entree {
    width: 200px;
    height: 45px;
    border: 1px solid white;
    background-color: #29451F;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease-in;
}

.btn.entree:hover {
    background-color: white;
    color: #29451F;
    border: 1px solid #29451F;
}


.plate {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
}



.btn.repas {
    width: 200px;
    height: 45px;
    background-color: #29451F;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    border: 1px solid white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease-in;
}

.btn.repas:hover {
    background-color: white;
    color: #29451F;
    border: 1px solid #29451F;
}

.desserte {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
}



.btn.dessert {
    width: 200px;
    height: 45px;
    background-color: #29451F;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    border: 1px solid white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease-in;
}

.btn.dessert:hover {
    background-color: white;
    color: #29451F;
    border: 1px solid #29451F;
}



.gallerie {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F6F5ED;
    padding-bottom: 150px;
}

.gallerie h2 {
    margin-bottom: 45px;
    font-family: 'Roboto', sans-serif;
    font-size: 2em;
}

.first {
    width: 80%;
    height: 400px;
    position: relative;

}

.first img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.first:hover::after {
    content: "Rejoignez-nous sur Instagram";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    font-size: 24px;
    text-align: center;
    pointer-events: none;
    font-family: 'Roboto', sans-serif;
    animation: instagram-fadin 1s ;
}

@keyframes instagram-fadin {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.second {
    display: flex;
    flex-direction: row;
    width: 80%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.item {
    width: 300px;
    height: 250px;
    margin-right: 5px;
}

.second img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

#container-apropos {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FEF5F5;
}

.apropos {
    display: flex;
    flex-direction: column;


}

.apropos h2{
    font-family: 'Roboto', sans-serif;
}

.apropos p{
    font-family: 'Lato', sans-serif;
}

.mon_titre {
    text-align: center;
    padding-top: 116px;
    padding-bottom: 50px;
}

.mon_titre p {
    font-size: 1.5em;
    line-height: 22px;

}

.contenu-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 70%;
    margin: 0 auto;

}

.photo_1 {
    width: 650px;
    height: 532px;
    margin-right: 40px;
    background-image: url(../images/chris-liverani-oCsaxvGCehM-unsplash.jpg);
    background-size: cover;

}



.mon_text {
    width: 650px;
    text-align: justify;

}

.contenu-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 70%;
    margin: 50px auto;

}

.photo_2 {
    width: 650px;
    height: 532px;
    background-image: url(../images/calum-lewis-vA1L1jRTM70-unsplash.jpg);
    background-size: cover;


}


.mon_text_2 {
    width: 650px;
    text-align: justify;
    margin-right: 40px;


}



.client {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F6F5ED;
    padding-bottom: 100px;
}

.commentaire {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin-top: 0 auto;
}

.commentaire p{
    font-family: 'Lato', sans-serif;
}

.comment1,
.comment2,
.comment3 {
    width: 400px;
    height: 250px;
    background-color: white;
    border: 3px solid #9DB68D;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.comment1-1,
.comment2-2,
.comment3-3 {
    width: 300px;
}

.satisfaite {
    text-align: center;
}

.satisfaite h2 {
    margin-bottom: 40px;
    animation: move 2s 1s reverse;
    font-family: 'Roboto', sans-serif;
}

@keyframes move {
    0% {
        transform: translateX(0%);
    }

    4% {
        transform: translateX(-0.08%);
    }

    8% {
        transform: translateX(-0.1%);
    }

    18% {
        transform: translateX(0.52%);
    }

    20% {
        transform: translateX(0.39%);
    }

    28% {
        transform: translateX(-2.35%);
    }

    30% {
        transform: translateX(-2.39%);
    }

    38% {
        transform: translateX(9.27%);
    }

    40% {
        transform: translateX(11.75%);
    }

    60% {
        transform: translateX(-111.75%);
    }

    62% {
        transform: translateX(-109.27%);
    }

    70% {
        transform: translateX(-97.61%);
    }

    72% {
        transform: translateX(-97.65%);
    }

    80% {
        transform: translateX(-100.39%);
    }

    82% {
        transform: translateX(-100.52%);
    }

    90% {
        transform: translateX(-99.97%);
    }

    92% {
        transform: translateX(-99.9%);
    }

    100% {
        transform: translateX(-100%);
    }

}

h4.etoile1,
h4.etoile2,
h4.etoile3 {
    color: yellow;  


}

.etoile1 img{
    width: 20px;
    vertical-align: middle;
}

.etoile2 img{
    width: 20px;
    vertical-align: middle;
}

.etoile3 img{
    width: 20px;
    vertical-align: middle;
}




section.infolettre form {
    padding: 2em 1em;
    border-radius: 5px;
    display: flex;
    flex-direction: column;



}

section.infolettre {
    background-color: #F6F5ED;
}

section.infolettre h2 {
    font-family: 'Roboto', sans-serif;
}

section.infolettre h3 {
    font-family: 'Lato', sans-serif;
}

form input[type=text],
input[type=email] {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}

form input[type=text]:hover {
    border-color: yellow;
}

form input[type=email]:hover {
    border-color: yellow;
}

form input[type=password]:hover {
    border-color: yellow;
}


form input[type=submit] {
    width: 217px;
    margin-bottom: 10px;
    margin-left: 109px;
    padding: 10px;
    background-color: #29451F;
    color: white;
    transition: all 0.3s ease-out;
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;


}

form input[type=submit]:hover {
    background-color: white;
    color: #29451F;
    border: 2px solid #29451F;
}


form input[type=submit].modifier {
    width: 217px;
    margin-bottom: 10px;
    margin-left: 90px;
    padding: 10px;
    background-color: #29451F;
    color: white;
    transition: all 0.3s ease-out;
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;


}

form input[type=submit].modifier:hover {
    background-color: white;
    color: #29451F;
    border: 2px solid #29451F;
}



#footer {
    background-color: #201F1C;
    display: flex;
    justify-content: space-around;
    padding-top: 50px;
    padding-bottom: 50px;

}

#footer p{
    font-family: 'Lato', sans-serif;
}



form input[type=text-envoyer] {
    width: 435px;
    margin-bottom: 10px;
    padding: 10px;
}

.contact {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact h3,
.contact p {
    color: white;
}

 

.logo img {
    width: 100%;
    height: 100%;
} 

.social {
    text-align: center;
    margin: auto;
}

.social h3 {
    border-bottom: 3px solid white;
    display: inline-block;
    padding-bottom: 12px;

}

.social-icons a {
    margin-right: 10px;
}

.social-icons a img {
    width: 50px;
    height: 50px;
}

.social-icons a {
    width: 100px;
    height: 100px;
}



iframe {
    width: 400px;
    height: 400px;
    padding-right: 25px;

}

.adresse {
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.date {
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.adresse h3,
.adresse p {
    color: white;
}

.date h3,
.date p {
    color: white;
}

section.infolettre {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

.clientel {
    background-color: #F6F5ED;
    padding-top: 100px;
}

.space {
    display: flex;
    justify-content: center;
    align-items: center;
}

.centered-hr {
    width: 80%;
    height: 5px;
}


/* menu */

.bannier-menu {
    position: relative;
}

h1.titre-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3.5em;
    font-family: 'Roboto', sans-serif;
}



.bannier-menu img {
    width: 100%;
    height: auto;
    padding-bottom: 15px;
    filter: brightness(80%);
}


@keyframes galleryAnimation {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


.bannier-menu {
    opacity: 1;
    transform: scale(1);
    animation: galleryAnimation 2s ease-in-out;
}

.contenu {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 40px 20px;

}

.categorie {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
    position: relative;
    padding-bottom: 100px;

}

.contenu-menugauche {
    flex: 1;   
    height: auto;
    flex-grow: 1;
}

.image-container.gauche {
    margin-right: 30px;
    order: 1;
}



.image-container.droite {
    margin-left: 30px;
    order: 2;
}


.image {
    display: block;
    width: 480px;
    height: 650px;
    object-fit: cover;
}

.contenu-menu {

    flex-grow: 1;
    order: 1;

}

.contenu-menu h2 {
    font-size: 32px;
    margin-bottom: 35px;
    text-align: center;
    color: red;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    scroll-margin-top: 120px;
}


.contenu-menu h3 {
    font-size: 24px;
    margin-bottom: 5px;
    margin-top: 10px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.contenu-menu p {
    margin-bottom: 24px;
    width: 540px;
    font-family: 'Lato', sans-serif;
}



.contenu-menu.gauche p.prix {
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    left: 75%
}

.contenu-menu.droite p.prix {
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    left: 25%
}


.contenu-menu hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

.contenu-menu div:last-child hr {
    display: none;
}

.mon-titre {
    display: flex;
    justify-content: space-between;

}

.info {
    text-align: center;
}

.info p.description {
    text-align: left;
}



.img-menu {
    display: flex;
    justify-content: flex-start;
}


/* form */

.form {
    background-color: #9e4343;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    padding: 50px 50px;
    color: black;
    letter-spacing: 0.5px;
    border: 2px solid #29451F;
    font-family: 'Lato', sans-serif;
    width: 500px;
}

.form h3 {
    font-size: 32px;
    font-weight: bold;
    line-height: 42px;
    text-align: center;
    margin-bottom: 30px;
}

.form label {
    display: block;
    font-size: 1em;
    font-weight: bold;
    margin-top: 30px;
}

.form input {
    display: block;
    height: 50px;
    width: 100%;
    border-radius: 3px;
    padding: 0 10px;
    font-size: 14px;

}

form input[type=submit].send {
    margin: 50px auto 25px auto;
    font-size: 18px;
    font-weight: bold;


}

form input[type=submit].btn {
    margin: 25px auto 25px auto;
    font-size: 18px;
    font-weight: bold;


}

.login.form a {
    color: #739bff;
    font-size: 18px;
    font-weight: bold;
    display: block;
    text-align: center;
    text-decoration: none;
}

.login.form a:hover {
    color: yellow;
}

form input[type=text].name {
    display: block;
    height: 50px;
    width: 100%;
    border-radius: 3px;
    padding: 0 10px;
    font-size: 14px;
}

.creation-compte.form {
    width: 620px;
    height: auto;
}

.creation-compte.form a {
    color: yellow;
    font-size: 18px;
    font-weight: bold;
    display: block;
    text-align: center;
    text-decoration: none;
}

.creation-compte.form a:hover {
    color: #739bff;
}

.plate-creer.form {
    width: 520px;
    height: 807px;
}

.plate-creer.form a {
    color: yellow;
    font-size: 18px;
    font-weight: bold;
    display: block;
    text-align: center;
    text-decoration: none;
}

.plate-creer.form a:hover {
    color: #739bff;
}

.ajouter-employee.form a {
    color: yellow;
    font-size: 18px;
    font-weight: bold;
    display: block;
    text-align: center;
    text-decoration: none;
}

.ajouter-employee.form a:hover {
    color: #739bff;
}

.plate_modifier.form a {
    color: yellow;
    font-size: 18px;
    font-weight: bold;
    display: block;
    text-align: center;
    text-decoration: none;
}

.plate_modifier.form a:hover {
    color: #739bff;
}

.plate_modifier.form {
    width: 540px;
    height: 807px;
}

.employee-modifier.form a {
    color: yellow;
    font-size: 18px;
    font-weight: bold;
    display: block;
    text-align: center;
    text-decoration: none;
}

.employee-modifier.form a:hover {
    color: #739bff;
}

.lien-consulter {

    position: absolute;
    transform: translate(-50%, -50%);
    top: 40%;
    left: 55%;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}


.lien-consulter a {
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
}

.btn-1 {
    width: 300px;
    height: 75px;
    background-color: #29451F;
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.5em;
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    border: 1px solid white;
    transition: all 0.3s ease-in;

}

.btn-1:hover {
    background-color: white;
    color: #29451F;
    border: 1px solid #29451F;
}

.btn-2 {
    width: 300px;
    height: 75px;
    background-color: #451f2b;
    color: white;
    padding: 23px 27px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.5em;
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    border: 1px solid white;
    transition: all 0.3s ease-in;
}

.btn-2:hover {
    background-color: white;
    color: #29451F;
    border: 1px solid #29451F;
}

main.page-menu {
    width: 100%;
    max-width: 1024px;
    margin: 5rem auto 5rem;
    font-family: 'Lato', sans-serif;

}

main.page-menu .mon-menus {
    display: flex;
    flex-direction: column;
}

main.page-menu .mon-menus .mon-menu {
    display: flex;
    justify-content: space-around;
    max-height: 250px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
    margin-bottom: 2rem;
    position: relative;
}

main.page-menu .mon-menus .mon-menu p {
    width: 667px;
}

.contenu-consulter {
    width: 200px;
    height: 236px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-consulter {
    width: 200px;
    height: 236px;
    display: flex;
    justify-content: center;
    align-items: center;

}


.menu-client {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 35px 50px 10px;
}

.menu-client p.price {
    font-weight: bold;

}

h2.list {
    text-align: center;
}

.btn-plate {
    width: 200px;
    height: 45px;
    position: absolute;
    left: 22%;
    top: 14%;
    text-align: center;
    border: 1px solid white;
    background-color: #386727;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    transition: all 0.6s ease-in;
}

.btn-plate:hover {
    background-color: white;
    color: #29451F;
    border: 1px solid #29451F;
}

.btn-modifier {
    width: 107px;
    height: 45px;
    border: 1px solid white;
    background-color: #3310e1;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    text-align: center;
    transition: all 0.6s ease-in;
    display: inline-block;


}

.btn-modifier:hover {
    background-color: white;
    color: #3310e1;
    border: 1px solid #3310e1;
}

.btn-supprimer {
    width: 107px;
    height: 45px;
    border: 1px solid white;
    background-color: #b81818;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
    text-decoration: none;
    position: absolute;
    top: 76%;
    left: 20%;
    transition: all 0.6s ease-in;
    display: inline-block;

}

.btn-supprimer:hover {
    background-color: white;
    color: #b81818;
    border: 1px solid #b81818;
}

.btn-supprimer-employee {
    width: 107px;
    height: 45px;
    border: 1px solid white;
    background-color: #b81818;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
    text-decoration: none;
    transition: all 0.6s ease-in;
}

.btn-supprimer-employee:hover {
    background-color: white;
    color: #b81818;
    border: 1px solid #b81818;
}

form input[type=float] {
    width: 100%;
    margin-bottom: 10px;
    padding: 25px;

}

.btn-employee {
    width: 200px;
    height: 45px;
    text-align: center;
    border: 1px solid white;
    background-color: #386727;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;

}


.btn-employee:hover {
    background-color: white;
    color: #29451F;
    border: 1px solid #29451F;
}

h2.list-employee {
    text-align: center;
}



.contenu-employee {
    width: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    max-height: 100vh;


}




.contenu-employee h2,
h3 {
    font-family: 'Roboto', sans-serif;
}

.employe {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
    width: 100%;

}



.btn-deconnection {
    width: 150px;
    height: 45px;
    position: absolute;
    right: 22%;
    top: 14%;
    text-align: center;
    border: 1px solid white;
    background-color: #d3bf10;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    transition: all 0.3s ease-in;
}

.btn-deconnection-1 {
    width: 150px;
    height: 45px;
    text-align: center;
    border: 1px solid white;
    background-color: #d3bf10;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    transition: all 0.3s ease-in;
}


.btn-deconnection:hover {
    background-color: white;
    color: #d3bf10;
    border: 1px solid #d3bf10;
}

.btn-deconnection-1:hover {
    background-color: white;
    color: #d3bf10;
    border: 1px solid #d3bf10;
}

.btn-deconnection-2 {
    width: 200px;
    height: 70px;
    position: absolute;
    top: 10%;
    right: 5%;
    text-align: center;
    border: 1px solid white;
    background-color: #d3bf10;
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.5em;
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease-in;
}



.btn-deconnection-2:hover {
    background-color: white;
    color: #d3bf10;
    border: 1px solid #d3bf10;
}

.btn-retour {
    width: 150px;
    height: 45px;
    position: absolute;
    right: 10%;
    top: 14%;
    text-align: center;
    border: 1px solid white;
    background-color: #118f2c;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    transition: all 0.6s ease-in;
}

.btn-retour-1 {
    width: 150px;
    height: 45px;
    text-align: center;
    border: 1px solid white;
    background-color: #118f2c;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    transition: all 0.3s ease-in;
}

.btn-retour:hover {
    background-color: white;
    color: #118f2c;
    border: 1px solid #118f2c;
}

.btn-retour-1:hover {
    background-color: white;
    color: #118f2c;
    border: 1px solid #118f2c;
}

#description {
    width: 100%;
}

#categorie_id {
    width: 100%;
}

.btn-lien {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    right: 8%;
    height: 200px;
}

.msg_formulaire {
    background-color: rgb(255, 0, 251);
    color: white;
    width: 80%;
    text-align: center;
}

.star-image {
    width: 20px;
    vertical-align: middle;
    margin-right: 5px;

}

.msg {    
    text-align: center;
    border: 1px solid white;      
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    z-index: 1000;
}

.msg_plate{
    text-align: center;
    border: 1px solid white;      
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    z-index: 1000;
}

.msg_plate.succes{
    background-color: #7ca621;
    color: #fff;
}

.msg_plate.flash{
    opacity: 1;
    animation: fadeOut 1s 3s linear forwards;
}

.msg_plate.flash.erreur{
    background-color: #ff3333;
    color: #fff;
}

.msg.succes {
    background-color: #7ca621;
    color: #fff;
}

.msg.erreur {
    background-color: #ff3333;
    color: #fff;
}

.msg.flash {
    opacity: 1;
    animation: fadeOut 1s 3s linear forwards;
}





@keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }