/* =====[ VARIABLES CSS / COULEURS ]========================================== */

:root {
    --saumon: #f26d5f;
    --bleu-fonce: #1a425a;
    --vert-pale: #7a9097;

    --orange: #F2822B;
    --bleu: #283583;
    --bleu-btn: #071d49;
    --bleu-btn-deconnexion: #10a2d0;
    --vert: #A5CD39;
    --gris-pale: #DAE6F0;
    --gris: #999999;
    --gris-onglet: #293b61;
}

/* =====[ GLOBAL STYLES ]========================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    z-index: 0;
    margin: 0;
    background-color: #fff;
    color: #000;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: var(--16px);
}

.countdown strong {
    font-weight: 500;
}

h1 {
    font-family: "Roboto";
}

a,
button,
input {
    -webkit-tap-highlight-color: transparent;
    transition: all 0.25s ease-in-out;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    margin: 0 auto;
    width: min(90%, 1550px);
}

/* ======[ SCROLL WATCHER ]================================== */

.scroll-watcher {
    position: fixed;
    z-index: 1000;
    height: 6px;
    width: 0%;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bleu);
}

@supports (animation-timeline: scroll()) {
    .scroll-watcher {
        animation: scroll-watcher linear;
        animation-timeline: scroll();
    }

    @keyframes scroll-watcher {
        to {
            width: 100%;
        }
    }
}

/* =====[ HEADER - UTILITY BAR ]================================================= */

header .utility-bar {
    display: flex;
    justify-content: flex-end;
    gap: var(--12pxrem);
    padding-top: 0.75rem;
}

header .utility-bar li {
    display: contents;
}

header .utility-bar a {
    color: var(--bleu);
    font-size: 32px;
    cursor: pointer;
}

header .utility-bar a.logout {
    color: var(--bleu-btn-deconnexion);
}

header .utility-bar a:hover {
    opacity: 0.75;
}

header .utility-bar a.logout:hover {
    opacity: 0.75;
}

/* =====[ HEADER - CLIENT-BANNER ]================================================= */

header .client-banner {
    padding-bottom: 1.5rem;
}

header .client-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .client-banner .logos a {
    display: contents;
}

header .client-banner .logos img {
    height: 6.5rem;
    width: 16.5rem;
}

/* =====[ HEADER - COUNTDOWN ]================================================= */

header .countdown {
    width: max(50%, min(425px, 100%));
}

header .countdown h2 {
    margin-bottom: 0.375rem;
    font-size: var(--22px);
    font-weight: 400;
}

header .countdown ul {
    --countdown-gap: 2.25rem;
    display: flex;
    gap: var(--countdown-gap);
}

header .countdown li {
    position: relative;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--13px);
    text-align: center;
    text-transform: capitalize;
}

header .countdown li span {
    position: relative;
    display: block;
    margin-top: var(--2pxrem);
    padding-block: var(--5pxrem);
    background-color: var(--gris-pale);
    font-size: var(--22px);
    color: #000;
    font-weight: 700;
}

header .countdown li:not(:last-child) span::after {
    content: ":";
    position: absolute;
    top: 50%;
    right: calc(var(--countdown-gap) * -1);
    width: var(--countdown-gap);
    font-family: 'Trebuchet MS', 'Segoe UI', 'Courier New', 'Open Sans', 'Roboto', 'Ubuntu', 'Noto Sans', 'Arial Rounded MT', system-ui, BlinkMacSystemFont, sans-serif;
    font-size: var(--22px);
    font-weight: 600;
    transform: translateY(-50%);
}

/* =====[ LOBBY ]================================================= */

.lobby {
    /*padding-block: 3rem;
    min-height: 700px;
    background-image: var(--background, none);
    background-repeat: no-repeat;*/


    padding-block: 4rem;    
    --bg-height: 900;
    --bg-width: 1924;
    --bg-min-height: 900px; 
    min-height: var(--bg-min-height);
    background-image: var(--background);
    background-size: auto max(var(--bg-min-height), 100%, calc(100vw / (var(--bg-width) / var(--bg-height))));
    background-position: top;
    background-repeat: no-repeat;
}

.lobby .container {
    display: flex;
    justify-content: space-between;
    gap: 8rem;
}

/* =====[ EVENT OVERVIEW ]================================================= */

.event-overview {
    padding-block: 2rem;
    color: var(--gris-pale);
}

.event-overview .datetime {
    font-size: var(--22px);
}

.event-overview h1 {
    margin-block: 3.5rem 4.5rem;
    font-size: var(--42px);
    width: 80%;
}

.event-overview img {
    width: 75%;
    height: auto;
}

.event-overview .title span {
    font-weight: 400;
}

.event-overview .credit {
    font-size: var(--18px);
    font-weight: 700;
}

/* =====[ EVENT FORM ]================================================= */

.event-form {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    height: fit-content;
    width: min(450px, 100%);
    color: var(--bleu);
    text-align: center;
    overflow: hidden;
}

/* =====[ EVENT FORM - NAV-TABS ]================================================= */

.event-form .nav-tabs {
    display: flex;
    transform: translateZ(0);
}

.event-form .nav-tabs button {
    appearance: none;
    flex: 1;
    outline: none;
    border: none;
    padding: 1rem 1.25rem;
    background-color: var(--bleu);
    color: #fff;
    font-family: inherit;
    font-size: var(--18px);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.event-form .nav-tabs button:not(:disabled, .active):hover {
    opacity: 0.75;
}

.event-form .nav-tabs button.active {
    background-color: #fff;
    color: var(--bleu);
    cursor: default;
}

.event-form .nav-tabs button:disabled {
    cursor: not-allowed;
}

/* =====[ EVENT FORM - MESSAGE + NAV-ITEM ]================================================= */

.event-form .message,
.event-form .nav-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    background-color: #fff;
    padding: 1.75rem 2rem;
    text-align: center;
}

.event-form .nav-item.hidden {
    display: none;
}

.event-form .message .not-available-maintext {
    font-size: var(--38px);
}

.event-form .message .not-available-subtext {
    font-size: var(--20px);
}

.event-form .message .icon {
    margin-block: 2rem;
    font-size: var(--56px);
}

.event-form .message .credentials-working,
.event-form .message .not-available-yet {
    margin-block: 0.5rem 0.75rem;
    font-size: var(--22px);
    font-weight: 500;
}

.event-form .message .datetime {
    margin-bottom: 0;
    font-size: var(--18px);
}

.event-form .nav-item h2 {
    margin-top: 0;
    font-size: var(--26px);
    line-height: 1.2;
    color: var(--bleu);
    font-weight: 300;
}

.event-form .nav-item h2 strong {
    display: block;
    font-size: var(--42px);
}

.event-form .nav-item input {
    outline: none;
    margin-bottom: 0.75rem;
    border: 1px solid #38A8F0;
    border-radius: 5px;
    padding: 0.7rem 0.5rem 0.6rem;
    width: 100%;
}

.event-form .nav-item input::placeholder {
    color: #000;
}

.event-form .nav-item textarea {
    outline: none;
    margin-bottom: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0.7rem 0.5rem 0.6rem;
    width: 100%;
    height: 80px;
    font-family: inherit;
    font-size: inherit;
}

.event-form .nav-item textarea::placeholder {
    color: #000;
}

.event-form .nav-item select {
    outline: none;
    background: #fff;
    color: #000;
    border: 1px solid #38A8F0;
    border-radius: 5px;
    margin-bottom: 0.75rem;
    padding: 0.7rem 0.5rem 0.6rem;
    width: 100%;
}

.event-form .nav-item select option {
    color: #000;
}


.event-form .nav-item .kicked,
.event-form .nav-item .error-message {
    margin-block: 0 0.75rem;
    font-size: var(--14px);
    color: #dc3545;
    text-wrap-style: pretty;
}

.event-form .nav-item .error::placeholder {
    color: #dc3545;
}

.event-form .nav-item .error{
    color: #dc3545;
}


.event-form .nav-item em {
    display: block;
    margin-block: 1.5rem 1.25rem;
    font-size: var(--12px);
    color: var(--bleu);
}

.event-form .nav-item .click-here {
    margin-bottom: 0.75rem;
    color: var(--bleu);
}

.event-form .nav-item .click-here a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.event-form .nav-item .click-here a:hover {
    opacity: 0.75;
}

.event-form .nav-item .form-label {
    align-self: flex-start;
    margin-top: -8px;
    text-align: left;
    font-size: var(--11px);
    color: var(--gris-onglet);
}

.event-form .nav-item input[type="submit"] {
    margin-block: 1rem 0;
    padding: 0.5rem 4rem;
    width: auto;
    background-color: var(--bleu);
    color: #fff;
    font-family: inherit;
    font-size: var(--20px);
    font-weight: 500;
    cursor: pointer;
    border-radius: 20px;
    border: none;
}

.event-form .nav-item input[type="submit"]:hover {
    opacity: 0.75;
}

#subscription-cocktail,
#subscription-alimentaire_autre,
#subscription-alimentaire {
    display: none;
}

/* =====[ EVENT FORM - ADD-CALENDAR ]================================================= */

.event-form .add-calendar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--10pxrem);
    padding: 0.6rem;
    width: 100%;
    background-color: var(--bleu);
    color: #fff;
    font-size: var(--14px);
    font-weight: 400;
}

.event-form .add-calendar .icon {
    font-size: var(--26px);
    transition: all 0.25s ease-in-out;
}

.event-form .add-calendar .icon:hover {
    opacity: 0.75;
}

/* =====[ PLAYBACK - EVENT-BANNER ]================================================= */

.playback .event-banner {
    padding-block: 2rem 1.25rem;
    color: #fff;
    background-image: var(--video-banner, none);
}

.playback .event-banner .datetime {
    font-size: var(--20px);
    font-weight: 300;
}

.playback .event-banner .date,
.playback .event-banner .time {
    display: inline-block;
}

.playback .event-banner .time {
    margin-left: 6rem;
}

.playback .datetime .datetime span {
    font-weight: 600;
}

.playback .event-banner h1 {
    margin-block: 0.5rem 0;
    font-size: var(--36px);
}

/* =====[ PLAYBACK - PLAYER ]================================================= */

.playback .event-banner + .container {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.playback .player {
    flex: 3;
    width: 100%;
}

.playback .player:only-child {
    margin: 0 auto;
    width: 100%;
    max-width: 918px;
}

.playback .player .jwplayer .jw-wrapper {
    background-color: unset;
}

.playback .player .jwplayer,
.playback .player .jw-video,
.playback .player .jw-preview,
.playback .player .jw-controls-backdrop,
.playback .player .jw-controls {
    border-radius: 10px;
}

.playback .player .play-button {
    position: absolute;
    inset: 1.25rem auto auto 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    background: url(/client/mapaq/lobbies/2026_api/assets/icone_unmute.png) no-repeat;
    background-size: 2.5rem;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.playback .player .play-button:hover {
    opacity: 1;
}

.playback .player .play-button.invisible {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* =====[ PLAYBACK - INTERACTIONS ]================================================= */

.playback .interactions {
    flex: 2;
    width: 100%;
    color: var(--bleu-fonce);
}

.playback .interactions .nav-tabs {
    display: flex;
    border: 1px solid var(--bleu);
    background-color: var(--bleu);
    overflow: hidden;
    transform: translateZ(0);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.playback .interactions .nav-tabs button {
    appearance: none;
    flex: 1;
    outline: none;
    border: none;
    padding: 1rem;
    background-color: #fff;
    color: var(--bleu);
    font-family: inherit;
    font-size: var(--18px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.playback .interactions .nav-tabs button:not(.active):hover {
    opacity: 0.9;
}

.playback .interactions .nav-tabs button.active {
    background-color: var(--bleu);
    color: #fff;
    cursor: default;
}

.playback .interactions .nav-item.hidden {
    display: none;
}

/* =====[ PLAYBACK - INTERACTIONS (COMMENT) ]================================================= */

.playback .interactions .comment textarea {
    outline: none;
    margin-top: 0.75rem;
    border: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 1rem;
    min-height: 14rem;
    width: 100%;
    background-color: var(--gris-pale);
    font-family: inherit;
    font-size: var(--16px);
    resize: none;
}

.playback .interactions .comment textarea.error::placeholder {
    color: #dc3545;
}

.playback .interactions .comment .comment-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.playback .interactions .comment .comment-controls p {
    margin: 0;
}

.playback .interactions .comment .comment-controls input[type="submit"] {
    display: block;
    padding: 0.5rem 4rem;
    width: auto;
    background-color: var(--bleu);
    color: #fff;
    font-family: inherit;
    font-size: var(--20px);
    font-weight: 500;
    border-radius: 20px;
    border: none;
    cursor: pointer;
}

.playback .interactions .comment .comment-controls input[type="submit"]:hover {
    opacity: 0.75;
}

.playback .interactions .comment .comment-controls .toast-container {
    position: fixed;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
}

.playback .interactions .comment .comment-controls .toast-notification {
    padding: 1rem;
    color: #fff;
    background-color: #198754;
    text-align: center;
    opacity: 0;
    transform: translateY(-40%);
    transition: all 0.4s ease-in-out;
}

.playback .interactions .comment .comment-controls .toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* =====[ PLAYBACK - INTERACTIONS (DOCUMENTS) ]================================================= */

.playback .interactions .documents {
    margin-top: 0.75rem;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 1rem;
    min-height: 14rem;
    background-color: #f4f4f4;
}

.playback .interactions .documents a {
    color: var(--bleu);
    font-size: var(--17px);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: var(--3pxrem);
    text-decoration-thickness: var(--2pxrem);
}

.playback .interactions .documents a:hover {
    opacity: 0.9;
}

.playback .interactions .documents span {
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
    font-size: var(--20px);
}

/* =====[ PLAYBACK - INTERACTIONS (slido) ]================================================= */

.playback .interactions .slido {
    height: 100%;
}

.playback .interactions .slido iframe {
    margin-top: 0.25rem;
    border: 1px solid #eee;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    height: 100%;
}

.playback .player .btn-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem 2rem;
}

.playback .player .btn-wrapper .stream-lang {
    margin-block: 1rem 0;
    padding: 0.5rem 4rem;
    width: auto;
    /*background-color: var(--bleu);
    color: #fff;
    border: none;*/
    background-color: #fff;
    color: var(--bleu);
    border: solid 2px var(--bleu);
    font-family: inherit;
    font-size: var(--20px);
    font-weight: 500;
    cursor: pointer;
    border-radius: 20px;
    text-align: center;
    width: 100%;
}

.playback .player .btn-wrapper .stream-lang:hover {
    /*opacity: 0.75;*/

    background-color: var(--bleu);
    color: #fff;
}

/* =====[ DETAILS ]================================================= */

.details {
    margin-block: 4rem 5rem;
    color: var(--bleu);
}

.details h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: var(--32px);
    color: var(--bleu);
    border-bottom: solid 2px #38A8F0;
}

.details .speakers {
    margin-bottom: 4rem;
}

.details .speakers .people {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
    align-items: start;
    margin-top: 55px;
}

.person {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.person p {
    margin: 0;
}

.details .speakers .image img {
    height: auto;
    width: 9rem;
    border-radius: 10px;
}

.details .speakers .person .name {
    font-size: var(--22px);
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: #10a2d0;
    text-transform: uppercase;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.speaker-btn {
    display: inline-block;
    background-color: var(--bleu-btn);
    color: white;
    padding: 10px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    width: 35%;
    align-self: center;
    cursor: pointer;
    margin-top: 14px;
    border: none;
}

.speaker-btn:hover {
    opacity: 0.75;
}

.details .speakers .expert-group .people{
    display: grid;
    grid-template-columns: 1fr 0fr;
    gap: 40px 0;
    align-items: start;
    margin-top: 55px;
}

.sondage-btn {
    display: inline-block;
    background-color: var(--bleu-btn);
    color: white;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    width: 100%;
    align-self: center;
    cursor: pointer;
    margin-top: 14px;
    border: none;
    text-align: center;
}

.sondage-btn:hover {
    opacity: 0.75;
}

.container-zoom-btn{
    display: flex;
    justify-content: center;
    width: 100%;
}

.zoom-btn {
    display: inline-block;
    background-color:white;
    color: var(--bleu);
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    align-self: center;
    cursor: pointer;
    margin-top: 14px;
    text-align: center;
    border: solid 2px var(--bleu);
}

.zoom-btn:hover {
    opacity: 0.75;
}

.details .speakers .person .organization {
    color: var(--bleu);
}

.details .speakers .person .title {
    margin: 0;
    font-size: var(--14px);
    line-height: 1.3;
}

.group-label {
    border-bottom: solid 2px var(--bleu-fonce);
    color: var(--bleu-fonce);
}

.description ul {
    list-style: disc;
    list-style-position: inside;
}

#dialog-conf-1 .modal-wrapper,
#dialog-conf-2 .modal-wrapper {
    width: min(50rem, 96%);
}

.modal-name {
    color: var(--bleu);
    font-size: 1.85rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.15;
    text-transform: uppercase;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.studiocast-dialog p.modal-title,
.studiocast-dialog h3.modal-name,
.studiocast-dialog p.modal-organization,
.studiocast-dialog p.modal-description {
    text-align: left;
}

.modal-title {
    padding-bottom: 0 !important;
}

.modal-organization {
    font-weight: bold;
    padding-block: 0 !important;
}

/* =====[ DETAILS ]================================================= */

.details {
    padding-top: 2rem;
}

.details h2 {
    margin: 2rem 0;
    padding: 0;
    color: #000;
    font-size: var(--32px);
    font-weight: 600;
    text-transform: uppercase;
}

.schedule {
    display: flex;
    flex-direction: column;
}

.schedule .accordion .header {
    position: relative;
}

.schedule .accordion .info-box {
    position: relative;
    display: grid;
    grid-template-columns: minmax(5.5rem, 1fr) auto minmax(5.5rem, 1fr);
    align-items: center;
    padding: 0.75rem 0;
    min-height: 9rem;
    background-color: #efefef;
}

.schedule > .accordion:nth-child(even) .info-box {
    background-color: #f9f9f9;
}

.schedule .info-box a {
    display: contents;
}

.schedule .info-box .title {
    grid-column: 2;
    font-size: var(--22px);
    text-align: center;
}

.schedule .info-box .title .datetime {
    font-weight: 700;
}

.schedule .info-box .title .datetime .date {
    font-weight: 400;
}

.schedule .info-box .title .datetime .date::after {
    content: "|";
    padding: 0 0.5rem;
}

.schedule .info-box .title .subject {
    color: #da1e10;
    font-weight: 700;
}

.schedule .info-box .title .subject span {
    font-weight: 400;
}

.schedule .info-box .title .speaker {
    color: #000;
    font-size: var(--18px);
}

.schedule .info-box .title .datetime,
.schedule .info-box .title .subject,
.schedule .info-box .title .speaker {
    line-height: 1.7;
}

.schedule .accordion .header .toggle {
    appearance: none;
    position: absolute;
    border: none;
    padding: 0;
    height: 100%;
    width: 100%;
    background: none;
    cursor: pointer;
}

.schedule .accordion .header.info-box .toggle::before,
.schedule .accordion .header.info-box .toggle::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
}

.schedule .accordion .header.info-box .toggle::before {
    border-radius: 5px;
    height: 2.5rem;
    width: 2.5rem;
    right: 1.5rem;
    background-color: #DC4533;
}

.schedule .accordion .header.info-box .toggle::after {
    height: 1.5rem;
    width: 1.5rem;
    right: 2rem;
    background-color: #fff;
    clip-path: polygon(0% 33%, 0% 23%, 10% 23%, 50% 62%, 90% 23%, 100% 23%, 100% 33%, 54% 78%, 46% 78%);
    transition: 0.2s ease transform;
}

.schedule .accordion .header.info-box .toggle[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
}

.schedule .accordion .body {
    overflow: hidden;
    height: 0;
    background-color: #fff;
    transition: height 0.25s ease;
}

.schedule .accordion .body .wrapper {
    padding: 3rem 4rem;
}

.schedule .accordion .body .wrapper h3 {
    font-size: var(--18px);
}

.schedule .accordion .body .wrapper .goals {
    font-size: var(--17px);
    font-weight: 500;
}

.schedule .accordion .body .wrapper .goals li {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.7;
}

.schedule .accordion .body .wrapper .goals li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 1.4;
}

.schedule .accordion .body .wrapper .goals li li::before {
    content: "\25e6";
    font-size: 24px;
    line-height: 1.1;
}

.schedule .accordion .info-box + .body > .wrapper > ul + p {
    margin-top: 1.5rem;
}

.schedule .accordion .info-box + .body > .wrapper > p {
    margin: var(--10pxrem) 0;
    font-size: var(--17px);
    line-height: 1.6;
}

.schedule .accordion .body .wrapper h4 {
    font-size: var(--18px);
    font-weight: 400;
}

.schedule .person {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "image ."
        "image name"
        "image title"
        "image organization"
        "image ."
        "bio bio";
    column-gap: 2rem;
}

.schedule .person .image {
    grid-area: image;
    display: flex;
}

.schedule .person .image img {
    border: 1px solid #818a8f;
    border-radius: 5rem;
    height: 10rem;
    width: auto;
}

.schedule .person .name {
    grid-area: name;
    color: #da1e10;
    font-size: var(--22px);
    font-weight: 700;
    line-height: 1.7;
}

.schedule .person .title {
    grid-area: title;
}

.schedule .person .organization {
    grid-area: organization;
}

.schedule .person .title,
.schedule .person .organization {
    font-size: var(--17px);
    font-weight: 500;
    line-height: 1.4;
}

.schedule .person .bio {
    grid-area: bio;
}

.schedule .person .accordion {
    display: grid;
}

.schedule .person .accordion .header {
    display: flex;
    justify-self: flex-end;
    min-height: unset;
    background: none;
    color: #da1e10;
}

.schedule .person .header .title {
    grid-column: 1;
    margin-right: 1rem;
    font-size: var(--18px);
    font-weight: 600;
    display: flex;
}

.schedule .person .accordion .header .title::before {
    content: "Voir\00A0";
}

.schedule .person .accordion.open .header .title::before {
    content: "Masquer\00A0";
}

.schedule .person .header .toggle {
    --accordion-toggle-length: var(--16pxrem);
    --accordion-toggle-weight: var(--3pxrem);
    appearance: none;
    position: absolute;
    border: none;
    padding: 0;
    height: 100%;
    width: 100%;
    background: none;
    cursor: pointer;
}

.schedule .person .header .toggle::before,
.schedule .person .header .toggle::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: 0;
    background-color: #DC4533;
    transition: .25s all ease-in-out;
    transform: translateX(50%) translateY(-50%);
}

.schedule .person .header .toggle::before {
    width: var(--accordion-toggle-weight);
    height: var(--accordion-toggle-length);
}

.schedule .person .header .toggle::after {
    width: var(--accordion-toggle-length);
    height: var(--accordion-toggle-weight);
}

.schedule .person .header .toggle[aria-expanded="true"]::before {
    transform: translateX(50%) translateY(-50%) rotate(90deg);
}

.schedule .person .header .toggle[aria-expanded="true"]::after {
    transform: translateX(50%) translateY(-50%) rotate(180deg);
}

.schedule .person .accordion .body .wrapper {
    padding: 0;
    font-size: var(--17px);
    line-height: 1.4;
}

.schedule .accordion .info-box + .body .conferencier-partenaire {
    margin: 0 auto;
    width: fit-content;
}

.schedule .accordion .info-box + .body .conferencier-partenaire a {
    display: contents;
}

.schedule .accordion .info-box + .body .conferencier-partenaire img {
    height: max(2.5rem, min(12vw, 8rem));
    width: auto;
}

/* =====[ FOOTER - SUPPORTS + LEGAL ]================================================= */

footer {
    font-family: Arial, Helvetica, sans-serif;
}

footer .supports {
    background-color: var(--gris-pale);
}

footer .supports ul {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    padding: 1.25rem 0;
    max-width: 600px;
    text-align: center;
}

footer .supports li {
    flex: 1;
    padding: 1.563rem 0;
    font-size: var(--13px);
}

footer .supports a {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

footer .supports figure {
    margin: 0;
    width: fit-content;
}

footer .supports .icon {
    font-size: var(--50px);
}

footer .supports figcaption {
    margin-top: 0.5rem;
}

footer .supports .icon,
footer .supports figcaption {
    color: var(--bleu);
    transition: all 0.25s ease-in-out;
}

footer .supports a:hover .icon,
footer .supports a:hover figcaption {
    opacity: 0.75;
}

footer .legal {
    padding: 1.5rem 0;
    background-color: var(--bleu);
    font-size: var(--13px);
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 1020px) {

    .lobby .container,
    .playback .event-banner + .container {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 880px) {
    .details .speakers .people {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 780px) {
    header .client-banner .container {
        flex-direction: column;
    }

    header .countdown {
        text-align: center;
    }

    .lobby .container {
        gap: 0;
    }
}

@media screen and (max-width: 575px) {
    header .utility-bar {
        justify-content: center;
    }

    header .utility-bar a {
        font-size: 36px;
    }

    .event-form form h2 {
        font-size: 1.75rem;
    }

    .event-form form h2 strong {
        font-size: 2.75rem;
    }

    .lobby .container {
        gap: 0;
    }
}

@media screen and (max-width: 500px) {

    .playback .event-banner .date,
    .playback .event-banner .time {
        display: block;
    }

    .playback .event-banner .time {
        margin: 0;
    }

    header .client-banner .logos img {
        margin-top: 20px;
    }

    .lobby .container {
        gap: 0;
    }

    .playback .player .btn-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .playback .player .btn-wrapper .stream-lang {
        width: 100%;
    }
}

@media screen and (max-width: 460px) {
    main .lobby .container {
        width: 100%;
    }

    .event-overview {
        width: 90%;
    }

    .event-form {
        border-radius: 0;
    }
}

@media screen and (max-width: 390px) {
    header .countdown ul {
        --countdown-gap: 16px;
    }

    header .countdown li:not(:last-child) span::after {
        content: "";
    }

    .playback .interactions .comment .comment-controls {
        display: block;
    }

    .playback .interactions .comment .comment-controls input[type="submit"] {
        margin: 0.5rem 0;
        width: 100%;
    }

    .details .speakers .image img {
        width: 7rem;
    }
}
