/*
* Généralités
*/

@font-face {
    font-family: myFirstFont;
    src: url(../fonts/leadcoat.ttf);
  }

  h1{font-family: myFirstfont;}

/*
* Date Footer
*/
.date{float: right;}

/*
* Table
*/

table 
{
    border-radius: 1em;
    background-color: white;
    margin-left: 10em;
    box-shadow: 0.2em 0.2em white;
    border-collapse: separate;
}
tbody tr th
{
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
}
caption 
{
    font-variant: small-caps;
    padding-top: 1.25em;
    caption-side: bottom;
    color: white;
}
thead tr th
{
    background-color: salmon;
    padding: 0.3em;
    color: white;
}
thead tr th:last-child
{
    border-top-right-radius: 1em;
    padding-left: 1.75em;
    padding-right: 1.75em;
}
thead tr th:first-child
{
    border-top-left-radius: 1em;
    padding-left: 1.75em;
    padding-right: 1.75em;
}
thead tr th::first-letter
{
    color: bisque;
}
tbody tr td:last-child::before
{
    content: "✆ ";
    color: burlywood;
    font-size: 1.2em;
}
tbody tr td:nth-child(2)
{
    font-style: italic;
}
tbody tr td
{
    padding: 0.4em;
}
tbody tr td:first-child
{
    font-weight: bold;
    padding-left: 1.5em;
}
tbody tr td:first-child::first-letter
{
    color: firebrick;
}
tbody tr td:nth-child(3)
{
    padding-left: 1.5em;
}
tbody tr:nth-child(2n+1)
{
    background-color: antiquewhite;
}
tbody tr:nth-child(2n)
{
    background-color: cornsilk;
}
tbody tr:last-child td:first-child
{
    border-bottom-left-radius: 1em;
}
tbody tr:last-child td:last-child
{
    border-bottom-right-radius: 1em;
}
tbody tr:last-child
{
    border-bottom-right-radius: 1em;
    border-bottom-left-radius: 1em;
}




/* Table couleur */
#tColor
{
    box-shadow: none;
    border-radius: 0;
    border-collapse: collapse;
    text-align: center;
    margin-left: 10em;
    width: 400px;
    height: 250px;
}
#tColor tbody tr:last-child td
{
    border-radius: 0;
}
#tColor tbody tr td:last-child::before
{
    content: "";
}
#tColor tbody tr td:first-child::first-letter
{
    color: black;
}
#tColor tbody tr td:first-child
{
    font-weight: unset;
}
#tColort tbody tr td:nth-child(3)
{
    padding-left: 0;
}
#tColor tbody tr td
{
    font-style: unset;
    padding: 0;
}
#tColor tbody tr td:first-child
{
    padding-left: 0;
}
#tColor tbody #blue::first-letter
{
    color: white;
}
#tColor tbody #blue
{
    background-color: blue;
    width: 300px;
    height: 50px;
    color: white;
}
#tColor tbody #red
{
    background-color: red;
    width: 100px;
    height: 200px;
}
#tColor tbody #lightpink
{
    background-color: lightpink;
    width: 200px;
    height: 100px;
}
#tColor tbody #green
{
    background-color: green;
    width: 100px;
    height: 50px;
}
#tColor tbody #yellow
{
    background-color: yellow;
    width: 100px;
    height: 50px;
}
#tColor tbody #orange
{
    background-color: orange;
    width: 100px;
    height: 100px;
}
#tColor tbody #gray
{
    background-color: gray;
    width: 200px;
    height: 100px;
}
#tColor tbody #purple
{
    background-color: purple;
    width: 100px;
    height: 50px;
}


/* 
* Video 
*/

video
{
    margin-left: 10em;
    width: 50%;
}

/*
* Carte
*/

#map_Fabron
{
    transform: scale(0.5, 0.5);
    position: absolute;
    margin-left: -10em;
    margin-top: -14em;
}
#vide
{
    background-color: unset;
    padding-top: 28em;
}

/*
* Formulaire
*/

form
{
    background-color: lightgray;
    padding: 1em;
    border: 1px solid white;
    width: 22em;
    margin-left: 10em;
    box-shadow: 0.1em 0.1em 0.1em 0.1em gray;
}
fieldset
{
    border: none;
}
input,textarea
{
    width: 21em;
    background-color: lightgray;
    border-radius: 0.5em;
}
textarea
{
    height: 5em;
}
#fieldset_large
{
    background-color: white;
    border: 0.5px solid gray;
    border-radius: 1em;
}
button
{
    position: relative;
    margin-left: 7.5em;
    margin-top: 1em;
    background-color: cornflowerblue;
    border-radius: 1em;
    color: white;
    padding: 0.5em;
}
label
{
    display: block;
    font-family: arial;
    font-variant: small-caps;
    font-weight: bold;
}
label::first-letter
{
    color: cornflowerblue;
}
.obligatoire::after
{
    content: " (*)";
    color: lightgray;
}
#f4::before
{
    content: "-";
    position: absolute;
    font-size: 2em;
    margin-left: -0.6em;
    color: black;
    margin-top: -0.25em;
}
#f4::after
{
    content: "+";
    position: absolute;
    font-size: 2em;
    margin-left: 9.25em;
    color: black;
    margin-top: -0.15em;
}
#f4
{
    width: 18em;
    margin-left: 1.5em;
    color: black;
}
#cursorfont
{
    background-color: lightgray;
    border-radius: 0.5em;
    width: 18em;
}