@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

@import 'quiz.css';



.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.popin {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 600px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.popin label {
    display: block;
    margin-top: 15px;
}
.popin button {
    margin-top: 15px;
    padding: 10px;
    background: #aaaaaa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: not-allowed;
}
.popin button.enabled {
    cursor: pointer;
    background: var(--green);
}
				
				
				
:root {

    --green: #51EF9B;
    --green-active: #45cd84;
    --light-green: #E3F2E6;
    --dark-green: #005049;
    --dark-green-hover: #006348;
    --green-secondary: #0A8765;

/*     --pmu-green: #00A01E;
    --pmu-green-hover: #01901b;
    --pmu-green-active: #008919;
    --footer-bg-green: #003835; */
    --grey: #767676;
    /* --dark-grey: #323232;

    --er-sm-container-width: 540px;
    --padding-carousel-cell: 30px; */

    --bs-body-color: #152928;
    --bs-primary: #51EF9B;
    --bs-primary-rgb: 81, 239, 155;
    
    --bs-body-font-size: 1.25rem;

}

html, body {
    overflow-x: hidden;  /* Sinon l'asterisque en background créé une scrollbar sur ecran étroit. html et body : les deux necessaires pour mobile */
}

html {
    scroll-behavior: smooth;

}

body {
    font-family: Roboto;
    font-weight: 400;
    /* color: #ffffff; */
    /* background-color: var(--light-green); */
}

h2 {
    font-weight: 400;
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
}

main > .container {
    background-color: #fff;
}

.bg-dark-green {
    background-color: var(--dark-green);
}

p.p-bigger {
    font-size: 1.5rem;
}

p.p-grey {
    color: #637372;
}

.btn {
    --bs-btn-focus-box-shadow: unset;
}

.btn-pmu {
    --bs-btn-padding-x: 2em;
    --bs-btn-padding-y: 0.8em;
    --bs-btn-font-weight: 700;
    --bs-btn-bg: var(--green);
    --bs-btn-border-width: 2px;
    --bs-btn-border-color: var(--green);
    --bs-btn-hover-color: var(--bs-btn-color);
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: var(--green);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: var(--green-active);
    --bs-btn-active-border-color: var(--green-active);
    --bs-btn-disabled-opacity: 0.5;

}

.btn-pmu-secondary {
    --bs-btn-padding-x: 2em;
    --bs-btn-padding-y: 0.8em;
    --bs-btn-font-weight: 700;
    --bs-btn-bg: #fff;
    --bs-btn-border-width: 0;
    --bs-btn-border-color: #081516;
    --bs-btn-hover-color: var(--bs-btn-color);
    --bs-btn-hover-bg: var(--green);
    --bs-btn-hover-border-color: var(--green);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: var(--green-active);
    --bs-btn-active-border-color: var(--green-active);
}

.btn.btn-pmu-circle {
    --bs-btn-disabled-opacity: 0.5;
}

.btn.btn-pmu-circle svg circle {
    transition: fill 0.15s;
}

.btn.btn-pmu-circle:hover svg circle {
    fill: var(--green);
}

@media (hover: none) {

    /* Lorsque le hover n'est pas bien géré (touchscreen) */
    /* Cette media query permet d'exclure les souris qui gèrent bien le hover */

    .btn.btn-pmu-circle:hover svg circle {
        fill: #fff; /* Evite que le bouton reste coloré indéfiniment après touch */
    }
    
}

.pmu-card svg {
    flex-shrink: 0;
}

.pmu-card svg circle {
    transition: fill 0.15s;    
}

a.pmu-card {
    border : 2px solid;
    transition: background-color 0.15s;
}

a.pmu-card.bg-primary {
    border-color: var(--bs-primary);
}

a.pmu-card.bg-primary:hover {
    background-color: #fff !important;
}

a.pmu-card:hover svg circle {
    fill: var(--bs-primary);
}

/* Blocs de video avec cover image et icone play */

.video-cover-links a {
    display: block;
    height: 100%;
    position: relative;
    background-color: #000000;
    /* box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3); */
    border-radius: 1.5rem;
    overflow: hidden;
}

.video-cover-links img {
    height: 100%;
    /* opacity: 0.6; */
    object-fit: cover;
    transition: opacity 0.5s;
}

.video-cover-links a:hover img {
    opacity: 0.8;
}

.video-cover-links a .video-desc svg circle {
    transition: fill 0.15s;
}

.video-cover-links a:hover .video-desc svg circle {
    fill: var(--green);
}

/* Cartes */

.pmu-card {
    padding: 2.5rem;
}

a.pmu-card {
    text-decoration: none;
}

.er-card {
    position: relative;
    z-index: 1;
    flex: 1;
    height: 23rem;
    color: #323232;
    border-radius: 1.5rem;
    transition: opacity 0.5s;
    overflow: hidden;
}

.er-card>a {
    display: block;
    text-decoration: none;
    color: #000000;
    transition: background-color 0.15s;
}

.er-card>* {
    background-color: #ffffff;
    height: 100%;
}

.er-card svg {
    flex-shrink: 0;
}

.er-card>a:hover {
    color: #fff;
    background-color: #081516;
}

.er-card>a svg path {
    transition: fill 0.15s, stroke 0.15s;
}

.er-card>a:hover svg path:not([stroke]) {
    fill: #fff;
}

.er-card>a:hover svg path[stroke] {
    stroke: #fff;
}

.er-card h3 {
    font-weight: 400;
}

/* Header */

header {
    position: relative;
    /* hauteur fixe pour positionner l'image bg */
    /* height: 100px; */
    z-index: 2;
}

header h1 {
    display: inline-block;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    line-height: 0.6;
}

#bandeau {
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* position: relative; */
    font-family: "Roboto Mono", monospace;
    font-style: italic;
    background-color: var(--green);
    height: 3em;
    overflow: hidden;
    white-space: nowrap;
}

#quiz-row .quiz-row-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 6rem;
}

#quiz-row .quiz-row-container > * {
    position: relative;
}

#quiz-row .quiz-row-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--bs-border-radius-2xl);
    background-image: var(--top-bg-img);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 75%;
    filter: brightness(0.4);
    transform: scale(1.4);
}

#quiz-row .logo {
    height: 3rem;
}

#quiz-row h2 {
    font-size: 64px;
    font-weight: 400;

    display: inline;
    vertical-align: middle;
    text-transform: uppercase;
}

#quiz-row p {
    font-size: 24px;
    text-transform: uppercase;
}

#quiz-row .decorated-mark {
    width: 1em;
    height: 1em;
    align-items: center;
    justify-content: center;
    background-color: var(--green);
}

#quiz-row .decorated-mark span {
    font-size: 48px;
    color: var(--bs-body-color);
}

/* Top nav */

/* #top-nav {
    margin-bottom: 4.5rem;
}

.er-nav ul {
    width: 930px;
    height: 120px;
}

.er-nav li {
    position: relative;
    list-style: none;
    width: 120px;
    text-align: center;
    text-transform: uppercase;
}

#top-nav li::after {
    content: "";
    position: absolute;
}

#top-nav li:nth-of-type(2n) {
    align-self: flex-end;
}

#top-nav li:nth-of-type(2n+1)::after {
    width: 73px;
    height: 25px;
    top: 30%;
    left: 90%;
    background-image: url(../img/link_down.svg);
}

#top-nav li:nth-of-type(2n)::after {
    width: 75px;
    height: 23px;
    top: -20%;
    left: 80%;
    background-image: url(../img/link_up.svg);
}

#top-nav li:last-of-type::after {
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    background-image: none;
}

.er-nav a {
    display: block;
    color: #ffffff;
    font-weight: 700;
    font-style: italic;
    text-decoration: none;
    opacity: 0.55;
    transition: opacity 0.5s;
    will-change: opacity;
}

.er-nav a:hover {
    opacity: 1;
}

@media (hover: none) {

    //Lorsque le hover n'est pas bien géré (touchscreen) on fait un animation d'opacité sur le lien du menu pour eviter qu'il soit bloqué
    //en hover (reste à opacity 1 tant que l'utilisateur n'a pas fait un touch ailleurs)

    .er-nav a:hover {
        opacity: 0.55;
        animation: pulse 1.5s;
    }

    @keyframes pulse {
        50% {
            opacity: 1;
        }

        100% {
            opacity: 0.55;
        }
    }
}

.er-nav a svg {
    display: block;
    margin: 0 auto;
    width: 48px;
    height: auto;
}

.er-nav a svg path {
    fill: #ffffff;
}

.er-nav a span {
    display: block;
}
*/

/* Bottom nav */

/* #bottom-nav {
    position: fixed;
    background-color: #00504B;
    width: 100%;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    transform: translate(0, 100%);
    transition: all 0.5s;
    --bottom-nav-hover-translation: 0.5rem;
    --bottom-nav-svg-size: 36px;
}



#bottom-nav.show {
    opacity: 1;
    transform: translate(0, 0);
}

#bottom-nav ul {
    height: auto;
}

#bottom-nav li svg {
    width: var(--bottom-nav-svg-size);
}

#bottom-nav li span {
    font-size: 14px;
}

*/

/* Intro */

#intro .row {
    margin-bottom: 4rem;
}

#intro .row:first-of-type .col:first-of-type {
    padding-left: 5rem;
    padding-right: 2.5rem;
}

#intro .row:first-of-type .col:nth-of-type(2) {
    padding-left: 2.5rem;
    padding-right: 5rem;
}

#intro h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

#intro h3.h3-bigger {
    font-size: 2.5rem;
    font-weight: 700;
}

#intro .intro-title {
    margin-bottom: 1.25rem;
}

#intro .row:nth-of-type(2) .col:first-of-type {
    width: 38%;
    max-width: 38%;
}

#intro .row:nth-of-type(3) .col:nth-of-type(2) {
    width: 40%;
    max-width: 40%;
}

#intro a.pmu-card h3 {
    color: var(--bs-body-color);
}

#intro .pmu-card-kid {
    background-color: #000;
    border-width: 0; 
}

#intro .pmu-card-kid::before {

        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: var(--bs-border-radius-2xl);
        background-image: var(--big-img);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: left 95%;
        transform: scale(1.15);
        opacity: 0.6;
        transition: opacity 0.15s;

}

#intro .pmu-card-kid:hover::before {
    opacity: 0.8;
}

/* Outils : Encadrer vos pratiques de jeu */

#outils h2 {
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
}

#outils .card-container {
    position: relative;
    /* row-gap: 25px; */
    margin-bottom: 15rem;
}

#outils .card-container:after {
    content: "";
    display: block;
    position: absolute;
    right: -8rem;
    top: 73%;
    width: 25rem;
    height: 25rem;
    background: url(../img/asterisque.svg);
    background-size: cover;
}

/* Témoignages : Ils en parlent */

#temoignages {
    margin-bottom: 4rem;
}

#temoignages .title-wrapper {
    margin-bottom: 2.5rem;
}

#temoignages h2 {
    margin-right: 2.5rem;
}

.temoignages-carousel {
    width: 100%;
}

.temoignages-carousel .carousel-cell {
    width: 75%;
    height: 500px;
    margin-right: 2.5rem;
}

.temoignages-carousel .carousel-cell .video-desc {

    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2.5rem;
    background: #0815168c;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* box-shadow: inset 0 0 0 1000px rgba(0,0,0,.2); */
    /* border-radius: 0 0 1.5rem 1.5rem; */
    color: #fff;

}

.temoignages-carousel .carousel-cell .video-desc .video-duration {
    position: absolute;
    right: 0;
    top: -5rem;
    background: #0815168c;
    backdrop-filter: blur(10px);
    border-radius: 1rem 0 0 1rem;
    font-size: 1.5rem;
}


#actualites {
    margin-bottom: 4rem;
}

#actualites h2 {
    margin-right: 2.5rem;
}

#actualites .title-wrapper {
    margin-bottom: 2.5rem;
}

.actualites-carousel {
    width: 100%;
}

.actualites-carousel .carousel-cell {
    width: 75%;
    height: 500px;
    margin-right: 2.5rem;
}

.actualites-carousel .carousel-cell .video-desc {

    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2.5rem;
    background: #0815168c;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* box-shadow: inset 0 0 0 1000px rgba(0,0,0,.2); */
    /* border-radius: 0 0 1.5rem 1.5rem; */
    color: #fff;

}

.actualites-carousel .carousel-cell .video-desc .video-duration {
    position: absolute;
    right: 0;
    top: -5rem;
    background: #0815168c;
    backdrop-filter: blur(10px);
    border-radius: 1rem 0 0 1rem;
    font-size: 1.5rem;
}



/* Contact */

#contact {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    color: #fff;
}

#contact h2 {
    margin-bottom: 2.5rem;
}

#contact .er-card {
    height: 18rem;
    min-width: 18rem;
}

#contact .er-card img {
    width: 2.5rem;
}

#contact .er-card h3 {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

#contact .er-card p {
    font-size: 18px;
}

#contact .card-container {
    column-gap: 1rem;
    row-gap: 0.75rem;
}

#contact .er-card>a::after {
    content: "";
    display: block;
    position: absolute;
    /* background: url(../img/icon-v2-arrow-top-right.svg); */
    background-color: #000;
    overflow: hidden;
    mask-image: url(../img/icon-v2-arrow-top-right.svg);
    mask-repeat: no-repeat;
    background-size: cover;
    width: 2rem;
    height: 2rem;
    bottom: 1.5rem;
    right: 1.5rem;
    /* transition: transform 0.5s; */
    transition: background-color 0.15s;
}

#contact .er-card>a:hover::after {
    background-color: #fff;
}

/* Footer */

footer {
    position: relative;
}

.page-template-default footer {
    padding-bottom: 100px;
}

footer a>img {
    width: 2.5rem;
    height: 2.5rem;
}

footer .legal {
    font-size: 18px;
    color: #ffffff;
    padding-bottom: 5rem;
    column-gap: 1.5rem;
}

footer .legal a {
    color: #ffffff;
    text-decoration: none;
}

footer .legal a:hover {
    text-decoration: underline;
}

footer .legal-pages  {
    column-gap: 2rem;
}
footer .legal-pages > div {
    column-gap: 2rem;
}

.avertissement {
    text-align: left;
    font-size: 18px;
}

.avertissement p {
    margin-bottom: 0;
}

.avertissement .logo-rf {
    height: 4rem;;
}

/* Pop-in de page */

.modal-lg {
    --bs-modal-width: 640px;
}

#popin-page {
    scroll-behavior: smooth;
}

#popin-page .modal-body {
    padding: 2rem;
}

#popin-page .btn-close {
    width: 14px;
    height: 14px;
    padding: 15px;
    background-color: #F4F3F3;
    color: var(--bs-body-color);
    opacity: 1;
}

#popin-page h1 {
    font-size: 2.25rem;;
}

#popin-page h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

#popin-page h3 {
    font-size: 1.25rem;
    margin: 1.25rem 0;
}

#popin-page h4 {
    font-size: 20px;
    margin: 1rem 0;
}

#popin-page .decorated-list-item h3 {
    margin-top: 0;
    margin-bottom: 0.25rem;
}

#popin-page .decorated-list-item {
    margin-bottom: 1.5rem;
    font-size: 18px;
}

#popin-page p,
#popin-page ul {
    color: #637372;
    font-size: 18px;
}

#popin-page li {
    margin-bottom: 0.75rem;
}

#popin-page .reading-time {
    color: var(--grey);
}

#popin-page .description {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
}

/* #popin-page figure {
    width: 80%;
    margin: 2rem auto;
} */

#popin-page figure img {
    display: block;
    width: 100%;
}

#popin-page figure.wp-block-embed-youtube .wp-block-embed__wrapper {
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    width: 100%;
}

#popin-page figure.wp-block-embed-youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#popin-page figcaption {
    color: var(--grey);
}

#popin-page a:not(.btn-pmu) {
    color: var(--green-secondary);
}

#popin-page a:not(.btn-pmu):hover {
    color: var(--dark-green);
}

#popin-page blockquote {
    width: 80%;
    margin: 2rem auto;
    padding-left: 3rem;
    border-left: 4px solid #000;
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
}

#popin-page .btn-pmu {
    margin-top: 2rem;
}

#popin-page .btn-pmu:hover {
    text-decoration: none;
}

/* Pop-in de vidéo */

#popin-video .modal-dialog {
    --bs-modal-margin: 3rem;
}

#popin-video .btn-close {
    position: absolute;
    z-index: 1056;
    right: 0;
    top: -2em;
    padding-right: 0;
}

#popin-video .modal-content {
    position: relative;
    --bs-modal-bg: transparent;
}

#popin-video article {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

#popin-video article iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Media Queries */
/* Compatibilité assurée pour un écran de largeur > 375px */

@media (min-width: 1200px) and (max-width: 1400px) {
    #contact .er-card {
        min-width: 48%;
    }
}

@media (max-width: 1200px) {

    footer .legal {
        padding-bottom: 2rem;
    }
}


/* @media (max-height: 750px) and (min-width: 1024px) {

    #quiz-row {
        padding-top: 6rem;
    }
} */


@media (max-width: 992px) {

    #intro .row {
        row-gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    #intro .row .col {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    #intro .pmu-card-kid {
        min-height: 25rem;
    }

    .er-card {
        width: 48%;
    }

    #outils h3 {
        font-size: 1.5rem;
    }

}

@media (max-width: 768px) {

    :root {
        --bs-body-font-size: 18px;
    }

    #quiz-row .logo {
        height: 2rem;
    }

    #quiz-row h2 {
        font-size: 44px;
        margin-top: 7rem !important;
    }

    #quiz-row .decorated-mark span {
        font-size: 30px;
    }

    #quiz-row p {
        font-size: var(--bs-body-font-size);
    }

    #quiz-row a.btn {
        width: 100%;
        font-size: 18px !important;
    }

    #quiz-row .quiz-row-container::before {
        border-radius: 0;
        transform: scale(1);
    }

    #intro {
        border-radius: 1.5rem;
        margin-top: -1.5rem;
        background-color: #fff;
    }

    #intro .row {
        row-gap: 1.25rem;
    }

    #intro h2,
    h2 {
        font-size: 2rem;
    }

    #intro h3 {
        font-size: 1.5rem;
    }
    
    #intro h3.h3-bigger {
        font-size: 1.5rem;
    }

    /* Pas utilisé pour l'instant */
    #intro .intro-title h3 img {
        --top-shift: 3rem;
        width: 217px;
        height: 213px;
        margin-top: var(--top-shift);
        margin-right: -2rem;
        /* https://css-tricks.com/float-an-element-to-the-bottom-corner/ */
        shape-outside: inset(var(--top-shift) 0 0);
    }

    #intro a.btn {
        font-size: 18px !important;
    }

    #intro a.btn img {
        width: 1.5rem;
        height: 1.5rem;
    }

    p.p-bigger {
        font-size: var(--bs-body-font-size);
    }

    .pmu-card {
        padding: 1.25rem;
    }

    .pmu-card svg,
    #intro .pmu-card-kid svg {
        width: 3rem;
        height: 3rem;
    }

    #intro .pmu-card-kid {
        min-height: 17rem;
    }

    #intro .pmu-card-kid h3 {
        font-size: var(--bs-body-font-size);
    }

    #outils h2 {
        margin-bottom: 1.5rem;
    }

    #outils .er-card {
        min-width: 100%;
        max-width: 100%;
        height: 9rem;
    }

    #outils .card-container {
        margin-bottom: 8rem;
    }

    #outils .card-container:after {
        right: -5rem;
        top: unset;
        bottom: -9rem;
        width: 12rem;
        height: 12rem;
    }

    #temoignages .title-wrapper {
        row-gap: 1.25rem;;
    }
    #temoignages h2 {
        width: 100%;
    }
    #temoignages h3 {
        font-size: 1.5rem;
    }

    .temoignages-carousel .carousel-cell {
        width: 85%;
        margin-right: 1rem;
    }

    .temoignages-carousel .flickity-viewport {
        overflow: visible;
    }

    .temoignages-carousel .carousel-cell .video-desc {
        padding: 1.25rem;
    }

    .temoignages-carousel .carousel-cell .video-desc .video-duration {
        font-size: var(--bs-body-font-size);
    }

    .temoignages-carousel .carousel-cell .icon-play svg {
        width: 3rem;
        height: 3rem;
    }

    footer .legal {
        font-size: 1rem;
    }

    footer .legal-pages  {
        column-gap: 1.5rem;
    }
    footer .legal-pages > div {
        column-gap: 1.5rem;
    }

    .btn-pmu-secondary {
        --bs-btn-padding-x: 1rem;
    }

    .btn-pmu-circle svg {
        width: 3rem;
        height: 3rem;
    }

    .er-card {
        width: 100%;
        min-height: auto;
    }

    .temoignages-carousel {
        width: 100%;
    }

    /* Trick four fixer l'aspect-ratio à 16/9 */
    /* .temoignages-carousel.video-cover-links img {
        height: auto;
        display: block;
        max-width: 100%;
        max-height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    } */

    /* Trick four fixer l'aspect-ratio à 16/9 */
    /* .temoignages-carousel.video-cover-links a {
        width: 100%;
        height: auto;
        padding-top: calc(9 / 16 * 100%);
    } */

    /* Calcul de la position verticale des flèches à partir de la hauteur de la video, déterminée grâce à sa largeur multipliée par aspect ratio */
    /* .temoignages-carousel .flickity-prev-next-button {
        top: calc((var(--er-sm-container-width) - 2 * var(--padding-carousel-cell) - var(--bs-gutter-x)) * 9/16 / 2 + var(--padding-carousel-cell));
    }


    .temoignages-carousel .flickity-prev-next-button.previous {
        left: -10px;
    }

    .temoignages-carousel .flickity-prev-next-button.next {
        right: -10px;
    } */

    .avertissement {
        font-size : 11px;
    }

    .avertissement .logo-rf {
        height: 2.75rem;
    }

}

@media (max-width: 576px) {


    #bandeau {
        font-size: 15px !important;
    }

    #quiz-row .quiz-row-container {
        border-radius: 0 !important;
    }

    #popin-page .modal-body {
        padding: 1rem;
    }

    #popin-video .modal-dialog {
        margin: 3rem 1rem;
    }

    .page-template-default footer {
        padding-bottom: 60px;
    }

}

/* @media (min-width: 576px) {

    .modal-xl {
        --bs-modal-width: 540px;
    }
}

@media (min-width: 768px) {
    .modal-xl {
        --bs-modal-width: 720px;
    }
}

@media (min-width: 992px) {
    .modal-xl {
        --bs-modal-width: 960px;
    }
}

@media (min-width: 1400px) {
    .modal-xl {
        --bs-modal-width: 1320px;
    }
} */