/*TUC RAIL QUIZ*/
*{
    margin: 0;
    padding: 0;
    color: #262626;
    font-family: Arial, sans-serif;
}
body{
    background-color: #CFDDE3;
}
button.boutonMobile{
    padding: 25px;
    background-color: #0f2260;
    color: white;
    display: block;
    border: none;
    text-transform: uppercase;
    border-radius: 3px;
    margin: 45px auto 0 auto;
    font-size: 21px;
    cursor: pointer;
    width: 80%;
}
form.formMobile{

}
button.boutonMobile:hover{
    background-color: #47B680;
}
section.mobileQuestions h3{
    text-align: center;
    font-weight: normal;
    color: #0f2260;
    margin: 25px auto;
}
div#mobileRep{
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 25px;
    margin: 15px auto;
}
#mobileRep label{
    width: auto;
}
#mobileRep input[type="radio"] {
    display: none;
}
#mobileRep span {
    display: block;
    text-align: center;
    padding: 25px 0;
    font-size: 21px;
    line-height: 28px;
    cursor: pointer;
    text-transform: uppercase;
    border: 2px solid #262626;
    border-radius: 3px;
}
#mobileRep input[type="radio"]:checked + span {
    background-color: gold;
}
#mobileRep input#repNum{
    border-radius: 3px;
    padding: 15px;
    font-size: 21px;
    line-height: 28px;
}
/*-----------------photo-------------------*/
section.mobilePhoto{
    text-align: center;
    margin: 25px auto;
    padding: 10px;
}
img#preview{
    max-width: 100%;
    display: block;
    margin: 10px auto;
}
section.mobilePhoto button{
    padding: 5px 8px;
    font-size: 21px;
}