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

/* =====[ VARIABLES CSS  ]======================================================================== */

:root {
    --bleu-pale: #dae6f0;
    --bleu-clair: #4a98d9;
    --bleu: #1472bf;
    --bleu-piv: #095797;
    --bleu-moyen: #19406c;
    --bleu-fonce: #223654;
    --gris-pale: #f1f1f2;
    --gris-clair: #c5cad2;
    --gris: #8893a2;
    --gris-moyen: #6b778a;
    --rouge: #cb381f;
    --rose: #e58271;
}

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

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

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

body {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    color: var(--bleu-fonce);
}

h1,
h2,
h3,
h4 {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

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: var(--bleu-piv);
}

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

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

/* =====[ Header ]======================================================================== */
header {
    margin: 0.313rem auto 0;
    background-color: #fff;
}

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

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

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

header ul li a {
    color: var(--bleu-fonce);
}

header ul li a:hover {
    opacity: 75%;
}

.header {
    margin: 0 auto;
    padding: 1.25rem 0;
}

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

/*.logos {
    display: flex;
    align-items: baseline;
    gap: 50px;
}*/

.header img {
    height: 3rem;
    width: 100%;
}

.deconnexion .icon {
    color: var(--bleu-piv);
}

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

.connexion {
    min-width: 50%;
}

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

.connexion ul {
    width: 100%;
}

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

.connexion li {
    position: relative;
    width: 100%;
    font-size: var(--13px);
    color: var(--bleu-fonce);
    font-weight: 600;
    text-align: center;
    list-style: none;
}

.connexion li span {
    display: block;
    padding: 0.25rem 0;
    background-color: #f4f4f4;
    font-size: var(--24px);
    color: #000;
    font-weight: 700;
}

.connexion li:not(:last-child)::after {
    content: ":";
    position: absolute;
    width: 2.125rem;
    right: -2.125rem;
    bottom: 0.313rem;
    font-family: sans-serif;
    font-size: var(--22px);
    color: #666;
    font-weight: 600;
    text-align: center;
}

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

.accueil {
    --bg-height: 1048;
    --bg-width: 1924;
    --bg-min-height: 1060px;

    margin-top: 2.375rem;
    background: url(background_meq_octobre-2025.jpg) no-repeat;
    background-size: auto max(var(--bg-min-height), 100%, calc(100vw / (var(--bg-width) / var(--bg-height))));
}

.accueil .page {
    background: url(titre_meq_20251024.svg) no-repeat;
    background-size: 50%;
    background-position: left top min(175px, 12.35vw);
}

.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: #fff;
}

.container-titre-texte :is(.date, .heure) {
    font-weight: bold;
}

.titre-accueil {
    display: none;
}

.quick-description {
    margin-top: min(400px, 52.5%);
    width: min(780px, 42vw);
    font-size: var(--18px);
    font-weight: 500;
    text-wrap-style: pretty;
}

.quick-description p:nth-child(2) {
    margin: 10px 0;
}

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

.inscription {
    flex-shrink: 0;
    height: 100%;
    width: 475px;
    background-color: #fff;
    text-align: center;
}

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

.tab2 button {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    padding: 0.75rem 0;
    height: 100%;
    width: 100%;
    background-color: var(--bleu-piv);
    font-family: inherit;
    font-size: var(--22px);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.tab2 button.active2 {
    background-color: #fff;
    color: var(--bleu-fonce);
    font-weight: 700;
    cursor: default;
}

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

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

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

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

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

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

.inscription em {
    display: inline-block;
    margin: 0.875rem 0 0.469rem;
    font-size: var(--11px);
    color: var(--bleu-fonce);
    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);
}

.generic_error {
    color: var(--rouge);
}

.add-calendar {
    padding: 0.5rem 0 0.625rem;
    background-color: var(--bleu-pale);
    font-size: var(--16px);
    color: var(--bleu-fonce);
}

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

.add-calendar a:hover {
    opacity: 75%;
}

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

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

/*===========[ Custom select ]===========*/
[data-element="select"] {
    position: relative;
    border-radius: 5px;
    padding: var(--22px) 25px 4px 8px;
    background-color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--13px);
    color: var(--bleu-fonce);
    text-align: left;
    cursor: pointer;
}

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

[data-element="select"]::after {
    content: "";
    position: absolute;
    top: 48%;
    right: 0.75rem;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: var(--bleu-fonce);
    padding: 0.269rem;
    translate: 0 -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 {
    translate: 0;
    rotate: 225deg;
}

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

.selected.error {
    color: var(--rouge);
}

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

.custom-options {
    position: absolute;
    z-index: 1000;
    display: none;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    /*color-scheme: light dark;*/
    border-radius: 10px;
    max-height: 310px;
    background-color: Field;
    overflow: auto;
    -webkit-user-select: none;
    user-select: none;
    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: Field;
    color: FieldText;
    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;
}

.custom-options [data-element="option"][data-disabled] {
    opacity: 0.7;
    cursor: default;
}

.custom-options [data-element="option"][data-disabled]:hover {
    background-color: #c8c8c8;
    color: #fff;
}

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

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

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

::placeholder {
    color: var(--gris-moyen);
}

textarea {
    resize: none;
}

.error::placeholder {
    color: var(--rouge);
}

.form-container {
    position: relative;
    margin-bottom: 10px;
    border: 1px solid var(--bleu-fonce);
}

.form-input {
    padding: var(--22px) 8px 4px;
    width: 100%;
    border: none;
    font-size: var(--14px);
}

.form-float-select {
    background: none;
    appearance: none;
}

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

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

.custom-options [data-element="option"][data-disabled] {
    opacity: 1;
    color: #223654b3;
}

.custom-options [data-element="option"][data-complet]::after {
    content: "(Complet\00A0!)";
    color: var(--rouge);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-container.error {
    border: 2px solid var(--rouge);
}

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

.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: var(--rouge);
    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: var(--rouge);
    font-weight: 600;
    vertical-align: 0.375em;
}

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

.consent-container {
    color: var(--bleu-fonce);
}

.consent-container label {
    display: block;
    position: relative;
    margin-bottom: 12px;
    padding-left: 24px;
    text-align: left;
    font-size: var(--13px);
    line-height: 1.3;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.consent-container label input {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid var(--bleu-fonce);
    transform: translateY(-50%);
}

.consent-container label input:checked ~ .checkmark {
    border: 1px solid var(--bleu);
    background-color: var(--bleu);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.consent-container label input:checked ~ .checkmark:after {
    display: block;
}

.consent-container label .checkmark:after {
    --checkbox-stroke: 2px;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 var(--checkbox-stroke) var(--checkbox-stroke) 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

input[type="Submit"] {
    -webkit-appearance: none;
    appearance: none;
    margin: 0 auto;
    border: none;
    border-radius: 0;
    padding: 0.5rem;
    min-width: 15rem;
    width: fit-content;
    background-color: var(--bleu-piv);
    font-size: var(--22px);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

input[type="Submit"]:hover {
    background-color: var(--bleu)
}

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

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

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

/*====================[ Page vidéo ]====================*/
.titre {
    margin: 2.375rem 0 3.5rem;
    padding: 2.875rem 0;
    background-color: var(--bleu-fonce);
    font-size: var(--22px);
    color: #fff;
    font-weight: 400;
}

.titre-image span {
    font-weight: 700;
}

.titre-image div {
    display: inline;
}

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

.titre-image h2 {
    margin-top: 20px;
    font-size: var(--36px);
    font-weight: 700;
}

.bg_player {
    display: flex;
}

/*==========[ Video player ]==========*/
.contenu-player {
    width: 60%;
}

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

.play-button {
    position: absolute;
    inset: 20px auto auto 20px;
    width: 40px;
    height: 40px;
    background: url(icone_unmute.png) no-repeat;
    background-size: 40px;
    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: grid;
    gap: 1rem;
    margin-top: 1rem;
}

#video-btns-container {
    grid-template-columns: repeat(4, 1fr);
}

#video-btnsTrad-container {
    grid-template-columns: repeat(2, 1fr);
}

.video-btns-container a {
    border: 2px solid var(--bleu-piv);
    padding: 0.5rem 0;
    color: var(--bleu-piv);
    font-size: var(--21px);
    font-weight: 700;
    text-align: center;
}

.video-btns-container a:hover {
    border-color: var(--bleu);
    background-color: var(--bleu-pale);
    color: var(--bleu);
}

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

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

.tab {
    display: flex;
}

.tab button {
    border: none;
    border-bottom: 1px solid var(--gris-clair);
    padding: 1rem 0.375rem;
    width: 100%;
    background-color: #fff;
    font-family: inherit;
    font-size: var(--19px);
    color: var(--bleu-fonce);
    font-weight: 700;
    transition: 0.2s ease;
    cursor: pointer;
}

.tab button:not(.active):hover {
    box-shadow: inset 0 -3px 0 var(--gris-pale);
}

.tab button.active {
    border-bottom: 1px solid var(--bleu-piv);
    box-shadow: inset 0 -3px 0 var(--bleu-piv);
    cursor: default;
}

.tabcontent {
    padding-top: 0.625rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--gris-moyen);
}

.tabcontent textarea,
.succes,
.info {
    border: none;
    padding: 1rem;
    min-height: 225px;
    width: 100%;
    background-color: unset;
    font-size: var(--18px);
}

.tabcontent input[type="submit"] {
    display: block;
    margin-left: auto;
    margin-right: 0;
}

.succes {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--bleu-fonce);
    text-align: center;
}

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

.succes a.btn-main {
    display: inline-block;
    margin: 0 auto 0.625rem;
    padding: 0.5rem 0.875rem;
    width: fit-content;
    background-color: var(--bleu-piv);
    font-size: var(--22px);
    color: #fff;
    font-weight: 600;
}

.succes a.btn-main:hover {
    background-color: var(--bleu);
}

.load {
    list-style-type: none;
}

.load a {
    font-size: var(--16px);
    color: inherit;
}

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

h3.video-activite {
    margin: 1rem 0;
    font-size: var(--25px);
    font-weight: 700;
}

.liens-zoom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.liens-zoom a {
    border: 2px solid var(--bleu-piv);
    padding: 0.5rem 0;
    color: var(--bleu-piv);
    font-size: var(--21px);
    font-weight: 700;
    text-align: center;
}

.liens-zoom a:hover {
    border-color: var(--bleu);
    background-color: var(--bleu-pale);
    color: var(--bleu);
}

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

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

.schedule-container {
    margin: 3.125rem 0 5rem;
}

.schedule-container h1 {
    margin-bottom: 2.5rem;
    font-size: var(--52px);
    color: var(--bleu-fonce);
    font-weight: 700;
    text-align: center;
}

.event-block,
.accordion-block {
    margin-bottom: 0.625rem;
    padding: 1.875rem 3.75rem;
    font-size: var(--24px);
    color: #fff;
    line-height: 1.2;
    text-align: center;
    text-wrap-style: balance;
}

:is(.event-block, .accordion-block) span {
    font-weight: 700;
}

.event-block[type="button"] {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
}

.event-block[type="button"]::after {
    position: absolute;
    content: "+";
    top: 50%;
    right: 1.625rem;
    color: #fff;
    font-size: var(--32px);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.schedule-container > .event-block:nth-child(-n + 3),
.schedule-container .event-block:last-child {
    background-color: var(--bleu-clair)
}

.event-block.break {
    background-color: var(--gris-pale);
    color: var(--bleu-fonce);
}

.accordion-block {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    background-color: var(--bleu-moyen);
}

.accordion-block::after {
    position: absolute;

    content: "";
    top: 48%;
    right: 1.875rem;
    border-style: solid;
    border-width: 0 0.188rem 0.188rem 0;
    border-color: #fff;
    padding: 0.456rem;
    -webkit-transform: translateY(0%) rotate(225deg) scale(0.9);
    transform: translateY(0%) rotate(225deg) scale(0.9);
    transition: 0.2s ease all;
}

.accordion-block.collapsed::after {
    -webkit-transform: translateY(-50%) rotate(45deg) scale(0.9);
    transform: translateY(-50%) rotate(45deg) scale(0.9);
}

.accordion-collapse {
    padding: 0.875rem 1.125rem 0.625rem;
    transition: 0.2s ease all;
}

.atelier-block {
    padding-top: 0.875rem;
}

.sessions h3,
.atelier-block h2 {
    margin-bottom: 0.5rem;
    font-size: var(--24px);
    font-weight: 700;
    text-align: center;
}

.conference-block {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 0.875rem;
}

.conference {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 1.125rem;
    min-height: 130px;
    background-color: var(--bleu-moyen);
    font-size: var(--16px);
    color: #fff;
    line-height: 1.3;
    font-weight: 500;
    transition: all 0.2s;
}

.conference:hover {
    background-color: var(--bleu-piv);
}

:is(.conference, .atelier)::after {
    content: "+";
    margin-left: 1.125rem;
    font-size: var(--26px);
    font-weight: 600;
}

.conference > span {
    width: 100%;
    text-wrap-style: balance;
}

.conference span span {
    display: block;
    font-weight: 700;
}

.atelier {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--gris-clair);
    padding: 0.375rem 1.125rem 0.375rem 0;
    font-size: var(--16px);
    font-weight: 600;
    line-height: 1.2;
    transition: all 0.2s;
}

.atelier:hover {
    background-color: var(--gris-pale);
    color: var(--bleu-piv);
}

.atelier:last-child {
    border-bottom: 1px solid var(--gris-clair);
}

.atelier span {
    width: 100%;
}

.modal.fade {
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.15s;
}

.modal.fade.show {
    transform: scale(1);
    opacity: 1;
}

.modal.fade .modal-dialog {
    transform: unset;
}

.modal-backdrop.fade {
    transition: all 0.15s;
}

.modal-content {
    border-radius: unset;
    padding-bottom: 2.625rem;
    min-height: 80vh;
    color: var(--bleu-fonce);
}

.modal-header {
    border: none;
    padding: 1.75rem 1.5rem 1rem;
}

.modal-header .btn-close:hover {
    background-color: var(--gris-pale);
}

.modal-body {
    padding: 0 2.625rem;
}

.modal-body h1 {
    font-size: var(--26px);
    font-weight: 700;
    text-wrap-style: balance;
}

.modal-body h1::after {
    content: "";
    display: block;
    margin: 0;
    width: 3rem;
    padding-top: 0.25rem;
    border-bottom: 0.25rem solid var(--rose);
}

.modal-body div {
    margin-top: 1.375rem;
}

.modal-body h4 {
    margin-bottom: 0.5rem;
    font-size: var(--22px);
    font-weight: 700;
}

.modal-body .partie {
    display: block;
    font-size: var(--20px);
    font-weight: 600;
    font-style: italic;
}

.modal-body .speakers .bio + hr + .partie + p {
    margin-top: 0;
}

.modal-body a {
    color: var(--bleu-piv);
    text-decoration: underline;
}

.modal-body a:hover {
    text-decoration: none;
}

.modal-body a::after {
    display: inline-block;
    margin-left: 4px;
    width: 14px;
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 29.207 29.608'><path fill='%23095797' d='M23.079 12.714a1.145 1.145 0 0 0-1.145 1.145v13.458H2.292v-20.1h13.057a1.146 1.146 0 1 0 0-2.291H.001v24.683h24.225v-15.75a1.146 1.146 0 0 0-1.147-1.145Z'/><path fill='%23095797' d='M18.784 0a1.146 1.146 0 0 0 0 2.291h6.533l-14.019 14.17a1.146 1.146 0 0 0 1.629 1.611l13.989-14.14v6.377a1.146 1.146 0 0 0 2.291 0V0Z'/></svg>");
}

.modal-body :is(p, ul li, ol li) {
    font-size: var(--18px);
    font-weight: 500;
    line-height: 1.5;
}

.modal-body :is(p, ul, ol) + p,
.modal-body .speakers p:not(:first-of-type) {
    margin-top: 0.75rem;
}

.modal-body :is(ul, ol) {
    margin-top: 0.375rem;
    margin-left: 1.5rem;
}

.modal-body ol {
    list-style-type: none;
}

.modal-body ol li {
    counter-increment: my-counter;
}

.modal-body ol li::before {
    content: counter(my-counter) " \2013  ";
    font-weight: bold;
}

.modal-body ul li::marker {
    font-size: var(--12px);
}

.modal-body .description i {
    font-size: var(--16px);
}

.modal-body .speakers img {
    margin-bottom: 0.6rem;
    width: 8.125rem;
}

.modal-body .speakers p {
    font-weight: 700;
}

.modal-body .speakers .bio {
    margin-top: 0.75rem;
    display: block;
    font-size: 0.9rem;
}

.modal-body .speakers .bio p {
    font-size: 1em;
    font-weight: inherit;
}

.modal-body .speakers .bio p:not(:first-child) {
    margin-top: 0.5rem;
}

.modal-body .speakers .bio a {
    display: block;
}

.modal-body .speakers .bio a::after {
    width: 0.75rem;
}

#conferenceB4 .bio a {
    display: inline-block;
}

/* ===============================[ BAS DE PAGE ]=============================== */
.bg-soutien {
    background-color: var(--bleu-fonce);
}

.soutien {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    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: #fff;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

.soutien a:hover,
.soutien a:hover .icon {
    color: var(--gris);
}

.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: var(--bleu-fonce);
}

.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: var(--bleu-fonce);
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: var(--13px);
    color: #fff;
    text-align: center;
}

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

/* ===============================[ Responsive ]=============================== */
@media (max-width: 1450px) and (min-width: 1180px) {
    #video-btns-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .liens-zoom {
        grid-template-columns: repeat(2, 1fr);
    }
}

@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 {
        display: flex;
        gap: 16px;
        margin: 1.25rem 0;
        justify-content: center;
    }

    .titre-accueil::before {
        content: url("titre_meq_20251024_petit.svg");
        width: 64px;
        flex-shrink: 0;
    }

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

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

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

    .bg_player {
        flex-direction: column;
    }

    .contenu-player {
        width: 100%;
    }

    .onglet {
        margin-top: 2.5rem;
        padding-left: 0;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .conference-block {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    #video-btns-container {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 780px) {
    header {
        margin-top: 10px;
    }

    header ul {
        justify-content: center;
    }

    .header {
        padding-top: 1.875rem;
    }

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

    .accueil {
        margin-top: unset;
    }

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

@media (max-width: 700px) {
    .conference-block {
        grid-template-columns: repeat(1, 1fr);
    }
}

@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;
    }

    .invalid {
        margin-bottom: 8px;
    }

    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%;
    }

    .liens-zoom {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-body a::after {
        width: 12px;
    }
}

@media (max-width: 395px) {
    #niveauTechnologie + [data-element="select"]:not(.has-value) {
        padding-top: 2.75rem;
    }
}

@media (max-width: 376px) {
    #niveauTechnologie + [data-element="select"].has-value {
        padding-top: 2.55rem;
    }
}

@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;
    }

    .soutien {
        flex-direction: column;
    }
}
