
.bandeau { /* bandeau des menus */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: rgb(250, 232, 200);
    
}

.bandeau li {
    list-style: none;
    padding: 5px;
}


.classic { /* images */
    width: 120px;
    height: 80px;
    border-radius: 4px;
}

.classic2cv { /* images */
    width: 400px;
    height: 180px;
    border-radius: 4px;
}

.classic2cv2 { /* images */
    width: 180px;
    height: 330px;
    border-radius: 4px;
}


.classicLib { /* style titre */
    color: rgb(5, 43, 5);
    font-weight: bold;
    text-align: center;
}

.tableClassic {
    background-color: rgb(238, 243, 225);
    height: 100px;
    border: 1px solid grey;
    border-radius: 7px;
    vertical-align: inherit;
    margin-right: 5px;
}

.tdClassic1 {
    vertical-align: top;
    width: 210px;
    height: 80px;
    text-align: left;
}

.tableAnimation { /* container animations */
    background-color: rgb(238, 243, 225);
    border: 1px solid grey;
    height: 70px;
    width: 90%;
    border: 1px solid grey;
    border-radius: 7px;
    vertical-align: inherit;
}

.classicFirst {
    margin-bottom: 12px;
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}

main {
    display: flex;
    justify-content: center;
}

.plan {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.planLib {
    margin: 20px 12px;
    padding: 6px;
    height: 80px;
    background-color: azure;
    border: 1px solid red;
    border-radius: 5px;

}

.programme {
    padding: 6px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    vertical-align: text-top;
}

.progCol {
    border: 1px solid rgb(104, 84, 84);
    margin: 3px 3px;
    width: 45%;
}

.progEnd {
    text-align: center;

}

.logo {
    width: 107px;
    height :43px;
    vertical-align: middle;
    align-items: center;
}

.logoimage {
    height: 50px;
    width: 50px;
}

.logotext {
    vertical-align: text-top;
}

td {
    padding: 6px 3px;
}

th {
    color: rgb(1, 26, 1);
    margin-bottom: 5px;
}

.mapsClassic {  /* plan google maps */
    width: 720px;
    height: 540px;
    border: 1px solid black;
}

@media screen and (max-width: 768px) {

    .programme {
        display: flex;
        flex-direction: column;
    }

    .progCol {
        width: 95%;
    }

    .logo {
        height: 20px;
    }

    .logotext {
        font-size: 11px;
    }

    .logoimage {
        display: none;
    }

    .mapsClassic {
        width: 400px;
        height: 310px;
        border: 1px solid black;
    }
}