/* =====[ VARIABLES CSS / COULEURS ]======================================================================== */
:root {
    --bni-nbi_white: #fff;
    --bni-nbi_black: #000;
    --bni-nbi_red: #e41c23;
    --bni-nbi_lightGray: #efefef;
    --bni-nbi_mediumGray: #ccc;
    --bni-nbi_darkGray: #414141;
    --bni-nbi-offWhite: #f7f4f0;
    --bni-nbi-whiteLilac: #f7f7f7;
}

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

/* =====[ SCROLL WATCHER ]======================================================================== */
.scroll_watcher {
    position: fixed;
    z-index: 1000;
    height: 6px;
    width: 0%;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bni-nbi_red);
}

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

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

/* CSS ANNULATION - DÉBUT */

.toast__container {
    position: relative;
    top: 0;
    background: #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: 1.5rem;
    font-weight: 700;
}

.toast__message {
    font-size: 1rem;
    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 */


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

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

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

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

body {
    font-size: 15px;
    color: var(--bni-nbi_darkGray);
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

p {
    padding: 10px 0;
    line-height: 1.1;
}

a {
    color: var(--bni-nbi_black);
    text-decoration: none;
}

a:hover {
    color: var(--bni-nbi_black);
}

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

.clear {
    clear: both;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

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

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

.header {
    padding: 20px 0;
    background: var(--bni-nbi_white);
}

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

.header .page a {
    display: contents;
}

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

header {
    background: var(--bni-nbi_black);
}

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

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

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

header ul li {
    display: flex;
    align-items: center;
    padding: 0;
    transition: all 0.25s ease-in-out;
}

header ul li.deconnexion a {
    padding-top: 14px;
}

header ul li a {
    display: flex;
    align-items: center;
    padding: 10px;
    height: 100%;
}

header ul li a,
header ul li a:hover {
    color: var(--bni-nbi_white);
}

header ul li a:hover {
    background-color: var(--bni-nbi_red);
}

.deconnexion {
    height: 100%;
    font-size: 16px;
    text-transform: uppercase;
}

.accueil {
    padding-top: 65px;
    background: url(background.png) no-repeat left bottom -75px;
    background-color: var(--bni-nbi-offWhite);
    background-size: min(660px, 62vw - 280px);
}

.accueil .page {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.titre-accueil {
    max-width: 700px;
    color: var(--bni-nbi_black);
    font-size: 22px;
    font-weight: 700;
}

.titre-accueil img {
    display: block;
    width: 32px;
    height: auto;
}

.titre-accueil h1 {
    margin: 0;
    text-transform: uppercase;
}

.titre-accueil h2 {
    font-size: 1.85rem;
    font-weight: 700;
}

.titre-accueil h2:first-of-type {
    margin-top: 10px;
}

.titre-accueil span {
    font-weight: 700;
    color: var(--bni-nbi_red);
}

.accueil .info h3 {
    color: var(--bni-nbi_white);
}

.accueil .info h2 {
    color: var(--bni-nbi_white);
    border-bottom: 1px solid var(--bni-nbi_white);
}

.titre {
    padding: 25px 0;
    background: var(--bni-nbi_black);
    color: var(--bni-nbi_white);
}

.accueil .info {
    color: var(--bni-nbi_white);
    margin: 0;
}

.accueil .info p {
    padding-top: 15px;
}

.titre_quick {
    margin-top: 35px;
    font-size: 16px;
}

.titre_quick p {
    padding: 0;
}

.titre_quick *:not(.lien_ancre) {
    align-items: center;
    text-align: justify;
}

.titre_quick div:nth-child(2) {
    border-top: 1px solid var(--bni-nbi_black);
    padding-top: 8px;
}

.titre_quick div:nth-child(3) {
    border-bottom: 1px solid var(--bni-nbi_black);
    padding-bottom: 8px;
}

.titre_quick > div,
.titre_quick a {
    display: flex;
    gap: 15px;
}

.titre_quick a {
    color: inherit;
    transition: all 0.25s ease-in-out;
}

.titre_quick a:hover {
    color: var(--bni-nbi_red);
}

.titre_quick > div + div:not(.lien_ancre) {
    margin-top: 30px;
}

.titre_quick a img + p {
    text-align: left !important;
}

.lien_ancre {
    margin-top: 30px;
    flex-direction: row;
    align-self: flex-start;
    flex-wrap: wrap;
}

.lien_ancre a {
    text-decoration: underline;
    font-size: x-large;
}

.head {
    padding: 50px 0 0;
}

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

.connexion {
    width: max(min(418px, 100%), 65%);
    color: var(--bni-nbi_black);
}

.connexion h2 {
    margin-bottom: 6px;
    font-size: 24px;
}

.connexion ul {
    width: 100%;
}

.connexion ul > span {
    display: flex;
    gap: 34px;
}

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

.connexion li span {
    display: block;
    margin-top: 1px;
    padding: 6px 0 4px;
    background-color: var(--bni-nbi_black);
    font-size: 24px;
    color: var(--bni-nbi_white);
    font-weight: 700;
    border-radius: 14px;
}

.connexion li:not(:last-child)::after {
    content: ":";
    position: absolute;
    width: 34px;
    right: -34px;
    bottom: 9px;
    font-family: sans-serif;
    font-size: 22px;
    color: var(--bni-nbi_black);
    line-height: 1;
    font-weight: 600;
    text-align: center;
}

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

.tab {
    border: none;
    background: var(--bni-nbi_white);
    width: 100%;
    height: auto;
    display: flex;
}

.tab button {
    background: inherit;
    color: var(--bni-nbi_black);
    padding: 15px 20px;
    width: 100%;
    border: 1px solid var(--bni-nbi_black);
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
}

.tab button:hover {
    background: var(--bni-nbi_red);
    color: var(--bni-nbi_white);
}

.tab button.active {
    background: var(--bni-nbi_black);
    color: var(--bni-nbi_white);
}

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

.tab2 {
    display: flex;
}

.tab2 button {
    background: var(--bni-nbi_lightGray);
    color: var(--bni-nbi_darkGray);
    padding: 15px 20px;
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
}

.tab2 button:hover {
    background: var(--bni-nbi_black);
    color: var(--bni-nbi_white);
}

.tab2 button.active2 {
    background: var(--bni-nbi_white);
    color: var(--bni-nbi_darkGray);
}

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

.inscription {
    flex-shrink: 0;
    margin-bottom: 60px;
    width: 450px;
    border-radius: 16px;
    border: 2px solid var(--bni-nbi_black);
    overflow: hidden;
}

.inscription form,
.inscription .message,
.inscription .decompte2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--bni-nbi_white);
    padding: 35px;
    min-height: 650px;
}

.inscription .message {
    min-height: 700px;
}

.inscription em a {
    color: var(--bni-nbi_red);
    font-weight: 700;
}

.add-calendar {
    background: var(--bni-nbi_black);
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: var(--bni-nbi_white);
    padding: 15px 0;
}

.add-calendar a {
    color: var(--bni-nbi_white);
}

.add-calendar a:hover {
    color: var(--bni-nbi_red);
}

.add-calendar .icon {
    font-size: 26px;
}

.inscription h2 {
    font-size: 26px;
    text-align: center;
    color: var(--bni-nbi_black);
    line-height: 1;
    margin-bottom: 20px;
}

.inscription h2 strong {
    font-size: 50px;
    display: block;
    color: var(--bni-nbi_black);
    font-weight: 700;
}

.inscription p {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    color: var(--bni-nbi_black);
}

.inscription input[type="Submit"]:hover {
    background: var(--bni-nbi_black);
    color: var(--bni-nbi_white);
}

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

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

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

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

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

.biography {
    background: var(--bni-nbi_black) !important;
    color: var(--bni-nbi_white);
}

.biography h3 {
    color: var(--bni-nbi_white);
    border-bottom: 1px solid var(--bni-nbi_white);
}

.biography p:first-of-type {
    padding-top: 15px;
}

.consens {
    display: flex;
}

.consens label {
    color: var(--bni-nbi_black);
    font-size: 12px;
    font-weight: 500;
    text-align: justify;
    line-height: 1;
}

.consens input[type="checkbox"] {
    margin: 0 10px 0 0;
    height: 14px;
    width: 14px;
}

.consens a {
    background: none;
    padding: 0;
    color: var(--bni-nbi_black);
    display: inline;
    width: auto;
    text-align: left;
    text-decoration: underline;
}

.consens a:hover {
    text-decoration: none;
    background: none;
}

.consens p {
    text-align: left;
}

/* =====[ SECTION NOTE ]======================================================================== */

#note {
    background: var(--bni-nbi_lightGray);
    color: var(--bni-nbi_darkGray);
}

.note_container {
    max-width: 85%;
    margin: auto;
}

.note_container strong {
    font-size: 0.8rem;
}

/* =====[ FORMULAIRE ]======================================================================== */
::placeholder {
    color: var(--bni-nbi_black);
    opacity: 1 !important;
}

form em {
    font-size: 13px;
    color: var(--bni-nbi_black);
    display: block;
    text-align: center;
    margin: 15px 0 15px 0;
}

form p {
    padding: 10px 0;
}

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

select {
    border-radius: 0;
}

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

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

input,
textarea,
select {
    background: var(--bni-nbi_lightGray);
    padding: 10px;
    border: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--bni-nbi_black);
    border-radius: 0;
    margin-bottom: 10px;
}

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

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

input[type="Submit"] {
    background: var(--bni-nbi_red);
    border: none;
    font-size: 18px;
    color: var(--bni-nbi_white);
    cursor: pointer;
    min-width: 200px;
    margin-bottom: 0;
    font-weight: 700;
    border-radius: 25px;
}

/*===========[ Custom select ]===========*/
.custom-select {
    --custom-select-text-color: currentColor;
    position: relative;
    margin-bottom: 10px;
    width: 100%;
}

.custom-select select {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding-right: 25px;
    width: 100%;
    white-space: normal;
    cursor: pointer;
}

.custom-select select:disabled {
    cursor: not-allowed;
}

.custom-select::after {
    position: absolute;
    font-size: 1lh;
    pointer-events: none;

    content: "";
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: var(--custom-select-text-color, #000);
    padding: 2.3px;
    top: 48%;
    right: 10px;
    -webkit-transform: translateY(-50%) rotate(45deg) scale(0.9);
    transform: translateY(-50%) rotate(45deg) scale(0.9);
}

.custom-select:has(select:disabled)::after {
    opacity: 50%;
}

select.error {
    color: #f00;
}

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

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

input[type="Submit"]:hover,
a.btn-main:hover,
a.btn-sec:hover {
    background: var(--bni-nbi_black);
    color: var(--bni-nbi_white);
}

a.btn-main {
    display: inline-block;
    background: var(--bni-nbi_red);
    border: none;
    text-align: center;
    font-size: 18px;
    color: var(--bni-nbi_white);
    cursor: pointer;
    text-decoration: none;
    padding: 10px 60px;
    border-radius: 25px;
}

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

a.btn-sec {
    border: var(--bni-nbi_black) 1px solid;
    background: var(--bni-nbi_white);
    font-size: 20px;
    color: var(--bni-nbi_black);
    cursor: pointer;
    text-decoration: none;
    padding: 10px 40px;
    display: block;
}

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

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

.error {
    color: #f00;
}

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

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

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

.generic_error {
    color: #f00;
}

.message_champs_requis {
    text-align: right;
}

/* =====[ PLAYER - conférence ]======================================================================== */
.titre {
    font-weight: 700;
}

.titre h1 {
    font-size: 28px;
    margin: 15px 0 0 0;
    color: var(--bni-nbi_white);
}

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

.titre_page_video {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
}

.titre_page_video > span {
    display: block;
    font-size: 1rem;
}

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

.player {
    max-width: 960px;
    width: 100%;
    margin: 0 0 0 0;
    z-index: 5;
    position: relative;
}

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

.invisible:after {
    display: none;
}

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

.imagenonactif:hover {
    opacity: 1;
}

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

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

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

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

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

.contenu-player {
    width: 60%;
}

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

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

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

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

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

.succes {
    text-align: center;
}

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

.succes img {
    padding: 10px;
}

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

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

.question,
.bouton-lang {
    width: 100%;
    margin: 0;
}

.bouton-lang {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 15px 0;
    padding: 0;
    align-items: center;
    gap: 10px;
}

.bouton-lang a {
    margin: 1px 0 0 2px;
    font-size: 14px;
    font-weight: 700;
}

.bouton-lang span {
    padding: 0 15px 0 0;
}

.bouton-lang span {
    padding: 0 15px 0 0;
}

.iconsupport {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.iconsupport .petit {
    font-size: 20px;
}

.iconsupport a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.iconsupport a,
.iconsupport a span {
    color: var(--bni-nbi_black);
    transition: all 0.25s ease-in-out;
}

.iconsupport a:hover,
.iconsupport a:hover span {
    color: var(--bni-nbi_red);
}

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

/* =====[ CONTENU ]======================================================================== */
.bg-info {
    padding: 0 0 50px 0;
    background: var(--bni-nbi_white);
}

.bg-info h2 {
    padding: 6px 32px 6px;
    color: var(--bni-nbi_white);
    background-color: var(--bni-nbi_black);
    font-weight: 700;
    font-size: 2.25rem;
}

/* =====[ SECTION HORAIRE ]======================================================================== */

#horaire {
    margin-top: 60px;
}

.webdiffusion_icon {
    fill: var(--bni-nbi_red);
}

.horaire_titre_container .webdiffusion_icon {
    height: 25px;
    width: 25px;
}

.horaire_titre_container {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.horaire_titre_container p {
    padding: 0;
    text-align: center;
}

.horaire_bloc {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 18px 32px;
    background: var(--bni-nbi-offWhite);
    color: var(--bni-nbi_black);
    border-bottom: 2px solid var(--bni-nbi_black);
}

.horaire_bloc:last-child {
    border-bottom: unset;
}

.horaire_infos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}

.heure {
    flex: 1;
    min-width: 84px;
    line-height: 1.5;
}

.horaire_precision {
    flex: 1;
}

.horaire_titre {
    font-size: 1.05rem;
    font-weight: bold;
    margin: 0;
    min-width: 155px;
}

.horaire_infos p {
    flex: 2;
    min-width: 180px;
    padding: 0;
    font-size: 1rem;
}

.btn-archive a {
    display: inline-block;
    background: var(--bni-nbi_red);
    font-size: 16px;
    font-weight: 700;
    color: var(--bni-nbi_white);
    padding: 5px 20px;
    border-radius: 25px;
}

.webdiffusion_icon {
    height: 25px;
    width: 25px;
    fill: var(--bni-nbi_red);
}

.horaire_bloc .webdiffusion_icon {
    display: block;
    height: 32px;
    width: 32px;
}

/* =====[ SECTION CONFÉRENCIERS ]======================================================================== */
.speakers {
    margin-top: 60px;
}

.speakers .group-label {
    margin-bottom: 40px;
}

.speakers .people {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.speakers .person {
    display: grid;
    grid-template-rows: 1fr auto auto auto;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "image ."
        "image name"
        "image title"
        "image organization"
        "image socials";
    column-gap: 15px;
}

.speakers .image img {
    width: 190px;
    height: auto;
    margin-bottom: -5px;
    background-color: var(--bni-nbi-offWhite);
}

.speakers .person .name {
    font-size: 16px;
    font-weight: 700;
    color: var(--bni-nbi_black);
    padding: 0;
}

.speakers .person .title,
.speakers .person .organization {
    display: block;
    padding: 0;
    font-size: 18px;
    text-align: left;
    line-height: 1.22;
}

.speakers .socials {
    margin-top: 12px;
}

.speakers .socials .linkedin:hover img {
    transition: all 0.15s ease-in-out;
    filter: brightness(0) saturate(100%) invert(28%) sepia(97%) saturate(1274%) hue-rotate(175deg) brightness(95%) contrast(101%);
}

.speakers .socials img {
    height: 22px;
    width: auto;
}

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

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

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

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

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

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

ul.soutien li a,
ul.soutien li a h2 {
    color: var(--bni-nbi_mediumGray);
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

ul.soutien li a:hover,
ul.soutien li a:hover h2 {
    color: var(--bni-nbi_red);
}

.notes-legale {
    margin-top: 5%;
}

.notes-legale h4 {
    font-weight: 700;
    padding: 0;
}

.notes-legale p {
    padding: 0;
    text-align: justify;
}

.copyright {
    padding: 25px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    background: var(--bni-nbi_black);
    color: var(--bni-nbi_white);
}

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

.confidentialite {
    padding: 25px 0;
    text-align: center;
    font-size: 13px;
    background: var(--bni-nbi-whiteLilac);
    color: var(--bni-nbi_darkGray);
    font-weight: 700;
}

.confidentialite a {
    color: var(--bni-nbi_darkGray);
    font-weight: 700;
    text-decoration: none;
}

.confidentialite a:hover {
    color: var(--bni-nbi_red);
}

/*==========[ 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(--ebony-clay);
}

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

.md-content button {
    margin: 0;
    background: none;
    color: #007cec;
    border: none;
    cursor: pointer;
    font-size: 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;
}

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

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

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

    .contenu-player {
        width: 100%;
    }

    .tabcontent iframe {
        height: 400px;
    }
}

@media screen and (max-width: 1020px) {
    .speakers .people {
        grid-template-columns: repeat(1, 1fr);
    }

    .copyright {
        margin-bottom: 36px;
    }
}

@media screen and (max-width: 1008px) {
    .accueil .page {
        flex-direction: column;
        align-items: center;
    }

    .titre-accueil > div:first-of-type {
        max-width: none;
    }

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

    .header ul li img {
        width: 25px;
    }

    .connexion h2 {
        text-align: center;
    }

    .accueil {
        background-size: 460px;
    }

    .titre-accueil {
        width: 100%;
    }

    .inscription {
        margin-bottom: 170px;
    }

    .img-accueil {
        display: none;
    }

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

    .inscription .message {
        width: 100%;
    }

    .inscription h2 {
        font-size: 24px;
    }

    .inscription h2 strong {
        font-size: 35px;
    }
}

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

    .logo {
        width: 40%;
    }

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

    .bg_player {
        padding: 10% 0;
    }

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

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

@media screen and (max-width: 512px) {
    .accueil .page {
        width: 95%;
    }

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

    .inscription {
        width: 100%;
    }

    .bg-info .page {
        width: 100%;
    }

    #horaire {
        margin-top: 40px;
    }

    .horaire_bloc {
        gap: 12px;
    }

    .horaire_infos {
        flex-direction: column;
        gap: 10px;
    }

    .heure,
    .horaire_titre,
    .horaire_infos p {
        min-width: unset;
    }

    .btn-archive a {
        font-size: 14px;
    }

    .speakers {
        margin: 40px auto 0;
        width: 95%;
    }

    .speakers .image img {
        width: 140px;
    }

    .speakers .person .name {
        font-size: 14px;
    }

    .speakers .person .title,
    .speakers .person .organization {
        font-size: 16px;
        line-height: 1.2;
    }

    .notes-legale {
        margin: 18px auto 0;
        width: 95%;
    }

    .copyright {
        font-size: 11px;
    }
}

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

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

    header ul {
        justify-content: center;
    }

    .header img {
        margin: 0 auto;
    }

    .header ul {
        text-align: center;
    }

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

    .connexion ul > span {
        gap: 16px;
    }

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

    .connexion li span {
        font-size: 18px;
        padding: 4px 0 2px;
    }

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

    .btn-main {
        display: block;
    }

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

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

    .question input {
        width: 100%;
    }

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

    .tab {
        flex-direction: column;
    }
}

@media screen and (max-width: 1020px) {
    #launcher {
        bottom: 32px !important;
    }
}
