* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-attachment: fixed;
    background-size: cover;
    background-color: white;
    background-image: url('/img/fondsite.jpg');
    background-repeat: no-repeat;
    background-position: left top;
    font-family: 'Open Sans','Poppins', Arial, Helvetica, sans-serif;
    color: rgb(83, 83, 83);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

header {
    box-shadow: 2px 2px 8px 0px rgba(0,0,0,.2);
    background-color: #1b1a1b;
    color: white;
}

footer {
    box-shadow: 2px 2px 8px 0px rgba(0,0,0,.2);
    background-color: #1b1a1b;
    color: white;
}

table {
    border-collapse: separate;
    border-spacing: 5px;
    width: 100%;
}

img {
    display: block;
    max-width: 100%;
    transition: transform 0.2s;
}

a {
    display: block;
    color: inherit;
    font-family: inherit;
    text-decoration: none;
    transition: .25s ease all;
}

a:hover {
    text-decoration: underline;
}

button {
    background-color: transparent;
    font-family: inherit;
    transition: .25s ease all;
    border: none;
    cursor: pointer;
}

.bouton {
    margin: 5px;
    padding: 5px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    background-color: #e21b24;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
}

    .bouton:hover {
        text-decoration: none;
        border-color: #9c0b11;
    }

label {
    font-size: 13px;
    font-weight: bold;
}

textarea {
    font-family: inherit;
    outline: none;
    border: 1px solid #8f8f9d;
    border-radius: 2px;
    font-size: 13px;
    padding: 5px;
}

    textarea:focus {
        border-color: #9c0b11;
        border-width: 2px;
    }

select {
    font-family: inherit;
    outline: none;
    border: 1px solid #8f8f9d;
    border-radius: 10px;
    font-size: 13px;
    padding: 5px 11px;
    background-color: inherit;
}

input {
    font-family: inherit;
    outline: none;
    border: 1px solid #8f8f9d;
    border-radius: 10px;
    font-size: 13px;
    transition: .25s ease all;
}

    input:focus {
        border-color: #9c0b11;
    }

h1, h2, h3, h4 {
    margin: 0;
}

p {
    margin: 0;
}

input[type="text"], input[type="date"], input[type="datetime"], input[type="email"], input[type="password"], input[type="search"] {
    padding: 5px 11px;
}

input[type="checkbox"], input[type="radio"] {
    -webkit-appearance: none;
    background-color: white;
    width: 18px;
    height: 18px;
    border: 0.15rem solid #7a7a7a;
    transition: 0.15s ease all;
    outline-style: none;
    margin: 0;
    padding: 5px;
    border-radius: 10%;
    cursor: pointer;
}

    input[type="checkbox"]:hover, input[type="radio"]:hover {
        border-color: #9c0b11;
    }

    input[type="checkbox"]:checked, input[type="radio"]:checked {
        border-color: #9c0b11;
        background-color: #e21b24;
    }

input[type="submit"] {
    cursor: pointer;
    padding: 5px;
}




.conteneurPrincipal {
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    width: 100vw;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

    .conteneurPrincipal > div {
        padding: 10px;
        height: inherit;
    }

.conteneurPrincipalHeader, .conteneurPrincipalFooter {
    margin-left: auto;
    margin-right: auto;
    width: 100vw;
    max-width: 1200px;
}

.sectionReseaux {
    position: absolute;
    right: 10px;
}










.logoPrincipal {
    width: 250px;
}

.partage_reseau {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 100%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 5px;
}

    .partage_reseau > a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }


cadre {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: wrap;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 2px 2px 8px 0 rgba(0,0,0,.2);
    margin: 5px;
}

diaporama {
    display: block;
    position: relative;
}

diaporama > * {
    position: absolute;
}

boxonglets {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

ongletmenus {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

ongletpages {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

ongletitemmenu {
    cursor: pointer;
    padding: 10px;
    transform: translateY(1.5px);
    border-bottom: 2px solid #d6d4d4;
    transition: ease all 0.5s;
    flex: 1 1 0px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

    ongletitemmenu:hover {
        border-color: #e21b24;
    }

    ongletitemmenu.active {
        border-color: #e21b24;
    }

ongletitempage {
    margin: 10px;
    max-height: 400px;
    overflow: auto;
}