@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-VariableFont.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Italic-VariableFont.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* =====[ RESET ]======================================================================== */
body,
h1,
h2,
h3,
h4,
p,
quote,
small,
form,
input,
ul,
li,
ol,
label {
    /* Page reset */
    margin: 0;
    padding: 0;
    font-weight: normal;
}

/* =====[ GLOBAL STYLES ]======================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

*:not(.icon) {
    font-family: "Roboto", Arial, sans-serif;
}

a,
button,
input {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

body {
    font-size: 15px;
    color: #414141;
    margin: 0;
    padding: 0;
    z-index: 0;
    background: #fff;
}

h1 {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    margin: 25px 0;
}

h2 {
    color: #454545;
    font-size: 24px;
    font-weight: 300;
}

h3 {
    color: #595858;
    font-size: 24px;
    padding: 15px 0;
    font-weight: 700;
}

h4 {
    color: #033346;
    font-size: 15px;
    padding: 10px 0;
    font-weight: 700;
}

strong {
    font-weight: 700;
}

p {
    padding: 10px 0;
    text-align: justify;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
}

hr {
    height: 1;
    background: #fff;
    border: none;
    border-bottom: 1px solid #d4d4d5;
    margin: 5% 0 10px 0;
}

.page {
    margin: 0 auto;
    width: 85%;
    position: relative;
}

.clear {
    clear: both;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.ligne-design {
    height: 7px;
    background: #0085eb;
    width: 70px;
    margin: 40px 0;
}

.icon {
    font-size: 20px;
    vertical-align: middle;
    padding-left: 10px;
}

/* =====[ Header ]======================================================================== */


/* CSS ANNULATION - DÉBUT */

.toast__container {
    background: #332701;
    width: 100%;
}

.toast {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border: 1px solid #ffc007;
    gap: 10px;
}

.toast__icon {
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    padding: 7px;
    border-radius: 50%;
    display: inline-block;
}

.icon_alert {
    display: block;
    width: 2em;
    height: 2em;
    fill: #FFC007;
    border: none;
    animation: myAnim 2s ease-in-out 0s infinite normal none;
}


@keyframes myAnim {

    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 50% 100%;
    }

    10% {
        transform: rotate(2deg);
    }

    20%,
    40%,
    60% {
        transform: rotate(-4deg);
    }

    30%,
    50%,
    70% {
        transform: rotate(4deg);
    }

    80% {
        transform: rotate(-2deg);
    }

    90% {
        transform: rotate(2deg);
    }
}

.toast__type {
    color: #FFC007;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.toast__message {
    font-size: 1rem;
    text-align: center;
    color: #FFC007;
}

.toast p {
    margin: 0;
    padding: 0;
}

.toast__close {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 14px;
    cursor: pointer;
    height: 14px;
    fill: #878787;
    transform: translateY(-50%);
}

.toast--yellow .toast__icon {
    background-color: #FFC007;
}

.toast--yellow:before {
    background-color: #FFC007;
}

/* =====\[ SCROLL WATCHER ]======================================================================== */

@supports (animation-timeline: scroll()) {
    .scroll_watcher {
        position: fixed;
        z-index: 1000;
        height: 6px;
        inset: 0 0 auto;
        scale: 0 1;
        background-color: #033346;
        transform-origin: left;
        -webkit-animation: scroll_watcher linear;
        animation: scroll_watcher linear;
        animation-timeline: scroll();
    }

    @keyframes scroll_watcher {
        to {
            scale: 1 1;
        }
    }
}


/* CSS ANNULATION - FIN */



.header .page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}

.header img {
    width: 100%;
    max-width: 350px;
    height: auto;
}

header .icon {
    font-size: 18px;
}

header .petit {
    font-size: 14px;
}

header ul {
    position: relative;
    z-index: 2;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-content: center;
    list-style: none;
}

header ul li {
    padding: 10px;
    color: #033346;
}

header ul li a {
    color: #033346;
}

header ul li a:hover {
    color: #5295b9;
}

.deconnexion {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 300;
    border-bottom: 1px solid #033346;
    border-left: 1px solid #033346;
    border-right: 1px solid #033346;
    margin-left: 15px;
}

.langue {
    background: #033346;
    color: #fff;
    font-size: 13px !important;
    margin-left: 10px;
}

.langue a,
.langue a:hover {
    color: #fff;
}

.langue:hover {
    background: #5295b9;
}

.langue .icon {
    padding-left: 0;
}

.accueil {
    background: url(/client/fmsq/images/2019_v1/bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 50px 0;
}

.accueil .page {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.titre-accueil {
    width: 60%;
    color: #fff;
    font-size: 22px;
}

.titre {
    padding: 25px 0;
    background: #033346;
    color: #fff;
}

.titre h1 {
    font-size: 28px;
    margin: 15px 0 0 0;
    font-weight: 400;
}

.titre span > span {
    padding-left: 35px;
}

.head {
    padding: 50px 0 0 0;
}

/* Connexion en haut */
.connexion {
    width: 55%;
    z-index: 1;
}

.connexion h2 {
    font-size: 24px;
    text-align: left;
}

.connexion form,
.connexion div {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.connexion input {
    height: 40px;
}

.connexion input[type="submit"] {
    padding: 0 20px;
    width: 60%;
}

.connexion input[type="email"],
.connexion input[type="password"] {
    margin: 0 5px 0 0;
}

.connexion ul {
    width: 100%;
}

.connexion ul li {
    list-style: none;
    display: inline-block;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    padding: 0 20px;
    background: url(/client/fmsq/images/2019_v1/point.png) right 25px no-repeat;
    width: 25%;
}

.connexion ul li:first-child {
    padding: 0 20px 0 0;
}

.connexion ul li:last-child {
    background: none;
    padding: 0 0 0 15px;
}

.connexion ul li span {
    display: block;
    font-size: 24px;
    background: #efefef;
    font-weight: 700;
    padding: 4px 0;
    width: 100%;
}

.decompte2 ul {
    width: 100%;
}

.decompte2 ul li {
    list-style: none;
    display: block;
    font-size: 15px;
    text-align: center;
    padding: 0;
    width: 85%;
    color: #fff;
    margin: 0 auto 10px auto;
}

.decompte2 ul li span {
    display: block;
    font-size: 24px;
    background: #5295b9;
    padding: 4px 0;
    width: 100%;
    color: #fff;
}

/* =====[ onglet ]======================================================================== */

/* Style the tab */
.tab {
    display: flex;
    flex-wrap: wrap;
    border: none;
    background-color: #fff;
    width: 100%;
    height: auto;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    color: #033346;
    margin-right: -1px;
    padding: 10px;
    /* width: 100%; */
    flex: 1;
    border: 1px solid #033346;
    outline: none;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #5295b9;
    color: #fff;
}

/* Create an active/current "tab button" class */
.tab button.active {
    background-color: #033346;
    color: #fff;
}

/* Style the tab content */
.tabcontent {
    padding: 15px 0 0 0;
    width: 100%;
    border-left: none;
    height: auto;
}

/* Style the tab page accueil */

.tab2 {
    border: none;
    background: #fff;
    width: 100%;
    height: auto;
    display: flex;
}

/* Style the buttons inside the tab */

.tab2 button {
    background: inherit;
    color: #015a84;
    padding: 15px 20px;
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
}

/* Change background color of buttons on hover */

.tab2 button:hover {
    background: #5295b9;
    color: #fff;
}

/* Create an active/current "tab button" class */

.tab2 button.active2 {
    background: #033346;
    color: #fff;
}

/* Style the tab content */

.tabcontent2 {
    /* padding: 15px 0 0 0; */
    width: 100%;
    border-left: none;
    height: auto;
}

/* =====[ INSCRIPTION ]======================================================================== */

.inscription {
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.inscription form,
.inscription .message,
.inscription .decompte2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #033346;
    padding: 50px;
    text-align: center;
    min-height: 540px;
}

.add-calendar {
    font-weight: 400;
    background: #fff;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #033346;
    padding: 15px;
}

.add-calendar a {
    color: #033346;
}

.add-calendar a:hover {
    color: #5295b9;
}

.inscription h2 {
    font-size: 26px;
    text-align: center;
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
}

.inscription h2 strong {
    font-size: 50px;
    display: block;
}

.inscription p {
    font-size: 13px;
    text-align: center;
    color: #fff;
}

.inscription input {
    background: #fff;
    border: none;
}

.inscription input[type="Submit"] {
    background: #5295b9;
    color: #fff;
}

.inscription input[type="Submit"]:hover {
    background: #fff;
    color: #033346;
}

.message h2.icon,
.decompte2 h2.icon {
    font-size: 60px;
    padding: 0;
}

.message p {
    font-size: 19px;
    padding: 25px 0 15px 0;
}

.message p span {
    font-size: 22px;
}

.message img {
    width: 50px;
    height: auto;
    padding-bottom: 25px;
}

.inscription .large {
    padding: 20% 35px;
    min-height: 250px;
}

/* =====[ FORMULAIRE ]======================================================================== */
::placeholder {
    color: #454545;
    opacity: 1 !important;
    font-weight: 300;
}

form em {
    font-size: 13px;
    color: #fff;
    display: block;
    text-align: center;
    margin: 15px 0 15px 0;
}

form p {
    padding: 10px 0 25px 0;
}

input:first-child {
    margin-top: 15px;
}

label {
    display: none;
}

select {
    border-radius: 0;
}

input[type="submit"] {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

input,
textarea,
select {
    background: #f1f1f1;
    padding: 10px;
    border: none;
    font-size: 13px;
    color: #454545;
    border-radius: 0;
    margin-bottom: 10px;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    font-weight: 300;
}

.custom-select::after {
    content: "";
    position: absolute;
    font-size: 1lh;

    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: #454545;
    padding: 2.3px;
    -webkit-transform: rotate(45deg) scale(0.9);
    transform: rotate(45deg) scale(0.9);
    right: 10px;
    top: 13.7px;
}

select.error {
    color: #f00;
}

select[data-gtm-form-interact-field-id],
select.error option {
    color: #000;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
}

textarea {
    width: 100%;
    padding: 20px;
    font-size: 17px;
}

select {
    width: 100%;
    height: 35px;
}

input[type="Submit"] {
    background: #033346;
    border: none;
    font-size: 20px;
    font-weight: normal;
    color: #fff;
    cursor: pointer;
    padding: 10px 40px;
    margin-bottom: 0;
}

input[type="Submit"]:hover,
a.btn-main:hover,
a.btn-sec:hover {
    background: #5295b9;
    color: #fff;
}

a.btn-sec:hover {
    border: 1px solid #5295b9;
}

a.btn-main {
    background: #033346;
    border: none;
    font-size: 20px;
    font-weight: normal;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    padding: 10px 40px;
    display: inline-block;
}

a.btn-main span,
a.btn-sec span {
    font-size: 25px;
    padding-right: 15px;
    vertical-align: middle;
}

a.btn-sec {
    border: #033346 1px solid;
    background: #fff;
    font-size: 20px;
    font-weight: normal;
    color: #033346;
    cursor: pointer;
    text-decoration: none;
    padding: 10px 40px;
    display: block;
}

/* =====[ ERROR message ]======================================================================== */

span.error {
    color: #f00;
    text-transform: none;
    font-size: 15px;
    padding-bottom: 5px;
}

.error::placeholder {
    color: #f00 !important;
    opacity: 1 !important;
}

.message_archive_inscription {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    color: red;
}

.message_archive {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    color: #f00;
}

.generic_error {
    color: #f00;
}

.message_champs_requis {
    text-align: right;
}

/* =====[ PLAYER - conf??rence ]======================================================================== */

.bg_player {
    padding: 5% 0 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.player {
    max-width: 960px;
    width: 100%;
    z-index: 5;
    position: relative;
    border: 1px solid #d4d4d5;
}

/* Section bouton mute/unmute */

.invisible {
    transition: 0.5s;
    opacity: 0 !important;
}

.invisible:after {
    display: none;
}

.imagenonactif {
    background-image: url(icone_unmute.png) !important;
    background-size: 40px 40px;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.imagenonactif:hover {
    opacity: 1;
}

.play-button {
    position: absolute;
    z-index: 5000;
    width: 40px;
    height: 40px;
    left: 20px;
    top: 20px;
    cursor: pointer;
}

.jw-flag-ads-vpaid:not(.jw-flag-media-audio):not(.jw-flag-audio-player):not(.jw-flag-ads-vpaid-controls):not(.jw-flag-casting) .jw-controlbar,
.jw-flag-user-inactive.jw-state-playing:not(.jw-flag-media-audio):not(.jw-flag-audio-player):not(.jw-flag-ads-vpaid-controls):not(.jw-flag-casting) .jw-controlbar,
.jw-flag-user-inactive.jw-state-buffering:not(.jw-flag-media-audio):not(.jw-flag-audio-player):not(.jw-flag-ads-vpaid-controls):not(.jw-flag-casting) .jw-controlbar,
.jw-flag-ads-vpaid:not(.jw-flag-media-audio):not(.jw-flag-audio-player):not(.jw-flag-ads-vpaid-controls):not(.jw-flag-casting) .play-button,
.jw-flag-user-inactive.jw-state-playing:not(.jw-flag-media-audio):not(.jw-flag-audio-player):not(.jw-flag-ads-vpaid-controls):not(.jw-flag-casting) .play-button,
.jw-flag-user-inactive.jw-state-buffering:not(.jw-flag-media-audio):not(.jw-flag-audio-player):not(.jw-flag-ads-vpaid-controls):not(.jw-flag-casting) .play-button {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: 250ms !important;
    transition-delay: 4000ms !important;
}

.bouton-video {
    max-width: 960px;
    width: 100%;
    margin: 20px auto;
    display: flex;
    text-align: center;
    justify-content: flex-end;
    align-items: flex-start;
}

.bouton-video p {
    padding: 0 5% 0 0;
    font-size: 14px;
    text-align: left;
}

.onglet {
    padding-left: 5%;
    width: 40%;
}

.contenu-player {
    width: 60%;
}

.question {
    max-width: 960px;
    width: 100%;
}

.question input[type="Submit"] {
    margin-top: 25px;
}

.question input[type="text"],
.question input[type="email"],
.question input[type="password"],
.question select {
    width: 49.5%;
}

.question input:nth-child(2n + 2) {
    float: right;
}

.sondage {
    text-align: center;
    margin: 5% 0;
}

.succes {
    text-align: center;
}

.succes .icon {
    font-size: 40px;
    padding: 25px 0 0 0;
}

.succes img {
    padding: 10px;
}

.succes p {
    text-align: center;
    margin-bottom: 20px;
}

/* =====[ CONTENU ]======================================================================== */
.bg-info {
    padding: 50px 0;
    background: #fff;
}

.bg-info h2 {
    color: #033346;
    font-size: 25px;
    border-bottom: 1px solid #033346;
    padding-bottom: 15px;
    margin-bottom: 40px;
    font-weight: 700;
}

.conf {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    align-items: flex-start;
    gap: 20px;
}

.conf ul {
    flex: 1 1 49%;
    display: flex;
    align-items: flex-end;
}

.conf ul li {
    list-style: none;
    margin: 0;
}

.conf ul li:nth-child(3) {
    min-height: 50px;
}

.conf ul li:first-child img {
    padding: 0 20px 0 0;
    width: 140px;
    height: auto;
}

.conf ul li img {
    padding: 5px 10px;
    width: 25px;
    height: auto;
}

.conf h3 {
    font-size: 20px;
    font-weight: 400;
    padding: 0;
}

.conf .icon {
    font-size: 18px;
    color: #355c76;
    padding: 0 10px;
}

.conf .petit {
    font-size: 15px;
}

.conf .icon:hover {
    color: #65c8c6;
}

.info {
    margin: 5% 0;
}

.info p {
    padding: 0 0 20px 0;
}

.info ul li,
.info ul.load {
    list-style: none;
}

.info ul li:before {
    content: "→ ";
}

.info ul.load li:before {
    content: none;
}

.info ul.load li {
    margin-left: 0;
    padding: 0;
}

.info ul.load li span {
    padding: 0 10px 0 0;
    color: #033346;
}

a.show {
    font-size: 18px;
    color: #033346;
}

a.show > p {
    margin-top: 5px;
    padding: 0;
    font-weight: 700;
    color: #f3951f;
}

a.show:hover {
    color: #58585a;
}

.showBio {
    margin: 20px 0 0 0;
}

.showBio > div {
    margin: 0 0 25px 0;
}

a.show.minus,
a.linkToggle.minus {
    background: url("/client/fmsq/images/2019_v1/haut.png") no-repeat 0 0;
    background-position-x: 0;
    background-position-y: 0;
    background-size: 23px 20px;
    padding: 0 0 0 35px;
    display: inline-block;
    height: 28px;
    text-decoration: none;
}

a.show,
a.linkToggle {
    background: url("/client/fmsq/images/2019_v1/bas.png") no-repeat 0 0;
    background-position-x: 0;
    background-position-y: 0;
    background-size: 23px 20px;
    padding: 0 0 0 35px;
    display: inline-block;
    height: 28px;
    text-decoration: none;
}

/*
Début section Liste de présence
*/

#listepresence h3 {
    text-align: center;
    padding-bottom: 0;
    font-size: 15px;
    color: #033346;
}

#listepresence p {
    text-align: center;
    font-size: 13px;
}

#listepresence.tabcontent {
    margin: 0;
}

#div_form_liste_presence {
    padding: 15px;
    border: 1px solid #d3d3d3;
}

#div_form_liste_presence input[type="Submit"] {
    display: block;
    margin: 15px auto 0 auto;
}

#div_form_liste_presence label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 13px;
}

#div_form_liste_presence .merci {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#div_form_liste_presence form p {
    text-align: center;
    padding: 10px 0;
}

.merci .icon-succes2 {
    font-size: 40px;
    color: #033346;
}

.merci h3 {
    font-size: 1rem;
}

/*
Fin section liste de présence
*/

/* =====[ BAS DE PAGE ]======================================================================== */
.bg-soutien {
    background: #f2f2f2;
}

.soutien .icon {
    font-size: 50px;
    padding: 0 0 10px 0;
}

.soutien .petit {
    font-size: 40px;
    padding: 0 0 20px 0;
}

ul.soutien {
    list-style: none;
    text-align: center;
    padding: 50px 0;
    margin: 0 auto;
}

ul.soutien li {
    display: inline-block;
    margin: 0 5%;
    padding: 25px;
    vertical-align: top;
    font-size: 13px;
}

ul.soutien li img {
    vertical-align: middle;
    padding-bottom: 15px;
}

ul.soutien li a,
ul.soutien li a h2 {
    color: #8d8c8c;
    text-decoration: none;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

ul.soutien li a:hover,
ul.soutien li a:hover h2 {
    color: #454545;
}

.copyright {
    padding: 25px 0;
    text-align: center;
    font-size: 13px;
    background: #033346;
    color: #fff;
}

.copyright a {
    color: #fff;
    text-decoration: none;
}

/* :::::[ IPAD HORIZONTAL ]:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 1300px) {
    .connexion input[type="submit"] {
        width: 100%;
    }
}

@media screen and (max-width: 1100px) {
    .bg_player {
        flex-direction: column;
    }

    .onglet {
        padding-left: 0;
        width: 100%;
    }

    .contenu-player {
        width: 100%;
    }

    .tabcontent iframe {
        height: 400px;
    }
}

/* :::::[ GENERALE plus petit qu'un ipad vertical' ]:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 1008px) {
    .header ul li img {
        width: 25px;
    }

    .accueil .page {
        flex-direction: column;
    }

    .connexion form,
    .connexion div {
        flex-wrap: wrap;
    }

    .connexion input[type="email"],
    .connexion input[type="password"] {
        margin: 0 0 5px 0;
    }

    .titre-accueil {
        width: 100%;
        margin: 0 auto;
    }

    .inscription {
        margin: 0 auto;
    }

    .img-accueil {
        display: none;
    }


    .inscription form,
    .inscription .message {
        min-height: 200px;
    }
}

/* :::::[ 752 PIXELS LAYOUT (IPHONE HORIZONTALE)]::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 752px) {
    /* .header img {
		max-width: 180px;
	} */

    .header .page {
        flex-direction: column;
        gap: 0;
    }

    .header .outil .page {
        width: 100%;
    }

    .titre-accueil {
        text-align: center;
    }

    .titre-accueil,
    .inscription {
        width: 100%;
    }

    .titre span > span {
        padding-left: 0;
        display: block;
    }

    .bg_player {
        padding: 10% 0;
    }

    .connexion {
        width: 100%;
    }

    .connexion h2 {
        text-align: center;
        margin: 15px 0;
    }

    .sondage a {
        display: inline-block;
        margin-bottom: 10px;
    }

    .conf {
        flex-direction: column;
    }

    .question input[type="text"],
    .question input[type="email"],
    .question input[type="password"],
    .question select {
        width: 100%;
    }

    .question input:nth-child(2n + 2) {
        float: none;
    }
}

/* :::::[ 320 PIXELS LAYOUT (iphone vertical) ]::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 464px) {
    h1 {
        font-size: 24px;
    }

    .accueil strong {
        font-size: 18px;
    }

    .header img {
        margin: 0 auto;
    }

    .header ul {
        text-align: center;
    }

    .inscription .message {
        min-height: 0;
    }

    .connexion {
        width: 100%;
    }

    .connexion h2 {
        text-align: center;
    }

    .connexion ul li {
        font-size: 10px;
        background: none;
        padding: 0 10px;
    }

    .connexion ul li span {
        background: none;
    }

    .connexion input[type="email"],
    .connexion input[type="password"] {
        margin: 0 0 5px 0;
        width: 100%;
    }

    .connexion input[type="submit"] {
        width: 100%;
        font-size: 20px;
    }

    .btn-main {
        display: block;
    }

    a.btn-main span {
        display: block;
        padding: 0 0 10px 0;
        margin: 0 auto;
    }

    .question input[type="submit"] {
        width: 100%;
    }

    .question input {
        width: 100%;
    }

    .question input:nth-child(2n + 2) {
        float: none;
    }

    .conf ul {
        flex-direction: column;
        align-items: flex-start;
    }
}
