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

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

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

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

body {
    background-color: #BCEED7;
    font-family: "Instrument Sans", Arial, Helvetica, sans-serif;
    color: #000;
}

a {
    text-decoration: none;
}

.page {
    margin: 0 auto;
    width: min(85%, 1530px);
}

.icon {
    font-family: unset;
    font-size: var(--20px);
    vertical-align: middle;
}

/* CSS ANNULATION - DÉBUT */

.toast__container {
    position: relative;
    top: 0;
    background-color: #332701;
    width: 100%;
    z-index: 10;
}

.toast__shows {
    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: var(--24px);
    font-weight: 700;
}

.toast__message {
    font-size: var(--16px);
    text-align: center;
    color: #FFC007;
}

.toast__shows 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;
}

/* CSS ANNULATION - FIN */

.scroll_watcher {
    position: fixed;
    z-index: 1000;
    height: 6px;
    width: 0%;
    top: 0;
    left: 0;
    right: 0;
    background-color: #BCEED7;
}

@supports (animation-timeline: scroll()) {
    .scroll_watcher {
        animation: scroll_watcher linear;
        animation-timeline: scroll();
    }

    @keyframes scroll_watcher {
        to {
            width: 100%;
        }
    }
}

/* =====[ Header ]======================================================================== */
header {
    background-color: #156851;
}

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

header ul {
    display: flex;
    justify-content: flex-end;
    gap: 0.25rem;
    list-style: none;
}

header ul li {
    display: flex;
    align-items: center;
}

header ul li a {
    padding: 0.313rem;
    height: 100%;
    color: #BCEED7;
}

header ul li a:hover {
    color: #00372D;
}

header :is(.langue, .deconnexion) {
    background-color: #00372D;
    transition: all 0.25s ease-in-out;
}

header :is(.langue, .deconnexion):hover {
    background-color: #BCEED7;
}

header :is(.langue, .deconnexion) a {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

header .langue .icon {
    font-size: 16px;
}

.header {
    margin: 0 auto;
    background-color: #156851;
}

.header .page {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header img {
    height: auto;
    width: 100%;
    max-width: 11rem;
}

/*=============================[ Décompte ]=============================*/

.connexion {
    min-width: 50%;
}

.connexion h2 {
    margin-bottom: 0.375rem;
    font-size: var(--24px);
    color: #BCEED7;
    font-weight: 500;
}

.connexion ul {
    width: 100%;
}

.connexion ul > span {
    display: flex;
    gap: 2.125rem;
}

.connexion li {
    position: relative;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--13px);
    color: #BCEED7;
    text-align: center;
    list-style: none;

}

.connexion li span {
    display: block;
    margin-top: 2px;
    background-color: #156851;
    font-size: var(--24px);
    color: #BCEED7;
    border-width: 0.188rem;
    border-radius: 25px;
    border-style: solid;
    border-color: #BCEED7;
}

.connexion li:not(:last-child)::after {
    content: ":";
    position: absolute;
    width: 2.125rem;
    right: -2.125rem;
    bottom: 0.313rem;
    font-family: 'Trebuchet MS', 'Arial Rounded MT', Georgia, sans-serif;
    font-size: var(--22px);
    color: #BCEED7;
    font-weight: 600;
    text-align: center;
}

/*===============================[ Event overview ]===============================*/

.accueil {
    background-color: #00372D;
}

.decoration-titre {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin: 0 auto;
    padding: 3.75rem 0;
}

.container-titre-texte {
    font-size: var(--24px);
    color: #BCEED7;
}

.titre-accueil h1 {
    margin-top: 50px;
    font-size: var(--52px);
    line-height: 1.2;
    color: #BCEED7;
}

.quick-description {
    margin-top: 3.625rem;
    font-size: var(--20px);
    text-wrap-style: pretty;
    color: #BCEED7;
}

.div_btn_partage {
    display: flex;
    gap: 0.625rem;
    margin-top: 3.125rem;
    text-wrap-style: auto;
}

.div_btn_partage::before {
    content: url(icon-arrow-bottom-right.svg);
    margin-right: 0.5rem;
    height: calc(var(--26px) + 1.5rem);
    aspect-ratio: 1;
}

a.btn-partage {
    border: 0.25rem solid #D2B7FF;
    border-radius: 34px;
    padding: 0.5rem 2rem;
    font-size: var(--26px);
    color: #D2B7FF;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

a.btn-partage:hover {
    color: #00372D;
    background-color: #D2B7FF;
}

.phrase {
    margin-top: 1.25rem;
    font-size: var(--26px);
}

.quick-description p:last-of-type {
    margin-top: 4.75rem;
}

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

.inscription {
    flex-shrink: 0;
    width: 475px;
    text-align: center;
}

.tabcontent2 {
    width: 100%;
    border-left: none;
    height: auto;
}

.tab2 {
    display: flex;
    flex-wrap: wrap;
    transform: translateZ(0);
}

.tab2 button {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    outline: none;
    border: none;
    padding: 0.75rem 0;
    height: 100%;
    width: 100%;
    background-color: #BCEED7;
    font-family: inherit;
    font-size: var(--22px);
    color: #00372D;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s;
}

.tab2 button.active2 {
    background-color: #156851;
    color: #BCEED7;
    cursor: default;
}

.inscription :is(form, .message) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 36px 44px;
    background-color: #156851;
    min-height: 450px;
    font-size: var(--15px);
    color: #fff;
    text-align: center;
}

.inscription h2 {
    margin-bottom: 1.375rem;
    font-size: var(--34px);
    color: #BCEED7;
    line-height: 1;
    text-align: center;
}

.inscription h2 strong {
    display: block;
    font-size: var(--36px);
    font-weight: 800;
}

.inscription h2 + p {
    text-align: center;
    padding: 0;
    margin-bottom: 1rem;
}

.inscription p {
    color: #BCEED7;
    line-height: var(--24px);
}

.inscription em {
    display: inline-block;
    margin: 0.5rem 0 1.75rem;
    font-size: var(--11px);
    color: #BCEED7;
    font-weight: 500;
}

.inscription form a {
    color: inherit;
    text-decoration: underline;
}

.inscription form a:hover {
    text-decoration: none;
}

.message h2.icon {
    margin-bottom: 1.875rem;
    font-size: var(--60px);
}

.message p {
    font-size: var(--22px);
    padding: 16px 0;
}

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

.add-calendar {
    padding: 0.5rem 0 0.625rem;
    background-color: #BCEED7;
    font-size: var(--16px);
    color: #00372D;
}

.add-calendar a {
    color: inherit;
    vertical-align: 0.125rem;
}

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

.add-calendar .icon {
    margin-left: 0.625rem;
    font-size: var(--28px);
}

/*===========[ Custom select ]===========*/
[data-element="select"] {
    position: relative;
    padding: 1.375rem 1.5625rem 0.25rem 0.5rem;
    background-color: #BCEED7;
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--14px);
    color: #000;
    text-align: left;
    cursor: pointer;
}

[data-element="select"][data-disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

[data-element="select"]::after {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: #000;
    padding: 0.269rem;
    top: 48%;
    right: 0.75rem;
    -webkit-transform: translateY(-50%) rotate(45deg) scale(0.9);
    transform: translateY(-50%) rotate(45deg) scale(0.9);
    transition: 0.2s ease all;
}

[data-element="select"] [data-hidden] {
    visibility: hidden;
    white-space: nowrap;
}

[data-element="select"].open {
    pointer-events: none;
}

[data-element="select"].open::after {
    -webkit-transform: translateY(0%) rotate(225deg) scale(0.9);
    transform: translateY(0%) rotate(225deg) scale(0.9);
}

.selected [data-element="option"] {
    padding-right: 0.75rem;
}

.selected.error {
    color: #f00;
}

[data-element="select"].open .custom-options {
    display: block;
    pointer-events: auto;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.custom-options {
    position: absolute;
    z-index: 1000;
    display: none;
    max-height: 310px;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    border-radius: 10px;
    overflow: auto;
    scrollbar-color: #8b8b8b transparent;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.2);
}

.custom-options [data-element="option"] {
    padding: 5px 14px 4px;
    background-color: #fff;
    pointer-events: all;
}

/* Mobile */
@media (any-pointer: coarse) {
    .custom-options [data-element="option"] {
        padding-top: 12px;
        padding-bottom: 10px;
    }
}

.custom-options [data-element="option"]:hover {
    background-color: SelectedItem;
    color: SelectedItemText;
}

/*===============================[ FORMULAIRE ]===============================*/

:is(input, textarea, select):focus {
    outline: none;
}

textarea {
    resize: none;
}

.error::placeholder {
    color: #f00;
}

.radio-question {
    margin-bottom: 1.75rem;
}

.radio-question .radio-group {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.radio-question .radio-option {
    display: flex;
    align-items: center;
}

.radio-question .radio-option input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    width: 0.875rem;
    height: 0.875rem;
    outline: none;
    border: 2px solid #BCEED7;
    border-radius: 50%;
    background-color: #BCEED7;
    cursor: pointer;
    transition: all 0.05s ease;
}

.radio-question .radio-option input[type="radio"]::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 3px solid #00372D;
    border-radius: 50%;
    transition: all 0.05s ease;
}

.radio-question .radio-option input[type="radio"]:checked {
    background-color: #00372D;
}

.radio-question .radio-option:hover input[type="radio"]:not(:checked) {
    border-color: #BCEED7;
    background-color: #00372D;
}

.radio-question .radio-option:hover input[type="radio"]:not(:checked)::before {
    border-width: 2px;
    border-color: #BCEED7;
    inset: -4px;
}

.radio-question .radio-option label {
    padding-left: 0.5rem;
    color: #BCEED7;
    font-weight: 500;
    text-transform: capitalize;
    cursor: pointer;
}

.form-container {
    position: relative;
    margin-bottom: 10px;
}

.form-input {
    border: none;
    border-radius: 0;
    padding: 1.375rem 0.5rem 0.25rem;
    width: 100%;
    background-color: #BCEED7;
    font-size: var(--14px);
    transition: padding 0s;
}

:is(.form-input, select, [data-element="select"]) + label {
    position: absolute;
    padding-left: 0.5rem;
    padding-right: 2.313rem;
    top: 0.875rem;
    left: 0;
    font-size: var(--13px);
    color: #000;
    font-weight: 500;
    line-height: 1.25;
    text-align: left;
    pointer-events: none;
    transition: 0.1s ease all;
}

.form-container .form-input:is(:focus, :not(:placeholder-shown)) + label,
[data-element="select"].has-value + label {
    top: 0.188rem;
    font-size: var(--12px);
}

.form-container.error {
    border: 2px solid #82D7FA;
}

.form-container.error label {
    top: calc(0.813rem + 2px);
}

.form-container.error + .invalid {
    display: block;
}

:is(.unanswered, .unqualified) ~ :is(.form-container, .error + .invalid) {
    display: none;
}

.invalid {
    display: none;
    margin-top: -2px;
    margin-bottom: 12px;
    text-align: left;
}

.invalid::before {
    content: "";
    display: inline-block;
    height: 1em;
    width: inherit;
    aspect-ratio: 24 / 21;
    margin: 0 auto;
    background-color: #82D7FA;
    font-family: unset;
    --warning-svg: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 21'><path d='M23.368 21H.633a.633.633 0 0 1-.546-.306.6.6 0 0 1-.005-.615L11.45.315a.638.638 0 0 1 1.1 0l11.368 19.764a.606.606 0 0 1 0 .615.632.632 0 0 1-.55.306ZM1.712 19.765h20.574L11.999 1.878Z'/><path d='M12.001 14.934a.638.638 0 0 1-.638-.638V7.919a.638.638 0 0 1 1.275 0v6.377a.638.638 0 0 1-.637.638ZM12.001 18.449a.638.638 0 0 1-.638-.637v-1.276a.638.638 0 0 1 1.275 0v1.276a.638.638 0 0 1-.637.637Z'/></svg>");
    -webkit-mask: var(--warning-svg);
    mask: var(--warning-svg);
    font-size: var(--21px);
}

.invalid span {
    margin-left: 4px;
    color: #82D7FA;
    font-weight: 600;
    vertical-align: 0.375em;
}

#inscription p:not(.generic_error) {
    margin-bottom: 0.625em;
    font-size: var(--13px);
    font-weight: 500;
    text-align: left;
}

#inscription .radio-question p {
    margin-bottom: 1rem;
    font-size: var(--15px);
    line-height: 1.4;
    text-align: center;
}

#inscription #unqualified-registration p {
    font-size: var(--16px);
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

#inscription #unqualified-registration a {
    color: #82D7FA;
    font-size: var(--17px);
    font-weight: 500;
}

.tabcontent2 input[type="Submit"] {
    -webkit-appearance: none;
    appearance: none;
    margin: 0 auto;
    border: none;
    padding: 0.625rem 0;
    min-width: 15rem;
    background-color: #00372D;
    border-radius: 30px;
    font-size: var(--24px);
    color: #BCEED7;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.tabcontent2 input[type="Submit"]:not(:disabled):hover {
    background-color: #BCEED7;
    color: #00372D;
}

.tabcontent2 input[type="Submit"]:disabled {
    opacity: 0.7;
    cursor: default;
}

#connexion .form-container {
    margin-top: 1.5rem;
}

#connexion p:not(.generic_error) {
    margin: 2.5rem 0;
    font-size: var(--22px);
    font-weight: 500;
}

#connexion .invalid + p {
    margin-top: 1.25rem;
}

.inscription p.generic_error {
    color: #82D7FA;
    margin: 1.5rem 0;
    font-size: var(--22px);
    font-weight: 500;
    text-align: center;
}

/*====================[ Page vidéo ]====================*/
.titre {
    margin-bottom: 3.5rem;
    padding: 2.25rem 0;
    background-color: #00372D;
    font-size: var(--24px);
    color: #BCEED7;
    font-weight: 400;
}

.titre-image div {
    display: inline;
}

.titre-image .heure {
    margin-left: 4rem;
}

.titre-image h2 {
    margin-top: 1rem;
    font-size: var(--34px);
}

.bg_player {
    display: flex;
    gap: 4%;
}

.bg_player :is([type="submit"], .btn-main, .btn-question) {
    -webkit-appearance: none;
    appearance: none;
    display: block;
    border: 0.25rem solid #00372D;
    border-radius: 25px;
    padding: 0.438rem;
    background: none;
    font-family: "Instrument Sans", Arial, Helvetica, sans-serif;
    font-size: var(--18px);
    color: #00372D;
    font-weight: 700;
    text-align: center;
}

.bg_player :is([type="submit"], .btn-main, .btn-question):hover {
    background-color: #00372D;
    color: #BCEED7;
}

/*==========[ Video player ]==========*/
.contenu-player {
    flex: 3;
}

/*.jwplayer {
    border-radius: 10px;
    overflow: hidden;
}*/

.play-button {
    position: absolute;
    inset: 1.25rem auto auto 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    background: url(icone_unmute.png) no-repeat;
    background-size: 2.5rem;
    opacity: 0.7;
    cursor: pointer;
}

.play-button:hover {
    opacity: 1;
}

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

.jw-wrapper {
    background-color: unset !important;
}

.video-btns-container {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.video-btns-container a {
    flex: 1;
}

/*====================================*/
.onglet {
    flex: 2;
}

.tab {
    display: flex;
    gap: 1px;
    background-color: #00372D;
    overflow: hidden;
}

.tab button {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    border: none;
    padding: 1rem 0.5rem;
    height: 100%;
    width: 100%;
    background-color: #156851;
    font-family: inherit;
    font-size: var(--18px);
    color: #BCEED7;
    transition: 0.2s ease;
    cursor: pointer;
}

.tab button:not(.active):hover {
    opacity: 75%;
}

.tab button.active {
    background-color: #00372D;
    color: #BCEED7;
    cursor: default;
}

.tabcontent {
    padding-top: 0.625rem;
}

.tabcontent textarea {
    border: none;
    border-radius: 0;
    padding: 1rem;
    min-height: 200px;
    width: 100%;
    background-color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--16px);
}

.tabcontent input[type="submit"] {
    display: block;
    margin-top: 1.5rem;
    margin-left: auto;
    width: 40%;
    cursor: pointer;
}

.succes {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.succes .icon {
    margin: 2rem 0;
    font-size: var(--55px);
}

.succes a.btn-main {
    margin-block: 2rem;
    width: fit-content;
}

.btn-question {
    margin-top: 1rem;
}

.load {
    margin-top: 0.5rem;
    list-style-type: none;
}

.load a {
    font-size: var(--16px);
    color: #00372D;
    font-weight: 500;
}

.load a:hover {
    color: #156851;
}

.load a span {
    margin-right: 0.5rem;
    vertical-align: -2px;
}

.btn-question {
    transition: none;
}

#documents[style="display: block;"] + .btn-question {
    margin-top: 12rem;
}

.isDisabled {
    color: #fff;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.5;
    text-decoration: none;
}

/* ===============================[ CONTENU ]=============================== */

.bg-info {
    margin-top: 4.5rem;
}

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

.soutien {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    padding: 1rem 0;
    max-width: 600px;
    list-style: none;
    text-align: center;
}

.soutien li {
    flex: 1;
    padding: 1.563rem 0;
    font-size: var(--13px);
}

.soutien a {
    line-height: 1.25;
}

.soutien :is(a, .icon) {
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-family: Arial, Helvetica, sans-serif;
    color: #00372D;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

.soutien a:hover,
.soutien a:hover .icon {
    color: #156851;
}

.soutien .icon {
    margin-bottom: 0.625rem;
    width: 100%;
    font-size: var(--50px);
}

/*==========[ Test video player ]==========*/
.md-modal {
    position: fixed;
    visibility: hidden;
    top: 50%;
    left: 50%;
    width: min(90%, 720px);
    z-index: 2000;
    transform: translateX(-50%) translateY(-50%);
}

.md-show {
    visibility: visible;
}

.md-effect-1.md-show .md-content {
    transform: scale(1);
    opacity: 1;
}

.md-effect-1 .md-content {
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s;
}

.md-content > div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2%;
    background-color: #fff;
    color: #fff;
}

.md-content h3 {
    padding: 0;
    font-size: var(--32px);
    font-weight: 300;
}

.md-content button {
    margin: 0;
    color: #007cec;
    border: none;
    cursor: pointer;
    font-size: var(--20px);
}

.md-content button:hover {
    opacity: 75%;
}

.md-overlay {
    position: fixed;
    visibility: hidden;
    inset: 0;
    z-index: 1000;
    opacity: 0;
    background: #000c;
    transition: all 0.3s;
}

.md-show ~ .md-overlay {
    visibility: visible;
    opacity: 1;
}

.bg-soutien .jwplayer {
    border-radius: unset;
}

/*=========================================*/

.copyright {
    padding: 1.563rem 0;
    background-color: #00372D;
    font-family: "Instrument Sans", Arial, Helvetica, sans-serif;
    font-size: var(--13px);
    color: #BCEED7;
    text-align: center;
}

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

/* ===============================[ Responsive ]=============================== */

@media (max-width: 1180px) {
    .accueil {
        background-size: cover;
    }

    .accueil .page {
        background: unset;
    }

    .decoration-titre {
        flex-direction: column;
        gap: 20px;
        width: min(100%, 500px);
        padding: 1.875rem 0;
    }

    .container-titre-texte {
        text-align: center;
    }

    .container-titre-texte div:not([class]) {
        display: inline-block;
    }

    .titre-accueil {
        gap: 16px;
        margin: 1.25rem 0;
        justify-content: center;
    }

    .titre-accueil span {
        width: 232px;
        line-height: 1.2;
        text-align: left;
    }

    .quick-description {
        margin-top: 0;
        width: auto;
    }

    .quick-description p:last-of-type {
        margin-top: 2rem;
    }

    .inscription {
        margin: 0 auto;
        width: 100%;
    }

    .bg_player {
        flex-direction: column;
        gap: unset;
    }

    .onglet {
        margin-top: 2.5rem;
    }
}

@media (max-width: 850px) {
    .accueil .page {
        background: none;
    }

    .bg-info {
        margin-top: 1.5rem;
    }
}

@media (max-width: 780px) {

    header ul {
        justify-content: center;
    }

    .header {
        padding-top: 1.875rem;
        padding-bottom: 1.875rem;
    }

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

    .accueil {
        margin-top: unset;
    }

    .connexion {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 550px) {
    .accueil .page {
        width: 100%;
    }

    .container-titre-texte {
        margin: 0 auto;
        width: 85%;
    }

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

    .titre-accueil::before {
        display: none;
    }

    .inscription {
        border-radius: 0;
    }

    .inscription :is(form, .message) {
        min-height: 400px;
    }

    .inscription p {
        padding: 5px 0;
    }

    .invalid {
        margin-bottom: 8px;
    }

    .tabcontent2 input[type="Submit"] {
        min-width: 13rem;
        padding: 6px;
    }

    #connexion p {
        margin: 1.625rem 0;
    }

    .titre-image div {
        display: block;
    }

    .titre-image .heure {
        margin-left: unset;
    }

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

@media (max-width: 390px) {
    .connexion ul > span {
        gap: 16px;
    }

    .connexion li:not(:last-child)::after {
        content: "";
    }

    .container-titre-texte div:not([class]) {
        display: block;
    }

    .container-titre-texte div + div:not([class]) {
        margin-left: 0;
    }

    .div_btn_partage::before {
        display: none;
    }

    .radio-question .radio-group {
        gap: 2rem;
    }

    .soutien {
        flex-direction: column;
    }
}
