/* =====[ GLOBAL STYLES ]========================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    z-index: 0;
    margin: 0;
    background-color: #fff;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--16px);
    text-wrap-style: pretty;
}

a,
button,
input,
[icon] {
    -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: #3d5aa4;
}

@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;
    color: #3d5aa4;
}

header .utility-bar li {
    display: contents;
}

header .utility-bar a {
    font-size: 38px;
    cursor: pointer;
}

header .utility-bar a.logout {
    color: #13beee;
}

header .utility-bar a:hover {
    opacity: 0.75;
}

header .utility-bar a.logout:hover {
    opacity: 0.75;
}

/* =====[ HEADER - CLIENT-BANNER ]================================================= */

header .client-banner {
    padding-block: 1rem 1.5rem;
}

header .client-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .client-banner .logos {
    display: contents;
}

header .client-banner .logos img {
    margin-top: auto;
    height: 5.25rem;
    width: auto;
}

/* =====[ HEADER - COUNTDOWN ]================================================= */

header .countdown {
    width: max(50%, min(425px, 100%));
}

header .countdown h2 {
    margin-bottom: 0.375rem;
    font-size: var(--20px);
    font-weight: 400;
    color: #435469;
}

header .countdown h2 strong {
    font-weight: 800;
}

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: #f4f4f4;
    font-size: var(--22px);
    color: #000;
    font-weight: 800;
}

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: 4rem;
    min-height: 900px;
    background-image: var(--background);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lobby .container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

/* =====[ EVENT OVERVIEW ]================================================= */

.event-overview .datetime {
    font-size: var(--22px);
    color: #fff;
}

.event-overview .datetime span {
    font-weight: 800;
}

.event-overview h1 {
    margin-block: 1rem 0;
    width: min(850px, 95%);
    color: #fff;
    font-size: var(--52px);
    font-weight: 800;
    line-height: 1.2;
    text-wrap-style: balance;
}

.event-overview h2 {
    margin-block: 2rem 0;
    font-size: var(--40px);
    font-weight: 400;
    color: #fff;
}

.event-overview h2 sup {
    font-size: 0.6em;
}

.event-overview .date-buttons {
    display: inline-flex;
    margin-block: 2rem;
    border-radius: 50px;
    border: 1px solid #fff;
    overflow: hidden;
}

.event-overview .date-buttons a {
    align-content: center;
    padding: 0.25rem 2.5rem;
    color: #fff;
    font-size: var(--26px);
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    user-select: none;
    transition-duration: 0.15s;
}

.event-overview .date-buttons a.active {
    background-color: #fff;
    color: #f4653c;
    font-weight: 800;
    cursor: default;
}

.event-overview .date-buttons a:hover:not(.active) {
    background-color: #13beee;
}

/* =====[ EVENT FORM ]================================================= */

.event-form {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    height: fit-content;
    width: min(450px, 100%);
    text-align: center;
    overflow: hidden;
}

/* =====[ EVENT FORM - NAV-TABS ]================================================= */

.event-form .nav-tabs {
    display: flex;
    background-color: #fff;
    transform: translateZ(0);
}

.event-form .nav-tabs button {
    appearance: none;
    flex: 1;
    outline: none;
    border: none;
    padding: 1rem 1.25rem;
    background-color: #A1E5F8;
    color: #fff;
    font-family: inherit;
    font-size: var(--20px);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition-property: background-color;
}

.event-form .nav-tabs button:not(:disabled, .active):hover {
    background-color: #13beee;
}

.event-form .nav-tabs button.active {
    background-color: #fff;
    color: #3d5aa4;
    font-weight: 800;
    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;
    padding: 1.75rem 2rem;
    min-height: 400px;
    background-color: #fff;
    color: #435469;
    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-block: 0 2rem;
    font-size: var(--18px);
    line-height: 1.25;
    font-weight: 500;
    color: #13beee;
}

.event-form .nav-item h2 strong {
    display: block;
    font-size: var(--50px);
    font-weight: 900;
    color: #3d5aa4;
}

.event-form .nav-item input {
    outline: none;
    margin-bottom: 0.75rem;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 0.6rem 0.5rem;
    width: 100%;
    font-size: var(--14px);
}

.event-form .nav-item input::placeholder {
    color: #999;
}

.event-form .nav-item select {
    outline: none;
    margin-bottom: 0.75rem;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 0.6rem 0.5rem;
    width: 100%;
    background-color: #fff;
    color: #999;
    font-size: var(--14px);
}

.event-form .nav-item select.has-value,
.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,
.event-form .nav-item .error {
    color: #dc3545;
}

.event-form .nav-item em {
    display: block;
    margin-bottom: 1.25rem;
    font-size: var(--12px);
}

.event-form .nav-item .checkbox-wrapper {
    order: 1;
    display: flex;
    width: 100%;
    font-size: var(--13px);
}

.event-form .nav-item .checkbox-wrapper input[type="checkbox"] {
    flex-shrink: 0;
    margin: 0;
    margin-right: 0.75rem;
    height: 1em;
    width: 1em;
    accent-color: #3d5aa4;
    font-size: calc(1em * 1.25);
}

.event-form .nav-item .checkbox-wrapper label {
    text-align: left;
}

.event-form .nav-item .click-here {
    margin-bottom: 0.5rem;
    font-size: var(--18px);
    line-height: 1.5;
}

.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 input[type="submit"] {
    margin-block: 1.6rem 0;
    padding: 0.6rem 4rem;
    width: auto;
    background-color: #13beee;
    color: #fff;
    font-family: inherit;
    font-size: var(--20px);
    font-weight: 800;
    cursor: pointer;
    border-radius: 50px;
    order: 1;
}

.event-form .nav-item input[type="submit"]:hover {
    opacity: 0.75;
}

/* =====[ 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: #3d5aa4;
    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 {
    margin-bottom: 10rem;
}

.playback .event-banner {
    padding-block: 2rem 1.75rem;
    color: #fff;
    background-image: var(--video-banner, none);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.playback .event-banner .datetime {
    font-size: var(--20px);
    font-weight: 300;
}

.playback .event-banner .datetime span {
    font-weight: 800;
}

.playback .event-banner .date,
.playback .event-banner .time {
    display: inline-block;
}

.playback .event-banner .date {
    margin-right: 3rem;
}

.playback .datetime .datetime span {
    font-weight: 600;
}

.playback .event-banner h1 {
    margin-block: 0.5rem 0;
    font-size: var(--34px);
    font-weight: 800;
    line-height: 1.2;
    text-wrap-style: balance;
}

/* =====[ 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/sqetgc/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 .player .btn-wrapper {
    display: flex;
    justify-content: space-between;
    row-gap: 1rem;
    margin-top: 1.5rem;
}

.playback .player .btn-wrapper .atelier {
    border-radius: 50px;
    padding: 0.5rem 0;
    flex-basis: 22%;
    background-color: #3d5aa4;
    color: #fff;
    font-size: var(--20px);
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.25s ease-in-out;
}

.playback .player .btn-wrapper .atelier:hover,
.playback .player .btn-wrapper .atelier.active2 {
    opacity: 0.75;
}

.isDisabled {
	color: currentColor;
	cursor: not-allowed;
	pointer-events: none;
	opacity: 0.5;
	text-decoration: none;
}

/* =====[ PLAYBACK - INTERACTIONS ]================================================= */

.playback .interactions {
    flex: 2;
    width: 100%;
    color: #435469;
}

.playback .interactions .nav-tabs {
    display: flex;
    border: 1px solid #3d5aa4;
    background-color: #3d5aa4;
    overflow: hidden;
    transform: translateZ(0);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.playback .interactions .nav-tabs button {
    appearance: none;
    flex: 1;
    outline: none;
    border: none;
    padding: 1rem;
    background-color: #fff;
    color: #3d5aa4;
    font-family: inherit;
    font-size: var(--18px);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
}

.playback .interactions .nav-tabs button:not(.active):hover {
    opacity: 0.9;
}

.playback .interactions .nav-tabs button.active {
    background-color: #3d5aa4;
    color: #fff;
    cursor: default;
}

.playback .container .interactions .nav-item.hidden {
    display: none;
}

/* =====[ PLAYBACK - INTERACTIONS (slido) ]================================================= */

.playback .interactions .slido {
    height: 100%;
}

.playback .interactions .slido iframe {
    margin-top: 0.25rem;
    border: 1px solid #eee;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 100%;
}

/* =====[ PLAYBACK - INTERACTIONS (COMMENT) ]================================================= */

.playback .interactions .nav-item.comment {
    position: relative;
    display: flex;
}

.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: #f4f4f4;
    font-family: inherit;
    font-size: var(--16px);
    resize: none;
}

.playback .interactions .comment textarea::placeholder {
    color: #999;
}

.playback .interactions .comment textarea.error::placeholder {
    color: #dc3545;
}

.playback .interactions .comment .comment-controls {
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0;
    padding: 0 1rem 0.6rem;
    width: 100%;
    bottom: 0;
}

.playback .interactions .comment .comment-controls p {
    margin: 0;
    padding: 0;
    color: #bbb;
    font-size: var(--13px);
    -webkit-user-select: none;
    user-select: none;
}

.playback .interactions .comment .comment-controls .send-icon {
    background-color: #3d5aa4;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
}

.playback .interactions .comment .comment-controls .send-icon: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: #3d5aa4;
    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 (SONDAGE) ]================================================= */

.playback .interactions .sondage-btn {
    display: inline-block;
    margin-top: 1.25rem;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1rem;
    width: 100%;
    background-color: #13beee;
    color: #fff;
    font-size: var(--20px);
    font-weight: 800;
    text-align: center;
    cursor: pointer;
}

.playback .interactions .sondage-btn:hover {
    opacity: 0.75;
}

.wallio-btn {
    display: inline-block;
    margin-top: 1.25rem;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1rem;
  
    background-color: #F4653C;
    color: #fff;
    font-size: var(--20px);
    font-weight: 800;
    text-align: center;
    cursor: pointer;
}

.wall-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wallio-btn:hover {
    opacity: 0.75;
}

.wallio-btn-ancre {
    display: inline-block;
    /* margin-top: 1.25rem; */
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1rem;
    width: 100%;
    background-color: #F4653C;
    color: #fff;
    font-size: var(--20px);
    font-weight: 800;
    text-align: center;
    cursor: pointer;
}


.wallio-btn-ancre:hover {
    opacity: 0.75;
}

.container-btn-wallio {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}


.box-mur {
    position: relative;
    background-color: #F4653C;
    color: #fff;
    display: grid;
    grid-template-columns: minmax(5.5rem, 1fr) auto minmax(5.5rem, 1fr);
    align-items: center;
    margin-top: 0.75rem;
    min-height: 7.5rem;
}

.box-mur .title {
    grid-column: 2;
    font-size: var(--24px);
    font-weight: 700;
    text-align: center;
}

.evaluation_link{
    text-decoration: underline;
    position: relative;
    z-index: 1;
}

.evaluation_link:hover {
    opacity: 0.75;
}


/* =====[ DETAILS ]================================================= */

.details {
    margin-block: 3rem 4rem;
    color: #435469;
}

.details h2 {
    margin: 0;
    font-size: var(--32px);
    font-weight: 800;
    text-align: center;
}

.schedule {
    display: flex;
    flex-direction: column;
    row-gap: 0.75rem;
    margin-top: 2rem;
}

.schedule .btn-horaire {
    display: flex;
    border-bottom: var(--4pxrem) solid #13beee;
}

.schedule .btn-horaire a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    padding: 0.75rem;
    color: #13beee;
    font-size: var(--28px);
    font-weight: 800;
    text-align: center;
}

.schedule .btn-horaire a.active {
    background-color: #13beee;
    color: #fff;
}

.schedule .btn-horaire a:not(.active):hover {
    background-color: #f1f2f0;
}

.schedule .info-box {
    display: grid;
    grid-template-columns: minmax(5.5rem, 1fr) auto minmax(5.5rem, 1fr);
    align-items: center;
    padding-block: 0.75rem;
    min-height: 7.5rem;
    background-color: #f2f1f0;
}

.schedule .info-box .icon {
    z-index: 1;
    margin-left: 2.25rem;
    color: #fff;
    font-size: var(--64px);
}

.schedule .info-box .icon:hover {
    opacity: 0.75;
}

.schedule .info-box .title {
    grid-column: 2;
    font-size: var(--24px);
    text-align: center;
}

.schedule .info-box .title .datetime {
    margin-bottom: var(--2pxrem);
    font-weight: 800;
}

.schedule .segment .info-box {
    position: relative;
    background-color: #3d5aa4;
    color: #fff;
}

.schedule .segment .info-box .toggle {
    appearance: none;
    position: absolute;
    border: none;
    padding: 0;
    height: 100%;
    width: 100%;
    background: none;
    cursor: pointer;
}

.schedule .segment .info-box .toggle::before,
.schedule .segment .info-box .toggle::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: 1.75rem;
}

.schedule .modal .info-box .toggle::before,
.schedule .modal .info-box .toggle::after {
    background-color: #fff;
    transform: translateX(50%) translateY(-50%);
}

.schedule .modal .info-box .toggle::before {
    width: var(--3pxrem);
    height: 1rem;
}

.schedule .modal .info-box .toggle::after {
    width: 1rem;
    height: var(--3pxrem);
}

.schedule .accordion .header .toggle::before {
    height: 1.5rem;
    width: 1.5rem;
    right: 1.25rem;
    background-color: #fff;
    clip-path: polygon(0% 33%, 0% 23%, 10% 23%, 50% 62%, 90% 23%, 100% 23%, 100% 33%, 54% 78%, 46% 78%);
    transform: translateY(-50%);
    transition: 0.2s ease transform;
}

.schedule .accordion .header .toggle[aria-expanded="true"]::before {
    transform: translateY(-50%) rotate(180deg);
}

.schedule .modal .modal-wrapper {
    width: min(70rem, 96%);
}


/* ==================== MODAL SPEAKERS ==================== */
.schedule .modal .modal-content {
    max-width: 100%;
    margin: 0 auto;
}

.schedule .modal .modal-content .speaker,
.schedule .modal .modal-content > img {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.schedule .modal .modal-content img {
    width: 130px;
    flex-shrink: 0;
}

.schedule .modal .modal-content .speaker-info {
    flex: 1;
    align-self: flex-end;
}

.schedule .modal .modal-content .modal-name {
    font-size: var(--24px);
    font-weight: 800;
    margin: 0 0 0.25rem;
    color: #3d5aa4;
    text-wrap: auto;
}

.schedule .modal .modal-content h3 {
    text-align: left !important;
}

.schedule .modal .modal-content .modal-title {
    font-size: var(--14px);
    color: #444;
    margin: 0;
}

.schedule .modal .modal-content .modal-organization {
    font-size: var(--14px);
    color: #444;
    margin: 0;
    font-weight: 700;
}

.schedule .modal .modal-content .modal-description {
    font-size: var(--14px);
    line-height: 1.65;
    color: #333;
    margin-bottom: 1.25rem;
}

@media (max-width: 640px) {

    .schedule .modal .modal-content > img,
    .schedule .modal .modal-content .speaker {
        flex-direction: column;
        gap: 1rem;
    }

    .schedule .modal .modal-content img {
        width: 120px;
    }

    .schedule .modal .modal-content .speaker-info {
        align-self: flex-start;
    }
}

.schedule .accordion .body {
    overflow: hidden;
    height: 0;
    transition: height 0.25s ease;
}

.schedule .accordion .body .wrapper h3 {
    font-size: var(--24px);
    text-align: center;
    font-weight: 800;
}

.schedule .accordion .ateliers-wrapper {
    display: flex;
    gap: 1rem;
}

/*

Voir pour faire un test plus tard, permettant d'éviter d'utiliser le grid / media query

wrapper gap 1rem
    wrapper flex-basis 50%, min-width?, gap 1rem
        div flex-basis 50%
        /div

        div
        /div
    /wrapper

    wrapper flex-basis 50%, min-width?, gap 1rem
        div flex-basis 50%
        /div

        div
        /div
    /wrapper
/wrapper

possiblement devoir ajouter un flex-grow

*/

.schedule .accordion .ateliers-wrapper .segment {
    flex-basis: calc(25% - 0.75rem);
}

.schedule .accordion .ateliers-wrapper .segment .info-box {
    grid-template-columns: auto minmax(5.5rem, 1fr);
    align-items: revert;
    padding: 1.5rem 3rem 2rem 1.5rem;
    height: 100%;
    background-color: #13beee;
    line-height: 1.3;
}

.schedule .accordion .ateliers-wrapper .info-box .title {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.schedule .accordion .ateliers-wrapper .info-box .title .subject {
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.schedule .accordion .ateliers-wrapper .info-box .title .description {
    margin-bottom: auto;
}

.schedule .accordion .ateliers-wrapper .info-box .title .icon {
    margin-block: 1rem -0.5rem;
    margin-left: 0;
}

/* =====[ FOOTER - SUPPORTS + LEGAL ]================================================= */

footer {
    font-family: Arial, Helvetica, sans-serif;
}

footer .supports {
    background-color: #F2F1F0;
}

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: #435469;
    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: #3d5aa4;
    font-size: var(--14px);
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 1350px) {
    .event-overview h1 {
        font-size: var(--42px);
    }
}

@media screen and (max-width: 1020px) {

    .lobby .container,
    .playback .event-banner + .container {
        flex-direction: column;
        align-items: center;
    }

    .event-overview {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .event-overview h1 {
        text-align: center;
    }

    .playback .interactions .slido iframe {
        height: 40rem;
    }

    .playback {
        margin-bottom: 0;
    }

    .schedule .info-box .icon {
        margin-left: 1.5rem;
        font-size: var(--56px);
    }

    .schedule .accordion .ateliers-wrapper {
        flex-wrap: wrap;
        column-gap: 1rem;
    }

    .schedule .accordion .ateliers-wrapper .segment {
        flex-basis: calc(50% - 0.5rem);
    }
}

@media screen and (max-width: 780px) {
    header .client-banner .container {
        flex-direction: column;
    }

    header .countdown {
        text-align: center;
    }

    .btn-horaire {
        flex-direction: column;
    }

    .wallio-btn {
        margin-bottom: 1.25rem;
        width:100%;
    }

    .container-btn-wallio {
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 575px) {
    header .utility-bar {
        justify-content: center;
    }

    header .utility-bar a {
        font-size: 36px;
    }

    .playback .player .btn-wrapper {
        flex-wrap: wrap;
        column-gap: 8%;
    }

    .playback .player .btn-wrapper .atelier {
        flex-basis: 46%;
    }
}

@media screen and (max-width: 500px) {
    header .client-banner .logos img {
        margin-top: 20px;
    }

    .playback .event-banner .date,
    .playback .event-banner .time {
        display: block;
    }

    .schedule .info-box {
        min-height: 6rem;
    }

    .schedule .accordion .ateliers-wrapper .segment {
        flex-basis: 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: "";
    }

    .schedule .info-box {
        grid-template-columns: minmax(4.5rem, 1fr) auto minmax(4.5rem, 1fr);
    }

    .schedule .info-box .icon {
        margin-left: 1rem;
    }
}
