@charset "utf-8";
/* CSS Document */

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    color: #5A5F5E;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    line-height: 1.7em;
    font-weight: 400;
}
body.admin {
    font-size: 16px;
    line-height: 1.7em;
}
a {
    color:  #009FB5;
    text-decoration: none;
}
#page {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    background-color:#91b7bf;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#page.spike {
        background-color:#91b7bf;
}
#page.ms {
        background-color:#DB087F;
}
#page::before {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    border-top: 100vh solid transparent;
    border-bottom: 100vw solid transparent;
    border-left: 100vw solid #00A1B5;
    border-right: 100vh solid #00A1B5;
}
#page.spike::before {
    border-top: 100vh solid transparent;
    border-bottom: 100vw solid transparent;
    border-left: 100vw solid #00A1B5;
    border-right: 100vh solid #00A1B5;
}
#page.ms::before {
    border-top: 100vh solid transparent;
    border-bottom: 100vw solid transparent;
    border-left: 100vw solid #ED1F78;
    border-right: 100vh solid #ED1F78;
}
#container {
    position: relative;
    display: block;
    box-sizing: border-box;
    padding: 2em;
    background-color: #fff;
    border: solid 6px #00A1B5;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    width: 80%;
    max-width: 1280px;
    min-height: 30vh;
}
#page.spike #container {
    border: solid 6px #00A1B5;
}
#page.ms #container {
    border: solid 6px #ED1F78;
}

header {
    height: 4.5em;
    margin-bottom: 1em;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.spike header{
    height: 3em;
}
#logo {
    height: 100%;
}
#langues ul {
    display: flex;
    margin: 0;
    padding: 0;
}
#langues li {
    list-style: none;
    padding: 0 0.4em;
    border-right: 1px solid #00A1B5;
}
#langues li:last-child {
    border-right: 0;
}
#langues li a {
    color:  #00A1B5;
    text-decoration: none;
    font-size: 0.8em;
    text-transform: uppercase;
}
h1 {
    margin: 1em 0;
    text-align: center;
    font-size: 2.2em;
}
#page.spike {
    color: #00A1B5;    
}
#page.ms {
    color: #ED1F78;    
}
#formulaire table {
    width: 90%;
    margin: 1em auto;
}
#formulaire table td {
    width: 9.0909%;
    text-align: center;
}
label {
    width: 100%;
    display: block;
    text-align: center;
    cursor: pointer;
}
textarea {
    width: 100%;
    height: 95px;
}
input[type="radio"] {
    display: none;
}
input[type="radio"] + label {
    position: relative;
    display: block;
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    background-color: #C4291A;
    cursor: pointer;
    -webkit-border-radius: 11px;
    border-radius: 11px;
    opacity: 0.80;
    border: 4px solid transparent;
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    transition: all 250ms linear;
}
input[type="radio"] + label:hover {
    opacity: 0.85;
}
#page.spike input[type="radio"] + label:hover {
    border: 4px solid #00A1B5;
}
#page.ms input[type="radio"] + label:hover {
    border: 4px solid #ED1F78;
}
input[type="radio"]:checked + label {
    opacity: 1;
}
#page.spike input[type="radio"]:checked + label {
    border: 4px solid #00A1B5;
}
#page.ms input[type="radio"]:checked + label {
    border: 4px solid #ED1F78;
}

input[type="radio"][value="0"] + label {
    background-color: #C4291A;
}
input[type="radio"][value="1"] + label {
    background-color: #D3562C;
}
input[type="radio"][value="2"] + label {
    background-color: #DC7231;
}
input[type="radio"][value="3"] + label {
    background-color: #E9993C;
}
input[type="radio"][value="4"] + label {
    background-color: #E8B844;
}
input[type="radio"][value="5"] + label {
    background-color: #E8CA43;
}
input[type="radio"][value="6"] + label {
    background-color: #CCCD4A;
}
input[type="radio"][value="7"] + label {
    background-color: #AED45F;
}
input[type="radio"][value="8"] + label {
    background-color: #8CCE74;
}
input[type="radio"][value="9"] + label {
    background-color: #73C989;
}
input[type="radio"][value="10"] + label {
    background-color: #5BC2A9;
}
input[type=submit] {
    padding: 0.7em 1em;
    color: #fff;
    font-weight: 700;
    background-color: #009FB5;
    border: 0;
    cursor: pointer;
    border-radius: 6px;
}
#page.spike input[type=submit] {
    background-color: #00A1B5;
}
#page.ms input[type=submit] {
    background-color: #ED1F78;
}
a.btn {
    display: inline-block;
    padding: 0.3em 1em;
    color: #fff;
    font-weight: 700;
    background-color: #009FB5;
    border: 0;
    cursor: pointer;
    font-size: 0.9em;
    border-radius: 6px;
}
#page.spike a.btn {
    background-color: #00A1B5;
}
#page.ms a.btn {
    background-color: #ED1F78;
}
.bouchtrou {
    display: none;
}

  /**************************************************/
 /*                    ADMIN                       */
/**************************************************/

table.loginbox {
    border: solid 1px #009FB5;
    padding: 1em;
    margin: 0 auto;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
#main {
    display: flex;
    flex-direction: row;
}
#colleft {
    width: 16%;
    padding : 0 1em;
    box-sizing: border-box;
    border-right: solid 1px #009FB5;
}
#colright {
    width: 84%;
    padding : 0 1em;
    box-sizing: border-box;
}
#colleft ul {
    margin:0;
    padding: 0;
}
#colleft li {
    list-style: none;
    padding-left: 0;
}

.admin table {
    width: 100%;
}
.admin th {
    text-align: left;
}
textarea.logs {
    height: 512px;
}

.case {
    display: block;
    float: left;
    width: 130px;
    border: 2px solid #00A1B5;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    text-align: center;
    padding: 0.5em 0.3em;
    margin: 1em;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+44,ffffff+44,91b7bf+100 */
    background: rgb(255,255,255); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(255,255,255,1) 44%, rgba(255,255,255,1) 44%, rgba(145,183,191,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 44%,rgba(255,255,255,1) 44%,rgba(145,183,191,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 44%,rgba(255,255,255,1) 44%,rgba(145,183,191,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#91b7bf',GradientType=0 ); /* IE6-9 */

}
.case .value {
    width: 100%;
    line-height: 1em;
    font-size: 2.4em;
    font-weight: 600;
    text-align: center;
}
.case .legend {
    line-height: 1em;
    font-size: 0.7em;
    margin: 1em auto 0.5em;
    text-transform: uppercase;
}

#results {
    font-size: 0.8em;
    padding: 0.25em 0.45em;
    display: block;
    position: absolute;
    background: #fff;
    height: 12em;
    overflow-y: scroll;
    border:solid 1px #333;
}
.result {
    cursor: pointer;
    display: block;
}
.result:hover {
    background-color: #91B7BF;
}
@media only screen and (max-width: 979px){ /*768*/
    body {
        font-size: 18px;
    }
    #container {
        width: 94%;
        padding: 1.5em;
    }
    input[type="radio"] + label {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}
@media only screen and (max-width: 767px){ /*620*/
    body {
        font-size: 16px;
    }
    input[type="radio"] + label {
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
}
@media only screen and (max-width: 619px){ /*480*/
    .evallabel {
        display: none;
    }
    .bouchtrou {
        display:block;
        border-radius:6px;
        width:40px;
        line-height:40px;
        height:40px;
        color:#fff;
        font-weight:700;
        text-align:center;
        background-color:#fff; 
        text-decoration:none; 
        margin:0;
    }
    .ligne {
        display: block;
        width: 100%;
    }
    .ligne td {
        padding: 0.5em;
    }
    input[type="radio"] + label {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 20px;
    }
}
@media only screen and (max-width: 479px){ /*320*/
    .ligne td {
        padding: 0.25em;
    }
    input[type="radio"] + label {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 20px;
    }
}













