
.badge-box {

    width: 482px;
    height: 686px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 40px;
}

.badge-box .logo {
    width: 100%;
    height: 130px;
    /* background-color: aqua; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.badge-text{
    width: 100%;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /* background-color: antiquewhite; */
}
.identite {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.identite p{
    font-size: 15px;
    font-family: "poppins";
    color: #0C1179;
}
.identite h4{
    font-size: 29px;
    font-family: "poppins";
    color: #0C1179;
    font-weight: 700;
}

.emoji{
    width: 100%;
    height: 140px;
    /* background-color: aqua; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.explain{
    width: 100%;
    height: 170px;
    /* background-color: beige; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 10px;
}
.explain p{
    font-size: 17px;
}
.qr-code{
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 768px){
    .badge-box{
        width: 90%;
    }
}


/* Code du fichier pdf  */

.paper {
    width: 210mm;
    height: 297mm;
    background-color: rgb(247, 247, 247);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 6px 15px 9px 15px;
}
.entete{
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    /* background-color: antiquewhite; */
}
.entete img{
    width: 30%;
}

.corps{
    width: 100%;
    height: 140px;
    /* background-color: azure; */
}

.paper p{
    font-family: "poppins";
    font-size: 16px;
}
.tableau{
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: bisque; */
    margin-bottom: 15px;
}
table {
    border-collapse: collapse;
    width: 100%;
    font-family: "poppins";
    font-size: 14px;
}

th , td{
    text-align: center;
    border: 1px solid #808081;
}

.instruction{
    width: 100%;
    height: 100px;
    /* background-color: aquamarine; */
}
.graph-box{
    /* background-color: black; */
    width: 100%;
    height: 450px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.graphique{
    width: 100%;
    height: 330px;
    /* background-color: #44455a; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.pied{
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: azure; */
}
.separateur{
    width: 85%;
    height: 1px;
    background-color: #777777;
    margin-bottom: 9px;
}

@media only screen and (max-width: 768px){
  
}

@media only screen and (max-width: 480px){
    .paper {
        width: 95%;
    } 

    .entete img{
        width: 50%;
    } 
    table{
        width: 90%;
    }
    .pied{
        display: none;
    }
}